@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: SatoshiRegular, sans-serif;
}

body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.with-fancybox {
    overflow: auto;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

body.modal-open {
    /* filter: blur(5px); */
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    border-radius: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #e2eeff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #002F6B;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #002F6B;
}

@font-face {
    font-family: 'SatoshiRegular';
    src: url("../font/Satoshi-Regular.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiBold';
    src: url("../font/Satoshi-Bold.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiBlack';
    src: url("../font/Satoshi-Black.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiMedium';
    src: url("../font/Satoshi-Medium.woff") format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'SatoshiLight';
    src: url("../font/Satoshi-Light.woff") format('woff');
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
    border: none;
}

.font1 {
    font-family: "SatoshiRegular", sans-serif;
}

.font2 {
    font-family: "SatoshiBold", sans-serif;
}

.font3 {
    font-family: "SatoshiMedium", sans-serif;
}

.font4 {
    font-family: "SatoshiBlack", sans-serif;
}

.font5 {
    font-family: "SatoshiLight", sans-serif;
}

.customspan {
    font-family: "Playfair Display", serif;
}

.weightlght {
    font-weight: 400;
}

.color {
    color: #01E8FF;
}

.color1 {
    color: #003C82;
}

.color2 {
    color: #4B4B4B;
}

.bg1 {
    background-color: #DFECFC;
}

.bg2 {
    background-color: #002F6B;
}

.customshadow {
    box-shadow: 0px 0px 11.8px rgba(0, 0, 0, 0.17);
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topheaddetails {
    font-size: 14px;
}

.container-fluid {
    padding: 0 clamp(8px, 5vw, 91px);
}

.heading {
    font-size: clamp(22px, 4vw, 36px);
}

.heading1 {
    font-size: clamp(22px, 4vw, 36px);
}

.sub-heading {
    font-size: clamp(16px, 2vw, 25px);
}

.sub-heading1 {
    font-size: clamp(20px, 2vw, 25px);
}

.widthtext {
    width: 32%;
}

.widthtext1 {
    width: 27%;
}

.radius {
    border-radius: 25px;
}

.padding {
    padding: 70px 0;
}

.custombtn {
    line-height: 1;
    display: inline-flex;
    border: 1px solid transparent;
    align-items: center;
    background-color: white;
    color: #002F6B;
    border-radius: 50px;
    padding: 5px 20px;
    padding-right: 6px;
    transition: background-color 0.9s ease;
    font-family: "SatoshiMedium", sans-serif !important;
    height: max-content;
    gap: 10px;
    font-size: clamp(14px, 2vw, 16px);
    width: max-content;
}

.custombtnblue {
    background-color: #003C82;
    border: 1px solid #003C82;
    color: white;
    width: max-content;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 37px;
    height: 37px;
    position: relative;
    color: white;
    background-color: #003C82;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: background-color 0.9s ease;
}

.custombtnblue .button__icon-wrapper {
    background-color: white;
}

.custombtn:hover {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.custombtnblue:hover {
    background-color: transparent;
    color: #003C82;
    border: 1px solid #003C82;
}

.custombtn:hover .button__icon-wrapper {
    color: #003C82;
    background-color: white;
}

.custombtnblue:hover .button__icon-wrapper {
    color: white;
    background-color: #003C82;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.custombtn:hover .button__icon-svg:first-child {
    transition: transform 0.7s ease-in-out;
    transform: translate(150%, -150%);
}

.custombtn:hover .button__icon-svg--copy {
    transition: transform 0.7s ease-in-out 0.1s;
    transform: translate(0);
}

/* whatsapp floater */
.floater {
    position: fixed;
    right: 35px;
    bottom: 31px;
    z-index: 100;
}

.floater img {
    animation: whatsapp 1s linear infinite;
}

@keyframes whatsapp {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 94px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
}

.scroll-top.show1 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top .scrollprogress {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
}

.scroll-top .progress-bg {
    stroke: #ccc;
    stroke-width: 4;
}

.scroll-top .progressscroll {
    stroke: #003C82;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.1s linear;
}

/* scroll to top button */

/* banner css */
section.creative-fullpage--slider .firstbanner {
    width: 32%;
    margin: 0 auto;
}

section.creative-fullpage--slider .card-img-overlay {
    display: flex;
    justify-content: end;
    flex-direction: column;
    text-align: center;
    padding-bottom: 104px;
}

.creative-fullpage--slider {
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100%;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
    background: #000;
    height: 100vh;
    position: relative;
}

.creative-fullpage--slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    top: 55%;
    opacity: 0.5;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: clamp(20px, 3vw, 35px);
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}

/* banner css end */

.banner--shape {
    margin-top: -73px;
    position: relative;
    z-index: 3;
}

.other_Shape {
    position: relative;
    z-index: 3;
}

section.why_choosehome .choose--box {
    padding: 13px 22px;
    padding-bottom: 27px;
}

section.why_choosehome .choosehomeimg {
    background-color: #003C82;
    outline: 5px solid #DFECFC;
    border-radius: 50%;
    padding: 10px;
    width: 76px;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: -44px;
}

section.why_choosehome .choosehomeimg img {
    width: 31px;
}

section.why_choosehome .choose--box .truncate {
    -webkit-line-clamp: 3;
}

section.course_home {
    margin-top: -5px;
    position: relative;
    z-index: 4;
}

section.course_home .card,
section.divingsites .card {
    overflow: hidden;
}

section.course_home .firstcard {
    height: 100%;
}

section.course_home .firstcard img {
    height: 100%;
    object-fit: cover;
}

section.course_home .firstcard .card-img-overlay {
    border: 1px solid white;
    margin: 10px;
    padding: clamp(25px, 2vw, 41px);
    background: #00003566;
}

section.course_home .courses--sec .card,
section.divingsites .card {
    transition: all 0.6s ease;
}

section.course_home .courses--sec .card img {
    transition: all 1.2s ease;
    height: 331px;
    min-height: 431px;
    object-fit: cover;
}

section.course_home .courses--sec .card .truncate {
    width: 80%;
}

section.course_home .courses--sec .card:hover img,
section.divingsites .card:hover img {
    scale: 1.1;
}

section.course_home .courses--sec .card-img-overlay,
section.divingsites .card-img-overlay {
    background: linear-gradient(180deg, rgba(0, 80, 166, 0) 37.58%, rgb(0 23 48 / 71%) 77.45%);
    padding-bottom: 23px;
}

section.course_home .courses--sec .card-img-overlay>.main_content {
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: 100%;
    padding-bottom: 35px;
}

section.course_home .courses--sec .card .custombtn,
section.blogs .card .custombtn {
    background-color: transparent;
    display: inline-block;
    border: 1px solid transparent;
    padding: 0;
    height: auto;
}

section.course_home .courses--sec .card:hover .custombtn .button__icon-wrapper,
section.blogs .card:hover .custombtn .button__icon-wrapper {
    color: white;
    background-color: transparent;
    border: 1px solid white;
}

section.course_home .courses--sec .card:hover .custombtn .button__icon-svg:first-child,
section.blogs .card:hover .custombtn .button__icon-svg:first-child {
    transition: transform 0.7s ease-in-out;
    transform: translate(150%, -150%);
}

section.course_home .courses--sec .card:hover .custombtn .button__icon-svg--copy,
section.blogs .card:hover .custombtn .button__icon-svg--copy {
    transition: transform 0.7s ease-in-out 0.1s;
    transform: translate(0);
}

section.scubakids .row img {
    border: 9px solid white;
    border-radius: 41px;
    object-fit: cover;
    height: 550px;
}

section.scubakids .content__div {
    background: url(../images/scubakidsbg.webp) no-repeat center center / cover;
    padding: 87px 36px;
}

section.scubakids .content__div>p {
    width: 82%;
}

section.divingsites .card img {
    height: 350px;
    object-fit: cover;
    transition: all 1.2s ease;
}

section.testimonial.padding {
    padding-top: 25px;
    position: relative;
    overflow-x: hidden;
    margin-bottom: 52px;
}

section.testimonial .testimonial_p {
    width: 75%;
}

section.testimonial .textbox {
    padding: 26px 17px;
    height: 100%;
    min-height: 248px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

section.testimonial .swiper-slide {
    padding: 2px;
}

section.testimonial .swiper {
    width: 100%;
    height: 100%;
}

#testimonialswiper .swiper-pagination {
    position: relative;
    text-align: center;
    background: #003C82;
    width: max-content;
    margin: 34px auto;
    margin-bottom: 0;
    border-radius: 50px;
    padding: 1px 7px;
}

#testimonialswiper .swiper-pagination-bullet {
    background: #E3E3E3;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
}

#testimonialswiper .swiper-pagination-bullet-active {
    background: #FFFFFF;
    opacity: 1;
}

section.testimonial #testimonialswiper .swiper-slide img {
    width: 50px;
}

section.testimonial .image__row .card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 37%;
}

section.testimonial .image__row .card img {
    height: 500px;
    object-fit: cover;
    min-height: 500px;
}

section.testimonial .card-img-overlay {
    border: 2px solid white;
    margin: 10px;
    border-radius: 20px;
}

.testimonialtruncate {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.gallery__home {
    margin-top: -5px;
    position: relative;
    z-index: 4;
}

section.gallery__home .content {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

section.gallery__home .content .content-overlay {
    background: rgba(0, 0, 0, 0.473);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 25px;
}

section.gallery__home .content:hover .content-overlay {
    opacity: 1;
}

section.gallery__home .content-image {
    height: 300px;
    border-radius: 25px;
    object-fit: cover;
}

section.gallery__home .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

section.gallery__home .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

section.gallery__home .fadeIn-top {
    top: 20%;
}

section.gallery__home .fadeIn-left {
    left: 20%;
}

section.gallery__home .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.blog__date {
    padding: 4px 20px;
    border-radius: 50px;
    background-color: white;
    width: max-content;
    font-size: clamp(13px, 1vw, 14px);
}

.blog__heading {
    width: 80%;
}

section.blogs .card .card-img-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.07%, rgba(0, 0, 0, 0.79) 100%);
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 19px 20px;
    padding-bottom: 28px;
}

section.blogs .card img {
    height: 500px;
    object-fit: cover;
}

.form__box {
    background-color: #002653;
    padding: 41px 22px;
    border-radius: 35px;
}

.form_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.child_grp {
    flex: 1;
    width: 100%;
}

.form-control {
    background-color: transparent !important;
    border: 1px solid #01E8FF;
    border-radius: 8px;
    color: white !important;
    padding: 10px 15px;
}

.form-control::placeholder {
    color: white;
}

.phone-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.country-code-input {
    width: 80px;
}

.iti__dropdown-content {
    width: 466px !important;
}

.iti__selected-country {
    color: white;
}

.iti__arrow {
    border-top: var(--iti-arrow-height) solid white;
}

.iti__arrow--up {
    border-top: none;
    border-bottom: var(--iti-arrow-height) solid white;
}

.iti__search-input {
    border-radius: 0 !important;
    padding: 8px 10px;
}

textarea {
    resize: none;
}

.icon_box {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 45px;
    background-color: transparent;
    border: 1px solid #4B4B4B;
}

.icon_box i {
    color: #4B4B4B;
    font-size: clamp(16px, 2vw, 20px);
}

.location__text {
    width: 50%;
}

.social_icon a {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 45px;
    background: #003C82;
    transition: all 0.5s ease;
    color: white;
    font-size: 20px;
    border: 1px solid transparent;
}

.social_icon a:hover {
    color: #003C82;
    background-color: transparent;
    border: 1px solid #003C82;
}

.social_icon a svg path {
    transition: all 0.5s ease;
}

.social_icon a:hover svg path {
    fill: #003C82;
}

footer {
    background: url(../images/footer_bg.webp) no-repeat center center / cover;
    background-attachment: fixed;
}

footer .top__footer {
    padding: 80px 0;
    border-bottom: 1px solid white;
}

footer .logo2 {
    width: 163px;
}

footer .social_icon a {
    background-color: transparent;
    border: 1px solid white;
}

footer .social_icon a:hover {
    background-color: white;
    border: 1px solid transparent;
    color: #003C82;
}

footer .icon_box {
    border: 1px solid white;
    color: white;
}

footer .icon_box i {
    color: white;
}

footer .bottom_footer {
    padding: 12px 0;
}

footer .bottom_footer .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .vr {
    min-height: auto;
    background-color: white;
    opacity: 1;
    height: 24px;
    margin: 0;
    border-top: none;
}

section.course_banner .card-img-overlay {
    background: linear-gradient(360deg, #001329d9 39.92%, rgba(0, 19, 41, 0) 70.77%);
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 150px;
}

section.course_banner .coursekeydiv {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

section.course_banner .coursekeydiv .custombtn.coursebtn {
    padding: 9px 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(3.15px);
    color: white;
    width: max-content;
}

section.course_overview .coursepricetext {
    font-size: clamp(16px, 2vw, 21px);
}

section.structurebg {
    margin: 72px 0;
}

section.structurebg img {
    height: 34vh;
    object-fit: cover;
}

section.course_structure {
    margin-top: -420px;
}

section.course_structure .structure--div {
    padding: 39px 47px;
    border: 4px solid white;
    border-radius: 39px;
}

.customul li {
    list-style: disc;
    margin-left: 1.1rem;
}

.customul.customul1 li {
    margin-left: 3.5rem;
    list-style: lower-alpha;
}

section.inclusion .additonal__row {
    margin-top: -175px;
}

section.faqs {
    margin-top: -5px;
    position: relative;
    z-index: 4;
}

section.faqs .question__faqs {
    padding: 26px 134px 26px 23px;
    border-radius: 50px;
    height: 75px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    background-color: #003C82;
    line-height: normal;
}

.question__faqs::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

section.faqs .wrapper_child {
    border: 1px solid #003C82;
    border-radius: 39px;
}

section.faqs .answercont {
    color: #424242;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 18px 21px 20px;
    box-sizing: border-box;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.question__faqs.active::after {
    transform: rotate(45deg);
}

.answer {
    padding: 18px 21px 20px;
    box-sizing: border-box;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.btn-close:focus {
    box-shadow: none;
    border: none;
}

.modal-content {
    background-color: #002652b3;
    border-radius: 0;
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
}

.btn-close {
    background: url(../images/cross.png) center / 1em auto no-repeat;
    opacity: 1;
}

.modal-header {
    border-bottom: none;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.prequisites__points li {
    list-style: disc;
    margin-left: 1.2rem;
}

.prequisites__points li::marker {
    color: #003C82;
}

.table {
    border: 1px solid #b3b3b3;
    table-layout: fixed;
}

.table thead {
    background-color: #193d81;
    color: #fff;
    border: 1px solid transparent;
}

.table thead th {
    color: white !important;
    font-weight: normal !important;
}

.table>:not(caption)>*>* {
    border-right: 1px solid #dee2e6;
    vertical-align: middle;
    padding: 9px 10px;
    background-color: transparent;
    color: #4B4B4B;
}

section.course_banner.other__banner .card-img-overlay {
    padding-bottom: 123px;
}

section.course_banner.other__banner .card img {
    height: 66vh;
    object-fit: cover;
}

section.about__page .widthheading {
    width: 28%;
}

section.about__page .about_imgdiv {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
}

section.about__page .about_imgdiv img {
    border: 4px solid white;
}

section.whychooseuspage .safetyimg {
    width: 170px;
    margin: 0 auto;
    scale: 1.5;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(50% 50%, 100% 0, 50% 50%, 100% 100%, 50% 50%, 0 100%, 50% 50%, 0 0);
}

section.whychooseuspage .chooserow {
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
    cursor: pointer;
    padding: 10px 0;
}

section.whychooseuspage .chooserow h3 {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #505050;
}

section.whychooseuspage .chooserow:hover h3 {
    color: #003C82;
}

section.whychooseuspage .chooserow:is(:hover, :focus-visible) .safetyimg {
    transition-duration: 0.8s;
    clip-path: polygon(50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%, 0 0);
    opacity: 1;
    transition-property: all;
}

section.our_pledge .pledge_box {
    background: url(../images/pledge_bg.webp) no-repeat center center / cover;
    padding: 35px 58px;
}

.stickyappoint_btn {
    display: none;
}

section.courseintro_page .card {
    padding: 10px;
}

section.courseintro_page .card img {
    border-radius: 20px;
    object-fit: cover;
    height: 265px;
}

section.courseintro_page .card .card-body .truncate {
    -webkit-line-clamp: 3;
}

section.courseintro_page .controls {
    gap: 10px;
}

section.courseintro_page .control {
    background: transparent;
    color: #003C82;
    padding: 6px 17px;
    border: 1px solid #003C82;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.6s ease;
}

section.courseintro_page .control:hover {
    background: #003C82;
    color: white;
}

section.courseintro_page .mixitup-control-active {
    color: #fff;
    background: #003C82;
}

@keyframes slideFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-top {
    animation: slideFromTop 0.4s ease-out;
}