/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Google Font */
    --inter: "Inter", sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #003a6b;
    --secondary: #06b7ed;
    --secondary-light: #0490c4;
    --gray: #555;
    --gray-light: #9d9d9d;
    --yellow: #f6af45;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 400;
    line-height: normal;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
p {
    margin-bottom: 20px !important;
}
section,
.section {
    position: relative;
    z-index: 1;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a,
button {
    outline: none;
    box-shadow: none;
}
button {
    background: unset;
    padding: 0;
    border: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 1;
}
*::placeholder {
    color: var(--white);
    font-size: 16px;
    opacity: 1;
}

/* Resusable Component and CSS Start */
.btn {
    min-width: 205px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        90deg,
        #003a6b -0.83%,
        #06b7ed 50%,
        #003a6b 99.85%
    );
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
}
.btn:hover {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-position: center right;
}

.text-gray {
    color: var(--gray);
}
.text-gray-light {
    color: var(--gray-light);
}
.section__para {
    font-size: 18px;
    line-height: 1.7;
}
.transition {
    transition: all 0.3s ease-in-out;
}
.bg-secondary-light {
    background-color: #dcf6ff;
}
/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */
.fs-1 {
    font-size: 48px !important;
    line-height: 1.05;
}
.fs-2 {
    font-size: 38px !important;
    line-height: 1.16;
}
.fs-3 {
    font-size: 30px !important;
    line-height: 1.34;
}
.text-secondary {
    color: var(--secondary-light) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
    padding: 16px 0;
}
.logo {
    max-width: 148px;
}

/* Mobile Menu */
.menu-btn,
.menu-close {
    width: 36px;
    height: 36px;
    color: var(--white);
    background: linear-gradient(
        90deg,
        #003a6b -0.83%,
        #06b7ed 50%,
        #003a6b 99.85%
    );
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
    margin-top: -4px;
}
.menu-btn:hover,
.menu-close:hover {
    background-position: center right;
}
.menu .offcanvas {
    background-color: rgba(0, 59, 107, 0.8);
    backdrop-filter: blur(10px);
}
.menu__logo {
    max-width: 148px;
}
.menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.menu__link {
    color: var(--white);
    padding: 14px 16px;
}
.menu__link[aria-expanded="true"] .menu__icon {
    transform: rotate(-180deg);
}
.menu__link:hover,
.menu__link[aria-expanded="true"],
.menu__link[aria-expanded="true"] + .collapse--menu {
    background-color: rgba(255, 255, 255, 0.1);
}
.collapse__link {
    color: var(--white);
    font-size: 15px;
    padding: 12px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.collapse__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Menu Link */

.header__right,
.header__ul {
    gap: 40px;
}
.header__nav__item {
    padding: 15px 0;
    cursor: pointer;
}
.header__nav__link {
    color: var(--white);
}
.header__nav__item:hover .header__nav__link {
    color: var(--secondary);
    text-shadow: 0 1px;
}
.dropdown-icon {
    margin-right: -24px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header__nav__item:hover .header__nav__link .dropdown-icon {
    color: var(--secondary);
    text-shadow: none;
    transform: translateY(-50%) rotate(-180deg);
}
.header__dropdown {
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    margin-top: 16px;
    opacity: 0;
    visibility: hidden;
}
.header__nav__item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dropdown-link {
    color: #000;
    padding: 14px 16px;
    font-size: 15px;
}
.dropdown-link:hover {
    background-color: rgba(6, 183, 237, 0.1);
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__content {
    padding: 80px 0 50px;
    background: url("../imgs/bg-thumbs/hero-bg.jpg") no-repeat center / cover;
}
.hero__content::before,
.hero__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 16.25%;
    background: url("../imgs/icons-objs/box-patterns-hero.svg") no-repeat center
        left / cover;
    z-index: -1;
}
.hero__content::after {
    width: 100%;
    background: linear-gradient(90deg, #003a6d 39.01%, rgba(0, 0, 0, 0) 99.99%);
    opacity: 0.75;
}
.hero__content__inner,
.hero__form__content {
    padding: 0 16px;
}
.main__sm__title {
    font-size: 53.34%;
}
.hero .section__para {
    line-height: 1.528;
}
.hero__form__box {
    padding: 24px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(6, 178, 232, 0.6);
    backdrop-filter: blur(6px);
}
.hero__form__title {
    font-size: 28px;
}
.input {
    width: 100%;
    padding: 16px;
    color: var(--white);
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.input:focus,
.input:not(:placeholder-shown) {
    border-color: var(--white);
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* ======================================= */
/* :: 6.0 About + Choose Section CSS Start */
/* ======================================= */
.about--section {
    padding: 50px 0;
}
.about__wrapper {
    max-width: 1600px;
}
.about__thumb__box::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 11.5%;
    height: 102%;
    background-color: var(--white);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 90% 50%);
}
.about__inner {
    padding-top: 32px;
}
.pattern-about {
    width: 10%;
}

.choose {
    padding: 50px 0;
}
.choose__wrapper {
    max-width: 1230px;
}
.choose__card {
    padding: 24px 18px 32px;
    border-radius: 10px;
}
.choose__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: inherit;
    background-color: inherit;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.Choose__icon {
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}
.Choose__icon img {
    max-height: 48px;
    max-width: 48px;
}
.choose__para {
    line-height: 1.61;
}
/* ======================================= */
/* :: 6.0 About + Choose Section CSS End */
/* ======================================= */

/* =============================== */
/* :: 7.0 license + Dealings Section CSS Start */
/* =============================== */
.license--section {
    padding: 50px 0;
    background: linear-gradient(
        to right,
        var(--secondary) 0%,
        var(--primary) 100%
    );
}
.section__wrapper {
    max-width: 1600px;
}
.about__thumb {
    height: 500px;
}
.pattern-license {
    width: 14%;
}
.section__block__inner {
    padding-top: 32px;
}
.section__thumb {
    position: relative;
    height: 336px;
}
.section__thumb__image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.dealings--section {
    padding: 50px 0;
}
.section__thumb__obj {
    width: 29%;
    aspect-ratio: 1 / 1.17;
    border-radius: 8px;
    background: var(--primary);
    margin-bottom: -16px;
    margin-right: 2px;
}
.object-dealings {
    width: clamp(140px, 28.25%, 452px);
    height: auto;
    margin-top: -1%;
}
/* =============================== */
/* :: 7.0 license + Dealings Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Testimonial Section CSS Start */
/* =============================== */
.testimonial--section {
    padding: 50px 0;
}
.testimonial__wrapper {
    max-width: 1600px;
    padding: 0 16px;
}
.testimonial__item {
    padding: 20px;
    border-radius: 10px;
    opacity: 0.5;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.testimonial__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: inherit;
    border: 1px solid rgba(34, 33, 79, 0.15);
    z-index: -1;
    transition: all 0.3 ease-in-out;
}
.testimonial .swiper-slide-active {
    opacity: 1;
}
.testimonial .swiper-slide-next::after {
    content: "";
    position: absolute;
    top: 0;
    right: -28px;
    width: 64%;
    height: 100%;
    background: linear-gradient(
        270deg,
        #c2f4ff 7.89%,
        rgba(212, 247, 255, 0) 92.83%
    );
}
.testimonial__head {
    gap: 12px;
    padding-bottom: 16px;
}
.testimonial__avatar {
    width: 48px;
    height: 48px;
}
.student-name {
    color: #22214f;
    font-size: 17px;
}
.ratings {
    color: var(--yellow);
}
.testimonial__title {
    font-size: 16px;
}
.testimonial__para {
    color: #22214f;
    font-size: 15px;
    line-height: 1.4;
}
.testimonial__slider__btns {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.testimonial .swiper-button-next::after,
.testimonial .swiper-button-prev::after {
    display: none;
}
.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
    margin-top: 0;
    transform: translateY(-50%);
    z-index: 3;
}
.testimonial .swiper-button-next {
    right: -12px;
}
.testimonial .swiper-button-prev {
    left: -12px;
}
.testimonial__slide__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #333;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.testimonial__slide__btn:hover {
    background-color: var(--secondary);
}
.testimonial__slide__btn svg path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%, 0%);
    transition: all 0.3s linear;
}
.testimonial__next:hover svg path {
	animation: arrowSlideNext 0.3s linear forwards;
	margin-top: 1px;
}
.testimonial__prev:hover svg path {
    animation: arrowSlidePrev 0.3s linear forwards;
	margin-top: 1px;
}
@keyframes arrowSlideNext {
    0% {
        transform: translate(0%, 0%);
        opacity: 1;
    }
    50% {
        transform: translateX(100%) translateY(0%);
        opacity: 0;
    }
    51% {
        transform: translateX(-100%) translateY(0%);
        opacity: 0;
    }
    100% {
        transform: translate(0%, 0%);
        opacity: 1;
    }
}
@keyframes arrowSlidePrev {
    0% {
        transform: translate(0%, 0%);
        opacity: 1;
    }
    50% {
        transform: translateX(-100%) translateY(0%);
        opacity: 0;
    }
    51% {
        transform: translateX(100%) translateY(0%);
        opacity: 0;
    }
    100% {
        transform: translate(0%, 0%);
        opacity: 1;
    }
}
/* =============================== */
/* :: 8.0 Testimonial Section CSS End */
/* =============================== */

/* =============================================== */
/* :: 9.0 Gallery Section + Footer Area CSS Start */
/* =============================================== */
.gallery__wrapper {
    max-width: 1920px;
}
.gallery__row.g-2 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}
.gallery__thumb {
    height: 300px;
}

.footer__wrapper {
    padding: 40px 0;
}
.footer__logo {
    max-width: 160px;
    margin: 0 auto 40px;
}
.widget {
    gap: 32px;
}
.widget__title {
    font-size: 20px;
}
.footer__nav__link {
    color: var(--white);
    line-height: 246.8%;
    letter-spacing: -0.8px;
}
.footer__nav__link:hover {
    color: var(--secondary);
}
.footer__social {
    gap: 12px;
}
.footer__social__link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    border: 1px solid var(--white);
}
.footer__social__link:hover {
    background-color: var(--white);
    color: var(--primary);
}
.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}
/* =============================================== */
/* :: 9.0 Gallery Section + Footer Area CSS End */
/* =============================================== */
.section__block__content table {
    margin-bottom: 20px;
}

.section__block__content table tr td, .tarieven {
    padding-right: 20px;
    font-size: 20px;
    line-height: 1.7rem;
    color: var(--gray);
}

.tarieven { padding: 0px 20px 0 20px; margin-bottom: 30px; background: #dceef7; }
.tarieven .row { padding: 20px 0; border-bottom: 1px solid #fff; }

.section__block__content ul {
    margin-bottom: 20px;
}

.section__block__content ul li {
    font-size: 20px;
    line-height: 1.7rem;
}

.section__block__content p a {
    text-decoration: underline;
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}

.hero--section, .footer { background: #23436d !important; }

.gallery--section { padding: 100px 0 0 0; }

.grecaptcha-badge{ visibility: collapse !important; }

.license .section__block__content a {
  color: #fff !important;
}

.cfield { display: none; }
.review-add input, .review-add textarea, .review-add select { margin-bottom: 20px; padding: 20px; width: 100%; border: 0; background: #dceef7; }
.review-add input[type="submit"] { color: #fff; background: #2b426a; }

.ris { margin: 20px 0; padding: 20px 20px 5px 20px; color: #fff; border-radius: 20px; background: #2b426a; }
.ris p { color: #fff; }

.ris-logo { margin-top: 20px; width: 100%; }
.ris-logo img { width: 100px; max-width: 100%; }