/* GLOBAL COLORS */

:root {
    --primary: #3d7679;
    --white: #fff;
    --black: #272822;
    --dark-color: #000d48;
    --grey: #858585;
    --transition: all 0.3s linear;
    --spacing: 0.1rem;
    --radius: 0.25rem;
    --rubik: "Rubik", sans-serif;
    --prata: "Prata", serif;
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: "Quicksand", sans-serif;
}
/* GLOBAL COLORS */
/*
===============
Global Styles
===============
*/

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--rubik);
    line-height: 28px;
    font-size: 0.875rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
ul {
    list-style-type: none;
}
a {
    text-decoration: none;
}
h1,
h2,
h3,
h4 {
    letter-spacing: var(--spacing);
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 0.875rem;
}
p {
    margin-bottom: 1.25rem;
    color: var(--clr-grey-5);
}
@media screen and (min-width: 800px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1rem;
    }
    body {
        font-size: 1rem;
    }
    h1,
    h2,
    h3,
    h4 {
        line-height: 1.3;
    }
}
button.btn {
    padding: 0.5rem 2rem;
    border-radius: 0;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}
button.btn:hover {
    color: var(--white);
    background-color: var(--primary);
}
a.btn {
    padding: 0.5rem 2rem;
    border-radius: 0;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}
a.btn:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--primary);
}
button {
    outline: 0;
    border: 0;
    background: transparent;
    color: var(--primary);
}
button:hover {
    cursor: pointer;
    color: var(--white);
}
.text {
    font-size: 15px;
    line-height: 28px;
    color: #858585;
    font-weight: 400;
    margin: 0;
}
.section-title {
    margin-bottom: 50px;
}
/*  global classes */

/* section */
section.normal {
    padding: 7rem 7rem;
}
section.normal-other {
    padding: 3rem 7rem;
}
@media screen and (max-width: 768px) {
    section.normal {
        padding: 7rem 1.2rem;
    }
    section.normal-other {
        padding: 3rem 1.2rem;
    }
}
/*
===============
Navbar
===============
*/
nav {
    background: var(--white);
    box-shadow: var(--light-shadow);
}
nav .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}
nav .nav-toggle {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    background: transparent;
    border-color: transparent;
    transition: var(--transition);
    cursor: pointer;
}
nav .nav-toggle:hover {
    color: var(--primary);
    transform: rotate(90deg);
}
nav .logo {
    height: 70px;
}
nav .links a {
    color: var(--primary);
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: var(--spacing);
    display: block;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    font-weight: 600;
}
nav .login-btn {
    display: none;
}
nav .links-container {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}
nav .show-container {
    height: 10rem;
}
nav .right-side {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
nav .desktopscreen {
    display: none;
}
nav .mobilescreen {
    display: block;
    margin-right: 1rem;
}
@media screen and (min-width: 1200px) {
    nav .nav-center {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 7rem;
    }
    nav .nav-header {
        padding: 0;
    }
    nav .nav-toggle {
        display: none;
    }
    nav .links-container {
        height: auto !important;
    }
    nav .links {
        display: flex;
        margin-bottom: 0;
    }
    nav .links li {
        padding: 0rem 1rem;
    }
    nav .links a {
        padding: 0.3rem 0.7rem;
        text-decoration: none;
    }
    nav .links Link {
        background-color: #000;
        padding: 0.3rem 0.7rem;
        text-decoration: none;
    }
    nav .links a:hover {
        background: var(--primary);
        color: var(--white);
        border-radius: 0.2rem;
    }
    nav .login-btn {
        display: block;
    }
    nav .desktopscreen {
        display: block;
    }
    nav .mobilescreen {
        display: none;
    }
}

/* NAVBAR */

/* MAIN BANNER */
.main-banner .banner {
    display: block;
    width: 100%;
    height: 850px;
    object-fit: cover;
}

.main-banner .banner-mobile {
    display: none;
}

@media screen and (max-width: 500px) {
    .banner {
        display: none !important;
    }

    .banner-mobile {
        display: block !important;
        width: 100%;
        /* height: 500px; */
        object-fit: cover;
    }
}
/* MAIN BANNER */

/***

====================================================================
	Why Choose Us
====================================================================

 ***/

.whychoose-us-section-two {
    position: relative;
}

.whychoose-us-section-two .sec-title {
    margin-bottom: 36px;
}

.whychoose-block-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.whychoose-block-two .icon-box {
    position: relative;
    width: 62px;
    height: 62px;
    border: 2px solid #d2d2d2;
    border-radius: 50%;
    line-height: 58px;
    text-align: center;
    font-size: 16px;
    color: var(--primary);
    margin-right: 35px;
    margin-bottom: 15px;
}

.whychoose-block-two h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.whychoose-us-section-two .link-btn {
    margin-right: 30px;
}

.whychoose-us-section-two .link-btn .theme-btn {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    padding: 14px 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.whychoose-us-section-two .link-btn a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--white);
}

.whychoose-us-section-two .wrapper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 42px;
}

.whychoose-us-section-two .image-block-two {
    position: relative;
    text-align: center;
    max-width: 570px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.whychoose-us-section-two .image-one img {
    width: 340px;
    height: auto;
}

.whychoose-us-section-two .image-block-two .logo-box {
    position: absolute;
    top: 50px;
    right: 0;
    width: 160px;
    height: 160px;
    text-align: center;
    line-height: 160px;
    background: #fff;
    border-radius: 50%;
    z-index: 99;
}

.whychoose-us-section-two .image-block-two .logo-box .image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.whychoose-us-section-two .image-block-two .logo-box .image:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    border: 3px dotted var(--primary);
    left: 10px;
    top: 10px;
    border-radius: 50%;
}

.whychoose-us-section-two .image-block-two .logo-box img {
    position: relative;
    width: 80px;
    height: 80px;
}

.whychoose-us-section-two .image-block-two .video-box {
    position: absolute;
    bottom: 50px;
    left: 0;
    border-radius: 4px;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(89, 83, 76, 0.3);
    box-shadow: 0px 20px 20px 0px rgba(89, 83, 76, 0.3);
}

.whychoose-us-section-two .image-block-two .video-box img {
    border-radius: 4px;
    width: 200px;
    height: auto;
}

.whychoose-us-section-two .image-block-two .video-box:before {
    position: absolute;
    content: "";
    background: #242424;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    border-radius: 4px;
}

.whychoose-us-section-two .image-block-two .video-box .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    line-height: 58px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border: 2px solid #fff;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(89, 83, 76, 0.3);
    box-shadow: 0px 20px 20px 0px rgba(89, 83, 76, 0.3);
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.whychoose-us-section-two .contact-info-five {
    position: relative;
    padding-left: 70px;
    margin: 36px 0 24px;
}

.whychoose-us-section-two .contact-info-five .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
}

.whychoose-us-section-two .contact-info-five h5 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #242424;
    margin-bottom: 10px;
}

.whychoose-us-section-two .contact-info-five h4 {
    font-size: 20px;
    color: var(--primary);
}

.whychoose-us-section-two .contact-info-five h4 a {
    color: var(--primary);
}

.whychoose-us-section-two .image-block-two .video-box .video-btn:hover {
    background: #fff;
    color: var(--primary);
}

@media only screen and (max-width: 500px) {
    .whychoose-us-section-two .image-one img {
        width: 265px;
        height: auto;
    }
}

/***

====================================================================
	Gallery Section Two
====================================================================

 ***/
.gallery-section-two h2 {
    color: var(--white);
}
.gallery-section-two {
    position: relative;
    background: url("/landing-page/background.jpg");
}

.gallery-section-two .wrapper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallery-section-two .wrapper-box > div {
    width: 33.333%;
}

.gallery-block-two {
    position: relative;
    padding: 0;
}

.gallery-block-two .inner-box {
    position: relative;
}

.gallery-block-two .image img {
    width: 100%;
}

.gallery-block-two .image::before {
    background: var(--dark-color);
    bottom: 0px;
    content: "";
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.gallery-block-two:hover .image::before {
    opacity: 0.95;
}

.gallery-block-two .image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.gallery-block-two .image img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.gallery-block-two:hover .image img {
    -webkit-transform: translateX(0%) translateY(-90px) scale(1);
    -ms-transform: translateX(0%) translateY(-90px) scale(1);
    transform: translateX(0%) translateY(-90px) scale(1);
}

.gallery-block-two .overlay a {
    background: #fff;
    border-radius: 50%;
    color: #8a8a8a;
    font-size: 20px;
    height: 56px;
    margin: 0 5px;
    line-height: 56px;
    opacity: 0;
    display: inline-block;
    text-align: center;
    -webkit-transform: translateX(0%) translateY(-30%) scale(0.5);
    -ms-transform: translateX(0%) translateY(-30%) scale(0.5);
    transform: translateX(0%) translateY(-30%) scale(0.5);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 56px;
}

.gallery-block-two .overlay a:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-block-two:hover .overlay a {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0%) scale(1);
    -ms-transform: translateX(0) translateY(0%) scale(1);
    transform: translateX(0) translateY(0%) scale(1);
}

.gallery-block-two .overlay {
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    margin-top: -46.5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 10;
}

.gallery-block-two:hover .overlay {
    opacity: 1;
}

.gallery-block-two .caption-title {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 12;
    background-color: var(--primary);
    width: 100%;
    padding: 21px 30px 26px;
    text-align: center;
}

.gallery-block-two:hover .caption-title {
    opacity: 1;
}

.gallery-block-two .caption-title h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.gallery-block-two .caption-title h4 a {
    color: #fff;
}

.gallery-block-two:hover .caption-title h4,
.gallery-block-two:hover .caption-title span {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.gallery-block-two .caption-title span {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 16px;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    text-transform: capitalize;
}

.gallery-block-two .inner-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 6px solid #fff;
    z-index: 99;
    pointer-events: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.gallery-block-two .inner-box:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #02c06d;
    z-index: 99;
    pointer-events: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.gallery-block-two .inner-box:hover:before,
.gallery-block-two .inner-box:hover:after {
    opacity: 1;
}

.gallery-section-two .content-column {
    padding: 0 30px;
    padding-left: 60px;
}

.gallery-section-two .content-column h5 {
    color: #fff;
}

.gallery-section-two .content-column a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}
.testimonial-section-three .owl-carousel .owl-nav button.owl-prev,
.testimonial-section-three .owl-carousel .owl-nav button.owl-next,
.testimonial-section-three .owl-carousel button.owl-dot {
    display: flex;
    justify-content: center;
}

.gallery-section-two .content-column a span {
    margin-right: 5px;
}
@media only screen and (max-width: 1550px) {
    .gallery-section-two .wrapper-box > div {
        width: 33.333%;
    }
}
@media only screen and (max-width: 1199px) {
    .gallery-section-two .wrapper-box > div {
        width: 50%;
    }
}
@media only screen and (max-width: 767px) {
    .gallery-section-two .wrapper-box > div {
        width: 100%;
    }
    .gallery-section-two .content-column {
        padding: 100px 20px 50px;
    }
    .gallery-section-two .sec-title {
        margin-bottom: 20px;
    }
}

/***

====================================================================
	Testimonial
====================================================================

 ***/
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title .ic {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--primary);
}
.sec-title.style-two h5 {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sec-title.style-two h3 {
    font-size: 36px;
    line-height: 50px;
}
.testimonial-section-three {
    background: #f5f8fb;
    margin-bottom: 7rem;
    margin-top: 7rem;
}

.testimonial-section-three .wrapper-box {
    margin: 0 -15px;
}

.testimonial-block-three {
    position: relative;
    padding: 0 15px;
}

.testimonial-block-three .inner-box {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
}
.testimonial-block-three .top-content {
    position: relative;
    background: var(--white);
    padding: 30px;
    padding-top: 51px;
    border-radius: 6px;
    margin-bottom: 55px;
}
.testimonial-block-three .top-content .image {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.testimonial-block-three .top-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-block-three .top-content:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -70px;
    width: 70px;
    height: 70px;
    border: 34px solid transparent;
    border-top-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.testimonial-block-three .short-quote {
    color: #302c51;
}
.testimonial-block-three .quote {
    position: absolute;
    left: -36px;
    top: -50px;
    width: 100px;
    height: 100px;
    padding-left: 20px;
    background: var(--primary);
    font-size: 24px;
    line-height: 140px;
    border-radius: 50%;
}

.testimonial-block-three .quote .icon {
    color: var(--white);
}
.testimonial-block-three h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-block-three .author-title {
    font-size: 18px;
    color: #283354;
    margin-bottom: 3px;
}

.testimonial-block-three .designation {
    position: relative;
    font-size: 15px;
    color: #757575;
    font-weight: 600;
}

.testimonial-block-three .designation a {
    color: var(--primary);
    font-weight: 600;
}
.testimonial-section-three .owl-nav .owl-next:hover,
.testimonial-section-three .owl-nav .owl-prev:hover {
    color: var(--primary);
    border-color: var(--primary);
}
.owl-theme .owl-nav.disabled + .owl-dots {
    display: none;
}
.owl-theme .owl-nav.disabled {
    display: block !important;
}
.testimonial-section-three .owl-nav-style-two .owl-nav {
    padding: 0px;
    text-align: center;
    bottom: 100%;
    top: inherit;
    position: absolute;
    left: inherit;
    right: 15px;
}
.testimonial-section-three .owl-nav {
    transform: translateY(-20px);
}
.owl-nav-style-two .owl-nav .owl-next,
.owl-nav-style-two .owl-nav .owl-prev {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px 30px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 24px;
    color: #949494;
    background: #fff;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.testimonial-section-three .owl-nav .owl-next,
.testimonial-section-three .owl-nav .owl-prev {
    border-radius: 50% !important;
    background: transparent !important;
    border: 2px solid #dcd9d6 !important;
    line-height: 56px !important;
    font-size: 28px !important;
}
.testimonial-section-three .owl-nav .owl-next:hover,
.testimonial-section-three .owl-nav .owl-prev:hover {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}
/* mobile screen */
@media only screen and (max-width: 767px){
     .sec-title.style-two h3 {
         font-size: 30px;
     }
}

/***

====================================================================
  Feature Section Two
====================================================================

***/

.feature-section-two {
    position: relative;
    padding: 110px 0 80px;
    background: url("/landing-page/background.jpg");
}

.feature-section-two .sec-title {
    color: var(--white);
}

.feature-section-two .sec-title h5 {
    color: var(--white);
    opacity: 0.7;
}

.feature-block-four .inner-box {
    position: relative;
    margin-bottom: 30px;
    padding: 36px 15px;
    border: 4px solid #fff;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    background: #fff;
    transform: translateY(-50px);
}

.feature-block-four .inner-box:hover {
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.15);
    border-color: #02a35d;
}

.feature-block-four .icon-box {
    margin-bottom: 14px;
    line-height: 90px;
}

.feature-block-four .icon-box img {
    width: 80px;
    height: 80px;
}

.feature-block-four .inner-box h5 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

.feature-block-four .overlay {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--primary);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    padding-top: 40px;
}

.feature-block-four .inner-box:hover .overlay {
    opacity: 1;
}

.feature-block-four .overlay:before {
    position: absolute;
    content: "";
    background: var(--primary);
    opacity: 0.95;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.feature-block-four .overlay h5 {
    color: #fff;
    margin-bottom: 13px;
}

.feature-block-four .overlay .text {
    color: #fff;
    position: relative;
}

/***

====================================================================
  Causes Section Three
====================================================================

***/

.causes-section-three .swiper {
    height: 65vh;
    width: 100%;
    overflow-x: hidden;
}

.causes-section-three .swiper-pagination {
    position: absolute;
    bottom: 30px !important;
}

.causes-section-three .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: var(--primary);
    border-radius: 4px;
    width: 16px;
    transition: var(--transition);
}

.causes-section-three .swiper-pagination-bullet-active {
    width: 26px !important;
    transition: var(--transition);
}

.causes-section-three {
    position: relative;
    background-size: cover;
}

.causes-section-three .cause-carousel-wrapper {
    position: relative;
    padding: 110px 0;
    padding-right: 170px;
}

.causes-section-three .cause-carousel-wrapper:before {
    position: absolute;
    content: "";
    background: var(--theme-color-two);
    width: 2px;
    top: 0;
    right: 170px;
    bottom: 0;
}

.cause-block-three .inner-box {
    position: relative;
    padding-left: 184px;
}

.cause-block-three .image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    max-height: 55vh;
    object-fit: cover;
}

.cause-block-three .content-wrapper {
    position: absolute;
    left: 36px;
    top: 65px;
    width: 100%;
    max-width: 370px;
}

.cause-block-three .content {
    background: #fff;
    padding: 45px 15px 40px;
    border-radius: 6px;
    border-top-left-radius: 0px;
    text-align: center;
}

.cause-block-three .progress-levels.style-two .progress-box {
    margin-top: 0;
    margin-bottom: -10px;
}

.cause-block-three h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cause-block-three h4 a {
    color: var(--dark-color);
}

.cause-block-three .text {
    margin-bottom: 20px;
}

/* Style Two */

.causes-section-three.style-two {
    padding: 60px 0 10px;
}

.causes-section-three.style-two .wrapper-box {
    counter-reset: count;
}

.cause-block-three.style-two .content {
    -webkit-box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08);
    box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08);
}

.cause-block-three.style-two .progress-levels.style-two .progress-box .percent {
    background: var(--theme-color);
    color: #fff;
}

.cause-block-three.style-two
    .progress-levels.style-two
    .progress-box
    .percent:before {
    background: var(--theme-color);
}

.cause-block-three.style-two
    .progress-levels.style-two
    .progress-box
    .bar
    .bar-fill {
    background: var(--theme-color);
}

.cause-block-three.style-two .info-box a span {
    color: var(--theme-color);
}

.cause-block-three.style-two .donate-btn .theme-btn {
    background: transparent;
    border: 2px solid var(--theme-color);
    border-radius: 22px;
}

.cause-block-three.style-two .donate-btn .theme-btn:hover {
    border-color: var(--dark-color);
}

.cause-block-three.style-two .inner-box {
    padding-right: 222px;
}

.cause-block-three.style-two .inner-box:after {
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 40px;
    font-size: 150px;
    line-height: 150px;
    color: #eeeeee;
    background: #fff;
    padding: 50px 0;
    font-family: var(--prata);
    counter-increment: count;
    content: "0" counter(count);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-style: italic;
}

.cause-block-three.style-two .inner-box:before {
    position: absolute;
    content: "";
    width: 1px;
    top: 0;
    right: 140px;
    bottom: 0;
    background: #eaeaea;
}

/* Nth child even */

.cause-block-three.style-two:nth-child(even) .inner-box {
    padding-left: 222px;
    padding-right: 184px;
}

.cause-block-three.style-two:nth-child(even) .inner-box .image {
    text-align: right;
}

.cause-block-three.style-two:nth-child(even) .content-wrapper {
    left: auto;
    right: 0;
}

.cause-block-three.style-two:nth-child(even) .inner-box:before {
    right: auto;
    left: 140px;
}

.cause-block-three.style-two:nth-child(even) .inner-box:after {
    left: 40px;
    right: auto;
}

/* Media Queries */

@media only screen and (max-width: 991px) {
    .causes-section-three .cause-carousel-wrapper:before,
    .causes-section-three .owl-dot-style-one .owl-dots,
    .counter-block-two:before,
    .banner-section .content-box .text br {
        display: none;
    }
    .cause-block-three .inner-box {
        padding-left: 0px;
    }
    .cause-block-three.style-two:nth-child(even) .inner-box {
        padding-right: 0;
    }
    .cause-block-three.style-two .inner-box:after {
        font-size: 95px;
    }
    .cause-block-three .content-wrapper {
        position: relative;
        top: 0;
        margin: 0 auto;
        margin-top: -126px;
    }
    .cause-block-three.style-two .inner-box:before,
    .cause-block-three.style-two .inner-box:after {
        display: none;
    }
}
.study-details .details {
    margin-top: 1rem;
}
.study-details h2 {
    color: var(--primary);
    text-align: center;
}
.study-details p {
    line-height: 1.7;
    margin-top: 1.5rem;
    color: var(--grey);
}
.study-details .details .advantages .advantages-li::before {
    content: "\2022";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1em;
}
.study-details .details .advantages .advantages-li {
    padding: 10px;
    color: var(--grey);
    font-weight: 500;
}
.abroad-img {
    width: 100px;
    margin-bottom: 200px;
    position: absolute;
    left: 2rem;
}

@media only screen and (max-width: 599px) {
    .cause-block-three.style-two .inner-box {
        padding: 0 !important;
    }
    .cause-block-three.style-two .inner-box:before,
    .cause-block-three.style-two .inner-box:after {
        display: none;
    }
}

/* Our Partners */

.our-partners {
    padding: 110px 0 110px;
    /* background-color: #f5f8fb; */
}

.our-partners .partners img {
    width: 80px;
    height: auto;
}

.our-partners .partners .image {
    display: flex;
    justify-content: center;
}

/* End Our Partners */

/***

====================================================================
	Blog Section
====================================================================

 ***/

.blog-section {
    position: relative;
    padding: 110px 0 80px;
}

.blog-section a:hover {
    text-decoration: none;
}

.news-block-one {
    position: relative;
}

.news-block-one .inner-box {
    position: relative;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08);
    box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    border-radius: 6px;
    overflow: hidden;
}

.news-block-one .inner-box:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.news-block-one .category {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 9;
}

.news-block-one .category a {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 6px;
}

.news-block-one .image {
    position: relative;
}

.news-block-one .image img {
    width: 100%;
}

.news-block-one .post-meta-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.news-block-one .post-meta-info a {
    color: #fff;
    margin-right: 10px;
}

.news-block-one .post-meta-info a span {
    margin-right: 10px;
}

.news-block-one .youtube-video-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.news-block-one .youtube-video-box a {
    color: #fff;
    font-size: 40px;
}

.news-block-one .lower-content {
    position: relative;
    padding: 20px;
}

.news-block-one .date {
    margin-bottom: 8px;
    color: #858585;
}

.news-block-one h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.news-block-one h4 a {
    color: var(--primary);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.news-block-one h4 a:hover {
    color: var(--primary);
}

.news-block-one .author-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-block-one .author-info .image {
    position: relative;
    margin-right: 10px;
}

.news-block-one .author-info .image img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.news-block-one .author-info .author-title {
    font-size: 13px;
    font-weight: 500;
    color: #a6a6a6;
    text-transform: uppercase;
}

.news-block-one .author-info .author-title a {
    color: #a6a6a6;
}

/* Style Two */

.blog-section.style-two .news-block-one h4 a:hover {
    color: var(--primary);
}

/* End Blogs */

/* Services Page */

.services-banner {
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    text-align: center;
    height: 60vh;
    color: #f4f4f4;
}

.services-banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.our-services-main {
    background: transparent;
    padding: 0;
    z-index: 99;
    transform: translateY(-200px);
}
.our-services-main .inner-box {
    position: relative;
    -webkit-box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08);
    box-shadow: 0px 0px 45px 5px rgba(89, 83, 76, 0.08) !important;
}
.our-services-main .box-overlay {
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 35%;
    height: 6px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: var(--primary);
    z-index: 99;
}
.our-services-main .inner-box:hover .box-overlay {
    background-color: #02a35d;
    height: 4px;
}

/* Services content */

.services-content {
    margin: -5rem 0 4rem;
}
.services-content .content-box img {
    width: 100%;
    height: auto;
}
.services-content .services-sidebar-inner {
    padding: 36px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    margin-bottom: 24px;
}
.services-content .services-sidebar-inner .services-sidebar-title {
    margin-bottom: 16px;
    color: var(--primary);
}
.services-content .services-sidebar-list {
    padding: 0;
}
.services-content .services-sidebar-list li {
    margin-bottom: 4px;
    transition: var(--transition);
    opacity: 0.95;
    color: var(--primary);
    padding: 8px 16px;
}
.services-content .services-sidebar-list .active a {
    color: var(--white);
}
.services-content .services-sidebar-list .active .icon {
    transform: rotate(180deg);
}
.services-content .services-sidebar-list .active {
    background-color: var(--primary);
    color: var(--white);
}
.services-content .services-sidebar-list li:hover .icon {
    transform: rotate(180deg);
}
.services-content .services-sidebar-list li:hover {
    background-color: var(--primary);
    color: var(--white);
}
.services-content .services-sidebar-list li:hover a {
    color: var(--white);
}
.services-content .services-sidebar-list li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}
.services-content .services-sidebar-list li .icon {
    transition: all 0.15s linear;
}
.services-content .services-sidebar-list li span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
    transition: all 0.15s linear;
}
.services-content .btn {
    width: 100%;
    border-radius: 0;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}
.services-content .btn:hover {
    color: var(--white);
    background-color: var(--primary);
}

/* Responsive banner */

@media only screen and (max-width: 948px) {
    .services-banner {
        background-color: var(--primary);
    }
    .services-banner img {
        display: none;
    }
    .our-services-main {
        transform: translateY(-100px);
    }
}

/* ------STUDY-ABROAD------- */
.main-banner.study {
    position: relative;
    height: 400px;
}
.main-banner .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #3d767996;
}
.main-banner .content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}
.main-banner .content-container a {
    color: var(--white);
    text-decoration: none;
}
.main-banner .content-container .link span {
    padding: 0 0.6rem;
}
.study-abroad .top-info {
    text-align: center;
}
.study-abroad h2 {
    color: var(--primary);
}
.study-abroad .top-info p {
    padding: 0 12rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    color: var(--grey);
}
.study-abroad .all-countries .country {
    margin-bottom: 2rem;
}
.study-abroad .all-countries .country .contain {
    position: relative;
}
.study-abroad .all-countries .country .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.541);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    display: none;
}
.study-abroad .all-countries .country .overlay .con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
}
.study-abroad .all-countries .country .overlay .con p {
    font-size: 1.5rem;
    font-weight: 600;
}
.study-abroad .all-countries .country .overlay a {
    text-decoration: none;
    color: var(--white);
}
.study-abroad .all-countries .country .contain:hover .overlay {
    display: block;
}

@media screen and (max-width: 768px) {
    .study-abroad .top-info {
        text-align: start;
    }
    .study-abroad .top-info p {
        padding: 0 0rem;
        line-height: 1.7;
        margin-top: 1.5rem;
        color: var(--grey);
    }
}
/* ------STUDY-ABROAD------- */
/*--STUDY ABROAD/COUNTRY-PAGE/AUSTRALIA----*/

.country-details .details-top {
    margin-top: 60px;
}
.country-details .intro p {
    line-height: 1.7;
    margin-top: 1.5rem;
    color: var(--grey);
}
.country-details .details-top .maps {
    width: 100%;
    height: 400px;
}
.country-details .details-top .services-sidebar-list {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.country-details .details-top .services-sidebar-list li {
    margin-bottom: 4px;
    transition: var(--transition);
    opacity: 0.95;
    color: var(--primary);
    padding: 8px 16px;
}
.country-details .details-top .services-sidebar-list .active a {
    color: var(--white);
}
.country-details .details-top .services-sidebar-list .active .icon {
    transform: rotate(180deg);
}
.country-details .details-top .services-sidebar-list .active {
    background-color: var(--primary);
    color: var(--white);
}
.country-details .details-top .services-sidebar-list li:hover .icon {
    transform: rotate(180deg);
}
.country-details .details-top .services-sidebar-list li:hover {
    background-color: var(--primary);
    color: var(--white);
}
.country-details .details-top .services-sidebar-list li:hover a {
    color: var(--white);
}
.country-details .details-top .services-sidebar-list li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}
.country-details .details-top .services-sidebar-list li .icon {
    transition: all 0.15s linear;
}
.country-details .details-top .services-sidebar-list li span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
    transition: all 0.15s linear;
}
.country-details .intro {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.country-details .intro h3 {
    text-align: center;
    color: var(--primary);
}
.contact-btnss {
    width: 40%;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    margin-bottom: 4rem;
}

.country-details.choose-us {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.country-details .choose-us h3 {
    color: var(--primary);
    text-align: left;
    margin-left: 5rem;
}
.country-details .choose-us .img-fluid {
    height: 75%;
    width: 75%;
    margin-top: 3.5rem;
    border-radius: 10px;
}
.country-details .choose-us .study-ul {
    position: relative;
    right: 3rem;
    text-align: center;
}

.country-details .choose-us .study-ul .study-li {
    color: var(--black);
    padding: 8px;
}
.country-details .choose-us .study-ul .study-li .fa-check {
    color: var(--primary);
    padding: 0 15px;
}
.country-details .offer {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.country-details .offer .img-fluid {
    height: 75%;
    width: 80%;
    margin-top: 4rem;
    border-radius: 10px;
    position: relative;
    left: 1rem;
}

.country-details .offer h3 {
    color: var(--primary);
    text-align: left;
    margin-left: 3.5rem;
}
.country-details .offer .offer-ul {
    position: relative;
    right: 3rem;
    text-align: center;
}

.country-details .offer .offer-ul .offer-li {
    color: var(--black);
    padding: 8px;
}
.country-details .offer .offer-ul .offer-li .fa-check {
    color: var(--primary);
    padding: 0 15px;
}
.country-details .requirement {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.country-details .requirement h3 {
    color: var(--primary);
    text-align: center;
}
.country-details .requirement p {
    padding: 0 8rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    color: var(--grey);
}
.country-details .requirement .card-title {
    color: var(--white);
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.country-details .requirement .card {
    line-height: 1.7;
    margin-top: 1.5rem;
    color: var(--white);
    background-color: var(--primary);
}
.country-details .requirement .requirement-ul .requirement-li {
    color: var(--white);
}
.country-details .requirement .requirement-ul .requirement-li .fa-check {
    color: var(--white);
}
.country-details .facts {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.country-details .facts h3 {
    color: var(--primary);
    text-align: left;
    margin-left: 3.5rem;
}
.country-details .facts h3 {
    color: var(--primary);
    text-align: left;
    margin-left: 3.5rem;
}
.country-details .facts .img-fluid {
    height: 75%;
    width: 75%;
    margin-top: 3rem;
    border-radius: 10px;
}

.country-details .facts .facts-ul .facts-li {
    color: var(--black);
    padding: 8px;
}
.country-details .facts .facts-ul {
    position: relative;
    right: 35px;
}
.country-details .facts .facts-ul .facts-li .fa-check {
    color: var(--primary);
    padding: 0 15px;
}

/*-----RESPONSIVEE---*/
@media only screen and (max-width: 1200px) {
    .country-details .facts .img-fluid {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }
    .country-details .offer .img-fluid {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }
    .country-details .choose-us .img-fluid {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    .contact-btnss {
        width: 70%;
    }
}
@media only screen and (max-width: 500px) {
    .contact-btnss {
        width: 100%;
        position: absolute;
    }
    .country-details .offer .offer-ul .offer-li {
        padding: 0px;
    }
    .country-details .choose-us .study-ul .study-li {
        padding: 0px;
    }
    .country-details .facts .facts-ul .facts-li {
        color: var(--black);
        padding: 0px;
    }
    .australia-details .offer .img-fluid {
        position: relative;
        left: 0rem;
    }
}
/*-----RESPONSIVEE ENDDD---*/
/*--STUDY ABROAD/COUNTRY-PAGE/AUSTRALIA //ENDSSS----*/

/*---CONTCT PAGEEEE---*/
.contactus-container {
    box-shadow: 0 6px 24px 0 rgb(174 174 186 / 16%);
    margin: 4rem auto;
}
.details-col {
    background-color: var(--primary);
    padding-bottom: 24px;
}

.contact-info {
    display: flex;
}

.info-ul {
    margin-right: 80px;
    display: flex;
    flex-direction: column;
}

.info-ul .info-li {
    list-style: none;
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: var(--white);
    mix-blend-mode: lighten;
    padding-left: 10px;
}

.i-design {
    margin-right: 22px;
    line-height: 50px;
    text-align: center;
    color: silver;
    font-size: 1.4rem;
}
.media-icon {
    display: flex;
    justify-content: center;
}
.media-icon a {
    background-color: var(--white);
    color: var(--primary);
    height: 35px;
    width: 35px;
    margin-right: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}
.media-icon a:hover {
    cursor: pointer;
    text-decoration: none;
}
.hdng_txt {
    font-weight: 600;
    color: var(--primary);
}
.hng_info {
    color: var(--grey);
}
.arw {
    margin-top: 0px;
    font-size: 2rem;
    margin-left: 0px;
    margin-bottom: 0px;
    color: var(--white);
    color: var(--white);
}

.frm-cntrl {
    border: 1px solid silver;

    border-radius: 5px;
    margin-bottom: 20px;
    background-color: var(--white);
    height: 50px;
}
.btns {
    width: 200px;
}
input.form-control.frm-cntrl {
    box-shadow: none;
}
.contactus-lbl {
    color: var(--black);
    opacity: 0.8;
    font-weight: bold;
    font-weight: 600;
}
.submit-contact {
    background-color: var(--primary);
    padding: 10px 10px;
    color: white;
    font-weight: bold;
}

.fillup-col {
    background-color: var(--white);
    padding: 36px 48px;
}
.contact-heads {
    margin-right: 30px;
    font-weight: 600;
    mix-blend-mode: lighten;
    color: var(--white);
}
.star {
    font-weight: 500;
    color: var(--primary);
}
.contact-heads_line {
    background-color: var(--grey);
}
.map {
    width: 100%;
    overflow-x: hidden;
}
.branch_3 {
    background-color: green;
}
.branch_container {
    margin-top: 20px;
}
.branch_1_title {
    color: var(--white);
    text-align: left;
    margin-left: 50px;
}
.get_direction {
    background-color: var(--white);
    border-radius: 20px;
    color: var(--white);
    padding: 10px 14px;
    position: relative;
    top: 10px;
    left: 35px;
}
.get_direction:hover {
    text-decoration: none;
}
.txt {
    padding-left: 5px;
    color: var(--black);
    font-weight: 500;
}
.gpa {
    color: var(--black);
}
.branch_body {
    background: var(--primary);
    padding: 36px 0 44px;
}

.info-ul_1 {
    background-color: var(--black);
}
.info-ul_1 {
    margin-right: 80px;
    display: flex;
    flex-direction: column;
}

.info-ul_1 .info-li_1 {
    list-style: none;
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: black;
    mix-blend-mode: lighten;
    padding-left: 10px;
}

.i-design_1 {
    margin-right: 22px;
    line-height: 50px;
    text-align: center;
    color: silver;
    font-size: 1.4rem;
}

/*----CONTACT PAGE ENDS---*/

/*---TESTIMINIALS PAGE STARTS-------*/
.testimonials-top-head .img-fluid {
    width: 500px;
    position: relative;
    border-radius: 20px;
    top: 2rem;
}
.testimonials-top-head h3 {
    color: var(--primary);
    padding: 2rem 0;
}
.testimonials-top-head p {
    color: var(--grey);
}
.testimonials-left-head {
    padding-top: 10rem;
    padding-bottom: 30px;
    background-image: url("/landing-page/background.jpg");
    margin-top: 100px;
    height: 500px;
    z-index: -1;
    border-radius: 0 0 50px 0;
}
.testimonials-quote-icon {
    color: white;
    background-color: var(--primary);
    position: absolute;
    padding: 15px 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 12rem;
    font-size: 20px;
    left: 40px;
}
.testimonials-left-head {
    font-size: 35px;
    font-weight: 600;
    text-shadow: rgba(0, 0, 0, 0.541);
    color: var(--white);
    text-align: center;
    margin-top: 5rem;
    text-shadow: 2px 2px var(--black);
}
.testimonial-head {
    color: #333;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-weight: 500;
    position: relative;
    margin: 30px 0 60px;
    font-size: 30px;
    text-shadow: 0 0 10px whitesmoke;
}
.testimonial-head ::after {
    content: "";
    display: inline-block;
    position: absolute;
    margin: 0 auto;
    width: 100px;
    height: 3px;
    background: var(--primary);
    left: 0;
    right: 0;
    bottom: -5px;
}
.testimonial-media {
    margin-top: 8rem;
    padding: 3rem 1.5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid var(--white);
    border-radius: 10px;
}
img.testimonial-img-inner {
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.testimonial-img {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 5rem;
    position: absolute;
    width: 80px;
    height: 80px;
    display: block;
}
.testimonials {
    padding: 3px;
    position: relative;
}

.testimonial-txt {
    color: var(--grey);
    text-align: left;
    color: #878c9f;
    font-size: 14px;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}
.overview {
    color: var(--grey);
    text-align: center;
    color: #878c9f;
    font-size: 14px;
    font-weight: 500;
}
.text_col {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}

.testimonials-text-before {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: 0.3;
    font-size: 35px;
    transition: all 400ms linear;
    top: -35px;
    left: -20px;
}

.swiper-pagination-bullet {
    color: var(--primary);
}
.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: 0.3;
    font-size: 35px;
    transition: all 400ms linear;
    bottom: -40px;
    right: -10px;
}

.swiper-slide {
    overflow: hidden;
    display: flex;
    margin-bottom: 100px;
}
.nxt,
.prv {
    color: var(--white);
    background-color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;

    font-weight: 900;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.prv:hover {
    opacity: 0.7;
}
.nxt:hover {
    opacity: 0.7;
}
.nxt:after,
.prv:after {
    font-size: 25px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swip {
    margin-bottom: 5rem;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: var(--primary);
    border-radius: 4px;
    width: 16px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    width: 26px !important;
    transition: var(--transition);
}

/*-------TESTIMINIALS PAGE END---------*/

/*-----LOG-IN-----*/
.login-form-body {
    background-image: url("/landing-page/1.png");
}
.login-container {
    margin-top: 10rem;
    padding-bottom: 10rem;
}

.contact-banner {
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    text-align: center;
    height: 50vh;
    color: #f4f4f4;
    font-size: 100px;
}

.contact-banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.text-info {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}
.login-form {
    /*form*/
    background-color: #0b2c2e;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.login-btn {
    text-align: center;
    cursor: pointer;
    /* margin-top: 30px; */
    /*login-btn*/
}
.login-btns {
    background-color: #3d7679;
    width: 100%;
    padding: 10px 15px;
    color: white;
}
.login-btns:hover {
    opacity: 0.8;
}

.front-1 {
    font-family: "Jost", sans-serif;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 70px;
    margin-top: 90px;
    line-height: 5rem;
    letter-spacing: 1px;
} /*welcome-back-txt*/
.front-2 {
    margin-left: 50px;
    color: #5ce1e6;
    font-size: 80px;
}
.front-3 {
    font-family: "Jost", sans-serif;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 65px;
    margin-top: 90px;
    display: flex;
    flex-direction: column;
}
.front-4 {
    /*study abroad txt*/

    color: #5ce1e6;
    font-size: 50px;
}
.front-5 {
    font-family: "Jost", sans-serif;
    color: white;
    font-style: italic;
    font-weight: bold;
}

.loginlbl {
    color: var(--white);
    opacity: 0.9;
}
.form-control-login {
    outline: red;
    background-color: #0b2c2e;
    border: 3px solid var(--primary);
}
input#username.form-control.form-control-login:focus {
    outline: none;
    border: none;
    border: 3px solid var(--primary);
    box-shadow: 0 0 2px var(--primary);
    background-color: #0b2c2e;
    color: white;
}
.login-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    position: absolute;
    right: 0;
    left: 0;
    top: -20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.line-login {
    background-color: var(--primary); /* hr-design*/
    opacity: 0.2;
    margin-top: 3rem;
}
span.typed-cursor {
    opacity: 0.2;
}
/* responsive login-form */
@media only screen and (min-device-width: 481px) and (max-device-width: 992px) {
    .front-3 {
        flex-direction: row;
        margin-left: 70px;
    }
    .front-4 {
        margin-top: 10px;
    }
    .front-5 {
        margin-left: 10rem;
    }
    /* For portrait layouts only */
}
@media only screen and (min-device-width: 300px) and (max-device-width: 481px) {
    .front-4 {
        font-size: 30px;
        position: relative;
        bottom: 0px;
    }
    .front-3 {
        flex-direction: row;
        margin-left: 30px;
        font-size: 30px;
        position: relative;
        bottom: 5rem;
    }
    .front-1 {
        display: flex;

        flex-direction: row;
        font-size: 40px;
        margin-left: 10px;
    }
    .front-2 {
        font-size: 40px;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .front-5 {
        position: relative;
        bottom: 5rem;
    }
    .login-container {
        margin-top: 0rem;
        padding-bottom: 1rem;
    }
}
/* -------LOG-IN ENDSS--- */

/* About Us */

.about-us {
    margin: 7rem 0;
}
.about-us .image-box {
    position: relative;
}
.about-us .image-box img {
    width: 100%;
    height: auto;
}
.about-us .image-box .light-box {
    position: absolute;
    height: 85%;
    width: 85%;
    background-color: #367273;
    left: -15px;
    top: -15px;
    z-index: -1;
}
.about-us .image-box .dark-box {
    position: absolute;
    height: 85%;
    width: 85%;
    background-color: #013437;
    right: -15px;
    bottom: -15px;
    z-index: -1;
}
.about-us .image-box.video-box .light-box {
    position: absolute;
    height: 85%;
    width: 80%;
    background-color: #367273;
    left: -15px;
    top: -15px;
    z-index: -1;
}
.about-us .image-box.video-box .dark-box {
    position: absolute;
    height: 85%;
    width: 76%;
    background-color: #013437;
    right: 88px;
    bottom: -10px;
    z-index: -1;
}
.about-us .about-content {
    text-align: center;
    padding: 0 36px;
}
.about-us .about-content h3 {
    color: var(--primary);
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .about-us .image-box.video-box .dark-box {
        right: 50px;
    }
}
@media only screen and (max-width: 400px) {
    .about-us .image-box.video-box .dark-box {
        right: 36px;
    }
}
.our-mission {
    margin: 7rem 0;
}
.our-mission .mission-content-one {
    padding: 40px 50px;
    box-shadow: 0 6px 24px 0 rgb(174 174 186 / 16%);
    background-color: var(--white);
}
.our-mission .mission-content-one h3 {
    color: var(--primary);
    font-weight: 700;
}
.our-mission .mission-content-two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
.our-mission .mission-content-two .points {
    color: var(--primary);
    font-weight: 700;
    margin: 24px 0;
}
.our-mission .mission-content-two .icons {
    width: 60%;
    display: flex;
    justify-content: space-around;
}
.our-mission .mission-content-two .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--white);
}
.our-mission .btn {
    border-radius: 0;
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}
.our-mission .btn:hover {
    color: var(--white);
    background-color: var(--primary);
}

.our-values {
    margin: 7rem 0;
    background-color: #f5f8fb;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
}
.our-values .values-content {
    text-align: center;
    width: 60%;
}
.our-values .values-content h3 {
    font-weight: 700;
    color: var(--primary);
}

@media only screen and (max-width: 992px) {
    .our-values,
    .our-mission,
    .about-us {
        margin: 3.5rem 0;
    }
}
/* Footer */

footer {
    background: var(--primary);
    width: 100%;
    bottom: 0;
    left: 0;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    background: #000;
}
footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
}
footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.content .top .logo-details {
    color: #fff;
    font-size: 30px;
}
.content .top .media-icons {
    display: flex;
}
.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
    background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background: #fff;
}
.top .media-icons a:nth-child(2) {
    background: #1da1f2;
}
.top .media-icons a:nth-child(2):hover {
    color: #1da1f2;
    background: #fff;
}
.top .media-icons a:nth-child(3) {
    background: #e1306c;
}
.top .media-icons a:nth-child(3):hover {
    color: #e1306c;
    background: #fff;
}
.top .media-icons a:nth-child(4) {
    background: #0077b5;
}
.top .media-icons a:nth-child(4):hover {
    color: #0077b5;
    background: #fff;
}
.top .media-icons a:nth-child(5) {
    background: #ff0000;
}
.top .media-icons a:nth-child(5):hover {
    color: #ff0000;
    background: #fff;
}
footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}
.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}
.content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}
.content .link-boxes .input-box {
    margin-right: 55px;
}
.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #afafb6;
    background: #140b5c;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}
.link-boxes .input-box input::placeholder {
    color: #afafb6;
    font-size: 16px;
}
.link-boxes .input-box input[type="button"] {
    background: #fff;
    color: #140b5c;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}
.input-box input[type="button"]:hover {
    opacity: 1;
}
footer .bottom-details {
    width: 100%;
    background: #2c303a;
}
footer .bottom-details .bottom_text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}
.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}
.bottom-details .bottom_text a {
    margin-right: 10px;
}
@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}
@media (max-width: 700px) {
    footer {
        position: relative;
    }
    .content .top .logo-details {
        font-size: 26px;
    }
    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }
    footer .content .link-boxes .box {
        width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box {
        width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }
}
@media (max-width: 520px) {
    footer::before {
        top: 145px;
    }
    footer .content .top {
        flex-direction: column;
    }
    .content .top .media-icons {
        margin-top: 16px;
    }
    footer .content .link-boxes .box {
        width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box {
        width: 100%;
    }
}
