/* ...................... end common style  ...................... */

:root {
    /* text colors */
    --c_primary: #9154E0;
    --c_secondary: #2B1D74;
    --c_gray: #334155;
    --c_lightGray: #334155b3;
    --c_light: #3341551a;
    --c_gray2: #64748B;
    --c_light2: #CBD5E1;
    --c_white: #ffffff;
    /* backgroundc colors */
    --bg_primary: #9154E0;
    --bg_secondary: #2B1D74;
    --bg_gray: #23195e;
    --bg_light: #f5f5f5;
    --bg_white: #ffffff;
    /* font sizes */
    --pg_title: 68px;
    --sec_title: 64px;
    --fs_2xl: 30px;
    --fs_xl: 24px;
    --fs_lg: 20px;
    --fs_md: 18px;
    --fs_def: 16px;
    --lh_def: 150%;
    --lh_sm: 140%;
    --text_justify: justify;
    /* padding margin */
    --sec_p: 75px;
    --sec_p_md: 50px;
    --p_2xl: 30px;
    --m_3xl: 64px;
    --m_2xl: 30px;
    --m_xl: 24px;
    --m_1: 1em;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: var(--lh_def);
}

p {
    line-height: 155%;
    text-align: justify;
}


/* text and background colors */

.c_primary {
    color: var(--c_primary);
}

.c_secondary {
    color: var(--c_secondary);
}

.c_gray {
    color: var(--c_gray);
}

.c_lightGray {
    color: var(--c_lightGray);
}

.c_light {
    color: var(--c_light);
}

.c_gray2 {
    color: var(--c_gray2);
}

.c_light2 {
    color: var(--c_light2);
}

.c_white {
    color: var(--c_white);
}

.bg_primary {
    background-color: var(--bg_primary);
}

.bg_secondary {
    background-color: var(--bg_secondary);
}

.bg_gray {
    background-color: var(--bg_gray);
}

.bg_white {
    background-color: var(--bg_white);
}


/* font sizes */

.pg_title {
    font-size: var(--pg_title);
}

.sec_title {
    font-size: var(--sec_title);
    margin-bottom: 1em;
    padding-bottom: 0.5781em;
    background-image: url("../img/sec_title_bg.svg");
    background-repeat: no-repeat;
    background-size: auto 0.5781em;
    background-position: left bottom;
}

.sec_title.text-center {
    background-position: center bottom;
}

.fs_2xl {
    font-size: var(--fs_2xl);
}

.fs_xl {
    font-size: var(--fs_xl);
}

.fs_lg {
    font-size: var(--fs_lg);
}

.fs_md {
    font-size: var(--fs_md);
}

.fs_def {
    font-size: var(--fs_def);
}

.fw_extraBold {
    font-weight: 800;
}

.fw_black {
    font-weight: 900;
}

.lh_def {
    line-height: var(--lh_def);
}

.lh_sm {
    line-height: var(--lh_sm);
}

.text_justify {
    text-align: justify;
}


/* padding margin */

.sec_py {
    padding: var(--sec_p) 0px;
}
.sec_pt {
    padding-top: var(--sec_p);
}

.sec_pt_2 {
    padding-top: calc(2 * var(--sec_p));
}

.sec_pb_2 {
    padding-bottom: calc(2 * var(--sec_p));
}

.sec_py_md {
    padding: var(--sec_p_md) 0px;
}

.sec_mb {
    margin-bottom: var(--sec_p);
}

.py_2xl {
    padding: var(--p_2xl) 0px;
}

.mb_3xl {
    margin-bottom: var(--m_3xl);
}

.mb_2xl {
    margin-bottom: var(--m_2xl);
}

.mb_xl {
    margin-bottom: var(--m_xl);
}

.mb_1 {
    margin-bottom: var(--m_1);
}


/* buttons */

.btn_def {
    padding: 0.85em 3em;
    border-radius: 0.8em;
    border: 2px solid transparent;
    font-weight: 700;
}

.btn_primary {
    color: var(--c_white);
    background-color: var(--bg_primary);
    border-color: var(--c_white);
}

.btn_primary:hover {
    color: var(--c_primary);
    background-color: var(--c_white);
    /*border-color: var(--c_primary);*/
}

.btn_primary_outline {
    color: var(--c_primary);
    border-color: var(--c_primary);
}

.btn_primary_outline:hover {
    color: var(--c_white);
    background-color: var(--bg_primary);
}


/* extra */

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dot {
    font-size: 16px !important;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--bg_light) !important;
    margin: 0px 0.5em;
}

.owl-carousel .owl-dot.active {
    background-color: var(--bg_primary) !important;
}

.inline_icon {
    height: 1em;
}


/* ...................... end common style ...................... */

.header {
    padding: 22px 0px;
    background-color: var(--bg_white);
}

.brand_logo {
    font-size: 50px;
    line-height: 1;
    height: 1em;
    /*width: 1.48em;*/
    -o-object-fit: contain;
    object-fit: contain;
}

.header .navbar-nav {
    padding-left: 160px;
}

.header .nav-item {
    padding-right: 30px;
}

.header .nav-link {
    color: var(--c_secondary);
    font-weight: 500;
    padding: 0.5em 0.5em !important;
    border-radius: 0.3em;
}

.header .nav-link:hover {
    background-color: var(--bg_light);
}

.header .nav-link.active {
    color: var(--c_primary);
}

.header_backDrop {
    display: none;
}

.fixed_socialLink {
    position: fixed;
    z-index: 3;
    top: 80%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    padding: 1em;
    border-radius: 1.125em 0rem 0em 1.125em;
    background: var(--c_primary);
    text-decoration: none;
}

.fixed_socialLink:hover {
    background: #016296;
}

.fixed_socialLink img {
    height: 2.25em;
}
.main{
    max-width: 100vw;
    overflow: hidden;
}
.banner_sec {
    background-image: url("../img/home/bg_circle.svg");
    background-repeat: no-repeat;
    background-size: 188px;
    background-position: right 48px bottom;
}

.banner_content {
    padding: 100px 0px;
    height: 100vh;
    max-height: 964px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    background-image: url("../img/home/banner_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 0px 380px 0px;
    background-position: center;
}

.reason_list {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.reason_item {
    padding: 24px 60px 0px 60px;
}

.reason_itemBox {
    max-width: 70%;
    position: relative;
    padding: 39px 64px 39px 87px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 69px 114px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 69px 114px 0px rgba(0, 0, 0, 0.08);
}

.reason_item:nth-child(2n) .reason_itemBox {
    margin-left: auto;
}

.reason_num {
    position: absolute;
    top: -0.1935em;
    left: -0.5161em;
    color: var(--c_light);
    font-size: 124px;
    font-weight: 700;
    line-height: 108.065%;
    letter-spacing: -0.045em;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.reason_item:nth-child(2n) .reason_num {
    left: initial;
    right: -0.5161em;
}

.reason_title {
    margin-bottom: 0.6667em;
}

.reason_title::after {
    content: "";
    display: block;
    width: 89px;
    height: 3px;
    margin-top: 1em;
    border-radius: 5px;
    background-color: var(--bg_primary);
}

.service_item {
    font-size: 162px;
    margin: 0.3951em 0.0926em;
    background: var(--bg_gray);
    -webkit-box-shadow: 0px 0.1667em 0.3704em 0rem rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0.1667em 0.3704em 0rem rgba(0, 0, 0, 0.06);
    padding: 0.4321em 0.1em;
    border-radius: 3.0864em;
    text-align: center;
}

.service_itemImg {
    width: 1em;
    height: 1em;
    line-height: 1em;
    margin-top: -0.8272em;
    margin-bottom: 0.1543em;
}

.service_itemTitle {
    color: var(--c_light2);
    font-size: 0.15em;
    font-weight: 700;
    line-height: 134.286%;
}

.contact_infoBox {
    border-radius: 20px 20px 60px 60px;
    border-top: 24px solid var(--c_primary);
    padding: 34px 52px 236px 52px;
    background-color: var(--bg_white);
    -webkit-box-shadow: 0px 36px 114px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 36px 114px rgba(0, 0, 0, 0.08);
}

.contact_infoIcon {
    font-size: 60px;
    width: 1em;
    height: 1em;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0.6em;
}

.contact_mapBox {
    padding: 0px 52px;
    margin-top: -175px;
}

.contact_mapBox iframe {
    width: 100%;
    border-radius: 50px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

@media(min-width:992px) {
    .sec_title.text-lg-start {
        background-position: left bottom;
    }
}
@media(min-width:1200px) {
    .container {
        max-width: 1036px;
    }
}

@media(min-width:1800px) {
    .container {
        max-width: 1544px;
    }
}

@media(max-width:1799.98px) {
   :root {
    --pg_title: 45px;
    --sec_title: 42px;
    --fs_2xl: 20px;
    --fs_xl: 18px;
    --fs_lg: 14px;
    --fs_md: 13px;
    --fs_def: 13px;
    --sec_p: 50px;
    --sec_p_md: 40px;
    --p_2xl: 24px;
    --m_3xl: 48px;
    --m_2xl: 18px;
    --m_xl: 16px;
}
.header {
    padding: 14px 0px;
}
.brand_logo {
    font-size: 33px;
    height: 1.5em;
}
.header .navbar-nav {
    padding-left: 90px;
}
.fixed_socialLink {
    font-size: 12px;
}
.banner_sec {
    background-size: 124px;
    background-position: right 32px bottom;
}
.banner_content {
    padding: 80px 0px;
    max-height: 645px;
    border-radius: 0px 0px 280px 0px;
}
.reason_num {
    font-size: 82px;
}
.reason_item {
    padding: 14px 40px 0px 40px;
}
.reason_itemBox {
    padding: 30px 32px 30px 54px;
}
.service_item {
    font-size: 108px;
}
.owl-carousel .owl-dot {
    font-size: 12px !important;
}
.contact_infoBox {
    border-top: 17px solid var(--c_primary);
    padding: 26px 40px 210px 40px;
}
.contact_mapBox {
    padding: 0px 40px;
    margin-top: -155px;
}
.contact_infoIcon {
    font-size: 46px;
}
.contact_mapBox iframe {
    height: 300px;
}
}

@media (max-width:1199.98px) {
    .header .navbar-nav {
        padding-left: 0px;
        text-align: center;
    }
    .header .nav-item {
        margin-bottom: 16px;
    }
    .header_navContent {
        position: fixed;
        z-index: 1000;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-color: var(--bg_white);
        width: 300px;
        padding: 20px 16px;
    }
    .header_navContent .navbar-toggler {
        display: block;
        margin-left: auto;
    }
    .header .header_navContent {
        -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
        transform: translateX(110%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        overflow-y: auto;
    }
    .header .expand .header_navContent {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .header .expand .header_backDrop {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background-color: #00000080;
    }
}

@media (max-width:991.98px) {
    .reason_itemBox {
        padding: 30px 32px 30px 44px;
        max-width: 90%;
    }
    .border_md_none {
        border-right: none !important;
    }
}

@media(max-width:767.98px) {
    .reason_itemBox {
        padding: 30px 32px 30px 30px;
        max-width: 100%;
    }
    .reason_item {
        margin-bottom: 30px;
    }
}

@media(max-width:575.98px) {
   :root {
    --pg_title: 42px;
    --sec_title: 36px;
}
.banner_content {
    place-items: flex-start;
}
.reason_item {
    padding: 14px 10px;
}
.reason_num {
    top: -0.4em;
    left: 0px;
    right: initial;
}
.reason_item:nth-child(2n) .reason_num {
    left: 0;
}
.contact_infoBox {
    padding: 26px 16px 210px 16px;
}
.contact_mapBox {
    padding: 0px 16px;
}
}

/*Cookie Confirm Button*/

.confirm {
  border-radius: 0.8em;
}

.confirm:hover {
  opacity: 80%;
}

.learn-more:hover {
  opacity: 80%;
}

.flagicon {
    width: 25px;
    margin-bottom: 8px;
}

.footernaming {
    color: white;
    font-size: 0.5em;
    padding-top: 10px;
    text-align: center;
}