:root {
    --primaryColor: #2e318c;
    --secondaryColor: #0090e0;
    --lightBlue: #c2e5f6;
    --black: #000000;
    --white: #ffffff;
}

html {
    overflow-x: hidden;
}

body, html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    padding: 0;
    margin: 0;
    background: var(--white);
    scroll-behavior: smooth;
    max-width: 100vw;
}

* {
    position: relative;
    z-index: 1;
}

img {
    height: auto;
}

.btnCustom {
    border: 1px solid var(--secondaryColor) !important;
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    border-radius: 0;
    padding: 1.2em 1.5em;
    box-shadow: none !important;
    outline: none !important;
    background-image: linear-gradient( to right, var(--primaryColor) 50%, var(--secondaryColor) 50% );
    background-size: 220% auto;
    background-position: right center;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in-out;
}

.btnCustom:hover {
    background-position: left center;
    color: #fff;
}


/*-- HEADER --*/
.headerSection {
    position: absolute;
    z-index: 99;
    inset: 0 auto auto 0;
    width: 100%;
    background: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.fixedHeader {
    position: fixed;
    z-index: 999;
    inset: 0 auto auto 0;
    width: 100%;
    background: var(--white);
    padding-block: 1rem;
    box-shadow: rgba(99, 99, 99, 0) 0px 2px 8px 0px;
    transform: translateY(-110%);
    transition: all 0.3s ease-in-out;
}

.fixedHeader.scrolled {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transform: translateY(0);
}

.headerSection .row {
    height: 7.875rem;
    transition: all 0.3s ease-in-out;
}

.headerSection img {
    width: 10.375rem;
}

.fixedHeader img {
    width: 8rem;
}

.headerSection .btnCustom,
.fixedHeader .btnCustom {
    background-image: linear-gradient( to left, var(--primaryColor) 50%, var(--secondaryColor) 50% );
    border-color: var(--primaryColor) !important;
}

.headerSection p a, .fixedHeader p a {
    text-decoration: none;
    color: var(--black);
}

.headerSection p a.active, .fixedHeader p a.active {
    color: var(--secondaryColor);
    font-weight: 700;
}

/*-- Banner --*/

.bannerSection {
    padding-top: 7.875rem;
    background: var(--primaryColor);
}

.bannerContent {
    padding: 9rem 0;
}

.bannerContent .bannerPatternLeft,
.patternLeft {
    position: absolute;
    content: "";
    inset: 0 50% 0 0;
    z-index: 1;
    opacity: 0.3;
    background-image:  linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(to left, var(--white) 1px, transparent 1px);
    background-size: 4.6rem 6rem;
    background-position: right top;
    transform: translateX( calc( -600px - 8.125rem ) );
}

.bannerContent .bannerPatternRight,
.patternRight {
    position: absolute;
    content: "";
    inset: 0 0 0 50%;
    z-index: 5;
    opacity: 0.3;
    background-image:  linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(to right, var(--white) 1px, transparent 1px);
    background-size: 4.6rem 6rem;
    background-position: left top;
}

.bannerContent .bannerPatternLeft::after,
.bannerContent .bannerPatternRight::after,
.patternLeft::after,
.patternRight::after {
    position: absolute;
    content: "";
    z-index: -1;
    inset: 0;
    background: radial-gradient( #fff 7%, transparent 7%);
    background-size: 1.533rem 2rem;
    background-position: right top;
}

.bannerContent .bannerPatternRight::after,
.patternRight::after {
    background-position: left top;
}

.bannerContent .container {
    z-index: 2;
}

.bannerContent h1 {
    font-size: 3rem;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 2rem;
}

.bannerContent h5 {
    font-size: 1.5rem;
    line-height: 1.16;
    margin-bottom: 1.5rem;
}

.bannerContent img {
    position: absolute;
    z-index: 3;
    inset: 0 auto auto 50%;
    width: 50vw;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.bannerSection .carousel-indicators {
    margin: 0 !important;
    right: auto;
    left: 50%;
    transform: translateX(-600px);
    bottom: 4.5rem;
}

.bannerSection .carousel-indicators [data-bs-target] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 10px;
    opacity: 1;
    border: none;
    transition: all 0.6s ease-in-out;
}

.bannerSection .carousel-indicators [data-bs-target].active {
    width: 1.5rem;
}

/*-- FORM --*/
.formSection {
    z-index: 3;
}

.formWrap {
    position: absolute;
    right: 0;
    bottom: 0rem;
    width: 450px;
    padding: 6.875rem 1.875rem 1.875rem 1.875rem;
}

.formWrap::after {
    position: absolute;
    inset: 5rem 0 0 0;
    background: #0090E0B3;
    content: "";
}

.formWrap .headText {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 1.35rem;
}

.formWrap .form-control {
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    margin-bottom: 0.5rem;
    appearance: none;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: #808080;
    resize: none;
    height: 41px;
}

.formWrap .form-control::placeholder {
    color: #808080;
    opacity: 1;
}
  
.formWrap .form-control:-ms-input-placeholder {
    color: #808080;
}
  
.formWrap .form-control::-ms-input-placeholder {
    color: #808080;
}

.formWrap .form-check-label,
.formWrap .form-check-label a {
    color: var(--white);
}

.formWrap .form-check-input {
    background-color: transparent;
    border-radius: 0;
    border-color: #fff;
}

.formWrap .btnSubmit {
    background-image: linear-gradient( to left, var(--white) 50%, var(--primaryColor) 50% );
    padding: 0.8em 1.5em;
    background-position: left center;
    color: #fff;
}

.formWrap select.form-control {
    background-image: url(../assets/icons/dropdown.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 65%;
}

.formWrap .countryCode {
    max-width: 100px;
    position: relative;
    margin-bottom: 0.5rem;
}

.formWrap .countryCode > .form-control {
    opacity: 0 !important; 
    position: relative;
    z-index: 2;
    margin: 0 !important;
}

.formWrap .countryCode > span {
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: white;
    font-size: 0.85rem;
    color: #808080;
    align-items: center;
    padding-left: 18px;
    padding-right: 1rem;
    white-space: nowrap;
    overflow: hidden;
}

.formWrap .countryCode > span::after {
    position: absolute;
    content: "";
    right: 0;
    top: 17.5%;
    height: 65%;
    aspect-ratio: 1;
    background-color: white;
    background-image: url(../assets/icons/dropdown.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}


/*-- OVERVIEW --*/

.regularSection {
    padding: 4rem 0;
}

.headText {
    color: var(--primaryColor);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.3rem;
}

/*-- HIGHLIGHTS --*/

.highlights {
    background: var(--secondaryColor);
    counter-reset: hb;
}

.highlightBox {
    padding-top: 2.5rem;
}

.highlightBox:nth-child(3n) h3 {
    width: 15rem !important;
}

.highlightBox:nth-child(3n+1) h3 {
    width: 20rem !important;
}

.highlightBox:nth-child(3n+2) h3 {
    width: 20rem !important;
}

.highlightBox h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding-left: 5rem;
    counter-increment: hb;
}

.highlightBox h3::before {
    content: counter(hb);
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--lightBlue);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--lightBlue);
    font-size: 7.185rem;
    line-height: 0.8;
    text-align: center;

}

.highlightBox:first-child h3::before {
    width: 5rem;
    text-align: center;
}



/*-- DETAILS --*/
.details-tab {
    border: none !important;
}

.details-tab .nav-link {
    min-width: 22.4rem;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white);
    background: var(--lightBlue);
    border: none;
    border-radius: 0;
    font-weight: 700;
    padding: 0.6em;
    margin-right: 0.5rem;
}

.details-tab .nav-link.active {
    background: var(--secondaryColor);
    color: var(--white);
}

.details-tab-content {
    background: var(--primaryColor);
    color: var(--white);
    padding: 2.75rem;
}

.details-tab-content * {
    margin: 0;
}

.details-tab-content ul li {
    padding-left: 1rem;
    padding-bottom: 0.7rem;
}

.details-tab-content ul li:last-child {
    padding-bottom: 0;
}

/*-- CLASS PROFILE --*/
.profileGroup {
    padding: 2rem;
    min-height: 20.625rem;
    background: var(--lightBlue);
}

.profileSelector {
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: var(--white);
    background-image: url(../assets/images/2985150.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: auto 65%;
    appearance: none;
    --webkit-appearance: none;
    font-size: 1.125rem;
    height: 2.2rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

/*-- BENEFITS --*/
.benefitsSection {
    background: var(--primaryColor);
}

.benefitsBox {
    padding-left: 2rem !important;
    border-left: 1px solid var(--white);
}

.benefitsBox h5 {
    font-size: 1.5rem;
    line-height: 1.1;
}

.adBox {
    background: var(--primaryColor);
    height: 100%;
    padding: 3rem 2rem 3rem 3rem;
}

.adBox h6 {
    font-size: 1.375rem;
    line-height: 1.18;
    color: var(--lightBlue);
    font-weight: 700;
    margin: 1rem 0;
}

.adBox p {
    font-size: 0.85rem;
}

.adBox p a {
    color: #fff;
    text-decoration: none;
}

.adBox ul {
    margin: 0;
    padding-left: 1rem;
}

.adBox li {
    padding-left: 0.5rem;
}

/*-- TESTIMONIALS --*/
.testimonialItem {
    background: var(--lightBlue);
    padding: 3.125rem;
}

.testimonialItem img {
    width: 5rem !important;
}

.testimonialItem .testimonialMeta {
    margin-top: 2.5rem;
    min-height: 90px;
}

.testimonialMeta h6 {
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 1rem;
    margin: 0;
}

.testimonialMeta h6 strong {
    color: var(--primaryColor);
}

.testimonialItem p {
    line-height: 1.75;
    min-height: 175px;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 10px;
    opacity: 1;
    border: none;
    background: var(--black);
    transition: all 0.6s ease-in-out;
    margin: 0px 3px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 1.5rem;
    background: var(--black);
    opacity: 1;
}

/*-- ABOUT AMP --*/
.aboutSection {
    overflow-x: hidden;
    max-width: 100vw;
}

.aboutAMP {
    width: auto;
    height: 26.625rem;
    margin-left: 1rem;
}

/*-- FOOTER --*/
.footerSection {
    background: var(--primaryColor);
    padding: 2rem 0;
}

.footerSection h2 {
    font-size: 2.25rem;
    line-height: 1;
    font-weight: bold;
}

.footerSection p {
    font-size: 1.125rem;
    line-height: 1;
}

.footerSection p a {
    color: #fff;
    text-decoration: none;
}

/*-- THANKYOU --*/

.thankyouHeader {
    background: var(--primaryColor);
    border-bottom: 1px solid #5557a1;
}

.thankyouHeader .container {
    height: 6rem;
}

.thankyouHeader img {
    width: 11.875rem;
}

.thankyouHeader .patternRight {
    inset: 0 0 0 60%;   
}

.thankyouPage .footerSection {
    background: var(--secondaryColor);
}

.thankWrap {
    background: var(--primaryColor);
    padding: 6rem 0;
}

.thankWrap .btnCustom {
    min-width: 280px;
    margin: 5px 0px;
    background-size: 220% 100%;
    border: none !important;
}

.thankWrap .btnCustom::after {
    position: absolute;
    content: "";
    inset: 0;
    border: 1px solid var(--secondaryColor);
}

.thankWrap .btnCustom.alt {
    background-image: linear-gradient(to left, transparent 50%, var(--secondaryColor) 50%) !important;
}

.thankWrap .patternRight {
    background-position: left -1px;
    inset: 0 0 0 60%;
    z-index: 1;
}

.thankWrap .patternLeft {
    background-position: right -1px;
    z-index: 1;
}

.thankWrap .container {
    z-index: 3;
}

.thankWrap h1 {
    font-size: 5.25rem;
    font-weight: 700;
}

.thankWrap p {
    font-size: 1.13rem;
}

.eventData {
    background: var(--white);
    padding: 1.3rem 2.2rem 1.7rem 3rem;
    margin-left: 2.2rem;
}

.eventData h6 {
    font-size: 1rem;
    font-weight: 700;
}

.eventData p {
    margin: 0;
    font-size: 1rem;
}

.eventMeta {
    position: absolute;
    z-index: 2;
    background: var(--secondaryColor);
    color: var(--white);
    left: 0;
    top: 0;
    bottom: 2rem;
    width: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.eventMeta h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.eventMeta h5 {
    text-transform: uppercase;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
}

.thankyouPage .owl-carousel .owl-nav button {
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    margin: 0 30px;
    background: transparent !important;
}

.copy-text p {
    margin: 0;
    font-size: 11px;
}



/*------------------------- 12 FEB 2024 ---------------*/


/*------------------ FAB --------------*/

.fab_download {
    position: fixed;
    right: 0;
    bottom: 50%;
    transform: translateX(110%) translateY(50%);
    z-index: 999;
    width: 85px;
    background: var(--primaryColor);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    transition: transform 0.5s ease-in-out;
}

.fab_download.scrolled {
    transform: translateX(0%) translateY(50%);
}

.fab_download .fab_d_icon img {
    width: 35px;
    height: 35px;
}

.fab_d_text p {
    text-transform: capitalize;
    line-height: 1;
    font-weight: 400;
    color: white;
    text-align: center;
    font-size: 13px;
}


/*----- INFO SECTION ------*/
.infoSection {
    background: #F0F1F1;
}

.infoSection .container_inner {
    padding-right: 420px;
}

.infoSection h5 {
    font-weight: 700;
    color: var(--primaryColor);
}

/*--------- OVERVIEW ----------*/

.overview_inner {
    width: 460px;
    padding-left: 100px;
}

.overview_inner h4 {
    color: var(--primaryColor);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.05em;
    line-height: 1;
}

.overview_inner h6 {
    font-weight: 400;
    color: var(--primaryColor);
    font-size: 0.95rem;
    margin: 0;
}

.overview_inner_box,
.overview_inner_divider {
    width: 140px;
}

.overview_inner_divider {
    padding: 1.9rem;
}

.overview_inner_divider::after {
    position: absolute;
    content: "";
    width: 45%;
    height: 1px;
    background: var(--secondaryColor);
    left: 0;
    top: 50%;
}

.overview_p {
    line-height: 1.7;
}

/*-------------- ASSOCIATES --------------*/

.associates img {
    width: auto;
    height: 3.4rem;
}

.associates .d-flex {
    gap: 2rem;
}

.associates h5 {
    font-size: 1.1rem;
    color: #58595B;
    border-bottom: 1px dotted #808081;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.ass_divider {
    height: 3.4rem;
    border-left: 1px dotted #808081;
}

#details {
    background-color: #f0f1f1;
}