@font-face {
    font-family: 'apercu-regular';
    src: url(../font/Apercu-Regular.otf);
}
@font-face {
    font-family: 'apercu-medium';
    src: url(../font/Apercu-Medium.otf);
}
@font-face {
    font-family: 'apercu-light';
    src: url(../font/Apercu-Light.otf);
}
@font-face {
    font-family: 'apercu-bold';
    src: url(../font/Apercu-Bold.otf);
}
@font-face {
    font-family: 'helvetica';
    src: url(../font/Helvetica.ttf);
}

body {
    font-family: 'apercu-regular';
    font-size: 14px;
    color: #0C0F0D;
    overflow-x: hidden;
}
/* .content-wrapper {
    overflow-x: hidden;
} */
/* Global css */

.btn-primary {
    background-color: #0C0F0D;
    border-color: #0C0F0D;
}
.btn-primary:hover {
    background-color: transparent;
    color: #0C0F0D;
    border-color: #0C0F0D;
}
.btn-primary:focus {
    box-shadow: none;
    border-color: #0C0F0D;
}

/* End of Global css */

.navbar {
    padding: 50px 0;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.navbar-brand {
    font-family: 'apercu-Regular';
    font-size: 20px;
    text-transform: uppercase;
    color: #fff !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.navbar-brand .circle-logo {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #1BD571;
    margin-left: 1px;
    margin-top: -2px;
}
.navbar-nav {
    gap: 25px;
}
.navbar-nav .nav-item a {
    font-family: 'apercu-light';
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    position: relative;
}
.nav-item .nav-link:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    left: 9px;
    background-color: #fff;
    bottom: 0;
    transition: .3s;
}
.navbar-nav .nav-item a:hover:after {
    width: 70%;
    transition: .3s;
}
.navbar-nav .btn-primary {
    width: 110px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    font-size: 11px;
    border-radius: 50px;
    line-height: 35px;
    text-transform: uppercase;
}
.navbar-nav .btn-primary:hover {
    border-color: #1BD571;
    background-color: #1BD571;
    color: #fff;
}

/** Content Styles **/

.hero-banner {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item,
.slides {
    height: 100%;
}
.hero-banner .slides {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-banner video {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#counter {
    font-family: 'helvetica';
    font-weight: 300;
    position: absolute;
    bottom: 45px;
    z-index: 9;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: #fff;
}
#counter .current {
    font-size: 45px;
    margin-right: 4px;
    letter-spacing: 4.9px;
    line-height: 1;
}
#counter .totalSlides {
    font-family: 'apercu-light';
    font-size: 20px;
}
.scroll-down {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    text-align: center;
    bottom: 25px;
    width: 30px;
    margin: 0 auto;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.bn-text {
    text-align: center;
    border-right: 1px solid;
    padding: 25px;
    width: 50%;
}
.bn-text h1 {
    font-size: 122px;
    margin-bottom: 25px;
    letter-spacing: 13.5px;
}
.bn-circle-img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    margin-bottom: 36px;
}

.bn-text p{
    font-family: 'apercu-light';
    font-size: 20px;
    margin: 0;
} 
.bn-title {
    padding-left: 45px;
}
.bn-title span {
    font-size: 20px;
    letter-spacing: 1.2px;
    font-family: 'apercu-medium';
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}
.bn-title h1 {
    font-family: 'apercu-bold';
    font-size: 90px;
    letter-spacing: 5.4px;
    line-height: 80px;
}

.owl-next {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: rotate(180deg);
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}
.owl-next:hover{
    transform: scale(1.3) rotate(180deg);
    transition: .5s;
}
.owl-prev:hover {
    transform: scale(1.3);
    transition: .5s;
}
.owl-prev {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: rotate(0deg);
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}
.owl-nav .disabled {
    opacity: .5;
}

.in-section {
    padding: 150px 0 0;
}
.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.title-block .title {
    font-family: 'apercu-medium';
    font-size: 90px;
    line-height: 103px;
    color: #0C0F0D;
}
.title-block .subtitle {
    font-family: 'apercu-light';
    font-size: 20px;
    margin-top: 10px;
}
.italic-text {
    font-family: 'apercu-light';
    font-style: italic;
    font-size: 30px;
    line-height: 46px;
    margin: 0;
    width: 50%;
    text-align: right;
    margin-top: 20px;
}
.italic-text span {
    color: #747474;
}
.service-row {
    gap: 50px;
    margin-top: 70px;
}
.service-block {
    background-color: #EFEFEF;
    padding: 40px;
    border-radius: 30px;
}
.service-icon {
    width: 68px;
    height: 68px;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-flex {
    margin-top: 125px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.service-flex p{
    margin: 0;
    font-size: 24px;
    line-height: 29px;
}
.service-explore {
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.service-explore img {
    width: 28px;
    height: 28px;
    transition: .5s;
}
.service-explore:hover img {
    transform: rotate(40deg) scale(1.1);
    filter: grayscale(1) brightness(0);
    transition: .5s;
}

.benefit-section {
    margin-top: 100px;
}

.bnf-divider {
    display: block;
    background-color: #707070;
    height: 1px;
    width: 50%;
    margin-bottom: 25px;
}
.bnf-block {
    margin-bottom: 80px;
}
.bnf-block h3 {
    font-family: 'apercu-medium';
    font-size: 30px;
    margin-bottom: 20px;
}
.bnf-block p{
    font-family: 'apercu-regular';
    font-size: 20px;
    color: #747474;
    margin-bottom: 28px;
}
.bnf-block .btn-outline {
    width: 48px;
    height: 48px;
    border: 1px solid #acacac;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
}
.bnf-block .btn-outline:hover {
    border-color: #1BD571;
    transition: .3s;
    transform: scale(1.05);
}
.bnf-block .btn-outline img {
    filter: invert(1);
    width: 17px;
    transform: rotate(180deg);
    transition: .3s;
}
.bnf-block .btn-outline:hover img {
    transform: rotate(180deg) translateX(-25px) scale(1.2);
    transition: .3s;
}
.bg-parallax {
    background-size: cover;
    margin-top: 20px;
    background-position: center bottom;
}
.bgp-block {
    padding-bottom: 600px;
    /* padding-bottom: 300px; */
}
.bg-parallax h1 {
    font-family: 'apercu-medium';
    font-size: 80px;
    line-height: 78px;
    margin-bottom: 40px;
    color: #fff;
    margin-bottom: 65px;
}
.btn-secondary {
    height: 70px;
    background: #1BD571;
    border-color: #1BD571;
    border-radius: 50px;
    width: 200px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-secondary:hover {
    background-color: #1AAD5E;
    border-color: #1AAD5E;
    color: #fff;
}
span.green-circle {
    width: 20px;
    height: 20px;
    background: #1BD571;
    display: inline-block;
    border-radius: 50px;
    margin-left: -20px;
}

.client-left .btn-primary {
    margin-top: 30px;
    margin-bottom: 47px;
    height: 70px;
    border-radius: 50px;
    font-size: 20px;
    width: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-left .h3 {
    font-size: 30px;
    margin: 0;
    line-height: 40px;
}
.client-outer {
    border: 1px solid #ACACAC;
    border-radius: 10px;
    padding: 15px 30px;
    height: 85px;
    margin-bottom: 20px;
}
.client-outer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: .3s;
}
.client-outer:hover img {
    filter: none;
    transition: .3s;
}
.client-section {
    padding-bottom: 130px;
}

.bg-gray {
    background-color: #FAFAFA;
}
.highlight-section {
    padding: 100px 60px;
    border-radius: 30px;
    margin-bottom: 190px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.highlight-section video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.high-text {
    position: relative;
    z-index: 1;
}
.high-text h1 {
    font-family: 'apercu-medium';
    font-size: 90px;
    line-height: 93px;
    color: #fff;
    margin-bottom: 55px;
}
.high-text p {
    font-size: 30px;
    color: #fff;
    margin-bottom: 100px;
    max-width: 450px;
}
.hg-care-block{
    padding-bottom: 150px;
}
.care-block {
    margin-top: 50px;
    background-color: #FFFFFF;
    padding: 32px 0 32px 30px;
    border-radius: 30px;
}
.care-block .col-care{
    padding: 40px;
    text-align: left;
    border-right: 1px solid gainsboro;
}
.care-block .col-care:last-of-type {
    border-right: none;
}
.care-outer h2 {
    color: #0C0F0D;
    font-family: 'apercu-medium';
    font-size: 43px;
}
.care-outer p{
    color: #747474;
    font-size: 20px;
    margin: 0;
}

footer .footer-green {
    background-color: #1BD571;
    padding: 70px;
}
.footer-green .title {
    color: #fff;
}
.footer-green .ft-btn-outline {
    width: 225px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin: 38px 0 65px 0;
}
.footer-green .ft-btn-outline:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0C0F0D;
}
.footer-green ul.social-links {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.footer-green ul.social-links li img {
    transition: .3s;
}
.footer-green ul.social-links li img:hover {
    transform: scale(1.5);
    transition: .3s;
}
.copyright {
    background: #0C0F0D;
    padding: 20px;
}
.copy-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p {
    margin: 0;
    color: #FFFFFF;
    font-size: 13px;
    font-family: 'apercu-light';
    opacity: 0.5;
}

.offcanvas-end {
    width: 505px !important;
    padding: 70px 50px 20px;
}

button.btn-close.text-reset {
    width: 30px;
    height: 30px;
    background-color: gainsboro;
    border-radius: 50px;
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 0;
    font-size: 12px;
}
.offcanvas-title {
    font-family: 'apercu-medium', sans-serif;
    font-size: 40px;
    line-height: 43px;
    color: #0C0F0D;
    margin-bottom: 20px;
}

.offcanvas-text p{
    font-size: 20px;
    color: #747474;
    line-height: 26px;
    margin: 0;
}

.input-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}
.input-block img {
    width: 20px;
    height: 20px;
    position: absolute;
}
.input-block input {
    padding: 15px;
    border: none;
    border-bottom: 1px solid #ACACAC;
    width: 100%;
    padding-left: 30px;
    outline: none;
    font-size: 20px;
}
.input-block input::placeholder {    
    color: #0C0F0D;
}
.input-block input:focus {
    border-bottom: 1px solid #0C0F0D;
}
.country-input {
    margin-bottom: 50px;
}
.country-input input{
    padding-left: 80px;
}
.country-number {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.country-number p {
    margin: 0;
    font-size: 20px;
}
.country-number img {
    position: relative;
}
.input-block textarea {
    border: 1px solid #ACACAC;
    border-radius: 8px;
    padding: 14px 20px;
    width: 100%;
    height: 124px;
    font-size: 20px;
}
.input-block textarea::placeholder {    
    color: #0C0F0D;
}

.ct-form .btn {
    margin-top: 50px;
    width: 100%;
    height: 50px;
    font-family: 'apercu-light';
}


.offcanvas-body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.offcanvas-body::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.offcanvas-body::-webkit-scrollbar-thumb
{
	background-color: #000;
	border-radius: 3px;
}
.aw-block {
    margin-bottom: 40px;
}
.award-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #EFEFEF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    margin-bottom: 35px;
}
.aw-block p{
    font-size: 18px;
    color: #0C0F0D;
    min-height: 230px;
    position: relative;
}
.aw-block p:after {
    content : '';
    width: 50%;
    height: 1px;
    background-color: #0C0F0D;
    position: absolute;
    bottom: 0;
    left: 0;
}
.aw-block.no-border p:after {
    display: none;
}
.aw-title-flex img{
   width: 410px; 
   margin-top: 160px;
}

.label-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.label-img p {
    margin: 0;
    font-size: 20px;
}


.ct-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
    .navbar-toggler {
        border: none !important;
        padding: 0 !important;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;    
    }
    .navbar-toggler span{
        filter: invert(1) brightness(100);
    }
    .navbar-nav {
        gap: 5px;
    }
    .navbar-nav .nav-item a{
        color: #fff;
    }
    .banner-content {
        flex-direction: column;
        justify-content: center; 
        width: 100%;      
    }
    .bn-text {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid;
        margin-bottom: 30px;
    }
    .bn-text h1 {
        font-size: 90px;
        margin-bottom: 0;
    }
    
    .bn-title {
        text-align: center;
        padding: 0;
    }
    .bn-title h1 {
        font-size: 60px;
        line-height: 55px;
    }
    .title-flex {
        flex-direction: column;
    }
    .italic-text {
        width: 100%;
        text-align: center;
    }
    .client-outer {
        padding: 15px;
    }
    .client-row {
        margin-top: 30px;
    }
    .care-block .col-care {
        border-right: none;
    }
    .aw-title-flex img{
        width: 60%;
        margin-top: 30px;
        margin-bottom: 50px;
    }
  }
  
  /* On screens that are 600px or less, set the background color to olive */
  @media screen and (max-width: 600px) {
    .content-wrapper {
        overflow-x: hidden;
    }
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .navbar {
        padding: 15px 0;
        background-color: rgb(0 0 0 / 30%);
    }
    .bn-title h1 {
        font-size: 45px;
        line-height: 45px;
    }
    .bn-text h1 {
        font-size: 56px;
    }
    .bn-text p {
        font-size: 14px;
    }
    .owl-next {
        right: 4%;
    }
    .owl-prev {
        left: 4%;
    }
    .title-block .title {
        font-size: 48px;
        line-height: 58px;
    }
    /* .title-block .title br {
        display: none;
    } */
    .italic-text {
        font-size: 28px;
        line-height: 28px;
    }
    .italic-text span {
        font-size: 22px;
    }
    .bgp-block {
        text-align: center;
    }
    .bgp-block h1 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 25px;
        text-align: center;
    }
    .bgp-block h1 br{
        display: none;
    }
    .bgp-block .btn-secondary {
        margin: 0 auto;
    }
    .highlight-section {
        padding: 100px 30px;
    }
    .high-text h1 {
        font-size: 52px;
        line-height: 52px;
    }
    .high-text p {
        font-size: 26px;
        max-width: 100%;
    }
    .care-block .col-care {
        border-right: none;
    }
    .footer-green .title {
        font-size: 39px;
        line-height: 40px;
        text-align: center;
    }
    .footer-green ul.social-links {
        justify-content: center;
    }
    .copy-block {
        flex-direction: column;
    }
    span.green-circle {
        margin-left: -10px;
    }
    .offcanvas-end {
        width: initial !important;
        padding: 30px;
    }
    .ct-form .btn {
        margin-top: 0;
    }
    .country-input {
        margin-bottom: 30px;
    }
    .footer-green {
        padding: 70px 30px !important;
    }
    .footer-green .ft-btn-outline {
        width: 100%;
    }
    .aw-title-flex img {
        width: 70%;
        margin: 50px 0;
    }
    .aw-block.no-border:last-of-type p:after {
        display: block;
    }
  }