@charset "utf-8";

/* CSS Document */
html {}

:root {
    --primary: #174084;
    --lightblue: #4981B7;
    --blue: #B3CBE7;
    --red: #D21B0F;
    --black: #000;
    --text: #0c0a0b;
    --grey: #F3F8FC;
    --greyC: #ccc;
    --white: #fff;
    --pColor: #4e4e4e;
    --footerBG: #2A91D3;
    --lightgreen: #64FFD9;
    --h1: 45px;
    --h2: 36px;
    --h3: 30px;
    --h4: 20px;
    --h5: 18px;
    --h6: 14px;
    --p: 16px;
    --p25: 25px;
}

@media (max-width: 767px) {
    :root {
        --h1: 32px;
        --h2: 30px;
        --h3: 24px;
        --h4: 18px;
        --h5: 16px;
        --h6: 12px;
        --p: 15px;
        --p25: 20px
    }
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.row {
    padding: 0 20px;
    justify-content: center;
}

form.row {
    justify-content: left;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: var(--p);
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    display: swap;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

img {
    max-width: 100%;
}

.image-width {
    width: 100%;
}

.for-laptop,
.laptop-view {
    display: inline-flex;
}

.for-mobile,
.mobile-view {
    display: none;
}

.hero .for-laptop,
.banner-part.for-laptop,
.sidebar.for-laptop,
.representative-ul-list-wrapper.for-laptop {
    display: block;
}

.banner-part .img-responsive {
    width: 100%;
}

.slider-for-laptop {
    display: block;
}

.slider-for-mobile {
    display: none;
}

@media (max-width: 1199px) {
    .for-mobile {
        display: inline-flex;
    }

    .banner-part.for-laptop {
        display: none;
    }

    .for-laptop,
    .laptop-view,
    .sidebar.for-laptop,
    .representative-ul-list-wrapper.for-laptop {
        display: none;
    }

    .mobile-view {
        display: inline;
    }

    .banner-part.for-mobile {
        display: block;
    }
}

@media (max-width: 800px) {
    .slider-for-laptop {
        display: none;
    }

    .slider-for-mobile {
        display: block;
    }

    .hero {
        padding-top: 30px;
    }
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #000;
    background: #fff;
}

.sticky {
    z-index: 3;
}

.clearfix {
    clear: both
}

.flex-center {
    display: flex;
    justify-content: right;
    align-items: center;
}

.flex-left {
    display: flex;
    justify-content: left;
    align-items: center;
}

.flex-right {
    display: flex;
    justify-content: right;
    align-items: center;
}

/*start hover-effect*/
a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--red);
}

/*end hover-effect*/
#button {
    display: inline-block;
    background-color: var(--red);
    width: 50px;
    height: 45px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    position: fixed;
    bottom: 0;
    right: 25px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
    border-bottom: 0;
}

#button:hover {
    cursor: pointer;
    background-color: var(--footerBG);
}

#button:active {
    background-color: var(--footerBG);
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/****start top menu****/
.top-menu .row {
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: block;
    position: relative;
    color: var(--primary);
    padding: 11px 17px;
    /* font-size: var(--h6); */
    font-weight: bold;
    /* background-color: var(--primary); */
}

.main-nav ul li:first-child a {
    border-radius: 30px 0 0 30px;
}

.main-nav ul li:last-child a {
    border-radius: 0 30px 30px 0;
}


.main-nav a:hover {
    color: var(--red);
    /* background: var(--red); */
}

.main-nav a:hover::before {
    transform-origin: left center;
    -khtml-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.main-nav__main ul li {
    position: relative;
    display: flex;
    align-items: center;
    /* max-width: 152px; */
    margin: 0;
    right: 0;
    /* padding: 0 27px; */
}

.main-nav__main ul li>ul {
    max-height: 0;
    overflow: hidden;
    transform: translateX(-30px);
    transition: all 0s, opacity 0.3s ease;
    box-shadow: 0 0 8px #666;
    border-radius: 15px;
    overflow: hidden;
}

.main-nav__main ul li>ul li {
    display: block;
    max-width: none !important;
    margin: 0;
    padding: 0;
}


.main-nav__main ul li>ul li::before {
    width: 0;
    height: 0;
}

.main-nav__main ul li>ul li a {
    display: block;
    padding: 2px 16px;
    text-align: left;
    transition: background-color 0.3s ease;
    border-radius: 0 !important;
    background: var(--white);
    color: var(--black);
}

.main-nav__main ul li>ul li:hover.has-sub-dropdown:after {
    color: var(--text);
}

.main-nav__main ul li.has-sub-dropdown>ul {
    top: 0;
    left: 100%;
}

.main-nav__main .has-dropdown {
    position: relative;
}

.has-dropdown>a:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.main-nav__main .has-dropdown:hover>ul:before {
    position: absolute;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--blue);
    margin-left: 15px;
}

.main-nav__main a.btn.btn-primary {
    height: auto;
    padding: 4px 16px;
    white-space: nowrap;
    justify-content: center;
}

.hover-menu {
    /* background: var(--red)!important; */
    color: var(--red);
}

@media (min-width: 1200px) {


    .main-nav__main ul li.has-dropdown:after {
        margin-left: 4px;
        font-size: 12px;
    }

    .main-nav__main ul li.has-sub-dropdown:after {
        position: absolute;
        top: 50%;
        right: 8px;
        color: #fff;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f054";
        transform: translateY(-50%);
    }

    .main-nav__main ul li>ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        display: block;
        width: 210px;
        /* overflow: visible; */
        background-color: var(--blue);
        opacity: 0;
        transform: scale(0);
        transition: all 0s, opacity 0.3s ease;
    }

    .main-nav__main ul li>ul li a {
        padding: 10px 20px;
    }

    .main-nav__main ul li>ul li:hover a:hover {
        /* color: var(--white); */
        color: var(--red);
        /* background: var(--red); */
    }

    .main-nav__main ul li:hover>ul {
        max-height: 1000px;
        opacity: 1;
        transform: scale(1);
        transition: all 0s, opacity 0.3s 0.3s ease;
    }

    .main-nav__main .has-dropdown:hover>ul:before {
        content: "";
    }
}

@media (max-width: 1199px) {

    .main-nav ul li:first-child a,
    .main-nav ul li:last-child a {
        border-radius: 0;
    }

    .main-nav a {
        background: transparent;
        padding: 15px 0;
    }

    .main-nav a:hover {
        background: transparent;
        color: var(--red);
    }

    .main-nav__main ul li {
        margin-bottom: 12px;
    }

    .main-nav__main ul li>ul {
        box-shadow: 0 0 0;
    }

    .main-nav__main ul li>ul li a {
        background: transparent;
        color: var(--white);
    }

    .hover-menu {
        background: transparent !important;
        color: var(--red) !important;
    }

    .main-nav__main ul li.has-dropdown:after {
        position: absolute;
        top: -2px;
        right: 0;
        bottom: 0;
        color: var(--white);
        width: 30px;
        height: 30px;
    }

    .main-nav__main ul li.active ul {
        max-height: 1000px;
        opacity: 1;
        transform: translateX(0);
        transition: all 0s 0.3s, opacity 0.3s ease;
    }

    .main_logo {
        width: 50%;
        float: left;
    }

    .main-menu-wrapper {
        width: 50%;
        float: right;
    }


    .main_logo .logo {
        width: 200px;
    }

    .main-nav-wrapper {
        width: 50%;
        float: right;
    }

    .main-nav a:before {
        opacity: 0;
    }

    .main-nav .main-nav__burger {
        background-color: transparent !important;
        border: 1px solid var(--white);
        color: var(--white);
        display: block;
        margin: auto;
    }

    .main-nav__burger i {
        font-size: 20px;
    }

    .main-nav__wrapper {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        bottom: 0;
        padding: 50px;
        background: var(--text);
        opacity: 0;
        transition: all 0.5s ease;
    }

    .main-nav__wrapper .main-nav__burger {
        position: fixed;
        top: 20px;
        right: 20px;
        display: none;
        color: var(--white);
    }

    .main-nav__wrapper.active {
        z-index: 11;
        overflow-y: auto;
        opacity: 1;
        transform: translateX(-100%);
    }

    .main-nav__wrapper.active .main-nav__burger {
        display: block;
    }

    .main-nav__main {
        padding: 17px 0;
        display: flex;
        justify-content: right;
    }

    .main-nav__main ul {
        display: block;
        line-height: 2.5;
    }

    .main-nav__main ul>li {
        max-width: none;
        border-bottom: 1px solid #333;
        display: inherit;
    }

    .main-nav__main ul>li a {
        color: #fff;
    }

    .main-nav__main ul>li.has-dropdown.active ul {
        padding-left: 8px;
        margin-left: 0;
        border-left: 1px solid #333;
    }

    .main-nav__main ul>li.has-dropdown.active ul li {
        border-bottom: none;
    }

    .main-nav__main ul>li.has-sub-dropdown ul {
        padding-left: 8px !important;
        margin-left: 18px !important;
    }
}

.home-link-wrapper a {
    margin: 0 8px;
}

.home-link-wrapper a img {
    margin: 0 10px;
}

#status_form .modal-header {
    border-bottom: 0;
}

#status_form .modal-header .btn-close {
    color: var(--white);
}

.status_btn {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    color: #666;
}

.status_btn img {
    width: 20px;
    padding: 0;
    margin: 0 10px;
}

#status_form input {
    border-radius: 0;
    margin-bottom: 15px;
    background: transparent;
    border: 0px;
    border-bottom: 1px solid var(--primary);
    padding: 10px;

}

#status_form input::placeholder {
    text-align: left;
}

#status_form input[type=submit] {
    margin: 0;
    background: var(--primary);
    color: white;
    border-radius: 5px;
    transition: 0.3s ease;
    text-align: center;
    width: 100%;
}

#status_form input[type=submit]:hover {
    background: var(--red);
    transition: 0.3s ease;
}

/***end top menu***/

/* start slideshow */
.hero {
    position: relative;
    background: #fff;
    /*padding:10px;*/
    background-size: cover;
    color: var(--black);
}

.hero .row {
    align-items: center;
}

.hero::before {
    /* content: "";
  position: absolute;
  background: var(--blue);
  opacity: .5;
  width: 100%;
  height: 100%; */
}

.hero-content-wrap {
    position: relative;
}

.hero h1 {
    font-size: var(--h1);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: var(--h3);
    margin-bottom: 20px;
}

.hero .apply-now,
.side-bar-speak-wrap .apply-now {
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    border-radius: 30px;
    font-weight: 700;
    padding: 6px 24px 6px 25px;
    overflow: hidden;
}

.hvr-sweep-to-right::before {
    background: var(--red) !important;
    border-radius: 30px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
}

.mobile-view .carousel-item img,
.carousel-item video,
.carousel-item img {
    width: 100%;
}

/* end slideshow */

/* start study abraod */
.homepage-wrapper {
    padding: 30px 10px;
    position: relative;
}

.gray-wrapper {
    background: var(--grey);
}

.homepage-wrapper h2 {
    color: var(--black);
    text-align: center;
    margin: 0;
    font-size: var(--h3);
    font-weight: 700;
}

.homepage-wrapper h4,
.homepage-wrapper h4 a {
    font-size: var(--h4);
    color: var(--red);
}

.homepage-wrapper h4 a:hover {
    color: var(--black);
}

.subtitle {
    font-size: 20px;
    max-width: 420px;
    margin: auto;
    color: #0c0a0b;
}

.studyabroad-wrapper {
    position: relative;
    text-align: center;
}

.studyabroad-wrapper:hover {}

.studyabroad-wrapper .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.40);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.studyabroad-wrapper a.info {
    color: var(--white);
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .5s;
}

.studyabroad-wrapper:hover .overlay,
.studyabroad-wrapper:hover a.info {
    opacity: 1;
}

.styles_icon__RRrPj {
    margin-left: 3px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    width: 8px;
}

.info:hover {
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
}

.studyabroad-margintop {
    margin-top: 60px !important;
}

.module-border-wrap {
    max-width: 230px;
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, var(--red), var(--primary));
    padding: 6px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

.module-border-wrap img {
    border-radius: 50%;
}

.study-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.3;
}

.study-abroad-page-image {
    max-width: 400px;
    float: right;
    padding: 13px 20px 5px;
}

.sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 9;
}

.category-nav-wrapper {
    box-shadow: 0px 0px 15px 0px var(--greyC);
    /* position: relative; */
}

.category-nav-wrapper.fixed {
    position: fixed;
    background: var(--white);
    width: 100%;
    top: 0;
    z-index: 9999;
    border: 0;
    box-shadow: 0 0 6px var(--greyC);
}

.category-nav-wrapper.fixed .category-nav {
    padding: 0;
    margin: 0;
}

.category-nav-wrapper .category-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* important */
    overflow-x: auto;
    /* optional: adds scroll if content overflows */
    white-space: nowrap;
    /* prevents text breaking */
}

.category-nav-wrapper .category-nav {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.category-nav-wrapper .category-nav::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

/* .category-nav-wrapper .category-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    padding: 0 0 5px 0;
    list-style-type: none;

} */

.category-nav a {
    margin: 0 2.0833333333vw 0 0;
    display: inline-block;
    color: var(--black);
    /* background-color: #fff; */
    line-height: 2.1875vw;
    /* border: 1px solid #ededed; */
    /* padding: 0 1.0416666667vw; */
    border-radius: 2.0833333333vw;
    font-weight: 700;
    padding: 10px;
}

.category-nav li a.active {
    color: var(--primary);
    /* border: 1px solid #007abb; */
    background-color: transparent;
    text-decoration: none;
}

/* profile  */
.profile.category-nav li a.active {
    color: var(--red);
    /* border: 1px solid #007abb; */
    background-color: transparent;
    text-decoration: none;
}

.profile-image {
    gap: 60px;
}

@media (max-width:767px) {
    .profile-image {
        flex-direction: column;
        gap: 20px;
    }
}

.scroll-content-wrapper {
    /* padding-top: 30px; */
}

.side-bar-speak-wrap.sticky-top {
    top: 70px;
    background: var(--blue);
}

.side-bar-speak-wrap .apply-now {
    font-size: 18px;
}

@media (max-width: 1199px) {
    .side-bar-speak-wrap {
        background: var(--blue) !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .category-nav-wrapper .category-nav {
        overflow-x: scroll;
        display: flex;
        scrollbar-width: thin;
        scroll-behavior: auto;
    }

    .category-nav-wrapper .category-nav::-webkit-scrollbar {
        width: 0;
        height: 4px;
    }

    .category-nav-wrapper .category-nav li {
        display: table-cell;
    }

    .category-nav a {
        /* display: table-caption; */
        width: max-content;
    }

}

@media (max-width: 600px) {



    .study-abroad-page-image {
        display: none;
    }
}

/* end study abraod */

/* start procedure */
.procedure-wrapper,
.study-abroad-wrapper {
    background: url(../images/plane.jpg) fixed no-repeat var(--grey);
}

.procedure-group-wrapper {
    text-align: center;
}

.procedure-group-wrapper img {
    width: 100%;
}

.procedure-section-wrapper .col-md-2 {
    padding: 0;
}

.procedure-step {
    font-size: 20px;
    color: var(--red);
    font-weight: bold;
}

.procedure-title {
    font-size: 18px;
    color: var(--black);
    font-weight: bold;
}

.procedure-title .active {
    color: var(--red);
}

.p4 img {
    padding-top: 2px;
}

.p5 img {
    padding-top: 5px;
}

.p6 img {
    padding-top: 8px;
}

.procedure-mobile-section-wrapper img {
    border-radius: 50%;
    /*box-shadow: 0 0 15px var(--text);*/
}

.procedure-mobile-section-wrapper .p4 img,
.procedure-mobile-section-wrapper .p5 img,
.procedure-mobile-section-wrapper .p6 img {
    padding-top: 0;
}

.nav-tabs.procedure-tabs .nav-link,
.nav-tabs.procedure-tabs .nav-item.show .nav-link,
.nav-tabs.procedure-tabs .nav-link.active {
    padding: 15px 20px;
}

.innerpage-procedure-wrapper h3,
.innerpage-procedure-wrapper h4,
.scroll-content-wrapper h2 {
    color: var(--red);
}

.page .innerpage-procedure-wrapper h3,
.page .innerpage-procedure-wrapper h4,
.page .scroll-content-wrapper h2 {
    color: var(--black);
}

/* end procedure */

/* start about us */
.aboutus-wrapper {
    padding: 80px 10px;
}

.aboutus-wrapper h2 {
    text-align: left;
}

.readmore {
    color: var(--red);

}

.readmore:hover {
    color: var(--text);
    text-decoration: underline;
}

.counter-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.counter-wrapper li:first-child,
.counter-wrapper li:nth-last-child(3) {
    border-bottom: 1px solid var(--greyC);
}

.counters {
    padding: 20px 0;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--hoverText);
}

.counters-wrap {
    display: flex;
    align-items: baseline;
}

.counter,
.counters span {
    font-size: var(--h3);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-weight: normal;
    margin-bottom: 0;
    text-align: center;
}

.counters img {
    width: 50px;
    height: 50px;
}

@media (max-width: 550px) {
    .counters {
        justify-content: center;
    }
}

/* end about us */

/* start test preparation */
.preparation-section-wrapper {
    border: 1px solid var(--greyC);
    background: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    line-height: 1.3;
}

.preparation-section-wrapper:hover {
    box-shadow: 0 0 6px var(--greyC);
}

.preparation-section-wrapper a:hover {
    color: var(--red);
}

/* end test preparation */

/* start service */
.service-wrap,
.flip-card {
    background: var(--white);
    box-shadow: 0 0 10px var(--greyC);
    border: 1px solid var(--greyC);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.service-wrap:hover {
    box-shadow: 0 0 10px 0 var(--text);
}

.service-image,
.preparation-img,
.testimonial-images {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
}

.service-image img,
.preparation-img img,
.testimonial-images img {
    width: 100%;
    opacity: 0;
    /* max-height: 240px; */
}

.service-content p,
.blog-title {
    font-weight: 700;
    text-align: center;
    font-size: var(--h4);
}

.blog-title {
    text-align: left;
}

.service-content a:hover {
    color: var(--red);
}

.service-wrap .readmore a,
.event-wrapper .readmore a {
    border: 1px solid var(--black);
    border-radius: 16px;
    padding: 5px 10px;
}

.service-wrap .register a {
    border: 1px solid #d21c10;
    background-color: #d21c10;
    border-radius: 16px;
    padding: 5px 10px;
    color: #fff;
    transition: 0.2s ease-in-out;
    text-wrap: nowrap;
    margin-right: 15px;
}

.service-wrap .register a:hover {
    border: 1px solid #174084;
    background-color: #174084;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.service-wrap .readmore a:hover,
.event-wrapper .readmore a:hover {
    border: 1px solid var(--red);
    border-radius: 16px;
    padding: 5px 10px;
    color: var(--red);
    text-decoration: none;
}

.service-wrap .readmore:hover,
.event-wrapper .readmore:hover {
    text-decoration: none;
}

.services-wrapper .row {
    justify-content: center;
}

/* flip */
.service-wraps {}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
}

.flip-card-inner,
.services-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    color: var(--black);
}

.flip-card-back {
    background-color: var(--white);
    transform: rotateY(180deg);
    padding: 30px;
}

.services-card a.readmore {
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.services-card:hover a.readmore {
    opacity: 1;
}

/* end services */

/* start testimonial */
.testiomial-wrap {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--greyC);
    box-shadow: 0 0 10px var(--greyC);
    align-items: center;
}

.testimonial-img-wrap {
    position: relative;
    text-align: center;
}

.comma {
    position: absolute;
    bottom: 0;
}

.testimonial-img-wrap img {
    border-radius: 50%;
}

.testimonial-content-wrap {
    margin-right: 20px;
}

.testimonial-images {
    border-radius: 50%;
}

.view-all {
    background: var(--primary) !important;
    border-radius: 10px;
    color: var(--white);
}

.hvr-shutter-out-horizontal::before {
    background: var(--red) !important;
    border-radius: 10px;
}

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

.owl-dot {
    background: var(--black) !important;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dot.active {
    background: var(--red) !important;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

@media (max-width: 700px) {
    .testiomial-wrap .col-md-4 {
        display: none;
    }
}

/* end testimonial */
/* start video testimonial */
.video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 250px;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    border: 1px solid var(--greyC);
    box-shadow: 0 0 10px var(--greyC);
}

.video:hover {
    box-shadow: 0 0 6px var(--text);
}

.video button {
    background: transparent;
    font-size: var(--h2);
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video button:hover {
    color: var(--red);
    border: 3px solid var(--red);
}

.video button img {
    width: 64px;
    transition: all 0.2s ease;
}

.video button:hover img {
    scale: 1.2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#youtube-modal .modal-dialog {
    min-width: 60%;
}

/* end video testimonial */

/* start blog */
.blog-content p,
.blog-wrap {
    text-align: left;
}

.blog-content span {
    color: var(--pColor);
    display: block;
}

.flex-1 {
    flex: 1;
}

/* end blog */

/* start clients */
.client-wrapper {
    padding: 30px 10px;
}

#carousel div {
    text-align: center;
    width: 160px;
    height: 80px;
    padding: 0 20px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#carousel div a {
    display: block;
}

#carousel div img {
    max-width: 100%;
    max-height: 100%;
}

#carousel figure {
    margin: 0;
}

/* .tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
  z-index: 1;
}
.tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: #555;
  color: var(--white);
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptext2 {
  visibility: visible;
}
.tooltip-bottom {
  top: 60%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
} */


.owl-nav {
    display: none;
}

/* end clients */

/* start location */
.location-wrapper {
    /*background: url(../images/map.png) fixed no-repeat var(--grey);*/
    padding-bottom: 0;
}

.location-wrapper h3 span {
    color: var(--red);
}

.location-title {
    font-size: var(--p25);
    color: var(--black);
    margin-bottom: 35px;
}

.location-title p span {
    background-color: var(--red);
    border-radius: 4px;
    color: #fff;
    padding: 8px 1.25em;
    font-size: 18px;
}

.location-wrap {
    padding: 0;
}

.location-top-title-wrap {
    font-size: 22px;
    font-weight: bold;
}

.location-top-title-wrap span {
    background: var(--greyC);
    padding: 10px 20px;
    border-radius: 10px;
}

.address-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.address-title>i {
    color: var(--red);
    margin-right: 3px;
    font-size: 30px;
}

.address-title.color-blue>i {
    color: var(--primary);
}

.address-title.color-dark-blue>i {
    color: #132D3B;
}

.address-title.color-yellow>i {
    color: var(--yellow);
}

.address-title>span {
    /* border-bottom: 1px solid; */
}

.country-flag {
    width: 45px;
    margin-top: -10px;
    margin-left: -5px;
}

.gmap-link #first {
    color: var(--white);
    background: var(--red);
    padding: 10px 20px;
    border-radius: 15px;
}

/**.gmap-link #mobile_first{
  color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  border-radius: 15px;
  display:none;
}

@media (max-width: 575px){
	.gmap-link #first{
		display:none;
	}
	.gmap-link #mobile_first{
		display:inline-block;
	}
}**/

.gmap-link #second,
.gmap-link #third {
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 15px;
}

.gmap-link #third {
    background: #132D3B;
}

/**.gmap-link #third{
  color: var(--white);
  background: var(--yellow);
  padding: 10px 20px;
  border-radius: 15px;
}**/

.gmap-link #first:hover {
    color: var(--red);
    background: var(--white);
}

.gmap-link #second:hover {
    color: var(--primary);
    background: var(--white);
}

.gmap-link #third:hover {
    color: #132D3B;
    background: var(--white);
}

/**.gmap-link #third:hover{
  color: var(--yellow);
  background: var(--white);
}**/
.location-address p.a1 {
    margin-left: 29px;
}

.location-address p.a2 {
    margin-left: 36px;
}

.location-address p.a3 {
    margin-left: 35px;
}

.location-address p.a4 {
    margin-left: 42px;
}

.location-address p.a4 i {
    font-size: 25px;
    margin-right: 10px;
}

.location-address a:hover i {
    color: var(--red);
}

.location-flag img {
    height: 87px;
    width: 87px !important;
}


/* end location */

/* start footer */
footer {
    background: #132D3B;
    padding-bottom: 30px !important;
    color: var(--white);
}

footer h4 {
    color: var(--white) !important;
    position: relative;
    padding-bottom: 4px;
}

footer h4::before {
    position: absolute;
    content: "";
    width: 20%;
    height: 2px;
    background: var(--white);
    bottom: 0;
}

ul.footer-links {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    line-height: 2.5;
}

ul.footer-links li a {
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

ul.footer-links li a:hover {
    color: var(--red);
}

.footer-social-links {
    text-align: center;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    padding: 7px;
    margin: 0 4px;
    text-align: center;
}

.footer-social-links a i {
    font-size: 20px;
}

.copyright-wrapper {
    background: #09232F;
    color: var(--white);
    padding: 15px 5px;
}

.copyright-wrapper a {
    color: var(--white);
    text-decoration: underline;
}

/* end footer */

@media (max-width: 1199px) {
    .procedure-group-wrapper {
        margin-bottom: 30px;
        border: 1px solid grey;
        padding: 10px;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        word-wrap: break-word;
        height: 330px;
    }

}

@media (max-width:575px) {

    .preparation-wrapper .col-md-2,
    .location-wrap .col-md-2,
    .location-wrap .col-md-3,
    footer .col-md-3,
    .procedure-mobile-section-wrapper .col-md-2 {
        width: 50%;
        padding: 5px;
    }

    .location-title {
        text-align: center;
    }

    .studyabroad-margintop {
        margin-top: 0 !important;
    }
}

/* start innerpage */
.innerpage-top-banner-wrapper {
    background: url(../images/titlebar-bg03.jpg) no-repeat fixed;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-position: center top;
    background-size: cover;
    color: var(--white);
    height: 280px;
    display: table;
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.innerpage-banenr {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}

.breadcrumb-wrapper-inner a {
    color: var(--white);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.breadcrumb-wrapper-inner a:hover {
    color: var(--red);
}

.innerpage-wrapper p {
    text-align: justify;
    line-height: 2;
}

.innerpage-wrapper p a,
.innerpage-wrapper ul li a,
.innerpage-wrapper ol li a {
    color: var(--red);
    word-break: break-all;
}

.innerpage-wrapper p a.view-all {
    color: var(--white);
    background: var(--red) !important;
}

.innerpage-wrapper p a.view-all.hvr-shutter-out-horizontal::before {
    color: var(--white);
    background: var(--primary) !important;
}

.innerpage-wrapper ol {
    line-height: 2.5;
}

.innerpage-wrapper h2 {
    text-align: left;
    font-size: var(--p25);
}

ul li {
    list-style: none;
}

.team-wrap {
    padding: 20px;
    border: 1px solid var(--greyC);
    border-radius: 20px;
    text-align: center;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    /* margin: 0 10px; */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px var(--greyC);
}

.team-wrap .thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 50%;
}

.team-wrap .thumbnail img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: drop-shadow(0px 20px 40px rgba(89, 86, 230, 0.08));
    filter: drop-shadow(0px 20px 40px rgba(89, 86, 230, 0.08));
}

.team-wrap p {
    text-align: center;
}

.innerpage-team-head-img {
    position: relative;
}

.innerpage-team-head-img::before {
    content: "";
    position: absolute;
    background: var(--primary);
    height: 100%;
    width: 80%;
    right: 0;
}

.innerpage-team-head-img img {
    width: 90%;
    position: relative;
    padding-top: 40px;
}

.team-head-name-wrap {
    position: absolute;
    top: 70%;
    right: 0;
    background: var(--white);
    padding: 20px;
    font-size: 18px;
}

.nav-tabs .nav-link {
    border-radius: 0;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* background: var(--primary);
  border-radius:20px; */
    overflow: hidden;
    border: 0;
}

.nav-tabs li {
    background: var(--primary);
    overflow: hidden;
}

.nav-tabs li:first-child {
    border-radius: 15px 0 0 15px;
}

.nav-tabs li:last-child {
    border-radius: 0 15px 15px 0;
}

.nav-tabs .nav-link {
    padding: 15px 40px;
    color: var(--white);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--red);
    padding: 15px 40px;
    color: var(--white);
}

.nav-tabs .nav-item button span {
    font-size: 20px;
    font-weight: bold;
}

.innerpage-services-wrapper .service-wrap {
    position: relative;
}

.innerpage-services-wrapper .service-wrap .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    opacity: 0;
    visibility: hidden;
    transform-style: preserve-3d;
}

.innerpage-services-wrapper .service-wrap:hover .hover-content {
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.hover-content p {
    height: 230px;
    overflow-x: scroll;
}

.innerpage-ul,
.list {
    padding: 0;
    margin: 0 0 30px;
}

.innerpage-ul li,
.list li {
    position: relative;
    line-height: 2.4;
    padding-left: 20px;
    /* margin-left: 20px; */
}

.innerpage-ul li::before,
.list li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    left: 0;
    top: 15px;
}

p.title {
    font-size: var(--h4);
    text-align: left;
    color: var(--black);
    line-height: 1.7;
    font-weight: bold;
}

p.title a,
a.more,
.recent_post_details a {
    color: var(--primary) !important;
}

p.title a:hover,
a.more:hover,
.recent_post_details a:hover {
    color: var(--black);
}

.blog_list,
.recent_post {
    background: var(--white);
    padding: 30px 30px 20px 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px var(--greyC);
    border-radius: 20px;
    overflow: hidden;
}

.recent_post {
    padding: 30px;
    top: 20px;
}

ul.recent_post_list {
    padding: 0;
    margin: 0;
}

ul.recent_post_list li {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.recent_post_list li .service-image {
    width: 80px;
    float: left;
    margin-right: 15px;
}

.recent_post_list li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

ul.recent_post_list a {
    transition: 0.3s;
}

ul.recent_post_list a:hover {
    margin-left: 10px;
}

/* end innerpage */

/* start error page */
.error-wrapper {
    padding: 45px 0;
}

.error-wrapper h1 {
    font-size: 100px;
    margin: 0;
    color: var(--primary);
}

.error-wrapper a {
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    padding: 13px 55px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.error-wrapper a:hover {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

/* end error page */
/* start contact */
ul {
    margin: 0;
    padding: 0;
}

.contact-address {
    background-color: var(--grey);
    padding: 50px;
    border-radius: 15px;
}

.contact-address .contact-address-list .single-address-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.contact-address .contact-address-list .single-address-item .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-right: 20px;
    color: var(--white);
    background-color: var(--red);
}

.contact-address .footer-social-links {
    text-align: left;
}

.contact-address .footer-social-links a {
    color: var(--white);
    background: var(--primary);
}

.form .form-element>.row {
    padding: 0;
    /* margin-bottom: 30px; */
}

.form .form-element>.row>div {
    position: relative;
}

.form .form-element>.row>div .icon,
.form .form-element>.row>div i {
    position: absolute;
    left: 48px;
    top: 29px;
    color: #CDCDCD;
    z-index: 5;
}

.form .form-element input[type="text"],
.form .form-element input[type="email"],
.form .form-element input[type="password"],
.form .form-element input[type="number"],
.form .form-element input[type="tel"],
.form .form-element input[type="url"],
.form .form-element input[type="date"],
.form .form-element textarea,
.form .form-element select {
    height: 74px;
    border: 1px solid #E1E1E1;
    border-radius: 20px;
    background-color: #fff;
    padding: 25px;
    width: 100%;
    margin: 0;
    font-size: 16px;
    padding: 15px 20px 15px 60px;
    color: #6A6A6A;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin-bottom: 30px;
}

.form .form-element textarea {
    width: 100%;
    height: 220px;
    resize: none;
    padding-left: 30px;
}

.btn-common {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 0;
    text-transform: capitalize;
    background-color: #fff;
    padding: 37px 42px 36px;
    border: 1px solid #E4E4E4;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    position: relative;
    z-index: 1;
    background: var(--primary);
    color: var(--white);
}

.btn-common:hover {
    background: var(--red);
}

/* end contact */

/* start registration form */
.new-form-wrapper {
    background: var(--white);
    box-shadow: 0 0 20px #00000029;
    padding: 30px 10px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.new-form-wrapper .form-group {
    /* height: 100% !important; */
    margin-bottom: 20px;
}

.new-form-wrapper .form-group label {
    font-weight: 500;
    font-size: 15px;
    /* padding-right: 10px; */
}

.new-form-wrapper input,
.new-form-wrapper select,
.new-form-wrapper textarea,
.new-form-wrapper input.form-control,
.new-form-wrapper select.form-control,
.new-form-wrapper textarea.form-control,
.new-form-wrapper .s-example-basic-single,
.new-form-wrapper .select2-container--default .new-form-wrapper .select2-selection--single {
    padding: 10px 15px !important;
    border-radius: 14px !important;
    border: 1px solid var(--primary) !important;
    font-size: 14px !important;
}

#from_nepal .col-md-6 {
    /* float: left; */
}

@media (max-width: 1000px) {
    #from_nepal .col-md-6 {
        width: 100%;
        float: none;
    }
}

input[type="checkbox"],
input[type="radio"] {
    max-width: 20px;
    margin-right: 10px;
}

.custom-select {
    position: relative;
}

.custom-select::after {
    content: "";
    position: absolute;
    top: 50px;
    right: 18px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--black);
    /* Arrow color */
}

.custom-select select.form-control {
    /* CSS properties for the select button */
    -webkit-appearance: none;
    /* Hide default arrow on Chrome/Safari */
    -moz-appearance: none;
    /* Hide default arrow on Firefox */
    appearance: none;
    /* Hide default arrow on other browsers */
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus,
.s-example-basic-single:focus,
.select2-container--default .select2-selection--single:focus {
    border: 1px solid #999;
    box-shadow: 0 0 6px #999;
}

.select2-container--default .select2-selection--single {
    height: 43px !important;
    padding: 10px 15px !important;
    border-radius: 14px !important;
    border: 1px solid var(--primary) !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.4 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

.select2-container {
    width: 100% !important;
}

.submit {
    border: 1px solid var(--red);
    background: var(--red);
    padding: 10px;
    color: var(--white);
    display: block;
    width: 230px;
    margin: auto;
    text-align: center;
    border-radius: 3pc;
    transition: 0.2s ease;
}

.submit:hover {
    border: 1px solid var(--primary);
    background: var(--primary);
}

#more {
    display: none;
}

#dots #myBtn {
    color: #17376E;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

.footer-address-wrapper {
    background: rgba(23, 55, 110, 1);
    position: relative;
    z-index: 1;
    border: 0;
    color: var(--white);
    text-align: center;
}

.top-address-wrapper {
    display: flex;
    justify-content: center;
    /* margin-bottom: 10px; */
    gap: 30px;
}

/* end registration form */

/* start accordion */
.accordion-item .accordion-button {
    background: var(--primary);
    color: var(--white);
    font-size: var(--h4);
}

.accordion-button:not(.collapsed) {
    background: var(--red) !important;
}

.accordion-item .accordion-button:focus {
    outline: none !important;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    color: var(--white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* end accordion */
.logo_acc_wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo_acc_wrapper #iasBadge img {
    min-width: 70px;
}

.logo_acc {
    text-align: center;
}

.logo_acc img {
    height: 40px;
    /* cursor: pointer; */
    margin: 0 15px;
}

/* start university */
.university-logo-search-wrap {
    position: relative;
    height: 70px;
}

.search-input {
    position: absolute;
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    border: 1px solid var(--primary);
}

.search-box {
    /* width: 50px !important; */
    height: 39px;
    /* text-indent: -9999px; */
    border: none;
    border-radius: 15px !important;
    outline: 0;
    /* background: url(//img.alicdn.com/imgextra/i4/O1CN01cwHWrW1dwuHpJheqe_!!6000000003801-2-tps-72-72.png) 50% no-repeat #ffe1d2 !important;
    background-size: auto;
  background-size: 20px !important; */
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
    cursor: pointer;
    padding: 0 30px;
    top: 5px;
    position: absolute;
    right: 5px;
}

.university-logo-wrap {
    /*box-shadow: 0 0 6px #000;*/
    border: 1px solid grey;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    margin: 5px;
}

.university-logo-title {
    background: var(--primary);
    color: var(--white);
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.univerisity-logo-detail a {
    color: var(--red);
}

.univerisity-logo-detail a:hover {
    color: var(--black);
}

.university-logo-wrap figure img {
    height: 120px;
    object-fit: contain;
}

.university-logo-location {
    text-transform: capitalize;
}

/* end university */
@media (max-width: 1200px) {
    .nav-tabs {
        display: block;
    }

    .nav-tabs li {
        float: left;
        width: 50%;
        border-radius: 15px !important;
        border: 1px solid #fff;
    }

    .nav-tabs li .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link {
        width: 100%;
    }

    .nav-tabs .nav-link,
    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        padding: 15px 3px;
        font-size: 13px;
    }

    .location-content-wrap {
        margin-top: 35px;
    }

    .location-top-title-wrap span {
        display: block;
    }

    .location-top-title-wrap {
        position: relative;
    }

    .country-flag {
        margin-left: 0;
        position: absolute;
        right: 1px;
        top: 0;
    }

}


@media (max-width: 1199px) {
    .flip-card-back {
        display: none;
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(0deg);
    }

    .flip-card {
        height: auto;
    }

    .flip-card-front,
    .flip-card-back {
        position: relative;
    }
}

#ac-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1111111;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

#popup {
    width: 96%;
    height: auto;
    background: #FFFFFF;
    border-radius: 5px;
    -moz-border-radius: 25px;
    -moz-box-shadow: #64686e 0px 0px 3px 3px;
    position: relative;
    top: 9%;
    /* left: 20%; */
    margin: auto;
}

.popupContent {
    text-align: center;
    padding: 15px 30px 30px;
}

.popupContent h1 {
    line-height: 1.5;
}

.popupContent h2 {
    font-size: 28px;
}

.close {
    width: 25px;
    height: 30px;
    /* border-radius: 50px;
  background: #1677A6; */
    text-align: right;
    border: 0;
    color: #000;
    text-shadow: 0 0;
    font-size: 18px;
    margin: 4px 20px;
    opacity: 1;
}

.close:hover {
    background: #fff;
    color: #1677A6;
}

.popup-links {
    margin-top: 40px;
}

.popup-links a {
    background: #24447F;
    color: #fff;
    border: 1px solid #24447F;
    padding: 15px 30px;
    border-radius: 5px;
}

.popup-links a:hover {
    background: #fff;
    color: #24447F;
}

/* start apply now  */
.choose-title {
    font-size: var(--h4);
    color: var(--primary);
}

.add-button {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.add-button:hover {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.req1 {
    color: var(--red);
}

.choose-table-wrap {}

.choose-table-wrap tr,
.choose-table-wrap tr td,
.choose-table-wrap th {
    border: 0;
    padding: 10px 0;
}

.choose-table-wrap #TextBoxContainer td {
    padding: 20px;
    background: #eee;
}

.choose-table-wrap #TextBoxContainer td:first-child {
    padding-right: 0;
}

.choose-table-wrap #TextBoxContainer td:last-child {
    padding-left: 0;
}

.choose-table-wrap #TextBoxContainer td select {
    margin-bottom: 15px;
    background: var(--white);
}

.speak-wrapper {
    background: #208EBB;
    color: var(--white);
    border-radius: 0 15px 15px 0;
    margin-bottom: 27px;
}

.speak-title-wrapper {
    max-width: 400px;
    margin-left: auto;
    margin-top: 200px;
}

.speak-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
}

.speak-title-wrapper p {
    font-size: 20px;
}

.form-title {
    color: var(--black);
    font-size: var(--h4);
    position: relative;
    margin-bottom: 20px;
}

.form-title:before {
    content: "";
    background-color: var(--red);
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: 0;
}

.innerpage-wrapper p.job_type {
    float: left;
    width: 97%;
}

/* end apply now */
/* start career page  */
.job_type_item {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}

/* Common style */

.job_type_item figure {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    background: #17376e;
    text-align: center;
    cursor: pointer;
}

.job_type_item figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.job_type_item figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.job_type_item figure figcaption::before,
.job_type_item figure figcaption::after {
    pointer-events: none;
}

.job_type_item figure figcaption,
.job_type_item figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.job_types figure.effect-chico img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    width: 100%;
}

.job_types figure.effect-chico:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.job_types figure.effect-chico figcaption {
    padding: 3em 1em;
}

.job_types figure.effect-chico figcaption::before {
    position: absolute;
    top: 17px;
    right: 17px;
    bottom: 17px;
    left: 17px;
    border: 1px solid #fff;
    content: '';
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.job_types figure.effect-chico figcaption::before,
.job_types figure.effect-chico p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.job_types figure.effect-chico h2 {
    padding: 0% 0 0px 0;
    word-spacing: 1px;
    text-align: center;
    color: var(--white);
}

.job_types figure.effect-chico p {
    margin: 0 auto;
    max-width: 200px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.job_types figure.effect-chico:hover figcaption::before,
.job_types figure.effect-chico:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    padding-top: 20px;
    text-transform: unset;
    font-size: 16px;
}

.job_types figcaption h2 {
    font-size: 16px;
}

.job_types figure.effect-chico p {
    font-size: 16px;
    color: white;
    padding-top: 20px;
}

.job_type_detail {
    font-weight: 500;
    font-size: 17px;
    color: #000;
}

.career_lists ul {
    margin-bottom: 30px;
}

.career_lists ul li {
    font-weight: 500 !important;
    font-size: 14px !important;
    list-style: inside !important;
    text-align: justify;
    position: relative;
    list-style: none !important;
    padding: 0 0 8px 20px;
}

.career_lists ul li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 11px;
    background: #000;
    left: 0;
    border-radius: 50%;
}

.career_lists input[type=file] {
    display: block;
    background: white;
    width: 100%;
}

details h5 {
    font-weight: 500;
    font-size: 19px;
    color: #000;
    letter-spacing: 1px;
}

.job_type {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--red);
}

.job_vacancy_list table tr td {
    vertical-align: top;
}

.job_vacancy_list table tr:first-child td {
    font-weight: 900;
}

/* end career page */
@media only screen and (max-width:760px) {
    #popup {
        width: 95%;
        top: 3%;
    }
}

.big-screen {
    display: block;
}

.small-screen {
    display: none;
}

@media(max-width:1024px) {
    .big-screen {
        display: none;
    }

    .small-screen {
        display: block;
    }

    .popupContent h2 {
        font-size: 18px;
    }
}

/* 404 page css */
.not-found-page {
    align-items: center;
    display: flex;
}

.message-box {
    text-align: center;
}

.message-box p {
    font-size: 20px;
}

.message-box h1 {
    font-size: 100px;
    /* line-height: 46px;
  margin-bottom: 40px; */
    color: #17376E;
}

.buttons-con .action-link-wrap {
    margin-top: 40px;
}

.buttons-con .action-link-wrap a {
    background: #17376E;
    padding: 8px 25px;
    border-radius: 4px;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s linear;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px
}

.buttons-con .action-link-wrap a:hover {
    background: #D21B0F;
    color: #fff;
}

#Polygon-1,
#Polygon-2,
#Polygon-3,
#Polygon-4,
#Polygon-4,
#Polygon-5 {
    animation: float 1s infinite ease-in-out alternate;
}

#Polygon-2 {
    animation-delay: .2s;
}

#Polygon-3 {
    animation-delay: .4s;
}

#Polygon-4 {
    animation-delay: .6s;
}

#Polygon-5 {
    animation-delay: .8s;
}

@keyframes float {
    100% {
        transform: translateY(20px);
    }
}

@media (max-width: 450px) {
    svg {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -250px;
        margin-left: -190px;
    }

    .message-box {
        top: 50%;
        left: 50%;
        margin-top: -100px;
        margin-left: -190px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .not-found-page svg {
        display: none;
    }

    .message-box {
        margin: 30px 0;
        box-shadow: 0 0 6px #ccc;
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .procedure-group-wrapper {
        height: 345px;
    }
}

@media (max-width: 460px) {
    .procedure-tabs .nav-item .nav-link {
        height: 130px;
    }
}

/* branch */
.contact_details_list {
    background: var(--grey);
    margin-bottom: 30px;
}

.contact_details_list img {
    /* border: 1px solid #f2f2f2; */
    width: 30px;
    /* border-radius: 100%; */
    height: 30px;
    margin-bottom: 10px;
    float: right;
    overflow: hidden;
}

.contact_details_list figcaption {
    font-size: 22px;
    font-weight: bold;
}

.contact_details_list .contact_details_desc .contact-location-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact_details_list .contact_details_desc i {
    color: var(--primary);
    font-size: 20px;
}

.contact_details_list .contact_details_desc a.google-map {
    color: var(--red);
    padding-left: 30px;
}

.contact_details_list .contact_details_desc a.google-map i,
.contact_details_list .contact_details_desc .contact-location-title a i {
    color: var(--red);
}

.contact_details_list .contact_details_desc a.google-map:hover,
.contact_details_list .contact_details_desc a.google-map:hover i,
.contact_details_list .contact_details_desc .contact-location-title a i:hover {
    color: var(--primary);
}


.alert-success,
.alert-warning {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 111111;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    border: 0;
}

.alert-bg {
    background: #D1E7DD;
    max-width: 600px;
    margin: auto;
    position: relative;
    top: 10%;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #26913D;
}

.alert-bg-size {
    background: #D1E7DD;
    max-width: 600px;
    margin: auto;
    position: relative;
    top: 10%;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #26913D;
}

.alert-bg .close {
    position: absolute;
    right: 2%;
    top: 8%;
    padding: 0;
    margin: 0;
    text-align: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid;
    line-height: 1;
}

.alert-warning {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 111111;
    top: 0;
    /* background: rgba(225, 82, 82, 0.9); */
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    border: 0;
}

.alert-warning .alert-bg {
    border: 4px solid #E15258;
    /* background-color: rgba(225, 42,42, 0.3); */
    background-color: #F3B8A5;
    /* background: url(https://bizzeducation.com/img/bizz-logo-success.png) #F3B8A5 no-repeat center center; */
}

.alert-warning .alert-bg center span {
    color: black;
}

.alert-success .alert-bg {
    border: 4px solid #3AC179;
}

.alert-warning .alert-bg-size {
    border: 4px solid #f8f8f8;
    /* background-color: rgba(225, 42,42, 0.3); */
    background-color: #FFCC00;
    /* background: url(https://bizzeducation.com/img/bizz-logo-success.png) #F3B8A5 no-repeat center center; */
    color: black;
}


/* map */
.branch-map__wrapper .container-fluid {
    max-width: 2200px;
}

.branch-map {
    --map-color-australia: #d36800;
    --map-color-colombia: #a18500;
    --map-color-india: #3843a8;
    --map-color-nepal: #633e18;
    --map-color-pakistan: #3742a8;
    --map-color-uk: #234430;
    --map-color-link: #cf1804;
    /* padding: 15% 0 0;
  margin: 0 300px; */
    position: relative;
    max-width: 1600px;
    padding: 9% 0 0;
    margin: 0 200px;

    & article {
        position: absolute;
        padding-bottom: 16px;

        & h3 {
            position: relative;
            font-size: 16px;
            padding: 0 0 0 30px;
            margin: 0;
            letter-spacing: normal;
        }

        & h3::before {
            position: absolute;
            left: 0;
            display: inline-block;
            width: 24px;
            height: 24px;
            background-position: center;
            background-color: #ccc;
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 50%;
            content: '';
        }

        /* info box */
        & .branch-infobox {
            position: absolute;
            z-index: 999;
            padding: 16px 16px 16px 50px;
            margin: 16px 0 0 8px;
            width: 340px;
            background: #fff;
            border-radius: 6px;
            box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            scale: 0;
            translate: 0 -10%;
            transition: all 0s 0.1s ease;
            transform-origin: top;

            & h4 {
                padding: 0;
                margin: 0 0 16px;
                font-size: 16px;
                font-weight: bold;
                letter-spacing: normal;
            }

            & h4::before {
                position: absolute;
                left: 20px;
                display: inline-block;
                width: 24px;
                height: 24px;
                background-position: center;
                background-color: #ccc;
                background-repeat: no-repeat;
                background-size: cover;
                border-radius: 50%;
                content: '';
                scale: 1.3;
            }

            & .branch-content {
                /* display: flex;
              gap: 8px; */
                font-size: 13px;
                /* line-height: 1.25; */

                & .branch-info {
                    display: flex;
                    flex-flow: row wrap;
                    gap: 8px;
                    /* flex: 2; */
                    color: #555;
                    margin-bottom: 12px;
                }

                & .branch-links {
                    /* flex: 1;
                  text-align: center; */
                }
            }

            & .address {
                flex: 0 0 100%;
            }

            & .tel,
            & .time {
                flex: 1;
            }

            & .google-map {
                /* display: flex; */
                padding: 8px;
                font-size: 12px;
                color: #fff;
                background: var(--map-color-link);
                border-radius: 6px;

                & i {
                    margin-left: 4px;
                }
            }

            & .google-map:hover {
                opacity: 0.9;
            }

            & .website,
            & .mail {
                /* display: inline-block;
              margin: 4px;
              color: var(--map-color-link);
              font-size: 24px; */
                margin: 0 0 0 7px;
                color: var(--map-color-link);
                font-size: 18px;
            }
        }

        /* line marker */
        &+.marker {
            --map-color: #f00;
            position: absolute;
            z-index: 0;
            border-left: 2px solid var(--map-color);
            translate: -12px 16px;
        }

        &+.marker::before,
        &+.marker::after {
            position: absolute;
            top: -8px;
            left: -5px;
            z-index: 0;
            width: 8px;
            height: 8px;
            border: 2px solid var(--map-color);
            border-radius: 50%;
            content: '';
        }

        &+.marker::after {
            top: 100%;
            background-color: var(--map-color);
        }
    }

    /* show info-box on hover */
    & article:hover .branch-infobox {
        opacity: 1;
        scale: 1;
        translate: 0 0;
        transition: opacity 0.3s ease, translate 0.3s ease;
    }

    /* position branches in the map in '%' */
    & article[data-ref="Australia"] {
        top: 11%;
        left: 85%;

        &+.marker {
            --map-color: var(--map-color-australia);
            top: 11%;
            left: 85%;
            height: 62%;
        }

        & h3 {
            color: var(--map-color-australia);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-australia.png);
        }
    }

    & article[data-ref="Colombia"] {
        top: 21%;
        left: 29%;

        &+.marker {
            --map-color: var(--map-color-colombia);
            top: 21%;
            left: 29%;
            height: 43%;

        }

        & h3 {
            color: var(--map-color-colombia);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-colombia.png);
        }
    }

    & article[data-ref="India"] {
        top: 16%;
        left: 69%;

        &+.marker {
            --map-color: var(--map-color-india);
            top: 16%;
            left: 69%;
            height: 42%;
        }

        & h3 {
            color: var(--map-color-india);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-india.png);
        }
    }

    & article[data-ref="Nepal"] {
        top: 24%;
        left: 70%;

        &+.marker {
            --map-color: var(--map-color-nepal);
            top: 24%;
            left: 70%;
            height: 32%;
        }

        & h3 {
            color: var(--map-color-nepal);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-nepal.png);
        }
    }

    & article[data-ref="Pakistan"] {
        top: 7%;
        left: 67.5%;

        &+.marker {
            --map-color: var(--map-color-pakistan);
            top: 7%;
            left: 67.5%;
            height: 47%;
        }

        & h3 {
            color: var(--map-color-pakistan);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-pakistan.png);
        }
    }

    & article[data-ref="UK"] {
        top: 15%;
        left: 47.7%;

        &+.marker {
            --map-color: var(--map-color-uk);
            top: 15%;
            left: 47.7%;
            height: 29%;
        }

        & h3 {
            color: var(--map-color-uk);
        }

        & h3::before,
        & h4::before {
            background-image: url(../images/map/flag-uk.png);
        }
    }
}

ul.pagination {
    justify-content: center;
}

.partner-univarsities-title {
    font-size: 20px;
    color: var(--primary);
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

#myTab {
    display: inline-flex;
    justify-content: center;
}

#myTab.representative-wrapper {
    display: block;
}

#myTab .nav-item {
    font-size: 17px;
    background: #174084;
    /* padding:12px;
	margin:10px;
	border-radius:10px; */
    color: white;
    transition: 0.2s ease-in-out;
}

#myTab .nav-item:hover {
    background: #D21B0F;
}

.university-logo-wrap:hover {
    box-shadow: 0 0 3px #000;
}

#myTab.representative-wrapper .nav-item {
    background: transparent;
    margin: 0 15px;
    text-align: center;
    margin-bottom: 30px;
}

.representative-wrapper .nav-item img {
    width: 200px;
    border-radius: 15px 15px 0 0;
}

.representative-wrapper .nav-item a {
    background: var(--primary);
    padding: 12px 20px;
    margin: 0 10px;
    border-radius: 15px;
    color: var(--white);
    text-align: center;
    width: 219px;
    margin: auto;
}

.representative-wrapper .nav-item a:hover {
    background: var(--red);
}

.university-country {
    font-weight: bold;
    margin-top: 30px;
}

.university-title-wrap {
    margin-bottom: 30px;
}

.university-title-wrap span {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
}

@media(max-width:1120px) {

    .representative-listing-wrapper,
    #myTab.representative-wrapper {
        width: 100%;
    }

    #myTab.representative-wrapper {
        /* display: inline-flex; */
    }
}

@media(max-width:900px) {
    #myTab.representative-wrapper .nav-item {
        margin: 0 2px 5px 2px;
    }

    #myTab.representative-wrapper {
        justify-content: left;
        /* overflow-x: scroll; */
        margin-bottom: 30px;
    }

    .university-title-wrap {
        font-size: 18px;
        letter-spacing: 1px;
    }

    #myTab.representative-wrapper::-webkit-scrollbar {
        width: 0;
        height: 4px;
    }

    .representative-wrapper .nav-item a {
        width: auto;
    }
}

/* snow */

.christmas-cap {
    position: fixed;
    z-index: 999999999;
    bottom: 109px;
    right: 17px;
    width: 50px;
    display: none;
}

.christmas-tree {
    position: absolute;
    width: 100px;
    bottom: 0;
}

.christmas-tree-right {
    right: 0;
}

@media(max-width:600px) {
    .christmas-tree {
        display: none;
    }
}

/* .snow-section {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.snow-section1 {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.snowflake {
  position: absolute;
  top: 0;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform: translateY(-100%);
  background: var(--white);
  transition: opacity 0.3s;
  / Optional: Add a smooth transition for opacity /;
  height: 11px;
  width: 11px;
  border-radius: 20px;
  z-index: 9;
}

@keyframes fall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200vh); }
} */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* end snow */

/* document checklist  */
.card {
    margin-bottom: 10px;
}

.card-header a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 40px;
}

.card-header a::after {
    z-index: 9;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    content: "\f078";
    cursor: pointer;
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: rotate(266deg);
    -webkit-transform: rotate(266deg);
}

.card-header a[aria-expanded="true"]::after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.blog-table {
    vertical-align: middle;
}

.blog-table img {
    width: 200px;
}

@media(max-width:767px) {
    .blog-table img {
        width: 100%;
    }
}

/**Banner New Css Open**/
.innerpage-top-banner-wrapper.full-banner {
    height: 350px;
    background-attachment: initial;
    background-position: center center;
    background-repeat: no-repeat;
}

/**Banner New Css Close**/

.search-container {
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
}

.search-bar-blogs {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--primary);
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
}

.search-bar-blogs input {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: var(--p);
    color: var(--text);
}

.search-bar-blogs a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar-blogs a:hover {
    background: var(--lightblue);
}

.search-bar-blogs i {
    font-size: 18px;
}




/**css for whatsapp chat **/

#nta-wa-gdpr {
    vertical-align: text-top !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nta-wa-gdpr {
    font-size: 11px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 4px;
}

.nta-wa-gdpr a {
    text-decoration: underline;
    color: inherit;
}

.pointer-disable {
    pointer-events: none;
}

.nta-woo-products-button:before,
.nta-woo-products-button:after {
    content: "";
    display: block;
    clear: both;
}

.wa__button {
    border-bottom: none !important;
}

.wa__btn_w_img:hover {
    text-decoration: none;
}

.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wa__button {
    position: absolute;
    width: 300px;
    min-height: 64px;
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
}

.wa__btn_txt {
    display: inline-block;
    font-size: 12px;
    line-height: 1.33em;
}

.wa__btn_w_icon .wa__btn_txt {
    padding: 16px 20px 15px 71px;
}

.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt {
    padding-top: 25px;
    padding-bottom: 24px;
}

.wa__btn_w_icon .wa__btn_txt .wa__btn_title {
    padding-left: 2px;
    font-size: 14px;
}

.wa__cs_info {
    margin-bottom: 2px;
}

.wa__btn_status {
    color: #f5a623;
    font-size: 9px;
    padding: 2px 0 0;
    font-weight: 700;
}

.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status {
    display: inline-block;
}

.wa__cs_info .wa__cs_name {
    font-size: 12px;
    line-height: 1.36em;
}

.wa__stt_online .wa__cs_info .wa__cs_name {
    color: #d5f0d9;
}

.wa__stt_offline .wa__cs_info .wa__cs_name {
    color: #76787d;
}

.wa__cs_info .wa__cs_status {
    width: 36px;
    height: 14px;
    margin-left: 3px;
    padding: 1px;
    font-size: 9px;
    line-height: 1.34em;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    top: -1px;
    left: 0px;
    text-align: center;
}

.wa__stt_online .wa__cs_info .wa__cs_status {
    background: #62c971;
}

.wa__stt_offline .wa__cs_info .wa__cs_status {
    background: #b9bbbe;
}

.wa__stt_online {
    background: #2db742;
    cursor: pointer;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    backface-visibility: hidden;
    will-change: transform;
}

.wa__stt_online .wa__btn_txt {
    position: relative;
    z-index: 4;
}

.wa__r_button.wa__stt_online:before {
    border-radius: 50vh;
}

.wa__sq_button.wa__stt_online:before {
    border-radius: 5px;
}

.wa__stt_online:before {
    content: "";
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}

.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover {
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.19);
    -webkit-transform: translate(0, -3px);
    -moz-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before {
    opacity: 1;
}

.wa__stt_online.wa__btn_w_icon .wa__btn_icon img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.wa__stt_offline {
    background: #ebedf0;
    color: #595b60;
    box-shadow: none;
    cursor: initial;
}

.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
    padding: 8px 20px 6px 71px;
}

.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 100px;
}

.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 70px;
}

.wa__btn_w_icon .wa__btn_icon {
    position: absolute;
    top: 50%;
    left: 16px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.wa__btn_w_icon .wa__btn_icon img {
    width: 41px;
    height: 69px;
}

.wa__btn_w_img {
    position: relative;
    width: 300px;
    margin: 20px 0 20px;
}

.wa__btn_w_img .wa__cs_img {
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.wa__cs_img_wrap {
    width: 56px;
    height: 56px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #000;
    position: relative;
    overflow: hidden;
}

.wa__btn_w_img .wa__cs_img img {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
    transition: 0.2s ease transform;
}

.wa__btn_w_img .wa__cs_img:after {
    content: "";
    background: #fff url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}

.wa__stt_offline.wa__btn_w_img .wa__cs_img:after {
    content: "";
    background: #fff url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}

.wa__btn_w_img .wa__btn_txt {
    padding: 14px 20px 12px 103px;
}

.wa__r_button {
    border-radius: 50vh;
}

.wa__sq_button {
    border-radius: 5px;
}

.wa__sq_button.wa__btn_w_img {
    width: 270px;
    margin-left: 30px;
}

.wa__r_button.wa__btn_w_img .wa__cs_img {
    left: -5px;
}

.wa__sq_button.wa__btn_w_img .wa__cs_img {
    left: -35px;
}

.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 10px 20px 10px 70px;
    display: table-cell;
    vertical-align: middle;
    height: 66px;
}

.wa__btn_txt .wa__btn_title {}

.wa__r_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 100px;
    display: table-cell;
    vertical-align: middle;
    height: 66px;
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status {
    margin-left: 3px;
}

.wa__popup_chat_box {
    position: fixed;
    bottom: 7rem;
    right: 1rem;
    width: 350px;

    @media(max-width:767px) {
        width: 100%
    }

    max-width: calc(100% - 50px);
    border-radius: 1.5rem;
    webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: 1s ease all;
    -moz-transition: 1s ease all;
    transition: 1s ease all;
    will-change: transform,
    visibility,
    opacity;
    visibility: hidden;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
}

/**.wa__popup_chat_box:hover, **/
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active {
    -webkit-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
    -moz-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
    box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
}

.wa__popup_chat_box.wa__active {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
}

.wa__popup_chat_box .wa__popup_heading {
    position: relative;
    padding: 15px 43px 17px 74px;
    color: #fff;
    background: rgb(86, 166, 30);
    background: -moz-linear-gradient(0deg,
            rgba(86, 166, 30, 1) 0%,
            rgba(105, 202, 59, 1) 100%);
    background: -webkit-linear-gradient(0deg,
            rgba(86, 166, 30, 1) 0%,
            rgba(105, 202, 59, 1) 100%);
    background: linear-gradient(0deg,
            rgba(86, 166, 30, 1) 0%,
            rgba(105, 202, 59, 1) 100%);
}

.wa__popup_chat_box .wa__popup_heading_sm {
    padding: 12px 15px 17px 74px;
}

.wa__popup_chat_box .wa__popup_heading:before {
    content: "";
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center top no-repeat;
    background-size: 33px;
    filter: invert(1) grayscale(100%) brightness(2);
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}

.wa__popup_chat_box .wa__popup_heading_sm:before {
    top: 19px;
    left: 11px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title {
    padding-top: 2px;
    padding-bottom: 3;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro {
    padding-top: 4px;
    font-size: 12px;
    line-height: 20px;
}

.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro {
    padding-top: 0px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active {
    text-decoration: underline;
}

.wa__popup_chat_box .wa__popup_notice {
    font-size: 12px;
    font-weight: 500;
    padding: 0 3px;
}

.wa__popup_chat_box .wa__popup_content {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.wa__popup_chat_box .wa__popup_content_left {
    text-align: left;
}

.wa__popup_chat_box .wa__popup_avatar {
    position: absolute;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: 10px;
    top: 9px;
}

.wa__popup_chat_box .wa__popup_avatar.nta-default-avt {
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
}

.wa__popup_chat_box .wa__stt {
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    background: #f5f7f9;
    border-radius: 7px;
}

.wa__popup_chat_box .wa__stt:after {
    content: "";
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0 0 no-repeat;
    position: absolute;
    right: 14px;
    top: 26px;
    width: 20px;
    height: 20px;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

.wa__popup_chat_box .wa__stt.wa__stt_offline:after {
    background-image: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png");
}

.wa__popup_chat_box .wa__stt.wa__stt_online {
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus {
    background: #fff;
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
}

.wa__popup_content_list .wa__popup_content_item {
    margin: 14px 0 0;
    -webkit-transform: translate(0, 20px);
    -moz-transform: translate(0, 20px);
    transform: translate(0, 20px);
    will-change: opacity, transform;
    opacity: 0;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item {
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
    transition-delay: 2.1s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1) {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2) {
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3) {
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.wa__popup_content_list .wa__popup_content_item .wa__member_name {
    font-size: 16px;
    color: #363c47;
    line-height: 1.188em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__member_duty {
    font-size: 12px;
    color: #333;
    padding: 2px 0 0;
    line-height: 1.125em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__member_status {
    color: #f5a623;
    font-size: 10px;
    padding: 5px 0 0;
    line-height: 1.125em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}

.wa__popup_content_list .wa__popup_content_item .wa__stt_offline {
    border-left-color: #c0c5ca;
}

.wa__popup_avt_list {
    font-size: 0;
    margin: 7px 0 24px;
}

.wa__popup_avt_list .wa__popup_avt_item {
    display: inline-block;
    position: relative;
    width: 46px;
}

.wa__popup_avt_list .wa__popup_avt_img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    left: -7px;
}

.wa__popup_call_btn {
    background: #2db742;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    margin: 25px 0 15px;
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
}

.wa__popup_call_btn.wa__popup_call_btn_lg:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    vertical-align: top;
    top: 0px;
    margin-right: -19px;
    left: -31px;
    -webkit-transition: 0.2s ease background-image;
    -moz-transition: 0.2s ease background-image;
    transition: 0.2s ease background-image;
}

.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before {
    background-image: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png");
}

.wa__popup_chat_box_gray {
    border-radius: 2px 2px 8px 8px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray {
    background: #f8f8f8;
    border-top: 3px solid #2db742;
    color: #868c9a;
    font-weight: 500;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title {
    color: #595b60;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray:before {
    content: "";
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a {
    color: #595b60;
}

.wa__popup_chat_box_ct {
    width: 384px;
    text-align: center;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct {
    text-align: center;
    padding: 18px 0 18px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
    content: "";
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title {
    padding-left: 22px;
    padding-bottom: 14px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro {
    margin-top: -5px;
    line-height: 12px;
}

.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after {
    content: "";
    clear: both;
    display: block;
}

.wa__popup_chat_box_ct .wa__popup_ct_content {
    background: #fff;
    padding: 0 0 14px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice {
    padding-top: 18px;
    padding-bottom: 15px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item {
    width: 33%;
    float: left;
    font-size: 10px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item a {
    text-decoration: none;
    color: #989b9f;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt {
    padding-top: 8px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name {
    color: #363c47;
    font-size: 13px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty {
    color: #989b9f;
    padding: 3px 0 0;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online {
    color: #2db742;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline {
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}

.wa__popup_chat_box_ct .wa__popup_ct_avatar img {
    border-radius: 50%;
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn {
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

.wa__btn_popup {
    position: fixed;
    cursor: pointer;
    bottom: 4rem;
    right: 0.8rem;
    z-index: 9999;
}

.wa__btn_popup .wa__btn_popup_icon {
    width: 56px;
    height: 56px;
    background: #25D366;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.wa__btn_popup .wa__btn_popup_icon:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    filter: invert(1) grayscale(100%) brightness(2);
}

.wa__btn_popup .wa__btn_popup_icon:after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url("https://cdn-icons-png.flaticon.com/128/2976/2976286.png") center center no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    filter: invert(1) grayscale(100%) brightness(2);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:before {
    opacity: 0;
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.wa__btn_popup .wa__btn_popup_txt {
    position: absolute;
    width: 180px;
    right: 100%;
    background: #25D366;
    display: none;
    font-size: 14px;
    text-align: left;
    color: #fff;
    top: 0;
    padding: 12px 1rem 12px 1rem;
    margin-right: 15px;
    border-radius: 1.5rem;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.wa__btn_popup .wa__btn_popup_txt span {
    display: block;
}

.wa__btn_popup.wa__active .wa__btn_popup_txt {
    -webkit-transform: translate(0, 15px);
    -moz-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    transform: translate(0, 15px);
    opacity: 0;
    visibility: hidden;
}


/** added css here**/
.start-chat .whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: rgb(230, 221, 212);
    position: relative;
    border-radius: 5px;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

.WhatsappChat__MessageContainer-sc-1wqac52-1.dAbFpq {
    display: flex;
    z-index: 1;
}

.WhatsappDots__Component-pks5bf-0.eJJEeC {
    background-color: #fff;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.WhatsappDots__ComponentInner-pks5bf-1.hFENyl {
    position: relative;
    display: flex;
}

.WhatsappDots__Dot-pks5bf-2.WhatsappDots__DotOne-pks5bf-3.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(158, 157, 162);
    animation: ZpjSY 1.2s infinite linear;
}

.WhatsappDots__Dot-pks5bf-2.WhatsappDots__DotTwo-pks5bf-4.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(182, 181, 186);
    animation: hPhMsj 1.2s infinite linear;
}

.WhatsappDots__Dot-pks5bf-2.WhatsappDots__DotThree-pks5bf-5.kXBtNt {
    height: 5px;
    width: 5px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgb(182, 181, 186);
    animation: iUMejp 1.2s infinite linear;
}

.WhatsappChat__Message-sc-1wqac52-4.kAZgZq {
    padding: 7px 14px 6px;
    background-color: #fff;
    border-radius: 0 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.WhatsappChat__Message-sc-1wqac52-4.kAZgZq::before {
    position: absolute;
    content: "";
    background-image: url('../img/arrow-icon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: -11px;
    width: 12px;
    height: 19px;
}

.WhatsappChat__Author-sc-1wqac52-3.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.WhatsappChat__Text-sc-1wqac52-2.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111;
}

.WhatsappChat__Time-sc-1wqac52-5.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.blanter-msg {
    display: flex;
    gap: 7px;
    margin-top: 7px;

}

.chat-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
}


.chat-box-btn {
    display: flex;
    align-items: end;
}

textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    min-height: 20px;
    max-height: 150px;
    /* Optional: prevent it from growing too tall */
    outline: none;
    border-radius: 5px !important;
    resize: none;
    font-size: 14px;
    line-height: 20px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-sizing: border-box;
    padding: 0px !important;
    background: transparent !important;

}


/*
a#send-it {
    height: 36px;
    width: 36px;
    font-weight: 700;
    padding: 9px 7px 10px 10px;
    background: #eee;
    border-radius: 10px;
} */

a#send-it {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eee;
    border-radius: 10px;

    padding: 0;
    margin: 0;
    position: relative;
}


a#send-it img {
    width: 18px;
    height: 18px;
    display: block;
}


@keyframes ZpjSY {
    0% {
        background-color: rgb(182, 181, 186);
    }

    15% {
        background-color: rgb(17, 17, 17);
    }

    25% {
        background-color: rgb(182, 181, 186);
    }
}

@keyframes hPhMsj {
    15% {
        background-color: rgb(182, 181, 186);
    }

    25% {
        background-color: rgb(17, 17, 17);
    }

    35% {
        background-color: rgb(182, 181, 186);
    }
}

@keyframes iUMejp {
    25% {
        background-color: rgb(182, 181, 186);
    }

    35% {
        background-color: rgb(17, 17, 17);
    }

    45% {
        background-color: rgb(182, 181, 186);
    }
}




.whatsapp-chat-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    /** background-color: #235d9f; /* WhatsApp green */
    background-color: #174084;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.whatsapp-chat-avatar {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #fff;
    background-color: white;
}

.whatsapp-chat-avatar {
    &::after {
        content: "";
        top: -10px;
        right: -30px;
        width: 12px;
        height: 12px;
        box-sizing: border-box;
        background-color: #4ad504;
        display: block;
        position: relative;
        z-index: 1;
        border-radius: 50%;
        border: 2px solid #095e54;

    }
}

.whatsapp-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.whatsapp-chat-header p {
    margin: 0;
    line-height: 1.3;
}

.whatsapp-chat-name {
    font-weight: bold;
    font-size: 16px;
}

.whatsapp-chat-header small {
    font-size: 12px;
    color: #eafff2;
}

/** css for whatsapp chat ends here**/


/* css for testimonial card start here */


.testimonial-card {
    border-radius: 12px;
    transition: 0.3s;
    background: #fff;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .fa-star {
    font-size: 14px;
}

/* css for testimonial card ends here  */