@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&display=swap');

/*
font-family: 'Rubik', sans-serif;
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    /* background-color: #4D77FF; */
}

img {
    max-width: 100%;
    display: flex;
}

header {
    background-color: #fff;
    width: 100%;
    /* margin-bottom: 20px; */
    /* margin-bottom: calc(-91.6px/2); */
    z-index: 1001;
    transition: 0.3s;
    position: relative;
}

/* .scrolled-up header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-animation: header .3s ease;
    animation: header .3s ease;
}

@-webkit-keyframes header {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes header {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
} */

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.header_top {
    background-color: #5EE6EB;
}

.header_top .inner {
    /* transform: translateY(20px); */
    padding: 10px 30px;
    text-align: center;
    /* border-radius: 100px; */
    /* max-width: -webkit-max-content;
    max-width: -moz-max-content; */
    /* max-width: max-content; */
    margin: auto;
    /* border: 2px solid #fff; */
}

.header_reach_us_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    align-items: center;
    justify-content: space-between;
}

.header_reach_us_list a:nth-child(2) {
    margin-left: auto;
}

.header_reach_us_list a {
    font-family: 'Rubik', sans-serif;
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.site_logo {
    max-width: 150px;
    display: flex;
}

.site_logo img {
    width: 100%;
    height: 100%;
    display: flex;
}

.header_bottom .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header_navigation {
    margin: auto;
}

.header_navigation>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 25px;
}

.header_navigation>ul>li.has_submenu {
    position: relative;
}

.header_navigation>ul>li {
    list-style: none;
}

.header_navigation>ul>li>a {
    font-family: 'Rubik', sans-serif;
    color: #000;
    text-transform: capitalize;
    display: flex;
    font-size: 14px;
    text-decoration: none;
    min-height: 30px;
    align-items: center;
}

.header_navigation>ul>li.has_submenu.active .submenu {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

.header_navigation>ul>li.has_submenu>a {
    pointer-events: none;
}

.header_navigation>ul>li.has_submenu {
    cursor: pointer;
}

.header_navigation>ul>li.has_submenu .submenu::before {
    content: '';
    width: 40px;
    position: absolute;
    background-color: #5EE6EB;
    background-color: #4d6289;
    border-radius: 4px;
    aspect-ratio: 1;
    transform: rotate(45deg);
    top: -3px;
    left: 10px;
    z-index: -1;
}

.header_navigation>ul>li.has_submenu .submenu {
    min-width: 280px;
    position: absolute;
    display: flex;
    padding: 20px;
    border-radius: 6px;
    background-color: #5EE6EB;
    background-color: #4d6289;
    position: absolute;
    left: 0;
    top: 30px;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(10px);
    pointer-events: none;
    max-height: 400px;
    overflow-x: auto;
}

.header_navigation>ul>li.has_submenu .submenu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header_navigation>ul>li.has_submenu .submenu ul li {
    list-style: none;
}

.header_navigation>ul>li.has_submenu .submenu ul li a {
    display: flex;
    font-family: 'Rubik';
    color: #000;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    min-height: 30px;
    text-decoration: none;
}

.header_socials {
    display: flex;
    margin-left: auto;
}

.header_socials ul {
    display: flex;
    list-style: none;
    gap: 12px;
    align-items: center;
}

.header_socials ul li a:hover {
    transform: translateY(-5px);
}

.header_socials ul li a {
    display: flex;
    color: #000;
    width: 20px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: 0.3s;
}

.header_bottom .inner {
    padding: 20px 40px;
    /* border: 1px solid #ddd; */
    /* border-radius: 1000px; */
}

.banner_slider {
    width: 100%;
}

.background_image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #000, #fff0);
}

.background_image {
    /* min-height: calc(100vh - (134px - (91.6px/2))); */
    width: 100%;
    position: relative;
}

.background_image img {
    width: 100%;
    height: 100%;
    -o-object-position: top;
    object-position: top;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner_slide {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* .banner_slide .wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
} */

.banner_slide .inner {
    padding: 100px;
}

.banner_slide h2 {
    font-family: 'Rubik';
    color: #fff;
    font-size: 45px;
    opacity: 0;
    transform: translateY(50px);
    text-align: center;
}

.banner_slider .active .banner_slide h2 {
    opacity: 1;
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.3s;
    transform: translateY(0);
}

.banner_slider {
    overflow: hidden;
}

.banner_slider:hover .owl-nav {
    width: 100vw;
}

.banner_slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    padding: 50px;
    transition: 0.3s;
    justify-content: space-between;
}

.banner_slider .owl-nav button::before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner_slider .owl-nav button.owl-prev::before {
    transform: rotate(180deg);
}

.banner_slider .owl-nav button span {
    display: none;
}

.banner_slider .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    position: unset;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #fff3 !important;
}

.banner_slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

.student_services_sec .inner {
    padding: 50px 0;
}

.student_services_sec {
    /* min-height: 100vh; */
    /* background-color: #5EE6EB; */
}

.student_services_sec .inner h2 {
    font-family: 'Rubik';
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
}

.student_services_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.student_services_card {
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
    /* width: calc(33.3% - (30px*2)/3); */
    width: calc(25% - (30px*3)/4);
    /* aspect-ratio: 1; */
    background-color: rgba(255, 255, 255, 0.1) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #fff !important;
    border-radius: 20px;
}

.student_services_card .image_wrap {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 250px;
    height: 160px;
    display: flex;
}

.student_services_card .image_wrap img {
    width: 100%;
    object-fit: cover;
}

.student_services_card .main_content {
    padding: 20px 20px 30px;
    min-height: calc(100% - 250px);
    display: flex;
    flex-direction: column;
}

.student_services_card .main_content .title {
    font-family: 'Rubik';
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

.student_services_card .main_content .title {
    font-family: 'Rubik';
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all 0.3s !important;
}

.student_services_card .main_content .desc {
    font-family: 'Rubik';
    font-size: 15px;
    color: #3339;
    margin-bottom: 20px;
    display: none;
}

.student_services_card .main_content .action_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-top: auto;
}

/* .student_services_card .main_content .action_buttons .button:hover {
    background-color: #333;
    color: #fff;
}

.student_services_card .main_content .action_buttons .button {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
} */

/* .student_services_card .main_content .action_buttons .button:nth-child(2) {
    background-color: transparent;
    padding: 10px;
    text-decoration: underline;
} */
.why_us_sec {
    margin-bottom: 50px;
}

.why_us_sec .inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why_us_sec .inner h2 {
    font-size: 40px;
    text-transform: uppercase;
    color: #333;
    font-family: 'Rubik';
}

.why_us_sec .content_wrap {
    width: 60%;
}

.image_in_circle {
    width: 40%;
    background-color: #5EE6EB;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    /* padding: 30px; */
}

.image_in_circle img {
    border-radius: 50%;
}

.why_us_circles {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.why_us_circle::before {
    content: '';
    display: flex;
    width: 100%;
    height: 30px;
}

.why_us_circle {
    box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.5);
    width: calc(33.3%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: #5EE6EB;
}

.why_us_circle h5 {
    height: 100%;
    padding: 20px;
    background-color: #fff;
    font-family: 'Rubik';
    color: #000;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 0 10px 10px;
}

.enquire_now_sec {
    padding: 50px 30px;
    background-color: #5EE6EB;
}

.enquire_now_sec h2 {
    font-family: 'Rubik';
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.enquire_now_sec .desc {
    font-family: 'Rubik';
}

.enquire_now_sec .form {
    padding: 50px;
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    border: 1px solid #ddd;
}

.enquire_now_sec .form .input_row {
    display: flex;
    gap: 20px;
}

.enquire_now_sec .form .input_col label {
    font-size: 18px;
    font-family: 'Rubik';
}

.enquire_now_sec .form .input_col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enquire_now_sec .form .input_col input,
.enquire_now_sec .form .input_col select {
    height: 55px;
    padding: 0px 20px;
    color: #000;
    border: 2px solid #ddd;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    border-radius: 8px;
}

.checkBoxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkBoxes>label {
    font-size: 20px;
    width: 100%;
    font-family: 'Rubik';
}

.checkBoxes .checkBoxe {
    width: calc(25% - (20px*3)/4);
}

.checkBoxes .checkBoxe input {
    display: none;
}

.checkBoxes .checkBoxe input:checked~label::before {
    background-size: 11px;
}

.checkBoxes .checkBoxe label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    display: inline-flex;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNS4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjQgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTQzOC42IDEwNS40YzEyLjUgMTIuNSAxMi41IDMyLjggMCA0NS4zbC0yNTYgMjU2Yy0xMi41IDEyLjUtMzIuOCAxMi41LTQ1LjMgMGwtMTI4LTEyOGMtMTIuNS0xMi41LTEyLjUtMzIuOCAwLTQ1LjNzMzIuOC0xMi41IDQ1LjMgMEwxNjAgMzM4LjcgMzkzLjQgMTA1LjRjMTIuNS0xMi41IDMyLjgtMTIuNSA0NS4zIDB6Ii8+PC9zdmc+);
    background-size: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.checkBoxes .checkBoxe label {
    position: relative;
    display: flex;
    gap: 10px;
    font-family: 'Rubik';
    font-size: 14px;
}

.checkBoxes textarea {
    width: 100%;
    height: 80px;
    font-family: 'Rubik';
    padding: 10px 20px;
    color: #000;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.checkBoxesTerms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkBoxesTerms .checkBoxesTerm input {
    display: none;
}

.checkBoxesTerms .checkBoxesTerm input:checked~label::before {
    background-size: 11px;
}

.checkBoxesTerms .checkBoxesTerm label::before {
    content: '';
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    display: inline-flex;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNS4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjQgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTQzOC42IDEwNS40YzEyLjUgMTIuNSAxMi41IDMyLjggMCA0NS4zbC0yNTYgMjU2Yy0xMi41IDEyLjUtMzIuOCAxMi41LTQ1LjMgMGwtMTI4LTEyOGMtMTIuNS0xMi41LTEyLjUtMzIuOCAwLTQ1LjNzMzIuOC0xMi41IDQ1LjMgMEwxNjAgMzM4LjcgMzkzLjQgMTA1LjRjMTIuNS0xMi41IDMyLjgtMTIuNSA0NS4zIDB6Ii8+PC9zdmc+);
    background-size: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.checkBoxesTerms .checkBoxesTerm label {
    position: relative;
    display: flex;
    gap: 10px;
    font-family: 'Rubik';
    font-size: 14px;
}

.submit_row button {
    cursor: pointer;
    padding: 10px 30px;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    border: none;
    transition: all 0.3s !important;
}








.statistic_section {
    padding-top: 70px;
    padding-bottom: 70px;
    /* background: #1c145c; */
    /* fallback for old browsers */
    /* background: linear-gradient(to right, #0072ff, #00c6ff); */
}

.stats_counter {
    display: flex;
    gap: 50px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stats_counter_col {
    width: calc(33.3% - (20px*2)/3);
}

.count-title::after {
    content: '+';
    margin-left: 5px;
}

.count-title {
    font-size: 50px;
    font-weight: normal;
    /* margin-top: 10px; */
    margin-bottom: 0;
    /* text-align: center; */
    font-weight: bold;
    font-family: 'Rubik';
    /* color: #fff; */
}

.stats-text {
    font-size: 15px;
    font-weight: normal;
    font-family: 'Rubik';
    /* margin-top: 15px; */
    margin-bottom: 0;
    /* text-align: center; */
    /* color: #fff; */
    text-transform: uppercase;
    font-weight: bold;
}

.stats-line-black {
    margin: 12px auto 0;
    width: 55px;
    height: 2px;
    background-color: #fff;
}

.stats-icon {
    font-size: 35px;
    margin: 0 auto;
    float: none;
    display: table;
    color: #fff;
}

.counter {
    display: flex;
}

.counter .bbb {
    border-radius: 10px;
    padding: 20px;
    margin-left: 15px;
    background-color: #fff;
    color: #333;
}

.counter .image_waap {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    display: flex;
    margin: auto;
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
}

@media (max-width: 992px) {
    .counter {
        margin-bottom: 40px;
    }
}

.footer_main {
    padding: 50px 0;
}

.footer_contact_destils ul li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.footer_contact_destils {
    margin-top: 20px;
    width: 100%;
}

.footer_contact_destils ul {
    list-style: none;
    display: flex;
    /* flex-direction: column; */
    gap: 5px 20px;
    /* flex-wrap: wrap; */
}

.footer_contact_destils .head {
    font-size: 15px;
    font-family: 'Rubik';
    text-transform: uppercase;
    font-weight: 500;
}

.footer_contact_destils .text {
    font-family: 'Rubik';
    font-size: 14px;
}

.footer_contact_destils a {
    color: #000;
}

.footer_main .inner:last-child {
    margin-bottom: 0;
}

.footer_main .inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer_socials {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer_socials ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.footer_socials ul li a {
    color: #000;
}

/* .footer_column {
    width: 100%;
} */
.footer_column:first-child {
    width: 30%;
}

.footer_column:last-child {
    width: 70%;
}

.footer_column h5 {
    font-size: 17px;
    font-family: 'Rubik';
    /* text-transform: uppercase; */
    margin-bottom: 5px;
}

.footer_links {
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.footer_links li {
    /* list-style: none; */
}

.footer_links li a {
    color: #000;
    font-size: 14px;
    font-family: 'Rubik';
    text-decoration: none;
}

.footer_copyrt {
    padding: 20px;
    background-color: #0072ff;
}

.footer_copyrt p {
    font-family: 'Rubik';
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}

.footer_logo {
    display: flex;
    max-width: 200px;
}

/* @media (max-width:1189px) {
    .header_navigation {
        display: none;
    }
} */

.banner_slider2 .banner_slide .wrapper {
    position: static;
    padding: 0;
    max-width: 100%;
}

.banner_slider2 .banner_slide .inner {
    display: flex;
    /* align-items: center; */
    padding: 0;
}

.banner_slider2 .banner_slide h2 {
    /* color: #000 ; */
    text-align: left;
    font-size: 35px;
}

.banner_slider2 .banner_slide .content_half {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    width: 50%;
    padding: 150px;
    background-color: #000;
}

.banner_slider2 .banner_slide .background_image {
    width: 50%;
}























/* changes */


.banner_slide .wrapper {
    bottom: auto;
    right: auto;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    width: 70%;
}

@media (max-width: 1200px) {
    .banner_slide .wrapper {
        width: 90%;
    }
}

.banner_slide h2 {
    text-align: left;
}

.background_image::before {
    background-image: linear-gradient(0deg, #000, #fff0);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 30%, #fff0);
}

/* header {
    margin-bottom: calc(-91.6px/2);
    margin-bottom: calc(-139px);
} */

.background_image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner_slide .inner {
    padding: 100px;
    padding: 150px;
}

@media (max-width: 1200px) {
    .banner_slide .inner {
        padding: 70px;
    }
}

.stats_counter_col {
    width: calc(33.3% - (20px*2)/3);
    width: calc(20% - (20px*4)/5);
}

.counter .bbb {
    padding: 20px;
    margin-left: 15px;
    padding: 10px 0;
    margin-left: 0;
    color: #333;
    background-color: transparent;
    color: #fff;
}

.counter {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.counter .image_waap {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    margin: 0;
}

.count-title {
    font-size: 50px;
    font-size: 40px;
}

.stats-text {
    font-size: 15px;
    font-size: 13px;
}


.student_services_sec .inner h2 {
    font-size: 50px;
    font-size: 40px;
}

.footer_main {
    background: #222;
}

.footer_contact_destils ul li {
    color: #fff;
}

.footer_column h5 {
    margin-bottom: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.footer_links {
    padding-left: 0;
}

.footer_links li a {
    color: #fff;
}

.footer_links li {
    color: #ffff;
    list-style: none;
    margin-bottom: 5px;
}

.footer_contact_destils ul {
    list-style: none;
}

.footer_socials ul li a {
    color: #fff;
    font-size: 22px;
}

.footer_contact_destils a {
    color: #fff;
}

.footer_copyrt {
    background: #000;
}

.footer_socials ul {
    gap: 10px;
    gap: 20px;
}

.footer_socials {
    margin-bottom: 20px;
    margin-bottom: 30px;
}

.footer_contact_destils .head {
    margin-bottom: 10px;
    display: flex;
}

.social-footer-links .icon img {
    width: 100%;
    height: 100%;
}

.social-footer-links .icon {
    --size: 24px;
    width: var(--size);
    height: var(--size);
}

.social-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* .statistic_section {
    background: #1c145c;
} */

.enquire_now_sec {
    background-color: #0072ff;
}

.enquire_now_sec h2 {
    color: #fff;
}

.enquire_now_sec .desc {
    color: #fff;
}

.submit_row button {
    background-color: #0072ff;
    color: #fff;
}

/* changes */


.accreditation_section {
    padding: 50px 0;
    /* background-color: #5EE6EB; */
}

.accreditation_section_heading {
    text-align: center;
    word-wrap: break-word;
    text-transform: uppercase;
    font-family: 'Rubik';
    font-size: 40px;
}

.accreditation_logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 70px 0;
    justify-content: center;
}

.accreditation_logos img {
    max-width: 200px;
    max-height: 70px;
    object-fit: contain;
    width: 100%;
    mix-blend-mode: darken;

}

.who-we-are-section {
    padding: 20px 0 100px 0;
    background-color: #1c145c;
    background-color: #17a2b8;
}

.who-we-are-section .inner {
    display: flex;
}

.who-we-are-section .left-half {
    width: 50%;
}

.who-we-are-section .left-half img {
    width: 80%;
    margin: auto;
    padding: 50px 0 0;
}

.who-we-are-section .right-half {
    padding: 50px;
    width: 50%;
}

.main-heading {
    text-transform: uppercase;
}

.who-we-are-section .right-half .main-heading {
    font-size: 50px;
    font-family: 'Rubik';
    color: #fff;
    margin-bottom: 20px;
}

.who-we-are-section .right-half .desc {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
}

.who-we-are-section .right-half .desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our-mission-section {
    padding: 50px 0;
}

.our-mission-section .inner {
    display: flex;
    align-items: center;
    position: relative;
}

.our-goal-section .inner {
    display: flex;
    flex-direction: row-reverse;
}

.next-trails-img {
    display: flex;
    position: absolute;
    max-width: 100px;
    left: 100px;
    bottom: -50px;
}

.our-goal-section .inner .next-trails-img {
    max-width: 180px;
    left: 0;
    right: 210px;
    bottom: -90px;
    margin: auto;
}

.our-mission-section .left-half {
    width: 50%;
    padding: 50px;
}

.our-mission-section .left-half .main-heading {
    font-family: 'Rubik';
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
}

.our-mission-section .left-half .main-heading span {
    display: flex;
    font-size: 28px;
    font-style: italic;
}

.our-mission-section .right-half {
    width: 50%;
}

.what-we-do-section {
    padding: 50px 0;
    background-color: #1c145c;
    background-color: #17a2b8;
}

.what-we-do-section .main-heading {
    font-family: 'Rubik';
    font-size: 50px;
    color: #fff;
    /* text-align: center; */
    margin-bottom: 50px;
}

.sticky-heading {
    font-family: 'Rubik';
    background-color: #fff;
    width: 100%;
    padding: 30px 50px;
    margin-left: -50px;
    margin-right: -50px;
    width: calc(100% + 100px);
    font-size: 40px;
    color: #1c145c;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.content-for-the-section {
    padding: 30px;
}

.content-for-the-section ol {
    color: #fff;
    padding-left: 20px;
    font-size: 20px;
    font-family: 'Rubik';
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-for-the-section ol>li {
    font-weight: bold;
}

.content-for-the-section ul {
    padding-left: 20px;
}

.content-for-the-section ul>li {
    font-weight: normal;
}

.wrapper.full {
    max-width: 100%;
    padding: 0;
}

.our-founder-section .inner {
    display: flex;
    align-items: center;
}

.our-founder-section .inner.reverse {
    flex-direction: row-reverse;
}

.our-founder-section .left-half {
    width: 50%;
}

.our-founder-section .right-half {
    width: 50%;
    padding: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.our-founder-section .right-half .main-heading {
    font-family: 'Rubik';
    font-size: 50px;
    text-align: center;
    margin-bottom: 10px;
}

.our-founder-section .right-half .desc {
    text-align: center;
    font-family: 'Rubik';
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.our-founder-section .right-half .founder-name {
    font-family: 'Rubik';
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.our-team-section {
    padding: 50px 0;
}

.our-team-section .main-heading {
    font-family: 'Rubik';
    font-size: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.our-team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.our-team-card {
    width: calc(25% - (50px*3)/4);
}

.our-team-card .img-wrap {
    padding: 20px;
    width: 100%;
    display: flex;
    aspect-ratio: 1;
    position: relative;
}

.our-team-card .img-wrap:hover img {

    scale: 1.05;
}

.our-team-card .img-wrap img {
    transition: 0.3s;
    width: 100%;
    -o-object-fit: cover;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}

.our-team-card .img-wrap:hover .cta-icon {
    scale: 0.90;
}

.our-team-card .img-wrap .cta-icon {
    transition: 0.3s;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.9);
    right: 10px;
    bottom: 10px;
    z-index: 1;
    position: absolute;
    background-color: #fff;
}

.our-team-card .team-content {
    padding: 10px 30px;
}

.our-team-card .team-name {
    font-family: 'Rubik';
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.our-team-card .team-desig {
    font-style: italic;
}

.what-makes-us-different-section {
    background-color: #1c145c;
    background-color: #17a2b8;
    padding: 50px 0;
}

.what-makes-us-different-section .main-heading {
    font-size: 50px;
    font-family: 'Rubik';
    color: #fff;
    text-align: center;
}

.what-makes-us-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.what-makes-us-card {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    width: calc(25% - (30px*3)/4);
}

.what-makes-us-card .img-wrap img {
    border-radius: 10px;
    -o-object-fit: cover;
    width: 100%;
    object-fit: cover;
}

.what-makes-us-card .img-wrap {
    width: 100%;
    aspect-ratio: 1.5;
    display: flex;
}

.what-makes-us-card .content-wrap {
    padding: 10px 5px;
}

.what-makes-us-card .content-wrap .title {
    font-size: 20px;
    color: #1c145c;
    margin-bottom: 10px;
    font-family: 'Rubik';
}

.what-makes-us-card .content-wrap .text {
    font-family: 'Rubik';
    font-size: 14px;
}

.waiting-forsection .left-half .img-wrap {
    width: 100%;
}

.waiting-forsection .left-half .img-wrap img {
    aspect-ratio: 1.3;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.waiting-forsection .left-half {
    width: 50%;
}

.waiting-forsection .right-half {
    width: 50%;
    padding: 50px;
}

.waiting-forsection .inner {
    display: flex;
    align-items: center;
}

.main-heading {
    font-family: 'Rubik';
    font-size: 41px;
    margin-bottom: 10px;
}

.sub-heading {
    font-family: 'Rubik';
    font-size: 16px;
    margin-bottom: 30px;
}

.end-heading {
    font-family: 'Rubik';
    margin-bottom: 20px;
}

.last-heading {
    font-family: 'Rubik';

}

.study-in-australia-banner-section .img-half {
    padding: 50px;
    width: 50%;
    display: flex;
    justify-content: center;
}

.study-in-australia-banner-section .inner {
    display: flex;
    align-items: center;
}

.study-in-australia-banner-section {
    background-color: #1c145c;
    background-color: #17a2b8;
    padding: 50px 0 0;
    color: #ffff;
}

.study-in-australia-banner-section .right-half {
    width: 50%;
    padding: 50px;
}

.study-in-australia-banner-section .right-half .desc {
    margin-bottom: 30px;
    font-size: 15px;
    font-family: 'Rubik';
    line-height: 1.6;
}

.study-in-australia-banner-section .right-half .main-heading {
    font-family: 'Rubik';
    font-size: 40px;
    margin-bottom: 20px;
}

.study-in-australia-banner-section .right-half .cta-button:hover {
    background-color: #fff;
}

.study-in-australia-banner-section .right-half .cta-button {
    cursor: pointer;
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
}

.tabing-content-section-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #ffff;
}

.tabing-content-section-header .tabs {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    /* flex-wrap: wrap; */
    padding: 20px;
}

.tabing-content-section-header .tab a {
    padding: 10px 30px;
    white-space: nowrap;
    transition: 0.3s;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
}


.tabing-content-section .tab-content .tab-content-sec-row {
    display: flex;
}

.tabing-content-section .tab-content .tab-content-sec-row .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tabing-content-section .tab-content .tab-content-sec-row .img-wrap {
    display: flex;
    height: 100%;
    width: 100%;
}

.tabing-content-section .tab-content .tab-content-sec-row .img-half {
    width: 50%;
    display: flex;
}

.tabing-content-section .tab-content .tab-content-sec-row .left-half {
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 50%;
    padding: 40px;
}

.tabing-content-section .tab-content {
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tabing-content-section .tab-content .desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tabing-content-section .tab-content p {
    font-family: 'Rubik';
}

.tabing-content-section .tab-content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 40px;
    font-family: 'Rubik';
}

.tabing-content-section .tab-content ol ul {
    margin-top: 10px;
}

.tabing-content-section .tab-content ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 18px;
    font-family: 'Rubik';
}

.tabing-content-section .tab-content ul ul {
    margin-top: 15px;
}

.tabing-content-section .tab-content-main {
    margin-bottom: 100px;
    padding-top: 60px;
}

.tabing-content-section .tab-content-main .inner {
    display: flex;
    gap: 50px;
}

.tabing-content-section .tab-content-main .form-half {
    min-width: 400px;
}

.tabing-content-section .tab-content-main .form-half .form .form-heading {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Rubik';
    font-weight: 700;
    text-align: center;
}

.tabing-content-section .tab-content-main .form-half .form {
    padding: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    background-color: #ffff;
    border-radius: 20px;
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.3);
}

.tabing-content-section .tab-content-main .form-half .form .input-col {
    width: 100%;
}

.tabing-content-section .tab-content-main .form-half .form .input-row:last-child {
    margin-bottom: 0;
}

.tabing-content-section .tab-content-main .form-half .form .input-row {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.tabing-content-section .tab-content-main .form-half .form input,
.tabing-content-section .tab-content-main .form-half .form select {
    height: 50px;
    width: 100%;
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0 20px;
    background-color: #ffff;
    border: none;
}

.tabing-content-section .tab-content-main .form-half .form button {
    display: flex;
    margin: 0 auto;
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #5EE6EB;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    border: none;
}

.quick-facts-table-content table {
    border-collapse: collapse;
    width: 100%;
}

.quick-facts-table-content tr:nth-child(2n) {
    background-color: #eee;
}

.quick-facts-table-content tr {
    background-color: #fff;
}

.quick-facts-table-content tr td:first-child {
    vertical-align: baseline;
}

.quick-facts-table-content tr td:not(:first-child) {
    color: rgba(0, 0, 0, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.quick-facts-table-content tr td {
    padding: 10px;
    font-family: 'Rubik';
}

.quick-facts-table-content {
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 10px;
}

.quick-facts-table-content tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tab-content-accordian {
    font-family: 'Rubik';
    background-color: #fff;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
    overflow: hidden;
}

.active .accordian-header::after {
    content: '\f068';
}

.accordian-header::after {
    content: '\2b';
    font-family: 'FontAwesome';
}

.accordian-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
}


.accordian-content {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: none;
    padding: 20px;
}

.accordian-content .quick-facts-table-content {
    margin-bottom: 20px;
}

.tab-content.accordian-tab-content {
    background-color: #5EE6EB;
    padding: 50px;
    border-radius: 20px;
}

.why_us_sec2 {
    padding: 80px 0 80px;
    /* background-color: #5EE6EB; */
}

.why_us_sec2 .inner h2 {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    color: #333;
    font-family: 'Rubik';
    margin-bottom: 40px;
}

.why_us_sec2cards {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.why_us_sec2card:hover .img-wrap img {
    scale: 1.1;
}

.why_us_sec2card .img-wrap img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    transition: 0.5s ease;
}

.why_us_sec2card .img-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    z-index: 1;
}

.why_us_sec2card .img-wrap {
    aspect-ratio: 2;
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.why_us_sec2card .contentwrap {
    padding: 25px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    margin: -170px 30px 0;
    position: relative;
    z-index: 1;
    width: calc(100% - 60px);
}

.why_us_sec2card {
    width: calc(33.3% - (30px*2)/3);
}

.why_us_sec2card .title {
    font-family: 'Rubik';
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
}

.why_us_sec2card .text {
    font-family: 'Rubik';
    font-size: 15px;
    color: #3339;
}











.about-us-section-home .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-us-section-home {
    background-color: #1c145c;
    background-color: #17a2b8;
    padding: 80px 0;
}

.about-us-section-home .imgwrap img {
    width: 100%;
}

.about-us-section-home .imgwrap {
    width: 50%;
}

.about-us-section-home .left-half {
    width: 50%;
    padding: 50px;
}

@media (max-width:767px) {

    .about-us-section-home .inner {

        gap: 40px;
        flex-wrap: wrap;
    }

    .about-us-section-home .left-half {
        width: 100%;
    }

    .about-us-section-home .imgwrap {
        width: 50%;
    }
}

.about-us-section-home .left-half .smallheading {
    font-family: 'Rubik';
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 7px;
}

.about-us-section-home .left-half .heading {
    font-family: 'Rubik';
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 7px;
}

.about-us-section-home .left-half .desc {
    font-family: 'Rubik';
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
}

.about-us-section-home .left-half .ctaButon {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}












.testimonialsHome .inner {
    display: flex;
    overflow: hidden;
    gap: 30px;
    align-items: center;
}

.testimonialsHome {
    overflow: hidden;
    /* background-color: #ddd; */
    padding: 80px 0;
}

.testimonialsHome .testiHalf {
    width: 50%;
    padding: 30px;
    -webkit-clip-path: inset(-100vw 1vw -100vw -100vw);
    clip-path: inset(-100vw 1vw -100vw -100vw);
}

.testimonialsHome .righthalf {
    width: 50%;
    padding: 50px;
}

.testimonialsHome .smallheading {
    font-family: 'Rubik';
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 7px;
}

.testimonialsHome .heading {
    font-family: 'Rubik';
    color: #333;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 7px;
}

.testimonialsHome .desc {
    font-family: 'Rubik';
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.testimonialsHome .ctaButon {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.testimonailsSlider .owl-stage-outer {
    overflow: visible;
}

.testimonailsSlider .slide {
    padding: 25px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
}

.testimonailsSlider .avatarWrap img {
    display: none;
}

.testimonailsSlider .owl-dots {
    margin-top: 20px !important;
}

.testimonailsSlider .avatarWrap span {
    font-family: 'Rubik';
    font-size: 20px;
    color: white;
}

.testimonailsSlider .avatarWrap {
    width: 60px;
    height: 60px;
    display: flex;
    background-color: var(--cyan);
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.testimonailsSlider .desc {
    font-family: 'Rubik';
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
}

.testimonailsSlider .name {
    font-family: 'Rubik';
    font-size: 20px;
    text-transform: uppercase;
}

.testimonailsSlider .starrating {
    color: #f8b81f;
}

.tabing-content-section .tab-content .sub-heading {
    margin-bottom: 0;
}




.tabing-content-section .tab-content {
    color: #1c145c;
}

.tabing-content-section .tab-content .main-heading {
    font-size: 40px;
}

.tabing-content-section .tab-content .tableheading {
    background: #5EE6EB;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    font-size: 30px;
    margin-bottom: -15px;
}

.quick-facts-table-content-withtableheading {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.quick-facts-table-content-withtableheading tr:first-child {
    display: none;
}

.quick-facts-table-content tr:first-child {
    background-color: #5EE6EB85;
}

.tab-content-with-bg {
    background-color: #5EE6EB;
    padding: 40px !important;
    border-radius: 20px;
}

.application-popup-trigger:hover {
    background-color: #1c145c;
    background-color: #17a2b8;
    color: #fff;
}

.application-popup-trigger {
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #5EE6EB;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    display: flex;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.application-form-popup.active {
    pointer-events: all;
    opacity: 1;
}

.application-form-popup {
    position: fixed;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    max-width: 600px;
}

.application-form-popup .close {
    position: absolute;
    cursor: pointer !important;
    top: 10px;
    right: 15px;
    font-family: 'Outfit', sans-serif;
    color: #000;
}

.application-form-popup .popup-heading {
    font-size: 20px;
    font-family: 'Rubik';
    font-weight: 600;
    margin-bottom: 20px;
}

.application-form .input-row {
    display: flex;
    width: 100%;
    display: flex;
    gap: 20px;
}

.application-form .input-col {
    width: 100%;
}

.application-form input:not(#checkbox),
.application-form select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #000;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.application-form label:not(.checkboxLabl) {
    margin-bottom: 10px;
    font-family: 'Rubik';
    font-size: 16px;
    color: #000;
}

.application-form .input-row {
    margin-bottom: 10px;
}

.application-form .input-row button {
    cursor: pointer;
    padding: 10px 30px;
    border: none !important;
    transition: 0.3s;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
}

.application-form .checkboxLabl {
    margin-left: -10px;
}






















.sectionFixed_images {
    background-color: #1c145c;
    background-color: #17a2b8;
    color: #fff;
}

.sectionFixed_images .inner {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.sectionFixed_images .imgSide img {
    transition: 0.3s;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sectionFixed_images .imgSide img:not([data-image="1"]) {
    position: absolute;
    opacity: 0;
}

.sectionFixed_images .imgSide img:first-child {
    display: flex;
}

.sectionFixed_images .imgSide.image-2 img[data-image="1"] {
    opacity: 0;
}

.sectionFixed_images .imgSide.image-2 img[data-image="2"] {
    opacity: 1;
}

.sectionFixed_images .imgSide.image-3 img[data-image="1"] {
    opacity: 0;
}

.sectionFixed_images .imgSide.image-3 img[data-image="3"] {
    opacity: 1;
}

.sectionFixed_images .imgSide {
    display: flex;
    width: 50%;
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.sectionFixed_images .contentside {
    width: 50%;
    padding-right: 100px;
    padding-left: 70px;
}

.contentsidecontent>.whatWeDo {
    font-family: 'Rubik';
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contentsidecontent>h2 {
    font-family: 'Rubik';
    font-size: 25px;
    margin-bottom: 30px;
}

.contentsidecontent {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contentsidecontent ol {
    color: #fff;
    padding-left: 20px;
    font-size: 16px;
    font-family: 'Rubik';
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contentsidecontent ol>li {
    font-weight: bold;
}

.contentsidecontent ul {
    padding-left: 20px;
}

.contentsidecontent ul>li {
    font-weight: normal;
}

@media (min-width:768px) {

    .sectionFixed_images .contentside {
        /* max-width: calc(1300px / 2); */
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .imgwrapRes {
        margin-bottom: 40px;
    }


    .sectionFixed_images .contentside {
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .contentsidecontent {
        padding: 50px 0;
    }

}



.tabing-content-section .tab-content ul.checkiconlist li:before {
    content: '';
    min-width: 20px;
    max-width: 20px;
    height: 30px;
    background-position: left center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxNCIgdmlld0JveD0iMCAwIDQ0OCA1MTIiPjwhLS0hRm9udCBBd2Vzb21lIEZyZWUgNi41LjEgYnkgQGZvbnRhd2Vzb21lIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20gTGljZW5zZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tL2xpY2Vuc2UvZnJlZSBDb3B5cmlnaHQgMjAyNCBGb250aWNvbnMsIEluYy4tLT48cGF0aCBvcGFjaXR5PSIxIiBmaWxsPSIjMWMxNDVjIiBkPSJNMzQyLjYgODYuNmMxMi41LTEyLjUgMTIuNS0zMi44IDAtNDUuM3MtMzIuOC0xMi41LTQ1LjMgMEwxNjAgMTc4LjdsLTU3LjQtNTcuNGMtMTIuNS0xMi41LTMyLjgtMTIuNS00NS4zIDBzLTEyLjUgMzIuOCAwIDQ1LjNsODAgODBjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHptOTYgMTI4YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zcy0zMi44LTEyLjUtNDUuMyAwTDE2MCA0MDIuNyA1NC42IDI5Ny40Yy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM2wxMjggMTI4YzEyLjUgMTIuNSAzMi44IDEyLjUgNDUuMyAwbDI1Ni0yNTZ6Ii8+PC9zdmc+);
    display: inline-flex;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.tabing-content-section .tab-content ul.checkiconlist {
    list-style: none;
    padding-left: 0;
    -moz-column-count: 1;
    column-count: 1;
    display: block;
}

.tabing-content-section .tab-content ul.checkiconlist li {
    display: flex;
    gap: 5px;
}

@media (min-width:768px) {

    .tabing-content-section .tab-content ul.checkiconlist {
        -moz-column-count: 2;
        column-count: 2;
    }
}

.tabing-content-section .tab-content h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

.tabing-content-section .tab-content h3.sub-heading {
    font-size: 25px;
}

.tabing-content-section .tab-content h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}









.vstab-content {
    display: none;
}

.vstabs button {
    cursor: pointer;
    font-family: 'Rubik';
    outline: none;
    border: 1px solid #ddd;
    padding: 13px 30px;
   /*  font-size: 20px; */
    text-transform: uppercase;

    background: #eee;
    font-size: 15px;
    font-weight: 600;
}

.vstabs {
    z-index: 1;
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: -16px;
}

.vstabs button.active {
    color: #1c145c;
    background: #fff;
    border-bottom-color: #fff;
}

.vstab-content {
    color: #1c145c;
    padding: 30px;
    border-radius: 0 20px 20px 20px;
    border: 1px solid #ddd;
}

.vstab-content .desc {
    margin-bottom: 15px;
}

.vstab-content ul {
    margin-bottom: 15px;
}











.ds-tab-content {
    display: none;
}

.ds-tabs button {
    cursor: pointer;
    font-family: 'Rubik';
    outline: none;
    border: 1px solid #ddd;
    padding: 13px 30px;
    /* font-size: 20px; */
    font-size: 15px;
    text-transform: uppercase;
    background: #eee;
    font-weight: 600;
}

.ds-tabs {
    z-index: 1;
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: -16px;
}

.ds-tabs button.active {
    color: #1c145c;
    background: #fff;
    border-bottom-color: #fff;
}

.ds-tab-content {
    color: #1c145c;
    padding: 30px;
    border-radius: 0 20px 20px 20px;
    border: 1px solid #ddd;
}

.ds-tab-content .desc {
    margin-bottom: 15px;
}

.ds-tab-content ul {
    margin-bottom: 15px;
}

section {
    width: 100%;
}



/* Icon 1 */

.mobile-menu-toggle {
    width: 25px;
    height: 23px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-active .mobile-menu-toggle span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-active .mobile-menu-toggle span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media (max-width: 1200px) {

    header {
        /* display: none !important; */
        margin-bottom: 0;
    }
}

@media (min-width: 1025px) {
    .imgSide-in-respo {
        display: none;
    }

    .imgwrapRes {
        display: none;
    }
}

@media (max-width: 1024px) {
    .banner_slide .inner {
        padding: 50px;
    }

    .imgwrapRes {
        margin-bottom: 50px;
    }

    .sectionFixed_images .inner {
        flex-direction: column;
    }

    .sectionFixed_images .imgSide {
        width: 100%;
    }

    .sectionFixed_images .contentside {
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .contentsidecontent {
        padding: 50px 50px 50px;
        min-height: auto;
    }

    /* .background_image {
        min-height: 50px;
    } */

    .student_services_card {
        width: calc(50% - (30px*1)/2);
    }

    .why_us_sec2card {
        width: calc(50% - (30px* 1) / 2);
    }

    .testimonialsHome .inner {
        flex-direction: column-reverse;
    }

    .testimonialsHome .testiHalf {
        width: 100%;
    }

    .testimonialsHome .righthalf {
        width: 100%;
    }

    .why_us_sec .inner {
        flex-wrap: wrap;
    }

    .why_us_sec .content_wrap {
        width: 100%;
    }

    .about-us-section-home .inner {
        flex-wrap: wrap;
    }

    .about-us-section-home .left-half {
        width: 100%;
    }

    .about-us-section-home .imgwrap {
        width: 100%;
    }

    .about-us-section-home .imgwrap img {
        max-height: 350px;
        -o-object-position: left;
        object-position: left;
    }

    .why_us_circles {
        flex-wrap: wrap;
    }

    .why_us_sec2card .img-wrap {
        border-radius: 20px 20px 0 0;
    }

    .enquire_now_sec .form {
        padding: 20px;
    }

    .enquire_now_sec {
        padding-left: 0;
        padding-right: 0;
    }

    .why_us_sec2card .contentwrap {

        margin: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
    }

    .checkBoxes .checkBoxe {
        width: calc(50% - (20px*1)/2);
    }

    .why_us_circle {
        width: calc(50% - (30px*1)/2);
    }

    .banner_slide .wrapper {
        width: 100%;
    }

    .banner_slide {
        min-height: 70vh;
    }

    .banner_slide h2 {
        font-size: 35px;
    }

    .banner_slider:hover .owl-nav {
        width: calc(100vw + 90px);
    }


    .header_bottom .inner {
        padding-left: 0;
        padding-right: 0;
    }

    .study-in-australia-banner-section .inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .study-in-australia-banner-section .right-half {
        width: 100%;
        padding: 0;
    }

    .study-in-australia-banner-section .img-half {
        width: 100%;
        padding: 0;
    }

    .tabing-content-section .tab-content:not(.accordian-tab-content) {
        padding: 0;
    }

    .tabing-content-section .tab-content.accordian-tab-content {
        padding: 25px;
    }

    .tabing-content-section .tab-content-main {
        margin-bottom: 0;
        padding-top: 50px;
    }

    .tabing-content-section .tab-content .main-heading {
        font-size: 35px;
    }

    .who-we-are-section .inner {
        flex-wrap: wrap;
        gap: 40px;
    }

    .who-we-are-section .left-half {
        width: 100%;
        padding: 0;
    }

    .who-we-are-section .right-half {
        width: 100%;
        padding: 0;
    }

    .who-we-are-section .right-half .main-heading {
        font-size: 28px;
    }

    .who-we-are-section {
        padding: 50px 0;
    }

    .our-mission-section .left-half {
        width: 100%;
        padding: 0;
    }

    .our-mission-section .inner {
        flex-wrap: wrap;
        gap: 40px;
    }

    .our-mission-section .left-half .main-heading {
        font-size: 35px;
    }

    .our-mission-section .right-half {
        width: 100%;
        padding: 0;
    }


    .our-founder-section .right-half .main-heading {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .our-team-card {
        width: calc(50% - (50px*1)/2);
    }

    .what-makes-us-card {
        width: calc(50% - (30px*1)/2);
    }

    .what-makes-us-different-section .main-heading {
        font-size: 35px;
    }

    .what-makes-us-cards {
        margin-top: 30px;
    }

    .waiting-forsection .inner {
        flex-wrap: wrap;
        /* gap: 40px; */
    }

    .main-heading {
        font-size: 35px;
    }

    .waiting-forsection .left-half {
        width: 100%;
    }

    .waiting-forsection .right-half {
        width: 100%;
        padding: 30px;
    }

    .who-we-are-section .left-half img {
        max-width: 450px;
        margin-left: 0;
    }

    .our-mission-section .right-half .img-wrap {
        max-width: 450px;
        margin-left: 0;
    }

    .our-team-cards {
        max-width: 600px;
        margin: auto;
    }

    .sectionFixed_images .imgSide {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .why_us_sec .content_wrap {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .our-team-cards {
        max-width: 400px;
    }

    .testimonialsHome .righthalf {
        padding: 0;
    }

    .main-heading {
        font-size: 28px;
    }

    .what-makes-us-card {
        width: 100%;
    }

    .our-founder-section .right-half .main-heading {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .our-founder-section .right-half .founder-name {
        font-size: 20px;
    }

    .our-mission-section .left-half .main-heading {
        font-size: 35px;
    }

    .who-we-are-section {
        padding: 40px 0;
    }


    .tabing-content-section .tab-content-main {
        padding: 40px 0;
    }

    .tabing-content-section .tab-content {
        margin-bottom: 40px;
    }

    .tabing-content-section .tab-content .main-heading {
        font-size: 22px;
    }

    .tabing-content-section .tab-content .tab-content-sec-row .left-half {
        padding: 25px;
    }

    .tabing-content-section .tab-content .tab-content-sec-row {
        flex-wrap: wrap;
    }

    .tabing-content-section .tab-content .tab-content-sec-row .img-half,
    .tabing-content-section .tab-content .tab-content-sec-row .left-half,
    .tabing-content-section .tab-content .tab-content-sec-row .right-half {
        width: 100%;
    }

    .banner_slide h2 {
        font-size: 24px;
    }

    .student_services_sec .inner h2 {
        font-size: 25px;
    }

    .student_services_sec .inner {
        padding: 30px 0;
    }

    .student_services_card .main_content .title {
        font-size: 20px;
        margin-bottom: 3px;
    }

    /* .student_services_card .main_content .action_buttons .button {
        padding: 5px 20px;

        font-size: 14px;
    } */

    .about-us-section-home .left-half {
        padding: 0;
    }

    .testimonialsHome {
        padding: 40px 0;
    }

    .about-us-section-home {
        padding: 40px 0;
    }

    .student_services_cards {
        margin-top: 30px;
    }

    .banner_slide {
        min-height: 50vh;
    }

    .banner_slide .inner {
        padding: 20px;
    }

    .banner_slider .owl-nav,
    .banner_slider:hover .owl-nav {
        width: calc(150vw + 90px);
    }

    .stats_counter_col {
        width: calc(50% - (20px*1)/2);
    }

    .footer_main .inner {
        flex-wrap: wrap;
    }

    .checkBoxes .checkBoxe {
        width: 100%;
    }

    .enquire_now_sec .form .input_row {
        flex-wrap: wrap;
    }

    .testimonialsHome .testiHalf {
        padding: 0;
    }

    .student_services_card {
        width: 100%;
    }

    .why_us_sec2card {
        width: 100%;
    }

    .why_us_circle {
        width: 100%;
    }

    .testimonialsHome .heading {
        font-size: 25px;
    }

    .enquire_now_sec {
        padding: 40px 0;
    }

    .why_us_sec2 .inner h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .enquire_now_sec h2 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .accreditation_section_heading {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .accreditation_section {
        padding: 40px 0;
    }

    .accreditation_logos {
        padding: 20px 0;
    }

    .accreditation_logos {
        gap: 20px;
        flex-wrap: wrap;
    }

    .accreditation_logos img {
        max-width: 100px;
        width: calc(50% - (20px*1)/2);
    }

    .counter {
        margin-bottom: 0;
    }

    .statistic_section {
        padding: 40px 0;
    }

    .why_us_sec .inner h2 {
        font-size: 25px;
    }


    .why_us_circles {
        margin-top: 30px;
    }

    .why_us_sec2 {
        padding: 40px 0;
    }

    .who-we-are-section .right-half .main-heading {
        font-size: 25px;
    }

    .our-team-card {
        width: 100%;
    }

    .our-team-section {
        padding: 30px 0;
    }

    .our-team-section .main-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .what-makes-us-different-section .main-heading {
        font-size: 30px;
    }

    .header_socials {
        display: none;
    }

    .our-founder-section .inner {
        flex-wrap: wrap;
        gap: 40px;
        flex-direction: column-reverse;
    }

    .our-founder-section.secondfounder .inner {
        flex-direction: column !important;
    }

    .our-founder-section .left-half {
        width: 100%;
    }

    .our-founder-section .right-half {
        width: 100%;
        padding: 30px;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 1024px) {


    .header_navigation>ul>li.has_submenu .submenu::before {
        display: none;
    }

    .header_navigation>ul>li.has_submenu:not(.active) .submenu {
        display: none;
    }

    .header_navigation>ul>li.has_submenu .submenu {
        position: static;
        max-width: 280px;
    }

    .header_navigation>ul>li.has_submenu .submenu ul {
        gap: 5px;
    }

    .header_navigation>ul>li.has_submenu .submenu {
        padding: 10px 15px;
    }

    .header_navigation>ul>li.has_submenu .submenu ul li a {
        min-height: auto;
    }

    .header_navigation>ul>li.has_submenu {
        min-width: 280px;
        cursor: pointer;
    }

    .menu-active .header_navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .header_top {
        display: none;
    }

    .header_navigation {
        max-height: 450px;
        overflow-x: auto;
        position: fixed;
        top: 82px;
        right: 0;
        background: #fff;
        padding: 11px 20px;
        border-radius: 0 0 0 10px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header_navigation>ul {
        flex-direction: column;
    }
}

.student_services_card .main_content .action_buttons .button {
    text-decoration: underline;
    color: #0072ff;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Rubik';
}


.wus-icon-card {
    font-family: 'Rubik';
    color: #000;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    flex: 1;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 14px;
    padding: 30px;
}

.wus-icon-card .icon {
    --size: 90px;
    font-size: 45px;
    color: var(--cyan);
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.wus-icon-cards {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}




.wus-icon-cards:before {
    content: '';
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--blue);
    opacity: .5;
    z-index: -2;
}

.wus-icon-cards::after {
    content: '';
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--cyan);
    opacity: .5;
    z-index: -2;
}

.wus-icon-cards {
    position: relative;
}

.wus-icon-card {
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(11px);
}

#three-step-form .step h4 {
    font-family: 'Rubik';
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.student_services_cards_swiper .student_services_card {
    width: 100%;
}

@media (max-width: 1024px) {
    .wus-icon-cards {
        flex-wrap: wrap;
    }

    .wus-icon-card {
        flex: auto;
    }
}

@media (min-width:768px) {
    .student_services_cards_swiper {
        display: none !important;
    }
}

@media (max-width:767px) {
    .student_services_cards:not(.student_services_cards_swiper) {
        display: none !important;
    }
}



.blogPostsSec {
    padding: 50px 0;
}

.blogPostsSec .wrapper .inner {
    overflow: hidden;
}

.blogPostsSec .wrapper .inner>h2 {
    text-align: center;
    font-family: 'Rubik';
    text-transform: uppercase;
    color: #333;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 25px;
}

.rb_cardsSwiper .owl-dots {
    margin-top: 15px !important;
}

.rb_cardsSwiper .owl-stage-outer {
    overflow: visible;
}

.rb_card {
    margin: 15px;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
    /* width: calc(33.3% -(30px* 2) / 3); */
    /* width: calc(25% -(30px* 3) / 4); */
    /* aspect-ratio: 1; */
    background-color: rgba(255, 255, 255, 0.1) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #fff !important;
    border-radius: 20px;
}

.rb_card .rb_cardImgwrap {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    /* height: 250px; */
    aspect-ratio: 1.5;
    /* height: 160px; */
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rb_card .rb_cardImgwrap img {
    width: 100%;
    object-fit: cover;
}

.rb_card .title {
    font-family: 'Rubik';
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
}

.rb_card .rb_card_content {
    padding: 30px;
}

.rb_card .desc {
    font-family: 'Rubik';
    font-size: 15px;
    line-height: 20px;
    height: calc(20px*2);
    overflow: hidden;
    color: #3339;
    margin-bottom: 20px;
    /* display: none; */
}

.rb_card .rb_cardCTA {
    text-decoration: underline;
    color: #17a2b8;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Rubik';
    transition: all 0.3s !important;
    text-decoration: none;
}



.wus-icon-cardsv2::after,
.wus-icon-cardsv2::before {
    display: none;
}

.wus-icon-cardsv2 .wus-icon-card {
    display: flex;
    background: transparent;
    backdrop-filter: none;
    text-align: left;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    flex: initial;
    width: calc(50% - (20px*1)/2);
    margin: 0;
    align-items: center;
    overflow: hidden;
}

.wus-icon-card {}

.wus-icon-cardsv2 {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.wus-icon-cardsv2 .wus-icon-card .text {
    padding: 20px;
    height: 100%;
    font-size: 14px;
    width: calc(100% - 90px);
    background: #17a2b8;
    color: #fff;
}

.wus-icon-cardsv2 .wus-icon-card .icon {
    margin: 0;
    font-size: 35px;
}


.why_us_sec2--contact .wus-icon-card .text {
    font-size: 20px;
    font-weight: 600;
}

.why_us_sec2--contact .wus-icon-card .text:nth-of-type(3) {
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}

.why_us_sec2--contact .wus-icon-card .text a {
    color: inherit;
    text-decoration: underline;
}

.contact-form-section .inner {
    display: flex;
    gap: 40px;
}

.contact-form-section {
    padding: 100px;
}

.contact-form-section .left-side,
.contact-form-section .right-side {
    width: 100%;
}

.contact-form-section .right-side h2 {
    font-size: 40px;
    font-family: 'Rubik';
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form-section .left-side .map-wrap {
    width: 100%;
    height: 100%;
}

.contact-form-section .left-side .map-wrap iframe {
    width: 100%;
    height: 100%;
    /* min-height: 450px; */
    border: none;
    border-radius: 15px;
}

.contact-form-section .right-side .contact-form {
    position: relative;
}

.contact-form-section .right-side .contact-form .form {
    padding: 50px;
    /* position: relative; */
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(11px);
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.contact-form-section .right-side .contact-form::after {
    content: '';
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--cyan);
    opacity: .5;
    z-index: -2;
}

.contact-form-section .right-side .contact-form label {
    font-weight: 400;
    font-size: 15px;
    color: #222;
    font-family: 'Rubik';
    margin-bottom: 4px;
}

.contact-form-section .right-side .contact-form::before {
    content: '';
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--blue);
    opacity: .5;
    z-index: -2;
}

.contact-form-section .right-side .contact-form .input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-form-section .right-side .contact-form .input-col {
    width: 100%;
}

.contact-form-section .right-side .contact-form .input-col select,
.contact-form-section .right-side .contact-form .input-col input {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-height: 30px;
    border-radius: 6px;
}

.contact-form-section .right-side .contact-form .submit-row {
    margin-top: 40px;
}

.contact-form-section .right-side .contact-form .input-col button {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.why_us_sec2--contact .wus-icon-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why_us_sec2--contact .wus-icon-card {
    flex: initial;
    width: calc(25% - (20px*3)/4);
    margin: 0;
}



.cta-section {
    background: var(--cyan);
    padding: 70px 0;
}

.cta-section .inner::before {
    content: '';
    width: 440px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    right: -70px;
    background: var(--blue);
    /* opacity: .5; */
    z-index: 0;
}

.cta-section .inner>* {
    position: relative;
    z-index: 1;
}

.cta-section .inner {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    box-shadow: 0 0 10px -3px rgba(255, 255, 255, 0.7);
    border-radius: 30px;
}

.cta-section .heading {
    font-size: 40px;
    text-transform: uppercase;
    /* color: #fff; */
    font-family: 'Rubik';
    margin-bottom: 16px;
}

.cta-section .rating {
    font-size: 23px;
    text-transform: uppercase;
    /* color: #fff; */
    font-family: 'Rubik';
    margin-bottom: 10px;
}

.cta-section .rating-stars {
    position: relative;
    /* color: #fff; */
}

.cta-section .cta-button {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.cta-section .rating-stars .filled {
    position: absolute;
    top: 0;
    left: 0;
    color: orange;
    clip-path: polygon(0 0, 80% 0%, 80% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .why_us_sec2--contact .wus-icon-card {
        flex: initial;
        width: calc(50% - (20px*1)/2);
    }

    .contact-form-section {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .contact-form-section .inner {
        flex-wrap: wrap;
    }

    .cta-section .rating-stars .filled {
        right: 0;
    }

    .cta-section .cta-button {
        background: #333;
        color: #fff;
        margin-top: 20px;
    }

    .cta-section .heading {
        /* font-size: 40px; */
        font-size: 32px;
    }

    .cta-section .inner::before {
        display: none;
    }

    .cta-section .inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 450px) {
    .why_us_sec2--contact .wus-icon-card {
        width: 100%;
    }

}

.contact-banner-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--cyan);
    opacity: .7;

}

.contact-banner-section .inner {
    position: relative;
    z-index: 1;
}

.contact-banner-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(https://webteckle.com/aceaglobal.in/assets/images/study-in-canada.jpg);
    /* background: var(--cyan); */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.partners_logos .owl-dots {
    margin-top: 30px !important;
}

.partners_logos img {
    max-width: 200px;
    margin: 0 30px;
    width: 100%;
    /* filter: grayscale(1) brightness(0); */
    aspect-ratio: 2;
    object-fit: contain;
    object-position: center;
}

.services-banner {
    position: relative;
    padding: 100px 0;
}

.services-banner .banner-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(-45deg, #000 20%, #005e96 70%, #000 0%);
    /* background: linear-gradient(#fff,#005e96); */
    opacity: 0.8;
}

.services-banner .banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.services-banner .inner {
    position: relative;
    z-index: 10;
}

.services-banner .inner h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'Rubik';
    color: #ffffff;
    text-align: center;
    text-shadow: 6px 5px 18px rgba(0, 0, 0, 0.4);
}

.services-banner .inner ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.services-banner .inner ul li:first-child::marker {
    color: transparent;
}

.services-banner .inner ul li::marker {
    color: #ffffff;
}

.services-banner .inner ul li {
    padding: 0 20px 0 10px;
}

.services-banner .inner ul li:last-child a {
    pointer-events: none;
}

.services-banner .inner ul li a {
    text-transform: capitalize;
    font-size: 16px;
    color: #ffffff;
    font-family: 'Rubik';
}

.services-content p:first-child::first-letter {
    font-size: 50px;
    background-color: #005e96;
    color: #ffffff;
    float: left;
    padding: 10px;
    margin-right: 9px;
    box-shadow: -12px 7px 10px -5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.services-content p:not(:last-child) {
    margin-bottom: 16px;
}

.services-content p {
    font-size: 16px;
    line-height: 28px;
    font-family: 'Rubik';
    color: #333;
}

.services-content {
    padding: 80px 0 100px;
}

.services-content .inner {
    max-width: 900px;
    margin: 0 auto;
}

.error {
    border: 1px solid red;
    background: #ff000021;
    color: red;
    font-size: 13px;
    padding: 0px 9px 3px;
    border-radius: 2px;
}

.b-g-i-t-form {
    max-width: 550px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.branch-get-in-touch {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.b-g-i-t-form .form-heading {
    font-size: 30px;
    font-family: 'Rubik';
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.b-g-i-t-form label {
    font-family: 'Rubik';
    display: flex;
    margin-bottom: 4px;
}

.b-g-i-t-form input,
.b-g-i-t-form textarea {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    height: 40px;
    width: 100%;
    font-family: 'Rubik';
    border-radius: 4px;
    padding: 0 12px;
}

.b-g-i-t-form .input-col {
    width: 100%;
}

.b-g-i-t-form input~.error {
    margin-top: 8px;
}

.b-g-i-t-form .input-row {
    display: flex;
    gap: 8px 16px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .b-g-i-t-form .input-row {
        flex-wrap: wrap;
    }
}

.b-g-i-t-form textarea {
    padding: 12px;
    height: 100px;
}

.b-g-i-t-form textarea~.error {
    margin-top: 8px;
}

.branch-get-in-touch .inner::before {
    content: '';
    width: 60vw;
    aspect-ratio: 1;
    background: linear-gradient(#5ee6eb, #fff);
    position: absolute;
    z-index: -1;
    border-radius: 9999px;
    left: 0;
    right: 0;
    margin: auto;
    top: -20px;
    opacity: .5;
}

.branch-get-in-touch .inner {
    position: relative;
}

.b-g-i-t-form button:hover {
    background-color: #5EE6EB;
}

.b-g-i-t-form button {
    border: none;
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.branches-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.branches-section h2.main-heading {
    font-family: 'Rubik';
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.branches-section .branches-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: #005e96; */
    background-image: linear-gradient(180deg, #005e96 50%, #fff 50%);

}

.branches-section .branches-card .address {
    font-family: 'Rubik';
    font-size: 15px;
    /* text-align: center; */
}

.branches-section .branches-card .contact-details {
    font-size: 14px;
    margin-top: 24px;
    font-family: 'Rubik';
    display: flex;
    /* align-items: center; */
    gap: 8px 24px;
    flex-direction: column;
}

.branches-section .branches-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.branches-section .branches-card .name {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: 'Rubik';
    font-weight: 600;
    /* text-align: center; */
    color: #fff;
    padding: 4px 24px 4px;
    margin-left: -24px;
    background-color: #005e96;
    border-radius: 0 99px 99px 0;
}

.branches-section .branches-card .inner {
    transition: 0.4s;
    background-color: #fff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    padding: 24px;
    padding-right: 200px;
    background-image: url(https://webteckle.com/aceaglobal.in/assets/images/logo.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 28px;
    background-size: 150px;
}

@media (max-width: 600px) {

    .branches-section .branches-card .inner {
        padding-right: 24px;
        background-image: none;
    }

    .branches-section h2.main-heading {
        font-size: 24px;
    }

    .branches-section .branches-card .name {
        font-size: 20px;
    }

    .branches-section {
        padding: 40px 0;
    }
}

.branches-section .branches-card {
    width: calc(33.3% - (24px*2)/3);
    width: calc(50% - (24px*1)/2);
    position: relative;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 1004px) {
    header {
        position: sticky;
        top: 0;
    }
}

@media (max-width: 991px) {

    .branches-section .branches-card {
        width: 100%;
    }
}

.branches-section .branches-card .contact-details a:hover {
    color: #005e96;
    text-decoration: none;
}

.branches-section .branches-card .contact-details a {
    display: flex;
    gap: 4px;
    color: inherit;
}


.sweetliErr {
    list-style: circle;
    color: #f27474;
}



.our-founder-section .img-wrap img {
    border-radius: 999px 999px 10px 10px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    aspect-ratio: 0.7;
    object-fit: cover;
}

.our-founder-section .img-wrap {
    /* aspect-ratio: 1; */
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact-form-section .icon-list ul {
    list-style: none;
}

.contact-form-section .icon-list ul li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    color: #222;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 5px 16px -4px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: 'Rubik';
}

.contact-form-section .icon-list ul li a:hover {
    color: #17a2b8;
}

.contact-form-section .icon-list ul li a {
    color: inherit;
}

.contact-form-section .icon-list ul li .prefixicon {
    color: #17a2b8;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 12px;

}

@media (max-width: 767px) {
    .footer_contact_destils ul {
        flex-direction: column;
        gap: 16px;
    }
}

.our-founder-section .img-wrap img {
    border-radius: 999px;
    aspect-ratio: 1;
    max-width: 400px;
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 768px) {

    .accreditation_logos {
        gap: 0;
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .accreditation_logos img {
        padding: 15px 40px;
        max-width: 320px;
        width: 20%;
        max-height: 100px;
    }

    /* .accreditation_logos img:nth-child(1) {
        width: 25%;
    } */

    .accreditation_logos img:nth-child(3) {
        width: auto;
        max-height: 180px;
    }

    .accreditation_logos img:nth-child(6) {
        max-height: 160px;
    }

    /* .accreditation_logos img:nth-child(3) {
        width: 25%;
    }

    .accreditation_logos img:nth-child(4) {
        object-position: right;
    }

    .accreditation_logos img:nth-child(5) {
        object-position: left;
    }

    .accreditation_logos img:nth-child(4),
    .accreditation_logos img:nth-child(5) {
        width: 50%;
        max-width: 100%;
    } */
}


.rb_cards .rb_card {
    width: calc(25% - (15px * 3)/ 4);
    margin: 0;
}

@media (max-width:1024px) {

    .rb_cards .rb_card {
        width: calc(33.3% - (15px * 2)/ 3);
    }
}

@media (max-width:767px) {

    .rb_cards .rb_card {
        width: calc(50% - (15px * 1)/ 2);

    }
}

@media (max-width:450px) {

    .rb_cards .rb_card {
        width: 100%;

    }
}

.rb_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.rb_card .rb_cardImgwrap {
    aspect-ratio: 2;
}

.rb_card .rb_card_content {
    padding: 20px;
}

.rb_card .desc {
    margin-bottom: 8px;
}

.rb_card .title {
    font-size: 20px;
    line-height: 1.2;
}

.blogPostsSec .wrapper .inner {
    overflow: visible;
}


.services-content h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-family: 'Rubik';
    color: #333;
    margin-bottom: 10px;
}

.services-content h3 {
    font-size: 32px;
    text-transform: uppercase;
    font-family: 'Rubik';
    color: #333;
    margin-bottom: 20px;
}

.services-content h4 {
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'Rubik';
    color: #333;
    margin-bottom: 16px;
}

.services-content ul li {
    font-size: 16px;
    line-height: 28px;
    font-family: 'Rubik';
    color: #333;
}

.services-content ul {
    padding-left: 17px;
    margin-bottom: 20px;
}



@media (max-width: 767px) {

    /* style.css | https://webteckle.com/aceaglobal.in/assets/css/style.css?nocache=1717770322 */

    .services-content {
        /* padding: 80px 0 100px; */
        padding: 40px 0 60px;
    }

    .services-content h2 {
        /* font-size: 36px; */
        font-size: 28px;
    }

    .services-content p {
        /* font-size: 16px; */
        font-size: 15px;
    }

    .services-content h3 {
        /* font-size: 32px; */
        font-size: 25px;
    }

    .services-content h4 {
        /* font-size: 26px; */
        font-size: 22px;
    }

}

.partners_logos img {
    width: 25%;
    padding: 10px
}

.partners_logos {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width:1024px) {

    .partners_logos img {
        width: 33.3%;
    }
}

@media (max-width:767px) {

    .partners_logos img {
        width: 50%;
    }
}

.header_top {
    background-color: #4d6289;
}

.header_reach_us_list a {
    color: #fff;
}

@media (min-width: 1025px) {

    header .wrapper {
        padding-left: 100px;
        padding-right: 100px;
        max-width: 100%;
    }

    .header_bottom .inner {
        padding: 20px 27px;
    }

    .banner_slide .wrapper {
        max-width: 100%;
        padding-left: 130px;
        padding-right: 130px;
    }
}

.background_image::before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 45%, #fff0);
}

.banner_slide .wrapper {
    width: 100%;
}

@media (min-width: 1025px) {
    .banner_slide .inner {
        padding: 0;
        max-width: 50%;
    }

}

.banner_slide .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    position: relative;
    margin-top: 16px;
}

.banner_slide .cta-buttons a {
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}

.banner_slide .cta-buttons a:hover {
    transform: scale(1.1);
}




#statistic.statistic_section .stats_counter_col:not(:hover) .counter .bbb {
    color: #1c145c;
}

#statistic.statistic_section .stats_counter_col:hover .counter .image_waap::before {
    opacity: 0;
}

#statistic.statistic_section .counter {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#statistic.statistic_section .counter .image_waap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1c145c;
    background-color: #17a2b8;
    top: 0;
    left: 0;
    mix-blend-mode: screen;
}

#statistic.statistic_section .counter .image_waap {
    position: relative;
}

#statistic.statistic_section .stats_counter_col:not(:hover) .counter .image_waap {
    filter: none;
}

#statistic.statistic_section .stats_counter_col:hover {
    transform: scale(1.2);
    background-color: #1c145c;
    background-color: #17a2b8;
    position: relative;
    z-index: 1;
}

#statistic.statistic_section .stats_counter_col:not(:last-child):after {
    width: 1px;
    position: absolute;
    content: '';
    height: 60%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

#statistic.statistic_section .stats_counter_col {
    position: relative;
    background-color: #fff;
    transition: 0.3s;
    padding: 40px;
}

#statistic.statistic_section .stats_counter {
    gap: 0;
    box-shadow: 0 3px 12px -4px rgba(0, 0, 0, 0.2);
}

/* #statistic.statistic_section {
    background-color: #fff;
} */
@media (min-width: 768px) {
    #statistic.statistic_section {
        padding-top: 0;
        margin-top: -80px;
        position: relative;
        z-index: 1;
    }

    .banner_slider .owl-dots {
        bottom: 90px;
    }
}

.stats_counter_col {
    width: 20%;
}



.banner_slide .cta-buttons {
    opacity: 0;
    transform: translateY(50px);
}

.active .banner_slide .cta-buttons {
    opacity: 1;
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.5s;
    transform: translateY(0);
}


.testimonailsSlider {
    overflow: visible !important;
}

.testimonailsSlider .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonailsSlider .swiper-slide {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s, transform 0.7s;
}

.testimonailsSlider .swiper-slide.swiper-slide-prev {
    opacity: 0;
    transform: scale(0.8);
}

.testimonailsSlider .swiper-slide.swiper-slide-next {
    opacity: 1;
    transform: scale(1);
}

.testimonialsHome {
    position: relative;
}

.testimonialsHome .righthalf {
    width: 65%;
}

.testimonialsHome .testiHalf {
    width: 45%;
    background-color: #fff;
    position: relative;
    z-index: 10;
    padding: 80px 60px;
}

.testimonialsHome .inner {
    overflow: visible;
    /* align-items: stretch; */
}

.testimonialsHome .swiper-buttons {
    display: flex;
    --swiper-navigation-size: 24px;
    gap: 20px;
    margin-top: 26px;
}

.testimonialsHome .swiper-buttons button {
    color: #1c145c;
    border: none;
    background-color: transparent;
    position: static;
    margin: 0;
}

.testimonialsHome .inner {
    padding: 50px 0;
    gap: 0;
    background-color: #fff;
}

.testimonialsHome .inner::before {
    content: '';
    width: 65%;
    left: 50%;
    height: calc(80% - 80px - 80px);
    background: #17a2b8;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
}

.testimonialsHome {
    background-color: #17a2b820;
}

.enquire_now_sec {
    background-color: #17a2b8;
}

.submit_row button {

    background-color: #179fb5;
}

.about-us-section-home {
    background-color: #867cdb;
}

.rb_card .rb_cardImgwrap img {
    transition: 0.8s;
}

.rb_card:hover .rb_cardImgwrap img {
    transform: scale(1.1);
}

.rb_card .rb_cardCTA:hover {
    color: #867cdb;
}

.submit_row button:hover {
    background-color: #4d6289;
}

.testimonialsHome .ctaButon:hover {
    background-color: #4d6289;
}

.about-us-section-home .left-half .ctaButon:hover {
    background-color: #4d6289;
    color: #fff;
}

.student_services_card .main_content .action_buttons .button:hover {
    color: #867cdb;
}

footer .footer_links_column {
    width: 100%;
}

footer .footer_links_row {
    display: flex;
    gap: 20px;
}

.footer_links {
    flex-direction: column;
}

.footer_main .inner:last-child .footer_contact_destils ul li {
    width: 100%;
}

@media (min-width: 601px) and (max-width: 1024px) {

    #statistic.statistic_section .stats_counter_col:is(:nth-child(2), :nth-child(4))::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .stats_counter_col {
        width: 50%;
    }

    .testimonialsHome .testiHalf {
        width: 100%;
        padding: 50px;
        padding-bottom: 0;
    }

    .testimonialsHome .righthalf {
        width: 100%;
    }

    .testimonialsHome .inner::before {
        display: none;
    }

    .testimonialsHome .inner {
        padding-top: 0;
        flex-direction: column;
        /* padding-bottom: 0; */
    }
}

@media (max-width: 767px) {
    footer .footer_links_row {
        flex-wrap: wrap;
    }

    .testimonialsHome .inner {
        background-color: transparent;
        padding-bottom: 0;
    }

    .testimonialsHome .testiHalf {
        padding: 0px;
        background-color: transparent;
        padding-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .stats_counter_col {
        width: 100%;
    }

    #statistic.statistic_section .stats_counter_col:not(:last-child)::after {
        width: 60%;
        height: 1px;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
    }

    #statistic.statistic_section .wrapper {
        max-width: 390px;
    }

    .banner_slide .cta-buttons a {
        padding: 6px 22px;
        font-size: 14px;
    }
}

footer .wrapper {
    position: relative;
}

.dotted-map {
    height: 100%;
    position: absolute;
    width: 70%;
    right: 0;
    left: 0;
    margin: auto;
    mix-blend-mode: color-burn;
    object-fit: contain;
}

.student_services_card .main_content img {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 26px;
}

.student_services_card .main_content {
    position: relative;
    /* padding-right: 69px; */
}






.new-services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .new-services-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .new-services-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.new-services-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 194px;
}

.new-services-card .image_wrap {
    min-height: 100%;
    transition: 0.9s cubic-bezier(.22, .61, .36, 1);
}

.new-services-card:hover .image_wrap {
    min-height: 40%;
}

.new-services-card .image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-services-card .main_content {
    background: #4d6289;
    padding: 10px 20px 20px;
}

.new-services-card .main_content .title {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rubik';
    margin-bottom: 10px;
    color: #fff;
}

.new-services-card .main_content .desc {
    display: none;
}

.new-services-card .main_content .action_buttons a {
    background: #fff;
    font-family: 'Rubik';
    padding: 5px 20px;
    display: inline-block;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
    transition: 0.3s;
}

.new-services-card .main_content .action_buttons a:hover {
    transform: scale(1.1);
    text-decoration: none;
}



/* .student_services_card .main_content .action_buttons .button {
    font-size: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: relative;
    background: #17a2b8;
    border-radius: 6px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student_services_card .main_content .action_buttons .button:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjQgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTQzOC42IDI3OC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zbC0xNjAtMTYwYy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM0wzMzguOCAyMjQgMzIgMjI0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMybDMwNi43IDBMMjMzLjQgMzkzLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHoiLz48L3N2Zz4=);
    width: 30px;
    content: '';
    display: inline-block;
    ;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transition: 0.3s 0.1s;
    position: relative;
    transform: rotate(-45deg);
    left: 0px;
    top: 0px;
    filter: invert();
}

.student_services_card .main_content .action_buttons .button:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjQgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTQzOC42IDI3OC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zbC0xNjAtMTYwYy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM0wzMzguOCAyMjQgMzIgMjI0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMybDMwNi43IDBMMjMzLjQgMzkzLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHoiLz48L3N2Zz4=);
    width: 30px;
    content: '';
    display: inline-block;
    ;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transform: rotate(-45deg);
    position: absolute;
    left: -25px;
    top: 25px;
    transition: 0.3s 0.1s;
    filter: invert();
}

.student_services_card:hover .main_content .action_buttons .button:after {
    left: 5px;
    top: 5px;
    filter: invert(0);
}
.student_services_card:hover .main_content .action_buttons .button:before {
    left: 25px;
    top: -25px;
    filter: invert(0);
} */

.student_services_card:hover .main_content .action_buttons .button {
    background-color: #fff !important;
}


.student_services_card {
    transition: all 0.8s !important;
}

.student_services_card:hover {
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.8) !important;
    background-color: #17a2b8 !important;
}

.student_services_card .main_content .title {
    /* transition: color 0.3s; */
}

.student_services_card:hover .main_content .title {
    color: #fff;
}




/* blogs new css  */

.rb_cards {
    position: relative;
    padding-left: 50%;
}

.rb_cards .rb_card:first-child {
    width: calc(50% - 15px);
    overflow: hidden;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.rb_cards .rb_card {
    width: calc(50% - (15px*1)/2);
}


@media (min-width: 768px) {
    .rb_cards .rb_card:first-child .rb_cardImgwrap {
        aspect-ratio: initial;
        height: 100%;
    }

    .rb_cards .rb_card:first-child .rb_card_content {
        position: absolute;
        width: 100%;
        background-color: transparent;
        bottom: 0;
        left: 0;
    }

    .rb_cards .rb_card:first-child .rb_card_content::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 160%;
        background-image: linear-gradient(0deg, #000, transparent);
        bottom: 0;
        left: 0;
    }

    .rb_cards .rb_card:first-child .title,
    .rb_cards .rb_card:first-child .desc,
    .rb_cards .rb_card:first-child .rb_cardCTA {
        color: #fff;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 1024px) {
    .rb_cards .rb_card {
        width: 100%;
    }

    .rb_cards .rb_card:not(:first-child, :nth-child(2), :nth-child(3)) {
        display: none;
    }
}

@media (max-width: 767px) {

    .rb_cards .rb_card:first-child {
        position: static;
        width: 100%;
    }

    .rb_cards {
        padding-left: 0;
    }
}


/* blogs new css  */




.about-us-section-home.who-we-are-22 .wrapper {
    max-width: 100%;
    padding: 0;
}

.about-us-section-home.who-we-are-22 .imgwrap {
    position: relative;
    background: #000;
}

@media (min-width: 1025px) {

    .about-us-section-home.who-we-are-22 .left-half {
        max-width: calc(1300px/2);
        margin-left: auto;
    }


    .about-us-section-home.who-we-are-22 .imgwrap img:nth-child(2) {
        height: 100vh;
        object-fit: cover;
        opacity: .5;
    }

    /* style.css | https://webteckle.com/aceaglobal.in/assets/css/style.css?nocache=1721757987 */

    /* @media (min-width: 1025px) { */
    .about-us-section-home.who-we-are-22 .left-half {
        padding-right: 15%;
    }

    /* } */
    .about-us-section-home.who-we-are-22 .left-half .heading {
        font-size: 90px;
    }

    .about-us-section-home.who-we-are-22 .imgwrap img:nth-child(1) {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) translateX(50%);
        left: -60%;
        max-height: 70%;
        width: 60%;
        border: 5px solid #fff;
        box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.3);
        object-fit: cover;
        object-position: center top;
        z-index: 1;
    }

}

.about-us-section-home.who-we-are-22 {
    padding: 0;
}

@media (max-width: 1024px) {

    .about-us-section-home.who-we-are-22 .inner {
        flex-wrap: nowrap;
    }

    .about-us-section-home.who-we-are-22 .imgwrap img:nth-child(2) {
        display: none;
    }

    .about-us-section-home.who-we-are-22 .imgwrap img:nth-child(1) {
        max-height: none;
    }

    .about-us-section-home.who-we-are-22 .imgwrap {
        width: 50%;
    }

    .about-us-section-home.who-we-are-22 .left-half {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .about-us-section-home.who-we-are-22 .imgwrap {
        width: 100%;
    }

    .about-us-section-home.who-we-are-22 .inner {
        flex-wrap: wrap;
        gap: 0;
    }

    .about-us-section-home.who-we-are-22 .left-half {
        padding: 40px 20px;
        width: 100%;
    }
}



#header {
    position: fixed;
    width: 100%;
    top: 0;
}

#header+section,
#header+div {
    margin-top: var(--headerheight);
}


.about-us-section-home.who-we-are-22 .left-half .heading {
    color: #4d6289;
}

.about-us-section-home.who-we-are-22 .left-half .desc {
    color: #111;
}

.about-us-section-home.who-we-are-22 .left-half .ctaButon {
    background-color: #17a2b8;
    color: #fff;
}

.about-us-section-home.who-we-are-22 .left-half .ctaButon:hover {
    background-color: #111;
    color: #fff;
}

.about-us-section-home.who-we-are-22 {
    background-color: #17a2b820;
}


.enquire_now_sec .wrapper {
    max-width: 700px;
}

.enquire_now_sec .form .input_row {
    flex-wrap: wrap;
}




/* style.css | https://webteckle.com/aceaglobal.in/assets/css/style.css?nocache=1721839876 */

.student_services_card:hover .main_content .action_buttons .button {
    color: #17a2b8;
}

.student_services_card .main_content .action_buttons .button {
    padding: 10px 30px;
    transition: background 0.3s, color 0.3s !important;
    background: #17a2b8;
    border-radius: 99px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s !important;
}



/* Go to Top Button */
#goToTop::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjQgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTQzOC42IDI3OC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zbC0xNjAtMTYwYy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM0wzMzguOCAyMjQgMzIgMjI0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMybDMwNi43IDBMMjMzLjQgMzkzLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHoiLz48L3N2Zz4=);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transform: rotate(-90deg);
    filter: brightness() invert();
}

#goToTop {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button 20px from the bottom */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap other elements */
    font-size: 0;
    /* Increase font size */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #17a2b8;
    /* Set a background color */
    color: white;
    /* Set text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    width: 40px;
    height: 40px;
}

#goToTop:hover {
    background-color: #333;
    /* Darker background on hover */
}

.enquire_now_sec h2,
.enquire_now_sec .desc,
#three-step-form .step h4 {
    text-align: center;
}











/* Inline #9 | https://webteckle.com/aceaglobal.in/ */

.sweetliErr li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 99px;
    display: inline-block;
    background: #f27474;
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
}

/* style.css | https://webteckle.com/aceaglobal.in/assets/css/style.css?nocache=1721841635 */

.sweetliErr {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
    list-style: none;
}



.swal2-confirm.swal2-styled {

    cursor: pointer;
    padding: 10px 30px;
    background-color: #5EE6EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    border: none;
    background-color: #7f6de5;
    color: #fff;
}

.header_top {
    transition: 0.3s;
}

.scrolled-down .header_top {
    margin-top: -44px;
}

.wus-icon-card .text {
    font-size: 18px;
}

.wus-icon-card .text+.text {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
}

.wus-icon-card .icon {
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(11px);
    border-radius: 99px;
    margin-top: -80px;
    margin-bottom: 20px;
}

.why_us_sec2 .inner h2 {
    margin-bottom: 80px;
}


.update-marquee {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    background: #000;
    display: flex;
}

.update-marquee .text {
    min-width: 100%;
    min-width: max-content;
    padding: 10px 30px;
    animation: marquee 30s infinite linear;
}

.update-marquee .text span {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    max-width: calc(100% - 0px);
}

@keyframes marquee {
    100% {
        transform: translateX(-100%);
    }
}

.scrolled-down .update-marquee {
    margin-top: -44px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-wrapper .divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    height: 50px;
    display: inline-flex;
}

.footer_socials {
    margin-bottom: 0;
    margin-top: 0;
}

.social-footer-links {
    margin-bottom: 0;
    margin-top: 0;
}

.ICEF-Badge-wraper {
    margin-top: 20px;
    max-width: 120px;
    display: flex;
}

.footer_contact_destils+.text {
    font-size: 14px;
    font-family: 'Rubik';
    text-decoration: none;
    color: #fff;
    margin-top: 20px;
    max-width: 300px;
}

@media (max-width: 767px) {

    .footer_column:first-child,
    .footer_column:last-child {
        width: 100%;
    }
}

.footer_contact_destils ul li ul {
    display: flex;
    flex-direction: column;
}

/* .footer_contact_destils ul li ul li  */
@media (min-width: 1025px) {
    .footer_contact_destils ul li {
        flex: 1;
    }

    .footer_column:last-child {
        /* width: 70%; */
        padding-left: 50px;
    }
}

.footer_links li {

    list-style: disc;
}

.footer_links {
    padding-left: 16px;
}


















/* <style> */
/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
/* * {
  box-sizing:border-box;
  margin:0;
  padding:0;
} */
/* a {
  color:inherit;
  text-decoration:none;
} */
/* :root {
  --primaryFont:"Rubik",sans-serif;
} */
img {
    max-width: 100%;
}

.full-column {
    width: 100%;
}

.gtechp-post-row {
    /* margin:0 !important; */
    width: 100%;
    padding: 40px 0;
    max-width: 100% !important;
}

.gtechp-post-row .inner {
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
}

/* .wrapper {
  max-width:1140px !important;
  width:100%;
  padding:0 20px !important;
  margin:0 auto;
} */
/* @media (max-width:1024px) {
  .wrapper {
    max-width:720px;
  }
} */
.img-wrap-container {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.img-wrap-container .img-wrap::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.gtechp-post-grid-item:hover .img-wrap-container .img-wrap img {
    transform: scale(1.2);
}

.img-wrap-container .img-wrap img,
.img-wrap-container .img-wrap {
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
    display: flex;
    width: 100%;
}

.category-tag a:hover {
    cursor: pointer;
    color: #fff;
    background-color: #17a2b8;
}

.category-tag {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.category-tag a {
    color: inherit;
    text-decoration: none;
    min-height: 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #17a2b8;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
    font-family: var(--primaryFont);
}

.gtechp-post-grid.grid-type-1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 8px;
    grid-column-gap: 8px;
}

.gtechp-post-grid-item {
    position: relative;
}

.ultp-block-title {
    font-size: 24px;
    font-family: var(--primaryFont);
    line-height: 32px;
    max-height: calc(32px*2);
    overflow: hidden;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
}

.gtechp-post-grid-item:not(:first-child) .ultp-block-title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.ultp-block-title a:hover {
    cursor: pointer;
    color: #17a2b8;
}

.ultp-block-title a {
    color: inherit;
    transition: 0.3s;
    text-decoration: none;
}

.ultp-block-excerpt {
    padding-top: 12px;
    padding-bottom: 8px;
}

.ultp-block-excerpt p a {
    color: inherit;
    text-decoration: underline;
}

.ultp-block-excerpt p {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

.ultp-block-readmore {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.ultp-block-readmore svg {
    width: 15px;
    height: 11px;
}

.ultp-block-readmore svg path {
    fill: #fff;
}

.post-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.ultp-block-meta-icon {
    display: flex;
    gap: 12px 24px;
    flex-wrap: wrap;
}

.ultp-block-meta-icon>span a {
    color: inherit;
    text-decoration: none;
}

.ultp-block-meta-icon>span {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
}

.ultp-block-meta-icon>span svg {
    height: 12px;
    width: auto;
    margin-right: 5px;
}

.ultp-block-meta-icon>span svg path {
    fill: #fff;
}

.gtechp-post-grid-item:not(:first-child) .ultp-block-author {
    display: none;
}

@media (min-width:768px) and (max-width:1024px) {
    .gtechp-post-grid.grid-type-1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item .ultp-block-title {
        font-size: 16px;
        line-height: 24px;
        max-height: calc(24px*2);
    }
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-1 {
        grid-template-columns: 50% 1fr 1fr;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:first-child {
        grid-column-start: 1;
        grid-row-start: 1;
        grid-row-end: 3;
        height: 100%;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:nth-child(4) {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row: 2;
    }

    .gtechp-post-grid.grid-type-1 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
        height: calc(462px/2);
    }
}

@media (max-width:767px) {
    .gtechp-post-grid-item .img-wrap-container {
        height: calc(462px/2);
    }
}

.gtechp-post-row .heading {
    position: relative;
    font-family: var(--primaryFont);
    padding-bottom: 10px;
    margin-bottom: 41px;
    font-size: 28px;
    line-height: 36px;
}

.gtechp-post-row .heading::before,
.gtechp-post-row .heading::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.gtechp-post-row .heading::before {
    background-color: #17a2b820;
}

.gtechp-post-row .heading::after {
    background-color: #17a2b8;
    width: 20%;
}

.gtechp-post-row .left-side {
    width: 100%;
}

.gtechp-post-row .right-side {
    width: 100%;
}

@media (min-width:1025px) {
    .gtechp-post-row .left-side {
        width: calc(70% - 15px);
    }

    .gtechp-post-row .right-side {
        width: calc(30% - 15px);
    }
}

.gtechp-post-grid.grid-type-2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item {
    width: 100%;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
    width: 100%;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    height: auto;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .img-wrap-container {
    width: calc(50% - 6px);
    max-width: 150px;
    height: 162px;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    width: calc(100% - 150px - 6px);
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2 .gtechp-post-grid-item {
        width: calc(50% - 6px);
        height: auto;
    }

    .gtechp-post-grid.grid-type-2 .gtechp-post-grid-item+.side {
        width: calc(50% - 6px);
    }
}

.gtechp-post-grid.grid-type-3:not(:last-child) {
    margin-bottom: 30px;
}

.gtechp-post-grid.grid-type-3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: 200px;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:first-child .ultp-block-title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
    --size: 91px;
    width: var(--size);
    height: var(--size);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap {
    position: static;
    width: calc(100% - 91px - 12px);
    padding: 0;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-3 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-4 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:768px) {
    .gtechp-post-grid.grid-type-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gtechp-post-grid.grid-type-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    font-size: 20px;
    line-height: 28px;
    max-height: calc(28px * 2);
}

.gtechp-post-grid.grid-type-4 .gtechp-post-grid-item:not(:first-child) .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.grid-3-column {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:768px) {
    .grid-3-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1025px) {
    .grid-3-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: 164px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:not(:first-child) .img-wrap-container {
    --size: 132px;
    width: var(--size);
    height: var(--size);
}

.gtechp-post-grid.grid-type-3.grid-type-3-2 .gtechp-post-grid-item:not(:first-child) .post-content-wrap {
    position: static;
    width: calc(100% - 132px - 12px);
    padding: 0;
}

.gtechp-post-grid.grid-type-5 {
    display: grid;
    grid-column-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtechp-post-grid.grid-type-5 .img-wrap-container {
    height: 117px;
}

.gtechp-post-grid.grid-type-5 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-date {
    display: none;
}

.gtechp-post-grid.grid-type-5 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon .ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 {
    gap: 20px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-excerpt p {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore:hover {
    cursor: pointer;
    color: #17a2b8;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .post-content-wrap .ultp-block-readmore:hover svg path {
    fill: #17a2b8;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    gap: 12px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child {
        width: calc(50% - 10px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child .img-wrap-container {
    height: 206px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side {
    gap: 20px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side {
        width: calc(50% - 10px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .img-wrap-container {
    width: calc(50% - 6px);
    max-width: 120px;
    height: 114px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-2.grid-type-2-2>.gtechp-post-grid-item:first-child+.side .gtechp-post-grid-item .post-content-wrap {
    width: calc(100% - 6px - 120px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .img-wrap-container {
    max-width: 106px;
    width: 106px;
    height: 106px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    max-width: calc(100% - 106px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3.grid-type-3-3 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-4.grid-type-4-col-2 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-4.grid-type-4-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item:first-child {
        grid-column: 1/3;
        grid-row: 1;
    }
}

.gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item .img-wrap-container {
    height: 184px;
}

.gtechp-post-grid.grid-type-4.grid-type-4-2 .gtechp-post-grid-item:first-child .img-wrap-container {
    height: calc(460px/1.5);
}

.gtechp-post-grid.grid-type-4.grid-type-4-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.gtechp-post-grid.grid-type-4.grid-type-4-3.grid-type-4-col-1 .img-wrap-container {
    height: 224px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 {
    gap: 30px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child {
    background-color: transparent;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child {
        width: calc(50% - 15px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .img-wrap-container {
    height: 330px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap {
    position: static;
    padding: 0;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 20px;
    line-height: 28px;
    max-height: calc(28px*2);
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-excerpt p {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore:hover {
    cursor: pointer;
    color: #17a2b8;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3 .post-content-wrap .ultp-block-readmore:hover svg path {
    fill: #17a2b8;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width:1025px) {
    .gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side {
        width: calc(50% - 15px);
    }
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side .img-wrap-container {
    max-width: 190px;
    height: 176px;
}

.gtechp-post-grid.grid-type-2.grid-type-2-3>.gtechp-post-grid-item:first-child+.side .post-content-wrap {
    width: calc(100% - 190px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .img-wrap-container {
    max-width: 120px;
    width: 120px;
    height: 106px;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: none;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap {
    position: static;
    padding: 0;
    max-width: calc(100% - 120px - 12px);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-title {
    color: #120200;
    font-size: 16px;
    line-height: 24px;
    height: calc(24px*2);
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-3.grid-type-3-4 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap {
    padding: 0;
    position: static;
}

@media (min-width:768px) {
    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item {
        flex-direction: row;
    }

    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .img-wrap-container {
        height: 266px;
        max-width: 350px;
    }

    .gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap {
        max-width: calc(100% - 350px - 12px);
    }
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .img-wrap-container .category-tag {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item:first-child .ultp-block-title,
.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    max-height: calc(28px*2);
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span {
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span.ultp-block-author {
    display: inline-flex;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .post-content-wrap .ultp-block-meta-icon>span svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-excerpt p:not(:first-child) {
    display: none;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-excerpt p {
    color: #120200;
    height: calc(20px*5);
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore {
    color: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover {
    cursor: pointer;
    color: #17a2b8;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore svg path {
    fill: #120200;
}

.gtechp-post-grid.grid-type-6 .gtechp-post-grid-item .ultp-block-readmore:hover svg path {
    fill: #17a2b8;
}

.wp-block-ultimate-post-heading {
    background-color: #17a2b8;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 18px 10px;
    width: 100%;
}

.gtechp-post-grid+.wp-block-ultimate-post-heading {
    margin-top: 60px;
}

.wp-block-ultimate-post-heading+.wp-block-ultimate-post-ultp-taxonomy {
    padding-top: 12px;
}

.wp-block-ultimate-post-ultp-taxonomy {
    width: 100%;
}

.wp-block-ultimate-post-ultp-taxonomy ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a {
    border: 1px solid #120200;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background-color: #fff3f1;
    transition: 0.3s all;
    align-items: center;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover {
    cursor: pointer;
    background-color: #17a2b8;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-name {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--primaryFont);
    padding-right: 33px;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-name {
    color: #fff;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-count {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-count {
    color: #fff;
}

.wp-block-ultimate-post-ultp-taxonomy .ultp-taxonomy-bar {
    border-bottom: 2px dashed #120200;
    margin: 0 20px;
    flex: 1;
}

.wp-block-ultimate-post-ultp-taxonomy ul li a:hover .ultp-taxonomy-bar {
    border-bottom: 2px dashed #fff;
}

/* .footer {
  position:relative;
  border-top:2px solid #fff;
  padding-top:80px;
  text-align:center;
  background-color:#2b0e0a;
}
.footer::before {
  content:'';
  position:absolute;
  width:100%;
  margin:0 auto;
  left:0;
  background-color:#17a2b8;
  right:0;
  max-width:700px;
  top:-2px;
  z-index:1;
  height:2px;
}
.footer>.wrapper {
  padding-bottom:80px;
}
.footer-logo {
  max-width:360px;
  width:100%;
  margin:0 auto 20px;
  display:flex;
}
.footer .desc {
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  font-size:16px;
  line-height:24px;
  color:#fff;
  font-family:var(--primaryFont);
  font-weight:400;
  margin-bottom:36px;
}
.footer-contact-details-list {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.footer-contact-details-list li {
  font-size:16px;
  line-height:24px;
  color:#fff;
  font-family:var(--primaryFont);
  font-weight:600;
  list-style:none;
} */
.ultp-social-icons-wrapper {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
}

.ultp-social-icons-wrapper li a {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    background-color: #17a2b8;
    display: flex;
    font-weight: 400;
    align-items: center;
    color: #fff;
    justify-content: center;
    border-radius: 4px;
}

.ultp-social-icons-wrapper li a svg path {
    fill: currentColor;
}

.ultp-social-icons-wrapper li a svg {
    max-width: 20px;
    width: 100%;
    height: 100%;
}

/* .footer-bottom {
  background-color:#17a2b8;
  padding:34px 0 33px;
}
.footer-bottom .inner {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.footer-bottom .copyright-text {
  font-size:16px;
  line-height:24px;
  color:#fff;
  font-family:var(--primaryFont);
  font-weight:400;
}
.footer-bottom .copyright-text span {
  font-weight:700;
}
.footer-bottom ul.menu {
  display:flex;
  gap:24px;
  list-style:none;
}
.footer-bottom ul.menu>li>a {
  font-size:16px;
  line-height:24px;
  color:#fff;
  font-family:var(--primaryFont);
  font-weight:400;
  text-decoration:none;
}
.footer-bottom ul.menu li.has-submenu {
  position:relative;
}
.footer-bottom ul.menu li.has-submenu>a button {
  background-color:transparent;
  border:none;
  padding:0;
  color:#fff;
}
.footer-bottom ul.menu li.has-submenu>a button svg path {
  fill:currentColor;
}
.footer-bottom ul.menu li.has-submenu .submenu {
  opacity:0;
  transition:0.3s;
  position:absolute;
  bottom:24px;
  background-color:#fff;
  border:1px solid #fff3f1;
  list-style:none;
}
.footer-bottom ul.menu li.has-submenu:hover .submenu {
  opacity:1;
}
.footer-bottom ul.menu li.has-submenu .submenu li a {
  color:#2b0e0a;
  font-family:var(--primaryFont);
  padding:8px 16px;
  display:block;
  font-size:16px;
  line-height:24px;
  text-align:left;
  text-decoration:none;
} */
.gtechp-post-row:nth-child(2n) {
    background-color: rgba(47, 142, 62, 0.1);
    background-color: #17a2b880;
}

.wp-block-list.footer-menu-links li {
    list-style: none;
}

.wp-block-list.footer-menu-links li a:hover {
    color: #17a2b8;
}

.wp-block-list.footer-menu-links li a {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.sib-email-area,
.sib-NAME-area {
    font-family: Montserrat, sans-serif;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
}

.sib-email-area input,
.sib-NAME-area input {
    height: 40px;
    background: #ffffff50;
    border-style: solid !important;
    padding-left: 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 0 0 2px 0 !important;
    border-radius: 0 !important;
    margin-top: 10px;
    margin-bottom: 0;
    background: transparent;
    outline: none !important;
}

.sib-email-area input:focus,
.sib-NAME-area input:focus {
    border-color: #17a2b8 !important;
}

.sib_signup_form input[type="submit"]:hover {
    background-color: #349644;
}

.sib_signup_form input[type="submit"] {
    background-color: #17a2b8;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 12px 12px;
    width: 100%;
}

.wp-block-list.header-nav-menu {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 0 auto;
    list-style: none;
    border-style: solid;
    border-color: #17a2b8;
    border-width: 2px 0;
    margin-top: -2px;
    margin-bottom: -2px;
}

.wp-block-list.header-nav-menu li a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--primaryFont);
    padding: 29px 0;
    display: block;
}

.header-search-box .gspbsearch_btn.wp-element-button {
    height: 50px;
    padding: 0;
    width: 50px;
    min-width: 50px;
    background: #17a2b8;
}

.header-search-box .gspbsearch_input:focus {
    border-color: #17a2b8 !important;
}

.header-search-box .gspbsearch_input {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-family: var(--primaryFont);
    font-weight: 500;
    font-size: 16px;
    border-right: 0 !important;
    max-width: 200px;
}

.wp-block-list.header-nav-menu li a:hover {
    color: #17a2b8;
}

.header-search-box .gspbsearch_results_items .gspb-dynamic-post-image img {
    height: var(--size);
    width: var(--size);
    --size: 50px;
    min-width: var(--size);
    max-width: var(--size);
    border-radius: 4px;
}

.header-search-box .gspbsearch_results_items>div {
    padding: 12px;
    gap: 12px;
}

.header-search-box .gspb-dynamic-title-element {
    font-size: 14px !important;
    line-height: 20px !important;
    margin-top: -4px !important;
}

.header-search-box .gspb-dynamic-title-element a {
    transition: 0.2s;
}

.header-search-box .gspb-dynamic-title-element a:hover {
    color: #17a2b8;
}

.header-search-box .gspb_meta_value {
    font-family: var(--primaryFont);
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px !important;
    line-height: 20px !important;
}

.gsmouseball {
    border: 1px solid #17a2b8 !important;
}

.gsmouseballsmall {
    background: #17a2b8 !important;
}

.mobilemenutoggle {
    width: 30px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.mobilemenutoggle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 2px;
    width: 100%;
    transition: 0.2s;
}

.mobilemenutoggle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    height: 2px;
    width: 100%;
    transition: 0.2s;
}

.mobilemenutoggle.active:before {
    transform: rotate(-45deg);
    top: 7px;
}

.mobilemenutoggle.active:after {
    transform: rotate(45deg);
    bottom: 7px;
}

@media (max-width:767px) {
    .wp-block-list.header-nav-menu {
        flex-direction: column;
        left: 0;
        gap: 0;
        width: 100%;
        border: none;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        z-index: 10;
        background-color: #fff;
        padding: 0 20px 20px;
    }

    .wp-block-list.header-nav-menu li a {
        padding: 10px 0;
        border-bottom: 2px solid #34964420;
    }

    .wp-block-list.header-nav-menu li a::before {
        display: none !important;
    }

    .wp-block-list.header-nav-menu li a::after {
        background-color: #349644;
        right: auto;
    }

    .wp-block-list.header-nav-menu li:last-child a {
        border-bottom: 2px solid #34964400;
    }

    .menuactive .wp-block-list.header-nav-menu {
        opacity: 1;
        visibility: visible;
    }
}

.archive-grid-box .taxonomy-category {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    max-height: 56px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.archive-grid-box .taxonomy-category a {
    min-height: 25px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    background-color: #2b0e0a;
    border-radius: 4px;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
    font-family: var(--primaryFont);
    background-image: none !important;
}

.archive-grid-box .taxonomy-category a:hover {
    background-color: #17a2b8;
}

.archive-grid-box .taxonomy-category .wp-block-post-terms__separator {
    display: none;
}

.archive-grid-box>li {
    background-color: #000;
    min-height: 230px;
    position: relative;
    padding: 0 !important;
}

.archive-grid-box .wp-block-greenshift-blocks-container {
    line-height: initial;
}

.archive-grid-box .blog-post-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.wp-site-blocks .archive-grid-box .wp-block-post-featured-image {
    margin: 0 !important;
    height: auto !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.archive-grid-box .wp-block-post-featured-image a {
    position: relative;
}

.archive-grid-box .wp-block-post-featured-image a:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.archive-grid-box {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-gap: 20px;
}

@media (min-width:768px) {
    .archive-grid-box {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width:1025px) {
    .archive-grid-box {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.archive-grid-box .wp-block-post-featured-image a img {
    height: auto !important;
}

.archive-grid-box .wp-block-post-title {
    overflow: hidden;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 20px !important;
    font-family: var(--primaryFont) !important;
    line-height: 28px !important;
    max-height: calc(28px * 2) !important;
    display: flex;
    margin-top: 0 !important;
    background-image: none !important;
}

.archive-grid-box .wp-block-post-title a {
    color: inherit;
    text-decoration: none;
    background-image: none !important;
}

.archive-grid-box .wp-block-post-title a:hover {
    color: #17a2b8;
}

.archive-grid-box .wp-block-post-author *,
.archive-grid-box .wp-block-post-date * {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.archive-grid-box .wp-block-post-author,
.archive-grid-box .wp-block-post-date {
    display: inline-flex !important;
}

.archive-grid-box .wp-block-read-more {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.blog-post-grid-pagination .wp-block-query-pagination-previous:hover,
.blog-post-grid-pagination .wp-block-query-pagination-next:hover {
    background-color: #349644;
}

.blog-post-grid-pagination .wp-block-query-pagination-previous,
.blog-post-grid-pagination .wp-block-query-pagination-next {
    background-color: #17a2b8;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 10px 20px;
    width: auto;
    margin: 0 !important;
    min-width: 230px;
    text-decoration: none;
}

.blog-post-grid-pagination {
    display: flex !important;
    gap: 10px;
    margin: 0 !important;
    padding: 40px 0px !important;
}

.blog-post-grid-pagination .wp-block-query-pagination-numbers {
    margin: 0 !important;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-grid-pagination .page-numbers {
    background-color: #17a2b8;
    text-decoration: none !important;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 10px 20px;
    width: auto;
    margin: 0 !important;
}

.blog-post-grid-pagination .page-numbers:hover {
    background-color: #349644;
}

.archieve-singleterm-desc-text p {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
}

.archieve-singleterm-desc-text {
    position: relative;
    font-family: var(--primaryFont);
    padding-bottom: 10px;
    margin-bottom: 41px;
    font-size: 28px !important;
    line-height: 36px;
    font-weight: 600;
    color: #333 !important;
}

.archieve-singleterm-desc-text:after {
    background-color: #17a2b820;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.archieve-singleterm-desc-text:before {
    background-color: #17a2b8;
    content: '';
    width: 20%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wp-block-list.header-nav-menu li a {
    padding: 10px 0;
}

@media (max-width:767px) {
    .wp-block-list.header-nav-menu {
        top: 70px;
    }
}

.wp-block-list.header-nav-menu {
    margin: 0;
}

.wp-block-list.header-nav-menu {
    border: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.header-search-box .gspbsearch_input {
    max-width: 172px;
}

.heading-with-bottom-style {
    font-family: var(--primaryFont) !important;
    position: relative !important;
    font-size: 28px !important;
    line-height: 36px !important;
    font-weight: 600 !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
}

.heading-with-bottom-style::before,
.heading-with-bottom-style::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.heading-with-bottom-style::before {
    background-color: #17a2b820;
}

.heading-with-bottom-style::after {
    background-color: #17a2b8;
    width: 20%;
}

.archive-single-browse-more-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.archive-single-browse-more-list li a {
    border: 1px solid #120200;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background-color: #fff3f1;
    background-color: rgba(47, 142, 62, 0.1);
    transition: 0.3s all;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
    padding-right: 33px;
    text-decoration: navajowhite;
}

.archive-single-browse-more-list li a:hover {
    cursor: pointer;
    background-color: #17a2b8;
    color: #fff;
}

.archive-single-blog-pst-content p {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
}

.archive-single-blog-pst-content .wp-block-list {
    padding-left: 30px;
}

.archive-single-blog-pst-content .wp-block-list li {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.archive-single-blog-pst-content .wp-block-list li strong {
    font-weight: 600;
}

.archive-single-blog-pst-content h2.wp-block-heading {
    font-size: 24px !important;
    line-height: 32px;
    font-family: var(--primaryFont);
    font-weight: 600;
}

.archive-single-blog-pst-content h2.wp-block-heading strong {
    font-weight: inherit;
}

.archive-single-blog-pst-content h3.wp-block-heading strong {
    font-weight: inherit;
}

.archive-single-blog-pst-content h3.wp-block-heading {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--primaryFont);
}

.archive-single-affiliate-links-text {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
}

.archive-single-table-of-content-list .gs-autolist-title:hover,
.archive-single-table-of-content-list .gs-autolist-title a:hover {
    color: #17a2b8 !important;
}

.archive-single-table-of-content-list .gs-autolist-title,
.archive-single-table-of-content-list .gs-autolist-title a {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont) !important;
}

.archive-single-table-of-content-list .gs-autolist-item {
    padding: 10px 14px;
}

.archive-single-table-of-content-list .gs-autolist-item:nth-child(2n) {
    background-color: rgba(47, 142, 62, 0.1) !important;
}

.archive-single-meta-icon .gspb_svgBox,
.archive-single-meta-icon .gspb_svgBox svg {
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
    display: flex;
}

.archive-single-meta-icon>.wp-block-greenshift-blocks-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.archive-single-meta-icon .wp-block-post-author,
.archive-single-meta-icon a {
    font-size: 12px;
    line-height: 20px;
    font-family: var(--primaryFont);
    color: inherit;
    text-decoration: none;
}

.archive-single-meta-icon {
    display: flex;
    align-items: center;
    gap: 12px 24px;
}

.archive-single-meta-icon .wp-block-post-author__name a:hover,
.archive-single-meta-icon .taxonomy-category a:hover {
    color: #17a2b8;
}

.archive-single-meta-icon .wp-block-post-author__name a,
.archive-single-meta-icon .taxonomy-category a {
    color: #120200;
}

.archive-single-blog-title {
    font-family: var(--primaryFont);
    font-size: 40px;
    line-height: 48px;
}

#gs-progress-bar {
    background-color: #17a2b8 !important;
}

.archive-single-author-detail-box {
    display: flex;
    background: #ddeddf;
    padding: 30px;
    border-radius: 4px;
    width: 100%;
    gap: 24px;
}

.archive-single-author-name {
    font-size: 20px !important;
    line-height: 28px;
    font-weight: 600 !important;
}

.archive-single-author-name a {
    text-decoration: none;
}

.archive-single-author-avatar-wrap {
    --size: 124px;
    background-color: #fff;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gotBrokenStickyBlock {}

.archive-single-blog-paginations-inner {
    display: flex;
    align-items: center;
    gap: 20px 60px;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (min-width:768px) {
    .archive-single-blog-paginations-inner {
        flex-wrap: nowrap;
    }
}

.archive-single-blog-pagination-wrap .wp-block-post-navigation-link:before {
    display: none;
}

.archive-single-blog-pagination-wrap .wp-block-post-navigation-link:after {
    display: none;
}

.archive-single-blog-paginations-inner .wp-block-post-navigation-link a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    font-family: var(--primaryFont);
    color: #000;
    padding: 20px 0;
    min-height: 106px;
}

.archive-single-blog-paginations-inner .post-navigation-link-previous a {
    padding-left: 80px;
}

.archive-single-blog-paginations-inner .post-navigation-link-next a {
    padding-right: 80px;
    text-align: right;
}

.archive-single-blog-paginations-inner .post-navigation-link-previous a:before,
.archive-single-blog-paginations-inner .post-navigation-link-next a:before {
    content: 'Previous Post' !important;
    display: inline-flex !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--primaryFont);
    color: #000;
    position: static !important;
    box-shadow: none !important;
}

.archive-single-blog-paginations-inner .post-navigation-link-next a:before {
    content: 'Next Post' !important;
    margin-left: auto;
    text-align: right;
}

.archive-single-blog-paginations-inner .post-navigation-link__label {
    display: none;
}

.archive-single-blog-paginations-inner .wp-block-post-navigation-link {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 !important;
}

@media (min-width:782px) {
    .archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap {
        width: 50%;
        max-width: 490px;
    }
}

.archive-single-blog-paginations {
    border: solid #33904320;
    border-width: 2px 0;
    margin-bottom: 60px;
    margin-top: 60px;
}

.archive-single-blog-paginations-inner {
    position: relative;
}

.archive-single-blog-paginations-inner:before {
    content: '';
    position: absolute;
    width: 100%;
    top: -2px;
    height: calc(100% + 0px);
    border: 2px solid #348e42;
    border-width: 2px 0;
}

.archive-single-main-area {
    padding-top: 40px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.archive-single-main-area .taxonomy-post_tag a {
    min-height: 25px;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 400;
    background-color: #2b0e0a !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center;
    text-align: center;
    padding: 0 5px !important;
    font-family: var(--primaryFont);
    background-image: none !important;
}

.archive-single-main-area .taxonomy-post_tag a:hover {
    background-color: #17a2b8 !important;
}

.before-header {
    display: none !important;
}

.archive-grid-box-loop {
    margin-top: 0 !important;
    padding-bottom: 40px !important;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox svg {
    --size: 32px;
    width: var(--size) !important;
    height: var(--size) !important;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox {
    width: 66px;
    border-radius: 6px;
    background: #17a2b8;
    padding: 0;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    position: absolute;
    top: 20px;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox svg path {
    fill: currentColor;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap:first-child .gspb_svgBox {
    left: 0;
}

.archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap:last-child .gspb_svgBox {
    right: 0;
}

@media (max-width:781px) {
    .wp-container-core-columns-is-layout-1 {
        gap: var(--wp--preset--spacing--60);
    }

    .archive-single-blog-paginations-inner .wp-block-post-navigation-link a {
        font-size: 0;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-direction: row;
        min-height: 66px;
    }

    .archive-single-blog-paginations-inner .archive-single-blog-pagination-wrap .gspb_svgBox {
        width: 46px;
        height: 46px;
        top: 10px;
    }

    .archive-single-blog-paginations-inner .post-navigation-link-previous a {
        padding-left: 60px;
    }

    .archive-single-blog-paginations-inner .post-navigation-link-next a {
        padding-right: 60px;
    }
}

@media (max-width:440px) {

    .archive-single-blog-paginations-inner .post-navigation-link-previous a:before,
    .archive-single-blog-paginations-inner .post-navigation-link-next a:before {
        display: none !important;
    }
}

@media (max-width:767px) {
    .archive-single-blog-title {
        font-size: 25px;
        line-height: 34px;
    }
}

form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit:hover {
    background-color: #349644 !important;
}

form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit {
    background-color: #17a2b8 !important;
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    padding: 12px 12px;
    width: auto;
    min-width: 253px;
    border: none;
}

.ff-default .ff-el-form-control {
    height: 40px;
    background: #ffffff50;
    border-style: solid !important;
    padding-left: 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 0 0 2px 0 !important;
    border-radius: 0 !important;
    margin-top: 10px;
    margin-bottom: 0;
    background: transparent;
    outline: none !important;
    font-family: var(--primaryFont);
}

.ff-default .ff-el-input--label label {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
}

@media (max-width:767px) {
    .archieve-singleterm-desc-text {
        font-size: 22px !important;
        line-height: 30px;
    }

    .archive .wp-block-query-title {
        word-wrap: break-word;
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .archive-single-author-detail-box {
        flex-direction: column;
    }
}

.archive-single-author-bio {
    font-family: var(--primaryFont);
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

#gspb_container-id-gsbp-43871843-40b7.gspb_container {
    background-color: rgba(47, 142, 62, 0.1) !important;
    border-color: rgba(47, 142, 62, 0.3) !important;
    border-radius: 4px !important;
}

#gspb_heading-id-gsbp-92555a3e-668d {
    font-family: var(--primaryFont) !important;
    color: #000 !important;
    font-size: 24px !important;
    line-height: 32px !important;
}

#gspb_heading-id-gsbp-e1a56fe9-ab5f {
    color: #000 !important;
    font-size: 40px !important;
    line-height: 48px !important;
    font-family: var(--primaryFont) !important;
}

.gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox {
    background-color: #17a2b8 !important;
    color: #fff;
    font-family: var(--primaryFont) !important;
    font-size: 16px !important;
    line-height: 24px;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center;
    border-radius: 4px !important;
    padding: 12px 12px;
    width: 100%;
}

.wp-site-blocks .gspb_button-id-gsbp-f16ac3da-1007>.gspb-buttonbox:hover {
    background-color: #349644 !important;
}

.archive-single-autho-icon-wrap .wp-block-post-author__name {
    font-family: var(--primaryFont);
    font-size: 12px;
    line-height: 20px;
}

.archive-single-autho-icon-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 5px;
}

.archive-single-autho-icon-wrap .wp-block-post-author__name a {
    text-decoration: none;
}

.archive-single-categories-wraper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.archive-single-categories-wraper a:hover {
    background-color: #17a2b8 !important;
}

.archive-single-categories-wraper a {
    margin: 0 !important;
    color: inherit !important;
    text-decoration: none !important;
    min-height: 25px !important;
    font-size: 14px !important;
    color: #fff !important;
    font-weight: 400 !important;
    background-color: #2b0e0a !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 5px !important;
    font-family: var(--primaryFont) !important;
}

.admin-bar .gotBrokenStickyBlock {
    top: 72px !important;
}

@media (max-width:991.98px) {
    body.gspb-bodyfront #gspb_container-id-gsbp-c28dcdd.gspb_container {
        width: 100% !important;
    }
}

.archive-page-main-title {
    font-family: var(--primaryFont);
    font-size: 40px !important;
    line-height: 48px;
    font-weight: 600;
}

/* </style> */


.wus-icon-cardsv2 .wus-icon-card .icon {
    border-radius: 0;
    box-shadow: none;
}

.our-founder-section {
    background: #17a2b810;
}

.firstfounder .img-wrap img {
    object-position: 43%;
}


.map-wrap-footer iframe {
    width: 100%;
    height: 250px;
    border-radius: 4px;
}

.map-wrap-footer {
    position: relative;
    z-index: 100;
}

.badge-li {
    display: flex;
    justify-content: end;
    width: 200px !important;
    flex: unset !important;
}

.universities-section {
    background-color: #17a2b8;
    padding: 50px 0;
}

.universities_section_heading {
    font-size: 50px;
    font-family: 'Rubik';
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.universities-logos {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
    justify-content: center;
    align-items: center;
    gap: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.universities-logos img {
    margin: 0 20px;
    object-position: center;
    width: 20%;
    padding: 10px;
    height: 140px;
    object-fit: contain;
}


.contact-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    margin: 0px !important;
    display: none;
}

.contact-popup .popup-inner {
    padding: 30px !important;
    background: #fff;
    width: 100%;
    max-width: 500px !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.formhead .logo img {
    width: 100%;
    max-width: 160px;
    text-align: center;
    display: block;
}

.formhead .logo {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

.closepop {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.popheadtxt h2 {
    font-size: 30px;
    font-family: 'Rubik';
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-popup .form-col {
    width: 100%;
}

.contact-popup .form-col label {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #222;
    font-family: 'Rubik';
    margin-bottom: 4px;
}

.contact-popup form {
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.contact-popup .form-col input,
.contact-popup .form-col textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-height: 30px;
    border-radius: 6px;
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #222;
    font-family: 'Rubik';
}

.contact-popup .form-col input:focus,
.contact-popup .form-col textarea:focus {
    outline: 0px !important;
    border-color: #17a2b8;
}


.contact-popup .form-col textarea {
    height: 90px;
    resize: none;
}

.contact-popup .form-col button {
    padding: 12px 40px;
    transition: 0.3s;
    background-color: #17a2b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rubik';
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    border: 0px;
    margin: 0px auto;
}

.contact-popup .form-col button:hover {
    background-color: #000;
    color: #fff;
}

.contact-popup .error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    padding: 2px 5px !important;
}

.contact-active .contact-popup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-section {
    padding: 150px 0 100px 0 !important;
}



@media (max-width:768px) {

    .badge-li {
        justify-content: start;
        width: auto !important;
        flex: unset !important;
    }

    .universities-logos {
        gap: 20px;
        padding: 15px 0px;
    }

    .universities-logos img {
        margin: 0px;
        width: calc((100% - (1 * 20px)) / 2);
        height: 100px;
    }

    .our-founder-section .img-wrap img {

        max-width: 300px !important;
    }

    .universities_section_heading {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .wus-icon-cardsv2 .wus-icon-card {
        width: 100%;
    }

    .contact-popup {
        padding: 40px 20px;
    }

    .formhead .logo img {
        max-width: 100px;
    }

    .popheadtxt h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .contact-popup form {
        gap: 10px;
    }

    .contact-popup .form-col textarea {
        height: 60px;
        resize: none;
    }


    .who-we-are-section {
        padding: 80px 0 50px 0 !important;
    }

}

.contact-popup .name-error{
    display: none;
}

.contact-popup .email-error{
    display: none;
}

.contact-popup .mobile-error{
    display: none;
}