/* Using SCSS variables to store breakpoints */
h1 {
    color: white;
    font-size: 58px !important;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 768px) {
    h1 {
        font-size: 40px !important;
    }
}
@media (max-width: 425px) {
    h1 {
        font-size: 30px !important;
    }
}

h2 {
    color: #252640;
    font-size: 44px !important;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 425px) {
    h2 {
        font-size: 26px !important;
    }
}

h3 {
    color: #00334d;
    font-size: 36px;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 425px) {
    h3 {
        font-size: 22px !important;
    }
}

h4 {
    color: #00334d;
    font-size: 26px;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 425px) {
    h4 {
        font-size: 20px !important;
    }
}

h5 {
    font-family: "DM Sans", sans-serif;
    color: #00334d;
    font-size: 24px;
    font-weight: bold;
}
@media (max-width: 425px) {
    h5 {
        font-size: 18px !important;
    }
}

.txt-dblue {
    color: #00334d;
}

p {
    font-size: 18px;
    color: #252640;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 425px) {
    p {
        font-size: 14px !important;
    }
}

.fs-22 {
    font-size: 22px;
}

.lg-db {
    font-size: 20px;
    color: #00334d;
}

.blue-txt {
    color: #00b9ff;
}
.blue-txt-lg {
    font-size: 24px;
    color: #00b9ff;
}

.light-blue-txt {
    color: #97c0d4;
}
.light-blue-txt-lg {
    font-size: 26px;
    color: #bee6f6;
}

section {
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 768px) {
    section {
        padding: 50px 15px;
    }
}

.btn.btn-blue-lg {
    background-color: #00b9ff;
    color: white;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    -webkit-transition: 0.5s ease-in-out !important;
    -o-transition: 0.5s ease-in-out !important;
    transition: 0.5s ease-in-out !important;
}
.btn.btn-blue-lg:hover {
    background-color: #bee6f6;
    color: #00334d;
}
@media (max-width: 425px) {
    .btn.btn-blue-lg {
        font-size: 16px;
    }
}

.btn.btn-blue-sm {
    background-color: #00b9ff;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.btn.btn-blue-sm:hover {
    background-color: #bee6f6;
    color: #00334d;
}

.btn.btn-outline-lg {
    background-color: transparent;
    color: #00334d;
    border: 2px solid #00334d;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.btn.btn-outline-lg:hover {
    background-color: #00334d;
    color: white;
}
.btn.btn-outline-lg-width1 {
    width: 230px !important;
}
@media (max-width: 425px) {
    .btn.btn-outline-lg {
        font-size: 16px;
    }
}

.btn.btn-outline-sm {
    background-color: transparent;
    color: #00334d;
    border: 2px solid #00334d;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.btn.btn-outline-sm:hover {
    background-color: #00334d;
    color: white;
}

section.hero {
    height: 100vh;
    background-image: url("../img/hero-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media (max-width: 991px) {
    section.hero {
        height: auto;
        padding-top: 160px;
    }
}
@media (max-width: 768px) {
    section.hero {
        height: auto;
        padding-top: 190px;
    }
}
@media (max-width: 767px) {
    section.hero {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
}
section.hero .box {
    border-radius: 10px;
    background-color: white;
    text-align: center;
    padding: 20px 10px;
}
section.hero .box img {
    width: 100px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    section.hero .box img {
        width: 70px;
    }
}
@media (max-width: 425px) {
    section.hero .box {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    section.hero .box {
        height: auto !important;
        display: block;
        margin: auto;
    }
}
@media (max-width: 1024px) {
    section.hero .box {
        height: 190px;
    }
}

section.dark {
    background-color: #00334d;
    padding: 0;
}
section.dark .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 200px;
}
@media (max-width: 991px) {
    section.dark .content {
        padding-left: 0rem;
        text-align: center;
        margin: 20px 0;
    }
}
@media (max-width: 425px) {
    section.dark .content {
        padding: 20px;
        text-align: center;
    }
}
section.dark .mermaid-party {
    -o-object-fit: cover;
    object-fit: cover;
}
section.dark .mermaid-party img {
    width: 500px;
}

section.full {
    padding: 0;
}

section.dark-bg {
    background-color: #00334d;
}

section.light-blue {
    background-color: #bee6f6;
}

section.light {
    background-color: #f2f9fc;
}

p.sm {
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    color: #252640;
    margin: 0;
    font-weight: bold;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

a.link {
    color: #00b9ff;
    font-weight: bold;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-family: "DM Sans", sans-serif;
}
a.link:hover {
    color: #00334d;
}
a.link-light {
    color: white;
}
a.link-light:hover {
    color: #00b9ff;
}

section.cta {
    background-image: url("../img/cta-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.footer {
    background-color: #1d1d1d;
}
section.footer .logo img {
    width: 230px;
}
section.footer p {
    font-size: 14px;
    color: white;
}
section.footer ul li {
    margin-right: 0rem !important;
}
section.footer .list-inline-item {
    margin-right: 0.7rem !important;
}
section.footer .ftr-links p {
    line-height: 0.2rem;
}
section.footer .ftr-links h5 {
    font-size: 14px;
    color: #00b9ff;
    line-height: 2rem;
}
section.footer .ftr-links ul li {
    font-size: 13px;
    margin-bottom: 0.2rem;
}
section.footer .ftr-links ul .small {
    font-size: 12px;
}
section.footer .ftr-links .ul-sub li {
    list-style-type: "- ";
}
section.footer .ftr-links .ul-sub li::marker {
    color: #fff;
    content: "- ";
}
section.footer .ftr-smalll {
    font-size: 12px;
}
section.footer .bx {
    color: #00b9ff;
    font-size: 18px;
    margin-right: 10px;
}
section.footer a.ftr-link {
    color: white;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
section.footer a.ftr-link:hover {
    color: #00b9ff;
}
section.footer a.ftr-link i {
    font-size: 20px;
}
section.footer .socials ul .list-inline-item {
    margin-right: 0rem !important;
}
section.footer .socials img {
    width: 27px;
}

.sub-footer {
    background-color: #00334d;
    padding: 10px 0;
}
.sub-footer p {
    font-weight: normal;
    font-size: 12px;
}
.sub-footer a {
    color: white;
    text-decoration: none;
}
.sub-footer a:hover {
    color: white;
}

ul,
li,
ol {
    font-family: "DM Sans", sans-serif !important;
    color: #252640;
    margin-bottom: 10px;
}

section.hero-inner {
    height: auto;
    padding: 180px 0px 80px 0px;
    background-image: url("../img/cta-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media (max-width: 768px) {
    section.hero-inner {
        padding: 150px 0px 40px 0px;
    }
}
@media (max-width: 767px) {
    section.hero-inner {
        background-size: cover;
        background-attachment: scroll;
    }
}
section.hero-inner .box {
    border-radius: 10px;
    background-color: white;
    text-align: center;
    padding: 20px 10px;
}
section.hero-inner .box img {
    width: auto;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.box-lb {
    border-radius: 15px;
    background-color: #f2f9fc;
    padding: 50px;
    height: 100%;
}
.box-lb h3 {
    color: #00334d;
}
.box-lb-short {
    height: 265px;
}
.box-lb-long {
    height: 416px;
}
.box-lb-med {
    height: 330px;
}
@media (max-width: 768px) {
    .box-lb {
        padding: 35px;
        height: auto;
    }
}

.box-desc {
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    -webkit-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    -moz-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
}
.box-desc p {
    margin-bottom: 0.5rem;
}
.box-desc i {
    margin-right: 8px;
    color: #00b9ff;
}

.material-icons {
    font-size: 16px;
    margin-top: 3px;
}

hr.line {
    border: 2px solid #00b9ff;
    width: 40px;
    opacity: 1;
}

.txt-light-grey {
    color: #97c0d4;
}

.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.register h2 {
    color: #252640;
    font-size: 56px;
    font-weight: bold;
    font-family: "DM Sans", sans-serif;
}
@media (max-width: 425px) {
    .register h2 {
        font-size: 30px !important;
    }
}

.modal .modal-content {
    border: none;
    border-radius: 15px;
    padding: 10px 25px;
}

.modal .modal-header {
    border: none;
}

.modal .modal-footer {
    border: none;
}

.modal .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
}

.box-pricing {
    padding: 40px;
    height: auto;
}
.box-pricing h3 {
    color: white;
}
.box-pricing-blue {
    background: #00334d;
}
.box-pricing-light {
    background-color: #21557d;
}
.box-pricing-bordered-light {
    border: 3px #21557d solid;
}
.box-pricing-bordered-dark {
    border: 3px #00334d solid;
}

.custom-hover {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.custom-hover:hover {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    transform: translate(0, -8px);
}

.philo-card {
    background-color: white;
    padding: 35px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    -moz-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
}
.philo-card p {
    margin-bottom: 0;
}

.press {
    padding: 30px !important;
}
.press img {
    width: 100%;
    margin-bottom: 20px;
}

.navbar-nav {
    margin-right: 0rem;
}

.navbar {
    padding: 10px 15px;
    margin: 15px 40px;
    background-color: white;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    -moz-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
}
.navbar a.btn.btn-blue-sm {
    white-space: nowrap;
}
.navbar a.nav-link {
    padding: 0;
    color: #252640;
    white-space: nowrap;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.navbar a.nav-link:hover {
    color: #00b9ff;
}
@media (max-width: 991px) {
    .navbar .nav-item.dropdown {
        text-align: center !important;
    }
}
.navbar .nav-item {
    margin: 0px 12px;
}
@media (max-width: 768px) {
    .navbar .nav-item {
        margin: 12px 12px;
    }
}
.navbar .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.8rem 0;
    color: #252640;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    border-radius: 0.25rem;
}
.navbar .dropdown-item {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.navbar .dropdown-item:hover {
    color: #00b9ff;
    background-color: transparent;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    color: #00b9ff;
    text-decoration: none;
    background-color: transparent;
}
.navbar a.active {
    font-weight: bold;
    color: #00b9ff;
}

nav {
    margin: 0 5rem;
    background-color: #fff;
    border-radius: 1rem;
    margin-top: 1rem;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.nav-in {
    background-color: #fff;
    margin: 0 5rem;
    border-radius: 1rem;
    padding: 0.5rem;
}

.nav-solid {
    background-color: #fff;
    margin-top: 0rem;
    margin: 0 0rem;
    border-radius: 0rem;
}

.dropdown-menu li {
    position: relative;
    margin: 10px;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}
@media (max-width: 768px) {
    .dropdown-menu .dropdown-submenu {
        left: auto;
        right: auto;
    }
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}
@media (max-width: 768px) {
    .dropdown-menu .dropdown-submenu-left {
        right: auto;
    }
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.faq {
    /* Custom style */
}
.faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    -webkit-transform: scale(0.7) !important;
    -ms-transform: scale(0.7) !important;
    transform: scale(0.7) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
    color: #252640;
    background-color: #f4fafe;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    padding: 25px !important;
}
.faq .accordion-item {
    border: none;
    border-radius: 10px !important;
}
.faq .accordion-button {
    font-weight: bold;
}
.faq .card-body {
    background-color: #f4fafe;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 25px;
    padding-top: 0px;
}
.faq button.accordion-button.collapsed {
    background-color: #f4fafe;
    border-radius: 10px;
    padding: 25px;
}
.faq button.accordion-button {
    font-size: 18px;
}

.aa-form .form-label,
.aa-form .form-check-label,
.aa-form .form-check-input {
    font-family: "DM Sans", sans-serif !important;
    color: #252640;
    font-size: 14px;
}

.aa-form .form-control {
    font-family: "DM Sans", sans-serif;
    padding: 15px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .aa-form .form-control {
        padding: 12px;
        border-radius: 7px;
    }
}

.aa-form .form-control::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d9d6df;
    opacity: 1;
    /* Firefox */
}

.aa-form .form-control:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d9d6df;
    opacity: 1;
    /* Firefox */
}

.aa-form .form-control::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d9d6df;
    opacity: 1;
    /* Firefox */
}

.aa-form .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d9d6df;
    opacity: 1;
    /* Firefox */
}

.aa-form .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #d9d6df;
}

.aa-form .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #d9d6df;
}

section.testi {
    overflow-x: hidden;
}
section.testi .testimonials-carousel .swiper-slide {
    min-height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    height: initial;
}
@media (max-width: 768px) {
    section.testi .testimonials-carousel .swiper-slide {
        min-height: initial;
    }
}
section.testi .swiper-slide {
    background-color: white;
    -webkit-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    -moz-box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    box-shadow: 0px 10px 34px 0px rgba(94, 126, 143, 0.15);
    border-radius: 12px;
    padding: 25px;
}
section.testi .swiper-slide .txt-div {
    font-family: "DM Sans", sans-serif !important;
    color: #252640;
    font-size: 14px;
}
section.testi .swiper-slide i {
    color: #0f485e;
    font-size: 26px;
}

section.contact a.link {
    text-decoration: none;
    color: #252640;
    font-weight: normal;
}
section.contact a.link:hover {
    color: #00b9ff;
}

section.contact i {
    color: #00b9ff;
    font-size: 18px;
}

section.contact .form-bg {
    background-color: #f2f9fc;
    border-radius: 20px;
}

.custom-table {
    font-family: "DM Sans", sans-serif;
}
.custom-table thead th {
    background-color: #00b9ff;
}
.custom-table tbody tr {
    border-color: #00b9ff;
}
.custom-table tbody td {
    padding: 2rem 2rem 2rem 0.75rem;
    font-weight: 400;
}
@media (max-width: 425px) {
    .custom-table tbody td {
        font-size: 0.875rem;
        padding: 1rem 1rem 1rem 0.75rem;
    }
}
.custom-table tbody td:not(:nth-child(3)) {
    white-space: nowrap;
}
.custom-table tbody td:nth-child(3) {
    min-width: 220px;
}

section.landing p {
    font-size: 1.5rem;
}

.landing-hero {
    background: url("../img/landing-swim-nastics-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-pixelated;
    image-rendering: pixelated;
    min-height: 100vh;
    position: relative;
}
.landing-hero .overlay {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    left: 0;
}
.landing-hero .container {
    z-index: 1;
}
.landing-hero h1 {
    font-size: 3.875rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.landing-hero hr.line {
    margin: 0 auto;
    width: 6.375rem;
    border-width: 4px;
    margin-bottom: 3rem;
}
.landing-hero ul > li {
    font-size: 2.125rem;
    color: #fff;
    padding-bottom: 1rem;
}
@media (max-width: 425px) {
    .landing-hero {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 0rem 15px;
    }
    .landing-hero h1 {
        font-size: 2rem !important;
    }
    .landing-hero ul > li {
        font-size: 1.5rem;
    }
    .landing-hero hr.line {
        border-width: 2px;
        width: 4rem;
    }
    .landing-hero h1 {
        padding-top: 25%;
    }
}

h2.txt-white {
    font-size: 1.875rem !important;
    font-weight: normal;
    color: #fff;
    line-height: 1.3;
}
@media (max-width: 425px) {
    h2.txt-white {
        font-size: 1.5rem !important;
    }
}

.round-corner {
    border-radius: 1rem;
}
