* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #5fcde0;
    --bg_color_2: #182657;
}

body {
    overflow-x: hidden;
    font-family: "IBM Plex Sans", sans-serif;
    position: relative;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Nunito", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}




.margin {
    margin: 80px 0;
}

.top_call a {
    color: #fff;
    font-weight: bold;
}

.logo img {
    position: relative;
    z-index: 9;
    width: 140px;
}


.search i {
    margin-right: 5px;
}

.logo {
    width: 15%;
}

.search a {
    color: #fff;
}

.nab_bar {
    display: flex;
    justify-content: center;
}

.navbar_n {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    z-index: 5;
    border-radius: 8px;
    justify-content: space-between;
    z-index: 99;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .head_bg {
    display: none;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 19px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

.nab_bar li a {
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
}

.nab_bar li a:hover {
    color: var(--bg_color);
}

.nab_bar li {
    position: relative;
}

.droupdown {
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.droupdown .droupdown {
    left: 100%;
    top: 10px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a img {
    width: 30px;
    margin-right: 8px;
}

.droupdown li a {
    display: flex;
    align-content: center;
}

.droupdown li a {
    color: #000;
    padding: 10px 15px;
    font-size: 14px;
}

.droupdown li a:hover {
    background-color: var(--bg_color_2);
    color: #fff;
}




.nab_bar_nab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 15px;
}




/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
}


.split_slideshow .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.split_slideshow .slick-dots li button {
    border-radius: 7px;
    background-color: #fff;
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.split_slideshow .slick-dots li.slick-active button {
    background-color: #fff;
    border-radius: 7px;
    padding: 4px 20px;
}

/* Search Style */


.all_nav {
    position: relative;
}

.all_nav::after {
    content: "";
    width: 80%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-color: var(--bg_color_2);
    z-index: -1;
    border-radius: 150px 0 0 0;
}

.all_nav::before {
    content: "";
    width: 81%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-color: #fff;
    z-index: -9;
    border-left: 9px solid var(--bg_color);
    border-radius: 150px 0 0 0;
}


.socal_media a {
    padding: 0px 12px;
    color: #fff;
    font-size: 13px;
    border-right: 1px solid #5b5b5b;
}

.socal_media a:last-child {
    border: none;
}

.socal_media a:hover {
    color: var(--bg_color);
}




.slideshow .slick-nav.next-arrow.slick-arrow {
    left: 0;
    right: auto;
}

.slideshow .slick-nav.prev-arrow.slick-arrow {
    right: 0;
    left: auto;
}

.head_bg {
    position: relative;
    padding: 7px 0;
    background-color: var(--bg_color_2);
    margin-bottom: 5px;
    border-radius: 0 0 30px 30px;
}


.head_con {
    display: flex;
    justify-content: space-between;
    color: #fff;
    flex-wrap: wrap;
    gap: 0 50px;
    padding: 0 20px;
}

.top_email {
    position: relative;
    z-index: 9;
    font-size: 14px;
}

.top_email img {
    width: 35px;
}

.top_email i {
    margin-right: 5px;
    color: var(--Sky-blue);
}

.top_email a {
    color: #fff;
    margin-right: 15px;
    font-size: 13px;
}

.top_email a:hover {
    color: var(--bg_color);
}


.head_num i {
    margin-right: 5px;
    color: var(--black);
}

.main_head,
.all_btn {
    background-color: var(--bg_color);
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 120px;
    position: relative;
    border: none;
}

.all_btn {
    background-color: var(--bg_color_2);
}

.main_head span,
.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5px;
    left: -5px;
    border-radius: 120px;
    border-top: 2px solid var(--bg_color);
    border-left: 2px solid var(--bg_color);
    transition: ease-in-out .5s;
}

.main_head::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5px;
    left: -5px;
    border-radius: 120px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transition: ease-in-out .5s;
}

.main_head:hover::after {
    background-color: #fff;
    top: 0;
    left: 0;
}

.all_btn:hover::after {
    background-color: var(--bg_color);
    top: 0;
    left: 0;
}

.main_head:hover {
    color: #000;
}

.banner_item img {
    width: 100%;
}

.ab_img {
    width: 50%;
    float: right;
    padding-left: 50px;
}

.small_head {
    font-family: "Anton", sans-serif;
    display: block;
    font-size: 25px;
    color: var(--bg_color);
}

.big_head {
    font-family: "Anton", sans-serif;
    font-size: 40px;
}

.shadow-title {
    font-size: 130px;
    font-weight: 900;
    color: transparent;
    line-height: 0.89;
    -webkit-text-stroke: 1px #182657;
    opacity: 0.25;
    margin-top: -0.08em;
    margin-bottom: -80px;
    width: 100%;
    z-index: -1;
    font-family: sans-serif;
}

.main_head_line {
    margin-bottom: 30px;
}

.small_head img {
    width: 60px;
}

.container-fluid {
    padding: 0 2%;
}







/* Panels. */
.splitview {
    position: relative;
    width: 100%;
    min-height: 45vw;
    overflow: hidden;
}

.panel {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    overflow: hidden;
}

.panel .content {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    color: #FFF;
}

.panel .description {
    width: 25%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.panel img {
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
    width: 35%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.bottom {
    background-color: rgb(44, 44, 44);
    z-index: 1;
}

.bottom .description {
    right: 5%;
}

.top {
    background-color: var(--bg_color_2);
    z-index: 2;
    width: 50vw;

    /*-webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);*/
}

.top .description {
    left: 5%;
}

/* Handle. */
.handle {
    height: 100%;
    position: absolute;
    display: block;
    background-color: var(--bg_color);
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

/* Skewed. */
.skewed .handle {
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

.skewed .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

.skewed .top .content {
    transform: skew(30deg);
    margin-left: 1000px;
}

.original {
    font-size: 35px;
    font-family: "Anton", sans-serif;
}

.pro_item {
    position: relative;
    margin: 20px 8px;
}

.pro_text {
    background-color: #fff;
    padding: 22px;
    border-radius: 15px;
    margin: -50px 16px 0 16px;
    position: relative;
    text-align: center;
    height: 100px;
    box-shadow: 0px 4px 15px rgba(7, 36, 95, 0.1);
    text-align: left;
}

.pro_text span {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.pro_item img {
    border-radius: 10px;
}

.pro_text i {
    background-color: var(--bg_color_2);
    position: absolute;
    right: 2%;
    top: -20px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(7, 36, 95, 0.1);
    color: #fff;
    border-radius: 5px;
}

.pro_item:hover i {
    -webkit-animation: jumpIcon 1s linear infinite;
    animation: jumpIcon 1s linear infinite
}


@keyframes jumpIcon {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


.all_stap_item .big_head {
    color: #fff;
}

.container {
    max-width: 1250px;
}

.all_stap_item {
    background-color: var(--bg_color_2);
    padding: 20px 30px;
    max-height: 260px;
}

.stap_item {
    background-color: #fff;
    padding: 30px;
    position: relative;
    box-shadow: 0px 4px 15px rgba(7, 36, 95, 0.1);
    margin-top: -60px;
}

.stap_item span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.stap_item:hover {
    color: #fff;
    transition: ease-in-out .5s;
}

.stap_item img {
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.stap_item img,
.stap_item p {
    position: relative;
    z-index: 1;
}

.stap_item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color_2);
    transition: ease-in-out .5s;
}

.stap_item:hover::after {
    height: 100%;
}

.stap_box {
    margin: 100px 0;
}

.testmonial {
    background-position: center center;
    padding: 70px 0 50px;
}

.testmonial .big_head {
    color: #fff;
    font-size: 35px;
}

.testmonial .shadow-title {
    font-size: 88px;
    margin-bottom: -60px;
    -webkit-text-stroke: 1px #ffffff;
}

.test_item {
    background-color: #fff;
    padding: 30px;
    padding-top: 0;
    border-radius: 8px;
    margin: 45px 8px 30px;
}

.test_item img {
    width: 90px;
    border-radius: 50%;
    margin-top: -45px;
}

.name {
    display: block;
    font-size: 20px;
    margin: 10px 0 0;
    font-weight: 600;
}

.deginaiton {
    color: var(--bg_color);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.test_pera {
    border-left: 4px solid var(--bg_color_2);
    padding-left: 10px;
}

.counter {
    color: #fff;
    padding: 60px 0;
}

.count-digit {
    font-size: 40px;
    display: block;
    font-weight: 600;
    font-family: "Anton", sans-serif;
    letter-spacing: 3px;
}

.num_item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.why_box {
    position: relative;
    padding: 70px 0px 40px 50px;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
}

.why_box .big_head {
    font-size: 30px;
}

.why_choose::after {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color_2);
    z-index: -1;
}

.why_item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}

.why_item ul li {
    background-color: #ffffff;
    padding: 24px 22px;
    margin: 15px 0;
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    width: 45%;
    border-radius: 8px;
}

.why_item ul li .marks {
    margin-top: -35px;
    margin-bottom: 8px;
}


.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}


.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.play-btn.style3:before,
.play-btn.style3:after {
    background-color: #fff;
}

.ripple-animation,
.play-btn:after,
.play-btn:before {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

.play-btn:after,
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg_color_2);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: allease 0.4s;
    transition: allease 0.4s;
}

.play-btn>i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: var(--icon-size, 78px);
    text-align: center;
    background-color: var(--bg_color);
    color: var(--white);
    font-size: var(--icon-font-size, 1.4em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: allease 0.4s;
    transition: allease 0.4s;
}

.play-btn.style3>i {
    background-color: var(--bg_color);
    color: #fff;
    transform: rotate(-45deg);
}


@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0
    }
}

@keyframes ripple2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(2.8);
        transform: scale(2.8);
        opacity: 0
    }
}

.why_img {
    position: relative;
}

.you_link {
    position: absolute;
    bottom: -1%;
    left: 20%;
    background-color: var(--bg_color_2);
    padding: 46px;
    transform: rotate(45deg);
}

.why_choose {
    position: relative;
}



.down_banner {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.down_item {
    text-align: left;
}

.down_item .img {
    border-radius: 50%;
}

.down_item .img img {
    border-radius: 50%;
    border: 1px solid var(--bg_color_2);
    padding: 5px;
}

.down_malti_item .img {
    border-radius: 50%;
    border: 1px solid var(--bg_color_2);
    padding: 5px;
    cursor: pointer;
}

.down_malti_item .img img {
    border-radius: 50%;
}

.down_malti_item {
    margin: 10px;
}


.down_banner_slider .slick-slide.slick-current.slick-active h3 {
    animation: 1s linear 0s alternate headerline;
}

.down_banner_slider .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.down_banner_slider .slick-slide.slick-current.slick-active .img {
    animation: 3s linear 0s alternate headerline_img;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


@keyframes headerline_img {

    0%,
    25% {
        transform: scale(.5);
        opacity: 0;
    }

    75%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

footer{
    background-size: cover;
}










.magnific-img img {
    width: 100%;
    height: auto;
}

.mfp-bottom-bar,
* {
    font-family: 'Abel', sans-serif;
}


a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.gallery {
    columns: 3;
}

.gallery_item {
    margin-bottom: 15px;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
* Remove all paddings around the image on small screen
*/
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}





/* contact */


.form-box {
    padding: 30px;
    box-shadow: 0px 10px 20px 0px rgba(0, 69.00000000000021, 255, 0.12);
    border-radius: 10px;
    background-color: #fff;
}

.form-box input,
select {
    width: 100%;
    background-color: #f4f3fb;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #f4f3fb;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 25px;
    outline: none;
}

.form-box textarea {
    width: 100%;
    background-color: #f4f3fb;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #f4f3fb;
    padding: 20px;
    margin-bottom: 25px;
    outline: none;
    font-size: 18px;
}

.contact-us .main-head-1 {
    margin-bottom: 20px;
}

.form-box input[type="button"] {
    width: 200px;
    background-color: #5ba7e4;
    color: #fff;
    transition: ease-in-out .2s;
}

.form-box input[type="button"]:hover {
    background-color: #21d0b2;
}

.con-us-detail {
    padding: 35px;
    box-shadow: 0px 10px 20px 0px rgba(0, 69.00000000000021, 255, 0.12);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    background-color: #fff;
    text-align: left;
}

.con-us-detail i {
    background-color: var(--bg_color_2);
    font-size: 30px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.con-number {
    margin-left: 20px;
    width: 80%;

}

.con-number a {
    color: #000;
    display: block;
}

.con-number a:hover {
    color: var(--bg_color_2);
}

.con-number span {
    font-size: 22px;
    display: block;
}

.container .main-head-1 h3 {
    font-size: 23px;
}

/* contact */


.foot_bg {
    background-color: #0000009f;
    color: #fff;
    padding-top: 80px;
}

.foot_head {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.foot_details ul li {
    margin: 24px 0;
    font-size: 15px;
}

.foot_details ul li span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foot_logo img {
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    width: 170px;
}

.foot_details a {
    color: #fff;
}

.foot_details i {
    margin-right: 10px;
    color: var(--bg_color);
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    margin: 10px 0;
    font-size: 15px;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_nav ul {
    height: 250px;
    overflow: auto;
}

.foot_nav ul li a img {
    width: 30px;
    margin-right: 5px;
}

.copyright {
    border-top: 1px solid #6f6f6f;
    text-align: center;
    padding: 10px 0;
    margin-top: 60px;
}

.copyright p {
    margin-bottom: 0;
}
















.ab_item {
    width: 50%;
    float: left;
    padding-right: 30px;
}

.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: #023153;
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 20px;
}

.marcket-plase a:hover {
    background-color: var(--bg_color);
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}




@media only screen and (max-width: 1520px) {
    .you_link{
        left: 32%;
    }
}
@media only screen and (max-width: 1370px) {
    .you_link{
        left: 20%;
    }
}

@media only screen and (max-width: 1150px) {
    .testmonial .shadow-title {
        font-size: 60px;
    }

    .shadow-title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .all_stap_item {
        max-height: unset;
    }

    .stap_item {
        margin-top: 10px;
    }

    .count-area-content {
        margin-bottom: 30px;
    }

    .stap_box {
        margin: 46px 0;
    }
}


@media only screen and (max-width: 900px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: #fff;
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--bg_color_2);
        z-index: 9999;
        display: none;

    }
    .nab_bar li {
        border-bottom: 1px solid #818181;
    }

    .nab_bar li a {
        color: #fff;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: var(--bg_color_2);
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .navbar_n {
        order: 3;
    }

    .nab_bar li a {
        padding: 11px 15px;
        display: block;
    }
}


@media only screen and (max-width: 767px) {
    .big_head {
        font-size: 25px;
    }

    .shadow-title {
        display: none;
    }

    .ab_img {
        width: 100%;
        float: right;
        padding-left: 0px;
    }

    .why_choose::after {
        width: 100%;
    }

    .margin {
        margin: 40px 0;
    }

    .down_item .img {
        display: flex;
        justify-content: center;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
    }

    .inner_header img {
        height: 250px;
    }

    .inner_hrad {
        font-size: 22px;
    }
}


@media only screen and (max-width: 650px) {
    .gallery {
        columns: 2;
    }

    .head_con {
        justify-content: center;
    }
}

@media only screen and (max-width: 550px) {
    .head_num {
        display: none;
    }

    .small_head {
        font-size: 20px;
    }

    .small_head img {
        width: 35px;
    }

    .splitview {
        display: none;
    }

    .why_box {
        padding: 51px 9px 35px 20px;
    }

    .why_item ul li {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        width: 20%;
    }

    .all_nav::after {
        width: 68%;
    }

    .all_nav::before {
        width: 71%;
    }

    .top_email {
        display: none;
    }

    .count-digit {
        font-size: 25px;
    }
}