* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "Poppins", serif;
    font-size: 16px;
}

:root {
    --main-clr: #002855;
    --sec-clr: #109ade;
    --icon-clr: #109ade;
    --pri-head-clr: #002855;

}

ul,
i {
    list-style: none;
}


.list{
    list-style: disc;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    color: #6c757d;
}

.sec-spacer {
    padding: 3.75rem 0;
}

@media (max-width:800px){
    .sec-spacer{
        padding: 2.813rem 0;
    }
}

.fw-4 {
    font-weight: 400;
}

.fw-8 {
    font-weight: 800;
}

.title {
    color: var(--pri-head-clr);
}

.text-white {
    color: #FFF;
}

.bttn {
    display: block;
    padding: 0.75rem 1.125rem;
    color: var(--main-clr);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s linear;
}

.bttn.bttn-fill {
    background-color: var(--main-clr) !important;
    color: #FFF;
}

.bttn.bttn-fill:hover {
    background-color: #1098de !important;
}

.btn-otn {
    background-color: transparent;
    border: 1px solid var(--main-clr);
    color: var(--main-clr);
}

.btn-otn:hover {
    background-color: transparent;
    border: 1px solid #1098de;
    color: #1098de;
}

.btn-otn.sec {
    border: 2px solid #FFF;
    color: #FFF;
    font-weight: 600;
}

.ic {
    margin-left: 0.375rem;
}

.btn-wrappr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-wrappr .btn:nth-child(1) {}

.bttn .btn-icon {
    margin-left: 0.375rem;
}

.head-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.438rem 1.125rem;
    border-radius: 12px;
    font-size: 0.875rem;
    letter-spacing: 0.064rem;
    color: #6247aa;
    background-color: #ada7ff67;
}


@media(max-width:999px) {


    .bttn {
        font-size: 14px;
        padding: 0.688rem 1rem;
    }
}


@media (max-width:600px) {
    .bttn {
        font-size: 11px !important;
    }


}



@media (max-width:500px) {
    .bttn {
        padding: 0.438rem 0.625rem;
    }


}

/* breadcrump */
.breadcrump {
    position: relative;
    min-height: 500px;
    background-image: url(../images/slide-1.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.breadcrump.sec {
    min-height: 600px;
}


.breadcrump-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.752);
}

.breadcrump-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
}

.breadcrump h1 {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: "Gilda Display", serif;

}

.breadcrump .brd-sub-head {

    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Gilda Display", serif;
    position: relative;

}


.breadcrump h6 {
    color: #179ddd;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Gilda Display", serif;
    position: relative;

}

.breadcrump h6::before {
    content: '';
    position: absolute;
    left: -2em;
    top: 5px;
    width: 12px;
    height: 2px;
    background-color: #179ddd;
}

.breadcrump h6::after {
    content: '';
    position: absolute;
    right: -2em;
    top: 5px;
    width: 12px;
    height: 2px;
    background-color: #179ddd;
}

.breadcrump .flg{
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-top: 10px;
   
}

.breadcrump .flg::before{
    position: absolute;
    content: '';
    height: 1px;
    width: 60px;
    top: 50%;
    left: -70px;
    background-color: #FFF;
    opacity: 0.4;
}

.breadcrump .flg img{
    border-radius: 50%;

}

.breadcrump .flg::after{
    position: absolute;
    content: '';
    height: 1px;
    width: 60px;
    top: 50%;
    right: -70px;
    background-color: #FFF;
    opacity: 0.4;
}

/* navbar */
.navbar {
    position: fixed !important;
    width: 100%;

    top: 0;
    z-index: 999;
}

.navbar.sticky {
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar.sticky .navbar-brand img {
    width: 170px !important;
}

.navbar.sticky .navbar-nav .nav-link {
    color: #000;

}




.navbar-nav .nav-link {
    position: relative;
    color: #fff;
    padding-bottom: 12px;


}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    transition: all 0.5s linear;
    background-color: var(--main-clr);
}

@media (min-width:1200px) {
    .navbar-nav .nav-link:hover::before {
        width: 60%;
    }

}

.navbar-nav .nav-link:hover {
    color: var(--main-clr);
}

.navbar-toggler {
    background-color: #00a5cf !important;
    color: #fff !important;
}

@media (max-width:1199px) {
    .navbar-nav .nav-link {
        color: #000;
    }
}

@media(max-width:999px) {
    .navbar {
        position: relative !important;
        background-color: #fff;
    }

    .bttn {
        font-size: 14px;
    }

    .navbar .navbar-brand img {
        width: 150px;
    }
}

@media(min-width:1200px) {
    .navbar .navbar-nav .nav-item {
        margin: 0 5px;
    }

    .navbar .navbar-brand img {
        width: 180px;
    }
}

@media(min-width:1400px) {
    .navbar .navbar-nav .nav-item {
        margin: 0 12px;
    }


}

.dropdown-menu {
    border-radius: 3px;
    padding-top: 14px;
}

.dropdown-menu .dropdown-item {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 400;
    color: #515556;
}


.dropdown-menu .dropdown-item:hover {
    color: #000;
}


.dropdown-menu.sec {
    width: max-content !important;

}

.dropdown-menu.sec>div {
    display: flex;
}

.dropdown-menu.sec>div .dropdown-item span {
    border-radius: 50%;
    overflow: hidden;

}


.dropdown-menu.sec>div .dropdown-item .nav-flg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 6px;
}



/* banner */

.banner-slider {
    overflow: hidden !important;
    max-height: 100vh;
}

.carousel-item img {
    width: 100%;
    max-height: 100vh;
}

.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
    background-color: rgba(255, 255, 255, 0.168);
    height: fit-content;
    width: fit-content;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5;
    padding: 1rem 1.5rem;
}

.banner-slider .carousel-control-prev i,
.banner-slider .carousel-control-next i {
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background: transparent;
    /* border: 1px dashed #fff; */
}

.banner-slider .carousel-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006e;
    z-index: 1;
    overflow: hidden;
}

.carousel-item {
    height: 100%;
    width: 100%;
}


.carousel-item .banner-content {
    position: absolute;
    top: 40%;
    left: 10%;
    /* transform: translate(-50%, -50%); */
    z-index: 3;
    width: 50%;
}

.carousel-item .banner-content {
    border-left: 3px solid #FFF;
    padding-left: 20px;

}

.banner-content h1 {
    font-weight: 800;
    font-size: 3.438rem;
    color: #fff;


}

.banner-slider .carousel-indicators {
    z-index: 5;
}

.banner-slider .carousel-indicators li.active {
    background: rgb(255, 255, 255) !important;
}

.banner-slider .carousel-indicators li {
    background: rgb(139, 137, 137) !important;
}



@media screen and (max-width:1100px) {

    .carousel-item .banner-content {
        margin: 0 auto;
        width: 70%;
    }


}


@media screen and (max-width:999px) {

    .carousel-item .banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: max-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-content h1 {

        font-size: 1.563rem;

    }


    .carousel-item .banner-content {
        border-left: none;
        padding-left: 0;

    }
}


.banner-slider .banner-content {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner-slider .carousel-item.active .banner-content {
    opacity: 1;
}

.banner-slider .carousel-item.active .sub-head {
    color: #ffffff;
    letter-spacing: 2px;
    background-color: #00a6cf72;
    width: fit-content;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    padding: 5px 14px;
}


.banner-slider .carousel-item.active h1 {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1s;
}

.banner-slider .carousel-item.active h6 {
    opacity: 0;
    animation: fadeIn 1.8s ease-out forwards;
    animation-delay: 1.8s;
}



.banner-slider .carousel-item.active .bttn-fill {
    opacity: 0;
    animation: fadeIn 1.9s ease-out forwards;
    animation-delay: 1.9s;
}

.banner-slider .carousel-item.active .btn-otn {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-slider .carousel-item.active img {
    animation: zoom 10s ease-in forwards;
    animation-delay: 1s;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width:1200px) {
    .banner-content h1 {

        font-size: 2.813rem;

    }

    .banner-slider .carousel-item.active .sub-head {
        font-size: 0.75rem;
    }
}

@media (max-width:800px) {

    .banner-slider .carousel-control-next,
    .banner-slider .carousel-control-prev {
        display: none !important;
    }

    .banner-slider .carousel-item.active .sub-head {
        font-size: 10px;
    }

}


@media (max-width:600px) {
    .banner-content h1 {

        font-size: 2.188rem;

    }

    .banner-slider .carousel-item.active .sub-head {
        font-size: 0.5rem;
    }
}


@media (max-width:500px) {
    .banner-content h1 {

        font-size: 1.751rem;

    }

    .banner-slider .btn-wrappr .bttn {
        font-size: 0.563rem !important;
    }

}



.abt {
    position: relative;
}

.sec-left-wrapper {
    position: relative;
    z-index: 5;
}

.abt::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    background-image: url(../images/map.png);

    top: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1626%) hue-rotate(63deg) brightness(118%) contrast(92%);
}


.abt::after {
    position: absolute;
    background: linear-gradient(0.25turn, #ffffffb2, #ffffff00, #ffffffa4);
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;

}




.sec-image {
    position: relative;
    display: flex;
    justify-content: center;
}




@media (max-width:600px){
    .sec-image > div{
        width: 100% !important;
    }
}

@media (max-width:999px) {
    .sec-image img {
        width: 100%;
    }
}

.sec-image img {
    position: relative;
    z-index: 5;
}

.cnt-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: #FFF;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    z-index: 6;
    padding: 10px 16px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.countries {

    display: flex;
    align-items: center;
}

.country {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.country img {
    display: block;
    height: 100%;
    width: 100%;

}

.cnt-badge span {
    padding: 5px 12px;
    font-weight: 600;
}

.countries .country:nth-child(1) {
    margin-right: -14px;
    background-color: red;
}


.countries .country:nth-child(2) {
    margin-right: -14px;

}


@media(max-width:600px) {
    .country {
        height: 45px;
        width: 45px;
    }

    .cnt-badge span {
        font-size: 14px;
    }

    .cnt-badge {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: max-content;
    }
}

@media(max-width:400px) {
    .country {
        height: 35px;
        width: 35px;
    }

    .cnt-badge span {
        font-size: 13px;

    }
}

/* course */

.crs-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.crs-img-wrapper {
    position: relative;


}

.crs-icon {
    position: absolute;
    z-index: 30;
    right: 0;
    top: 0;
    background-color: #e3a78a;
    color: #e77d48;
    padding: 10px;

}

.csr-title {
    color: var(--pri-head-clr);
    font-weight: 600;
}

.csr-sub-title {
    color: #5a636c;
}

.crs-icon {
    font-size: 25px;
}

.crs-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.csr-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 15px 30px 15px;
}

.csr-desc {
    color: var(--p-clr);
    font-size: 15px;
}


.container .card {
    position: relative;
    border: none;
    margin-bottom: 18px;
  
}

.box-crd:nth-child(1) .card .box .icon .iconBox {
    background: #16314e;
}

.box-crd:nth-child(2) .card .box .icon .iconBox {
    background: #edab2a;
}

.box-crd:nth-child(3) .card .box .icon .iconBox {
    background: #98a45a;
}

.container .card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.container .card ul li {
    text-transform: uppercase;
    background: var(--clr-tag);
    color: #282828;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.188rem;
}



.container .card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    height: 100%;
    padding: 0.938rem 0.625rem;
    border-radius: 1.25rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
}

.container .card .content h3 {
    text-transform: capitalize;
    font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
}

.container .card .content p {
    margin: 0.625rem 0 1.25rem;
    color: #565656;
}

.container .card-inner {
    position: relative;
    width: inherit;
    /* height: 18.75rem; */
    height: 100%;
    background: var(--clr);
    border-radius: 1.25rem;
    /* border-bottom-right-radius: 0; */
    overflow: hidden;
}

.container .card-inner .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}



.container .card-inner .box .imgBox {
    /* position: absolute; */
    position: relative;
    height: 100%;
    inset: 0;
}

.container .card-inner .box .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card-inner .box .icon {
    position: absolute;
    bottom: -0.375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 6rem;
    background: var(--clr);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.container .card-inner .box:hover .icon .iconBox {
    transform: scale(1.1);
}




.container .card-inner .box .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

/* .container .card-inner .box .icon::after {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem red;
} */


.container .card-inner .box .icon::after {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    right: -20px;

    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-left-radius: 1.25rem;

    box-shadow: -0.313rem 0.313rem 0 0.313rem rgb(255, 255, 255);

}

.container .card-inner .box .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #282828;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


.container .card-inner .box .icon .iconBox.sec {

    background: var(--main-clr);

}

.container .card-inner .box .icon .iconBox.sec span img {
    padding: 15px;
    height: 100%;
    width: 100%;
}


.container .card-inner .box .icon .iconBox span {
    color: #fff;
    font-size: 1.5rem;
}

.container .card-inner .box .icon .iconBox span img {
    color: #fff;
    height: 100%;
    width: 100%;
}


.wch-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.container .card-inner .box.sec {
    background: #ececec;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.wch-card:nth-child(1) .card .card-inner .box.sec {
    background: var(--main-clr) !important;
    color: #FFF;
}


.wch-card:nth-child(2) .card .card-inner .box.sec .iconBox {
    background: var(--main-clr) !important;

}


.wch-card:nth-child(3) .card .card-inner .box.sec .iconBox {
    background: var(--main-clr) !important;

}

.wch-card:nth-child(4) .card .card-inner .box.sec .iconBox {
    background: var(--main-clr) !important;

}

/* destinations */
.dest {
    position: relative;
}

@media(max-width:1400px){
    .dest .item .card .btn-wrappr .butn.learn-more{
        width: 10rem;
    }
}

.dest::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 100%;
    background-image: url(../images/map.png);

    top: 0;
    left: 0;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1626%) hue-rotate(63deg) brightness(118%) contrast(92%);
}

.desti-carousel .owl-item{
    
   flex-grow: 1;
    height: 100% !important;
    
}


.owl-item.cloned.active{
    
    height: 100% !important;
}


 .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    height: 100%;
}



.desti-carousel  .item .card .content{
    height: 270px;
}




.dest .item{
    height: 100%;
    
}


.dest .item .card{
    height: 100%;
}

.footer {
    position: relative;
    z-index: 1;
    background-color: #1f2437;
    background-image: url(../images/footer-bg.png);
    background-position: center center;
    background-attachment: scroll;
    margin-top: -8px;

}

@media(max-width:767px) {
    .footer {

        padding-bottom: 50px;
    }

    .footer-bottom {

        text-align: center;
    }
}

.ftr-desc-sec {
    color: #FFF;
}


.footer .widget {
    padding: 40px 0 40px;
    height: 100%;
    overflow: hidden;
}

@media (max-width:500px) {
    .footer .widget {
        padding: 20px 0 20px;

    }
}


.footer .widget .widget-title {
    font-size: 19PX;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 36px;
    display: inline-block;
    position: relative;
    color: #FFF;
}

.footer .textwidget p {
    color: #ffffff5e;
    font-weight: 400;
    font-size: 15px;
}

footer .widget-text {
    color: #FFF;
}


.footer .social-icons li>a {
    display: block;
    height: 50px;
    width: 50px;
    line-height: 36px;
    border-width: 1px;
    border-style: solid;
    text-align: center;
    transition: all .3sease-in-out;
    -webkit-transition: all .3sease-in-out;
    color: var(--icon-clr);
}

.social-icons ul {
    display: flex;
    gap: 5px;

}

.social-icons.circle li>a {
    border-width: 1px;
    border-style: solid;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 19px;
    border-radius: 50%;
}

.menu .menu-link a {
    display: block;
    padding: 0 0 11px 0;
    position: relative;
    color: #FFF;
    padding-left: 22px;
    font-weight: 400;
}

.widget .menu .menu-link a:before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    height: 1px;
    width: 10px;
    background-color: #ffffff5e;
}

.footer .widget .widget-title:before {
    position: absolute;
    content: '';
    bottom: -14px;
    left: 0;
    width: 18px;
    height: 2px;
    display: block;
    background-color: var(--sec-clr);
}



.frt-footer .widget-area:not(:nth-child(2)) .widget {
    background-color: #1a1f31;
}


.frt-footer .widget-area:nth-child(2) .widget {
    background-color: var(--sec-clr);
}

.frt-footer .widget-area:nth-child(2) .widget .featured-icon-box .featured-desc {
    color: #FFF !important;
}


.frt-footer .widget-area .widget {
    padding: 17px 30px;
    position: relative;
}

.frt-footer .featured-icon-box {
    display: flex;
    align-items: center;
}

.frt-footer .featured-icon-box .featured-content {
    padding-left: 15px;
}

.frt-footer .featured-icon-box .featured-icon .cmt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background-color: rgba(255, 255, 255, .07);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, .08);
}


.frt-footer .featured-icon-box .featured-title h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
}

.footer .adrs .adrs-icon {
    border-width: 1px;
    border-style: solid;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 19px;
    border-radius: 50%;
    color: var(--icon-clr);
}


.widget-adrs {
    position: relative;
    height: 100%;
    width: 100%;

}

.widget-adrs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/map.png);
    background-size: contain;
    background-repeat: no-repeat;
    filter: opacity(50%);
    z-index: -1;

}


.adrs {
    display: flex;
    align-items: center;
    
}

.adrs .adrs-text {
    height: 100%;
    color: #FFF;
}

.adrs .adrs-icon {
    margin-right: 9px;
}

.adrs:nth-child(2) {
    padding-top: 18px;
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff1c;
}

.footer-bottom .copyright {
    color: #ffffff40;
    font-size: 12px;
}

.footer-bottom .design {
    color: #ffffff40;
    font-size: 12px;
}

.footer-bottom .design a {
    color: #ffffff8f;
}


.wch {
    position: relative;
    background-image: url(../images/abroad-nursing-consultancy.png);
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
}

.wch.sec{
    position: relative;
    background-image: url(../images/bnr.jpg);
    background-size:cover;
    background-position: top center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}


.wch.sec::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000092;
}

.wch-header {
    background: rgba(255, 255, 255, 0.062);
    box-shadow: 0 8px 32px 0 rgba(187, 187, 195, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: fit-content;
    padding: 20px 18px;

}

@media (max-width:700px) {
    .wch-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
}

@media (max-width:500px) {
    .wch-header h1 {
        font-size: 25px;
    }
}

.feature-sec {
    position: relative;
    z-index: 10;
    margin-top: -70px;
}


.wch .header{
    position: relative;
    z-index: 20;
    
}



.feature-sec.eu{
    position: relative;
    z-index: 10;
    margin-top: -60px !important;
}

.feature-sec.eu .feature-box .feature-icon{
    height: 60px;
    width: 60px;
}

.feature-sec .feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    padding: 1.875rem;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.feature-sec .feature-box .feature-icon {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--main-clr);
    margin-bottom: 16px;
}

.feature-sec .feature-box .feature-icon img {
    padding: 10px;
    object-fit: contain;
}


.feature-sec .feature-box .feature-title {
    color: var(--pri-head-clr);
    font-weight: 600;
    margin-bottom: 10px;
}






/* TESTIMONIAL */
.testimonial {
    position: relative;
    background-color: #fcfcfc;

}

.testimonial::before {


    content: '';
    background-image: url(../images/globe\ \(3\).png);
    filter: opacity(28%);
    height: 100%;
    width: 50%;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;

}

@media (max-width:800px) {
    .testimonial::before {
        width: 100%;
        background-size: cover;
    }
}




.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(closest-side, #a2d2ffc6, #a2d2ff6b, #ffffff);
}


.testimonial>.wrapper {
    position: relative;
    z-index: 90 !important;
}

/* .gradient-background {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/globe\ \(3\).png);
    height: 100%;
    width: 50%;
   
    z-index: 40;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    
} */



/* .gradient {
    -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%) add;
    flex: none;
    inset: 0;
    mask: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%) add;
    opacity: .12;
    position: absolute;
    z-index: 10;

} */

.testimonial .row {
    position: relative;
    z-index: 40;

}

/* .background {
    -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
    background-color: #a2d2ff;
    flex: none;
    inset: -100px 0;
    mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
} */


.testi-content {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 100%;

    min-height: 200px;
    padding: 60px 30px 20px 30px;
}



.testi-content p {
    color: #646464;
}

.testimonial-carousel {

    max-height: none !important;
    display: flex !important;
    height: 100% !important;
}

.testimonial .owl-carousel .owl-stage-outer {
    height: max-content !important;

    max-height: none !important;
    height: 100% !important;
}

.testimonial .item {
    height: max-content;
}

.testimonial .owl-item {
    padding: 40px 0;
}

.testimonial .testi-content {
    position: relative;
    margin: 16px;
    margin-top: 0 !important;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.testimonial .testi-content .quote {
    position: absolute;
    z-index: 20;
    height: 90px;
    width: 90px;
    top: -50px;
    right: 0;
}

.athr-text {
    font-style: italic;
    color: rgb(113, 113, 113);
}

.athr {
    display: flex;
    align-items: center;
    gap: 16px;
}

.place {
    color: rgb(113, 113, 113);
    font-size: 14px;
    margin-left: 10px;
}

.athr .athr-img {
    background-color: #FFF;
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.athr .athr-img img {
    padding: 10px;
}

.testimonial .rating i {
    font-size: 19px;
    color: rgb(255, 213, 0);
}


@media(max-width:999px) {
    .testimonial .testi-content {

        margin: 0;

    }

    .testimonial-carousel {
        padding: 0;

    }
}







@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 4;
}

.scroll-btn>* {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*.active {
    color: #ffffff;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*:active,
.scroll-btn>*.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse>* {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;

}

@media(max-width:999px) {
    .scroll-btn {
        display: none;
    }
}


/* service */
.services .card{
    height: auto;
}

.services.sec .card{
    height: 100%;
}
.serv-card {
    display: inline-block;
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    /* margin: 30px; */
}

.serv-profile-img {
    /* height: 70%; */
    width: 100%;
}

.serv-description-bk {
    /* background-image: linear-gradient(0deg , #3f5efb, #fc466b); */
    background-color: #FFF;
    border-radius: 30px;
    position: absolute;
    top: 55%;
    /* left: -5px; */
    height: 65%;
    width: 110%;
    transform: skew(19deg, -9deg);
}

.second .serv-description-bk {
    background-image: linear-gradient(-20deg, #bb7413, #e7d25c)
}



.serv-logo {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: var(--main-clr);
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
}

.serv-logo img {
    height: 100%;
    padding: 15px;
}

.serv-title {
    position: relative;
    color: var(--pri-head-clr);
    font-weight: 900;
    /* bottom: 32%;
    right: 5%; */


}

.serv-body {
    background-color: red;
    height: max-content;
}

/* .serv-btn {
    position: absolute;
    color: var(--main-clr);
    right: 30px;
    bottom: 10%;
    padding: 10px 20px;
    border: 1px solid #fff;
  } */


.serv-ftr {
    display: flex;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 18px;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    color: var(--main-clr);

    /* left: 30px;
    bottom: 15%; */
}



/* sticky-social */
.sticky-social {
    position: fixed;
    top: 60%;
    transform: translateY(-50%);
    right: 0;
    padding: 0px;
    margin: 0px;
    z-index: 200;
    padding-left: 0 !important;
}

.social {
    list-style: none;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.144);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0 !important;
    margin-right: 12px;

}

.social .sc {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b87ca;
    color: #FFF;
    border-radius: 8px;
    transition: all 0.3s linear;
}

.social .sc:hover {
    background-color: #16314e;
}

.social li {
    margin: 10px;
}

.social li a {
    padding: 10px 15px;
    font-size: 20px;
    transition: all 0.8s ease-in-out;

}

.social li:hover .fa {
    margin-left: 20px;

}

.fa {
    color: #fff;
    transition: all 0.8s ease-in-out;
}


.cntr {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cntr::before {
    content: '';
    position: absolute;
    background-image: url(../images/globe\ \(3\).png);
    height: 100%;
    width: 50%;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    filter: opacity(20%);
    background-size: cover;
    background-position: center;
}


.cntr::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(#ffffff00, #f5f5f5); */
    background: radial-gradient(closest-side, #a2d2ff8d, #a2d2ff32, #ffffff);
    z-index: -1;
}


.scope {
    position: relative;
    z-index: 10;
    width: 100px;
    height: 180px;
    transform-style: preserve-3d;
    animation: slid 50s linear infinite;

}


.scope span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(350px);
    z-index: 60;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

}

.scope span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 2s;
    border-radius: 50%;
    overflow: hidden;





}

@keyframes slid {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}


.cntr-header {
    position: relative;
    z-index: 6;
}

@media(max-width:800px) {
    .cntr::before {

        height: 100%;
        width: 100%;

    }
}

@media(max-width:500px) {



    .scope span {
        height: 6.875rem;
        width: 6.875rem;

    }
}




.butn {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.butn.learn-more {
    width: 12rem;
    height: auto;
}

.butn.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--main-clr);
    border-radius: 1.625rem;
}

.butn.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--white);
}

.butn.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.butn.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.butn.learn-more .butn-text {
    transition: all 0.45s cubic-bezier(0.65, 0, .076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--main-clr);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;

}

.butn:hover .circle {
    width: 100%;
}

.butn:hover .circle .icon.arrow {
    background: #FFF;
    transform: translate(1rem, 0);
}

.butn:hover .butn-text {
    color: #FFF;
}



.sticky-whatsapp {
    position: fixed;
    bottom: -2px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;

}

.sticky-whatsapp a {
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(135deg, #25D366, #128C7E);
    text-align: center;
    justify-content: center;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
}

.sticky-whatsapp a i {
    margin-left: 10px;
    font-weight: 700;
    font-size: 18px;
}



/* GALLERY PAGE */
#gallery {
    padding-top: 40px;
}

@media screen and (min-width: 991px) {
    #gallery {
        padding: 40px 30px 40px 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
    overflow: hidden;
}

.img-wrapper img {
    /* max-width: 50vw;
      height: 66vh; */
    object-fit: cover;
}

@media (max-width: 999px) {
    .img-wrapper img {
        max-width: 100%;
        height: 100%;
    }
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
}

@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

/* GALLERY PAGE */
:root {
    --card_width: 350px;
    --row_increment: 10px;
    --card_border_radius: 16px;
    --card_small: 26;
    --card_med: 33;
    --card_large: 45;
}

.gallery {
    display: block;
    position: relative;
}

.pin_container {
    margin: 0;
    padding: 0;
    width: 95vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: grid;

    grid-template-columns: repeat(auto-fill, var(--card_width));
    grid-auto-rows: var(--row_increment);
    justify-content: center;
}

.card {
    padding: 0;
    /* margin: 15px 10px; */
    border-radius: var(--card_border_radius);
    border: none !important;
    overflow: hidden;
    border-radius: 15px;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.card:hover img {
    transform: scale(1.1);
}

.card img {
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.card_small {
    grid-row-end: span var(--card_small);
}

.card_medium {
    grid-row-end: span var(--card_med);
}

.card_large {
    grid-row-end: span var(--card_large);
}

.pin_container .img-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 12px;
}

/* why choose us page */
.wch_ftr .ftr-icon {
    height: 50px;
    width: 50px;
}

.wch_ftr .wch_ftr-box {
    display: flex;
    gap: 5px;
}

.wch_ftr .ftr-icon {
    margin-right: 10px;
}


.wch_ftr .ftr-title {
    color: #002855;
}

.abt .counter {
    position: relative;
    z-index: 40;
}

.counter .cntr_box {
    display: flex;
    gap: 5px;


}

.counter .cntr_box .cntr_icon {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

@media (min-width:768px) {
    .counter .cntr_box {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;

    }
}


.counter .cntr_no {
    color: #002855;
}

.counter .cntr_text {
    color: #515556;
}

.about-images {
    columns: 2;
    position: relative;

}


.about-images img {
    display: block;
    margin-bottom: 10px;
    justify-content: center;
    border-radius: 10px;
}


.about-images .about-img1,
.about-images .about-img2 {
    max-width: 280px;
}


.abt-drs-img-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 5vw);
}

.abt-drs-img-wrapper .drs-img1 {
    position: relative;
    grid-column-start: 7;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 5;

}


.abt-drs-img-wrapper .drs-img1::before {
    position: absolute;
    content: '';
    bottom: -10px;
    right: -10px;
    background-color: #95b0a968;
    height: 100%;
    width: 100%;
    z-index: 1;
}


.abt-drs-img-wrapper .drs-img2 {
    position: relative;
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 3;
    grid-row-end: 7;
}



.abt-drs-img-wrapper .ptr {
    position: relative;
    grid-column-start: 3;
    grid-column-end: 10;
    grid-row-start: 2;
    grid-row-end: 6;
    border: 10px solid #002f4932;
    z-index: 2;
}


.abt-drs-text {
    padding: 0 24px;
}

.abt-drs-img-wrapper .drs-img2::before {
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    height: 100%;
    width: 100%;
    background-color: #dfd7cc55;
}

.abt-drs-img-wrapper .drs-img1 img {
    position: relative;
    object-fit: cover;
    z-index: 5;
}

.abt-drs-img-wrapper .drs-img2 img {
    position: relative;
    object-fit: cover;
    z-index: 5;
}

.abt-drs-img-wrapper .badge {
    margin-top: 10px;
    position: relative;
    z-index: 7;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;

}

.abt-drs-img-wrapper .badge span:nth-child(1) {
    letter-spacing: 2px;
}

.abt-drs-img-wrapper .drs-img1 .badge {
    background-color: #5b7572;
}

.abt-drs-img-wrapper .drs-img2 .badge {
    background-color: #b58e7a;
}


.mis-vis .drs {
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
    padding: 40px;
    height: 100%;
}


.drs .drs-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 10px;
}


@media (max-width:999px) {
    .abt-drs-img-wrapper {


        grid-template-rows: repeat(12, 7vw);
    }

    .abt-drs-img-wrapper .drs-img1 {
        
        grid-row-start: 1;
        grid-row-end: 7;
        margin-left: 10px;

    }

    .abt-drs-img-wrapper .drs-img2 {
       
        grid-row-start: 5;
        grid-row-end: 11;
    }

    .abt-drs-img-wrapper .ptr {
        
        grid-row-end: 10;
       
    }
    


}


@media (max-width:500px) {
    .abt-drs-img-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .abt-drs-img-wrapper .drs-img2::before {
        display: none;
    }

    .abt-drs-img-wrapper .drs-img1::before {
        display: none;
    }

    .abt-drs-img-wrapper .ptr {
        display: none;
    }
    

    .mis-vis .drs {
        padding: 20px;
    }

    .abt-drs-text {
        padding: 0 ;
    }
    
}


/* contact page */
/* 
.contact {
    position: relative;
   
}

.contact2{
    position: relative;
    margin-top: -60px;
}

.contact::before {
    position: absolute;
    content: '';
    width: 70%;
    height: 100%;
    background-image: url(../images/map.png);

    top: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1626%) hue-rotate(63deg) brightness(118%) contrast(92%);
}

.contact-wrapper {
    display: flex;

}

 .contact-left-wrapper {
    flex-basis: 60%;

}

 .contact-right-wrapper {
    flex-basis: 40%;


}

 .contact-inner {
    
    margin: 0 auto;
    background-color: #002855;
    padding: 35px;
    height: 100%;
    border-radius: 16px;
}

.contact-inner .contact-body{
    height: 100%;
}

.contact-inner .contact-body .address{
    height: 100%;
}

 .contact-inner .contact-body .wlc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFF;
}


 .adrs {
    padding: 20px;
    border-radius: 16px;
    background-color: #FFF;
    height: 100%;
}

 .adrs {
    padding: 20px;
    border-radius: 16px;
    background-color: #ffffff21;
}

 .adrs-text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;

}

.adrs.email{
    word-break: break-all;
}

 .adrs-title {
    color: #FFF;
    font-weight: 500;
}

 .adrs-txt {
    color: #ffffffdb;
    font-weight: 200;
}

 .adrs-icon {
    font-weight: 700;
    color: #FFF;
    margin-right: 12px;
    font-size: 20px;
}

 .scl-connect {
    display: flex;
    flex-direction: row;
    color: #FFF;
   align-items: center;
}

 .scl-connect .scl-links {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
}

 .scl-connect .scl-links .scl-link {
    font-size: 25px !important;
    padding: 10px;
    margin: 0 10px;
}

@media (max-width:1150px) {
     .contact-left-wrapper {
        flex-basis: 50%;

    }

     .contact-right-wrapper {
        flex-basis: 50%;


    }
}


@media (max-width:1000px) {

    .contact-wrapper {
        flex-direction: column-reverse;
        row-gap: 20px;

    }

     .contact-left-wrapper {
        flex-basis: 100%;

    }

     .contact-right-wrapper {
        flex-basis: 100%;


    }


     .contact-inner {
        width: 100%;

    }

    .contact-inner .contact-body .wlc-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    

    .scl-connect {
        border-top: 1px solid #ffffff52;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
    }
}



@media (max-width:500px) {
 .contact-inner {
        padding: 20px;
    }
} */









.utr .card{
    height: auto;
}

.utr .card .iconBox span img{
    padding: 0 !important;
}

.utr .slider {
    padding-block: 12px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    /* mask-image: linear-gradient(to right, transparent 20%, #e10202 40%, #000 60%, transparent 80%); */

    /* -webkit-mask-image: linear-gradient(to right, transparent, #000, transparent); */
}

.utr .list {
    display: flex;
    width: calc(var(--width) * var(--imageQuantity) * 2);
    /* Double the width for seamless looping */
    gap: calc(var(--width) / 4);
    animation: autoScroll 20s linear infinite;
}

.utr .list:hover {
    animation-play-state: paused !important;
}

.utr .item {
    width: var(--width);
    height: var(--height);
    flex-shrink: 0;
    padding: 10px;
    background-color: rgb(255, 255, 255);
}

.utr .item img {
    width: 100%;
    height: 100%;
    transition: filter 0.5s ease-in-out;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--width) * var(--imageQuantity)));
    }
}

.utr .slider[reverse="true"] .list {
    animation: reverseScroll 20s linear infinite;
}

@keyframes reverseScroll {
    0% {
        transform: translateX(calc(-1 * var(--width) * var(--imageQuantity)));
    }

    100% {
        transform: translateX(0);
    }
}

/* accordion */



.accordion-item {
    margin: 8px 0;
    border: 0;
    border-radius: 10px;
}


.accordion-button {
    background-color: #f5faff;
    color: #1d2143;
}

.accordion-button:not(.collapsed) {
    color: #FFF;
    background-color: #002855;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-body {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #6c757d;

}


/* section */
/* ------------------------------------------------------- */
.crt{
    background-color: #e9e9e9;
}
.crt-img{
    border-radius: 16px;
    overflow: hidden;
}


.crt-list li{
    list-style: disc;
}

.unv-container .card{
    height: 100%;
}





.unv-container .card > .content{
    max-height: 210px;
}




/* updated contact page */


:root{
    --span-color:#5a5a5a;
}

.adrs-widget{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 11px 11px 11px 11px;
    padding: 35px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    background-color: #FFF;
    transition: 0.5s linear;
    height: 100%;
}

.adrs-widget .location{
    display: flex;
    justify-content: center;
}
.adrs-widget .location > a{
    display: flex;
    gap: 4px;
    align-items: center;
    background-color: #139bde;
    padding:12px 24px ;
    border-radius: 20px;
    color: #FFF;
    font-weight: 600;
}


.adrs-widget .location > a  i{
     margin-right: 10px;
}


.adrs-widget .adrs.adrs .adrs-text{
    color: #000 !important;
    
}

.adrs-widget .phone{
    display: flex;
    flex-wrap: wrap;
    color: var(--span-color);
}

.adrs-widget .phone > span{
    margin: 0 10px;
}

.adrs-widget .adrs-text{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    height: 100%;
}

.adrs-widget .email-text{
    color:var(--span-color) ;
    font-size: 15px;
}


.adrs-widget:hover{
    background-color: #002855;
}

.adrs-widget:hover .adrs-text .adrs-txt{
    color: #FFF;
}

.adrs-widget:hover .phone {
    color: #ffffffdb;
    font-weight: 200;
}

.adrs-widget:hover .email-text{
    color: #ffffffdb;
    font-weight: 200;
}

.adrs-widget .ard{
    font-weight: 400;
}


