* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto";
    font-style: normal;
    font-size: 1.6rem;section.contact-us: :before
    line-height: 1.5;
}
html {
    font-size: 62.5%;
}
a {
    text-decoration: none;
}
ul {
    padding-left: unset;
}
li {
    list-style: none;
}
*:hover,
*:focus {
    outline: none;
}

p {
    font-weight: 400;
    line-height: 28.8px;
    color: var(--para2-color);
    margin-bottom: unset;
}

/********** Roboto **********/
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Regular.woff") format("woff");
    font-weight: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Medium.woff") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"),
        url("../fonts/Roboto/Roboto-Bold.woff") format("woff");
    font-weight: bold;
}

/********** Oswald **********/
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Regular.woff2") format("woff2"),
        url("../fonts/Oswald/Oswald-Regular.woff") format("woff");
    font-weight: normal;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Medium.woff2") format("woff2"),
        url("../fonts/Oswald/Oswald-Medium.woff") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-SemiBold.woff2") format("woff2"),
        url("../fonts/Oswald/Oswald-SemiBold.woff") format("woff");
    font-weight: 600;
}
@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald-Bold.woff2") format("woff2"),
        url("../fonts/Oswald/Oswald-Bold.woff") format("woff");
    font-weight: bold;
}

/********** Colors: **********/
:root {
    --primary: #841943;
    --title-color: #bebcbc;
    --white: #ffffff;
    --black: #000000;
    --para-color: #dedede;
    --para2-color: #d0d0d0;
    --bg-color: #242428;

    /* form-sec */
    --marineBlue: hsl(213, 96%, 18%);
    --purplishBlue: hsl(243, 100%, 62%);
    --pastelBlue: hsl(228, 100%, 84%);
    --lightBlue: hsl(206, 94%, 87%);
    --strawberryRed: hsl(354, 84%, 57%);
    --coolGray: hsl(231, 11%, 70%);
    --lightGray: hsl(229, 24%, 87%);
    --magnolia: hsl(217, 100%, 97%);
    --alabaster: hsl(231, 100%, 99%);
}

/********** topbar **********/
.topbar {
    background-color: var(--black);
}
.tb-social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding: 20px 30px 20px 0px;
}
.tb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 1px solid #ffffff30;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    background-color: var(--primary);
}
.tb-icon a {
    color: var(--white);
}
.tb-icon:hover {
    color: var(--primary);
    background-color: var(--white);
}
.tb-icon:hover a {
    color: var(--primary);
}

.tb-icon a:hover {
    color: var(--primary);
}

/********** hero **********/
header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100px;
    z-index: 10;
}

.top-bar {
    padding: 20px 45px;
    background-color: #242428;
    border-bottom: 2px solid #2d2e30;
    border-radius: 8px 8px 0 0;
}

.help-us {
    display: flex;
    gap: 30px;
}
.help-us a {
    color: #bebcbc;
}
.help-us a:hover {
    color: var(--primary);
}

.navbar {
    background: #1d1e21;
    padding: 14px 45px;
    border-radius: 0 0 8px 8px;
}

.navbar.sticky {
    padding: 0px 45px;
}
/* ADDING STICKY CSS */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.navbar .navbar-row {
    width: 100%;
    --bs-gutter-x: 0rem;
}
.reps-logo {
    max-width: 200px;
    margin-top: -80px;
    position: relative;
    z-index: 11;
}
.navbar.sticky .reps-logo {
    margin-top: unset;
    max-width: 150px;
}

.navbar.sticky #navbarNav .btn.btn-primary {
	height: 35px;
}

.navbar .nav-link {
    font-family: Oswald;
    font-size: 17px;
    font-weight: 500;
    line-height: 17px;
    color: #fff !important;
    margin-right: 25px;
}
.navbar .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.carousel-item {
    height: 800px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 40%;
}
.carousel-item:first-child {
    background-image: url("../images/hero/bg1.jpg");
}
.carousel-item:nth-child(2) {
    background-image: url("../images/hero/bg2.jpg");
}
.carousel-item:nth-child(3) {
    background-image: url("../images/hero/bg3.jpg");
}

/* Add animation only to active and incoming slides */
/* Apply animations to carousel items */
.carousel-item.active .carousel-caption h1 {
    animation: fadeInUp 1s ease-in-out 0.3s both;
}
.carousel-item.active .input-group {
    animation: fadeInUp 1s ease-in-out 0.6s both;
}
.carousel-item.active .carousel-caption a {
    animation: fadeInUp 1s ease-in-out 0.9s both;
}

/* Custom fadeInUp animation for smoother effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Slightly below */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Final position */
    }
}

/* Initial state for elements to prevent flashes */
.carousel-caption h1,
.carousel-item .input-group,
.carousel-caption a {
    opacity: 0;
}

.carousel-caption {
    bottom: 23%;
}
.carousel-caption h1 {
    font-family: Oswald;
    font-size: 100px;
    font-weight: 700;
    line-height: 110px;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.search-bar::placeholder {
    color: #ddd;
}
.search-btn {
    background-color: #a50055;
    color: #fff;
    border: none;
}

.carousel-control-prev-icon {
    background-image: url("../images/reps-trainer/arrow-left.png") !important;
    width: 65px;
    height: 65px;
}

.carousel-control-next-icon {
    background-image: url("../images/reps-trainer/arrow-right.png") !important;
    width: 65px;
    height: 65px;
}

#heroCarousel .input-group {
    max-width: 557px;
    height: 47px;
    position: relative;
}
#heroCarousel .input-group input {
    border-radius: 20px;
    border: 1px solid #fbf9f980;
    background-color: #84194380;
    font-size: 14px;
    font-weight: 400;
    line-height: 28.8px;
    padding: 15px 40px;
    height: 100%;
    width: 100%;
    color: #fff;
}
.input-search-icon {
    position: absolute;
    top: 11px;
    left: 15px;
}

.carousel-control-next,
.carousel-control-prev {
    top: 5%;
}

.hero .carousel {
    max-height: 818px;
    overflow: hidden;
}
.hero .carousel-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #841943;
    opacity: 0.4;
}

.hero .navbar {
    position: absolute;
    right: 60px;
    left: 60px;
    top: 33px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.nav-first-row {
    background-color: var(--bg-color);
}
.nav-second-row {
    background-color: #1d1e21;
}

/********** why-choose-us **********/
.why-choose-us {
    background-color: var(--bg-color);
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
    background-image: url("../images/why-choose-us/shape-2.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    overflow: hidden;
}
.why-choose-us::before {
    position: absolute;
    content: "";
    background-color: #1f1f1f;
    width: 300px;
    height: 300px;
    border: 40px solid var(--primary);
    border-radius: 50%;
    top: -10%;
    left: -5%;
    z-index: 1;
}
.choose-left {
    position: relative;
    z-index: 2;
}
.why-choose-us .sub-title {
    margin-bottom: 13px;
}
.sub-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    color: #841943;
}
.title {
    font-family: Oswald;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    color: var(--white);
    margin-bottom: 10px;
}
.choose-ul {
    padding-left: unset;
}
.why-choose-us p {
    margin-bottom: 32px;
}
.choose-ul li {
    font-size: 20px;
    font-weight: 400;
    line-height: 44px;
    color: var(--white);
    list-style: none;
}
.btn.btn-primary {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    width: max-content;
    padding: 15px 40px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--primary);
    border: none;
    border: 2px solid var(--primary);
}
.btn.btn-primary:hover {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/**********  **********/
.our-training {
    background-color: var(--black);
    padding: 50px 0px;
    position: relative;
    background-image: url("../images/our-training/shape-center.png");
    background-repeat: no-repeat;
    background-position: left center;
}
.our-training::before {
    position: absolute;
    content: "";
    background: url("../images/our-training/shape-top.png");
    width: 518px;
    height: 646px;
    top: 0;
    left: 0;
}
.our-training .sub-title {
    margin-bottom: 38px;
}
.t-logo {
    margin-bottom: 60px;
}
/*.t-logo img {
    max-width: 360px !important;
}*/
.training-para {
    margin-bottom: 38px;
}
.t-box {
    margin-top: 100px;
    margin-bottom: 100px;
}
.training-img-box {
    border-radius: 12px;
    overflow: hidden;
}

/* owl */
.owl-dots {
    text-align: center;
    margin-top: 64px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
    background: #d9d9d940;
    display: block;
    visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary);
}

/********** reps-trainers **********/
.reps-trainers {
    background-color: #252525;
    padding: 75px 0px;
}
.reps-trainers .sub-title {
    margin-bottom: 18px;
}
.reps-trainers .title {
    margin-bottom: 42px;
}
.reps-t-btn {
    margin-bottom: 60px;
}
.reps-t-img-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.reps-t-img-box img {
    height: 390px;
    object-fit: fill;
}
.reps-t-img-txt {
    background-color: var(--primary);
    padding: 15px;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0px 40px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    transition: 0.3s;
    cursor: pointer;
}
.reps-t-img-box:hover .reps-t-img-txt {
    background-color: var(--bg-color);
    border: 2px solid var(--white);
}
.reps-t-name {
    font-family: Oswald;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 8px;
    color: var(--white);
}
.reps-t-pos {
    font-size: 12.46px;
    font-weight: 400;
    line-height: 22.42px;
    color: var(--white);
}

/* owl */
.owl-2 .owl-nav,
.owl-4 .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-2 .owl-nav button.owl-prev,
.owl-4 .owl-nav button.owl-prev {
    position: absolute;
    left: -8%;
}

.owl-2 .owl-nav button.owl-next,
.owl-4 .owl-nav button.owl-next {
    position: absolute;
    right: -8%;
}

/********** partners **********/
.partners {
    background: linear-gradient(0deg, #150b25, #150b25),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    padding: 75px 0px;
}
.partners .title {
    margin-bottom: 70px;
}
.partners-img-box {
    background-color: #150b25;
}

/********** contact-us **********/
.contact-us {
    background-color: #191918;
    padding: 75px 0px;
    position: relative;
    overflow: hidden;
}
section.contact-us::before {
    position: absolute;
    content: "";
    background-color: #1f1f1f;
    width: 300px;
    height: 300px;
    border: 40px solid var(--primary);
    border-radius: 50%;
    top: -10%;
    right: -5%;
    /* z-index: 1; */
}
section.search-trainers::before {
    z-index: 0 !important;
}
.contact-us .title {
    margin-bottom: 40px;
}
.contact-us .sub-title {
    margin-bottom: 16px;
}
/* form */
.contact-us .c-group {
    margin-top: 20px;
    padding: 0px 10px;
}
.cont-btn {
    margin-top: 64px;
}
.contact-us .form-control {
    background-color: #282828;
    color: #fff;
    border: 1px solid #333;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 15px 15px 25px;
}
.contact-us .form-control:focus {
    box-shadow: none;
    border-color: #555;
}
.contact-us .form-floating1 .form-control {
    padding-left: 2.5rem;
}
.contact-us .form-floating1 .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #888;
}
.contact-us .form-floating1.c-area .icon {
    top: 20%;
}
.contact-us .form-floating1 label {
    color: var(--white);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-left: 60px;
}
.c-social-group {
    display: flex;
    align-items: center;
    gap: 34px;
}
.cs-icon {
    padding: 10px;
    border: 1px solid #515050;
    border-radius: 5px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: var(--primary);
}

/********** footer **********/
.footer-main {
    background-image: url("../images/footer/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 70px;
}
.footer-img {
    max-width: 300px;
    margin-bottom: 20px;
}
.footer-main p {
    margin-bottom: 40px;
}
.f-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    color: var(--white);
    margin-bottom: 10px;
}
.f-follow-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ff-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 2px solid #2a2a2a;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.ff-icons a:hover {
    border-color: var(--primary);
    background-color: var(--primary);
}
.s-link-title {
    font-family: Oswald;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    color: var(--white);
    margin-bottom: 40px;
}

.s-ul-links li {
    padding-left: 10px;
    margin-bottom: 10px;
    list-style: none;
}
.s-ul-links li a {
    color: #d0d0d0;
    padding-left: 20px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.s-ul-links li a::before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    left: 0;
    top: 0px;
    font-size: 12px;
}
.s-ul-links li a:hover {
    color: var(--primary);
}
.f-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gall-col {
    max-width: 130px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.f-overly {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.f-plus {
    display: inline-block;
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 30px;
    height: 30px;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    text-align: center;
}
.gall-col:hover .f-overly {
    opacity: 0.8;
    visibility: visible;
}

/* model */
.f-gallery .modal-header {
    border-bottom: unset;
}
.f-gallery .modal-header .btn-close {
    color: var(--white);
    opacity: 1;
}
.f-gallery .modal-content {
    background-color: transparent;
}

/* footer-copyrights */
.footer-copyrights {
    background-color: #151516;
    padding: 25px 0px;
}

/********** 
inner-Pages
 **********/
.inner-sec {
    background-image: url("../images/hero/bg3.jpg");
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.inner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}
.inner-title {
    font-size: 60px;
    color: #ffffff;
    line-height: 70px;
    text-transform: uppercase;
}
.breadcrumb-container {
    text-align: center;
}
.breadcrumb-container span {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
}

/* step form */
.farm-sec {
    background-color: #252525;
    padding: 75px 0px;
}

.farm-sec .form-container .card {
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid #333;
    background-color: unset;
}

.farm-sec .form-container .card .form {
    width: 100%;
    height: 100%;

    display: flex;
}

.farm-sec .form-container .card .left-side {
    width: 30%;
    background-color: var(--primary);
    /* height: 100%; */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px 30px;
    box-sizing: border-box;
}
.farm-sec .form-container .card .right-side {
    width: 70%;
    background-color: #191918;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.farm-sec .form-container .form-check-label {
    color: #888;
}
.farm-sec .form-container .step-checkbox {
    width: 1.5em !important;
    height: 1.3em !important;
}

/*left-side-start*/
.farm-sec .left-heading {
    color: #fff;
}

.farm-sec .steps-content {
    margin-top: 30px;
    color: #fff;
}

.farm-sec .steps-content p {
    font-size: 12px;
    margin-top: 15px;
}

.farm-sec .step-progress-bar {
    list-style: none;
    /*color:#fff;*/
    margin-top: 30px;
    font-size: 13px;
    font-weight: 700;
    counter-reset: container 0;
}

.farm-sec .step-progress-bar li {
    position: relative;
    margin-left: 40px;
    margin-top: 50px;
    counter-increment: container 1;
    color: #888;
}

.farm-sec .step-progress-bar li::before {
    content: counter(container);
    line-height: 25px;
    text-align: center;
    position: absolute;
    height: 25px;
    width: 25px;
    border: 1px solid #888;
    border-radius: 50%;
    left: -40px;
    top: -5px;
    z-index: 9;
    background-color: #252525;
}

.farm-sec .step-progress-bar li::after {
    content: "";
    position: absolute;
    height: 90px;
    width: 2px;
    background-color: #4f6581;
    z-index: 1;
    left: -27px;
    top: -70px;
}

.farm-sec .step-progress-bar li.active::after {
    background-color: #fff;
}

.farm-sec .step-progress-bar li:first-child:after {
    display: none;
}

.farm-sec .step-progress-bar li.active::before {
    color: #fff;
    border: 1px solid #fff;
}

.farm-sec .step-progress-bar li.active {
    color: #fff;
}

.farm-sec .d-none {
    display: none;
}

/*right-side-start*/
.farm-sec .main {
    display: none;
}

.farm-sec .active {
    display: block;
}

.farm-sec .main {
    padding: 40px;
}

.farm-sec .main small {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
    height: 30px;
    width: 30px;
    background-color: #282828;
    border-radius: 50%;
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 40px;
}

.farm-sec .text {
    margin-top: 20px;
}

.farm-sec .congrats {
    text-align: center;
}

.farm-sec .text p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #cbced4;
}

.farm-sec .input-text {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.farm-sec .input-text .input-div {
    width: 100%;
    position: relative;
}
.farm-sec select.multiple-select {
    width: 100%;
    height: 60px;
    border: none;
    outline: 0;
    border-radius: 5px;
    border: 1px solid #cbced4;
    gap: 20px;
    box-sizing: border-box;
    padding: 0px 10px;
}

.farm-sec .form-container input[type="text"],
.farm-sec .form-container input[type="number"],
.farm-sec .form-container input[type="email"],
.farm-sec .form-container input[type="password"],
.farm-sec .form-container input[type="date"],
.farm-sec .form-container input[type="file"],
.farm-sec .form-container select {
    width: 100%;
    outline: 0;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #282828;
    box-sizing: border-box;
    padding: 15px 15px 15px 25px;
    color: #ffffff;
}

.farm-sec .input-text .input-div span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-size: 14px;
    transition: all 0.5s;
    color: #888;
}

.farm-sec .input-div input:focus ~ span,
.farm-sec .input-div input:valid ~ span {
    top: -10px;
    left: 6px;
    font-size: 10px;
    font-weight: 600;
}

.farm-sec .input-text .input-div span.span-file {
    position: absolute;
    top: -10px;
    left: 8px;
    font-size: 10px;
}

/* .input-text .input-div span.span-recommend{
    position: absolute;
        top: -10px;
        left: 8px;
        font-size: 10px;
} */

/* .input-div span {
    top: -15px;
    left: 6px;
    font-size: 10px;
} */

.farm-sec .buttons button {
    height: 40px;
    width: 100px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    margin-top: 40px;
}

.farm-sec .button_space {
    display: flex;
    gap: 20px;
}

.farm-sec .button_space button:nth-child(1) {
    background-color: #fff;
    color: #000;
    border: 1px solid#000;
}

.farm-sec .user_card {
    margin-top: 20px;
    margin-bottom: 40px;
    height: 200px;
    width: 100%;
    border: 1px solid #c7d3d9;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.farm-sec .user_card span {
    height: 80px;
    width: 100%;
    background-color: #dfeeff;
}

.farm-sec .circle {
    position: absolute;
    top: 40px;
    left: 60px;
}

.farm-sec .circle span {
    height: 70px;
    width: 70px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
}

.farm-sec .circle span img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.farm-sec .social {
    display: flex;
    position: absolute;
    top: 100px;
    right: 10px;
}

.farm-sec .social span {
    height: 30px;
    width: 30px;
    border-radius: 7px;
    background-color: #fff;
    border: 1px solid #cbd6dc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    color: #cbd6dc;
}

.farm-sec .social span i {
    cursor: pointer;
}

.farm-sec .heart {
    color: red !important;
}

.farm-sec .share {
    color: red !important;
}

.farm-sec .user_name {
    position: absolute;
    top: 110px;
    margin: 10px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.farm-sec .user_name h3 {
    color: #4c5b68;
}

.farm-sec .detail {
    /*margin-top:10px;*/
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
}

.farm-sec .detail p {
    font-size: 12px;
    font-weight: 700;
}

.farm-sec .detail p a {
    text-decoration: none;
    color: blue;
}

.farm-sec .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.farm-sec .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
}

.farm-sec .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.farm-sec .warning {
    border: 1px solid red !important;
}

/*right-side-end*/
@media (max-width: 750px) {
    .farm-sec .container {
        height: scroll;
    }

    .farm-sec .container .card {
        max-width: 350px;
        height: auto !important;
        margin: 30px 0;
    }

    .farm-sec .container .card .right-side {
        width: 100%;
    }

    .farm-sec .input-text {
        display: block;
    }

    .farm-sec .input-text .input-div {
        margin-top: 20px;
    }

    .farm-sec .container .card .left-side {
        display: none;
    }
}

/* 404 */
.error-404 {
    padding: 100px 0px;
    background-color: #252525;
}

.select {
    width: 100%;
    outline: 0;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #282828;
    box-sizing: border-box;
    padding: 15px 15px 15px 25px;
    color: #ffffff;
}

#search-button {
    display: block;
    margin: 0 auto;
    line-height: 1;
}

/* search-trainers */
.zee-col {
    margin-bottom: 15px;
}

.flip-card {
    height: 390px;
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: black;
}
.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}
.flip-card-back label,
.flip-card-back span svg {
    font-size: 12.46px;
    font-weight: 400;
    line-height: 22.42px;
    color: var(--white);
}
#zee-trainers .reps-t-name {
    font-size: 22px;
}

/* pagination */

#pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-top: 16px;
}

button.btn.btn-link.pagination-link {
    font-size: 16px;
    color: #d0d0d0;
    position: relative;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 10px;
    border: 1px solid #84194380;
}

button.btn.btn-link.pagination-link:hover,
button.btn.btn-link.pagination-link.active {
    background-color: #84194380;
    text-decoration: underline;
}

/* select2 */
span.select2-selection.select2-selection--multiple {
    background-color: #282828;
    color: #fff;
    border: 1px solid #333 !important;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 15px 15px 25px;
    display: block;
    width: 100%;
    background-clip: padding-box;
    padding-left: 2.5rem;
    height: 56px;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: unset !important;
    margin-top: unset !important;
}

.farm-sec .select2-container {
    width: 100% !important;
}

.input-div.mt-20 {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.select2-selection--multiple[aria-expanded="false"]
    span.select2-search.select2-search--inline {
    z-index: 1;
}

span.select2-search.select2-search--inline {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: -1;
}

textarea.select2-search__field::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

/* search-trainer Model */

.user-card-full {
    overflow: hidden;
}

.modal-serch-trainer .card {
    border: none;
}

.modal-serch-trainer .m-r-0 {
    margin-right: 0px;
}

.modal-serch-trainer .m-l-0 {
    margin-left: 0px;
}

.modal-serch-trainer .bg-c-lite-green {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#841943),
        to(#252525)
    );
    background: linear-gradient(to right, #252525, #841943);
}

.modal-serch-trainer .user-profile {
    padding: 20px 0;
}

.modal-serch-trainer .card-block {
    padding: 20px;
}

.modal-serch-trainer .modal-body {
    padding: 0;
}

.modal-serch-trainer .st_title {
    padding-bottom: 5px;
    margin: 20px 0px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

.modal-serch-trainer .st_para {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212529;
}

.st_subtitle {
    color: #919aa3;
    font-size: 14px;
}

.user-card-full .col-md-8 {
    padding: 0px 15px;
}

.modal-serch-trainer .social-link {
    margin-top: 40px;
    margin-bottom: 10px;
}

.modal-serch-trainer .social-link li {
    display: inline-block;
}

.modal-serch-trainer .social-link li a {
    font-size: 20px;
    margin: 0 10px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: var(--primary);
}

.modal-serch-trainer .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.modal-serch-trainer .modal-content {
    border-radius: 5px;
    border: none;
}

.modal-serch-trainer .modal-content img {
    width: 100%;
    height: auto;
}

.modal-serch-trainer .st_dpgroup {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
}

.modal-serch-trainer .st_dptitle {
    font-size: 14px;
    font-weight: 600;
}

.modal-serch-trainer .st_dpeducation {
    line-height: 25px;
}

.modal-serch-trainer .mxw-800 {
    max-width: 800px;
}

.modal-serch-trainer .modal-header {
    border-bottom: none;
}

.reps-t-img-box img {
    width: 100%;
}

.st_tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

p.st_specialization {
    font-size: 12px;
    font-weight: 500;
    color: #282828;
    background-color: #888;
    padding: 6px 8px;
    border-radius: 8px;
    line-height: 1;
}

/* Updated */

.error-message {
    color: red !important;
    margin-top: 5px;
    font-size: 15px;
}

#terms-and-conditions li {
    position: relative;
    padding-left: 50px;
    line-height: 50px;
}

#terms-and-conditions li span {
    position: absolute;
    left: -16px;
}

.reps-trainers .nav-pills .nav-link {
	color: #ffffff;
    padding: 1.5rem 0.5rem;
    border-radius: 0px;
}
.reps-trainers .nav-pills .nav-link.active, 
.reps-trainers .nav-pills .show>.nav-link {
	background-color: #841943; padding:  1.5rem 0.5rem; 
}
.reps-trainers .well {
    border: 5px solid #841943;
    border-radius: 0 !important;
	background-color: #84194373;
}