/***************************
// Font Imports
***************************/
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Roboto/roboto-v47-latin-regular.woff2') format('woff2');
}

/* montserrat-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Montserrat/montserrat-v29-latin-300.woff2') format('woff2');
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat/montserrat-v29-latin-regular.woff2') format('woff2');
}

/* montserrat-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Montserrat/montserrat-v29-latin-500.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Montserrat/montserrat-v29-latin-600.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Montserrat/montserrat-v29-latin-700.woff2') format('woff2');
}

/* montserrat-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Montserrat/montserrat-v29-latin-800.woff2') format('woff2');
}

/***************************
// End Font Imports
***************************/

/***************************
// Default Styles
***************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-montserrat: 'Montserrat', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-blue: #023A4F;
}

body {
    letter-spacing: 0;
    font-family: var(--font-montserrat);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.font-size-48 {
    font-size: 48px;
}

.font-size-40 {
    font-size: 40px;
}

.font-size-32 {
    font-size: 32px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-20 {
    font-size: 20px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-10 {
    font-size: 10px;
}

/***************************
// End Default Styles
***************************/

/***************************
// Buttons
***************************/

.btn.btn-dark-blue {
    background: var(--color-dark-blue);
    box-shadow: 0px 4px 4px 0px #0000001A;
    /*height: 55px;*/
    width: auto;
    border-radius: 3px;
    padding-top: 15px;
    padding-right: 22px;
    padding-bottom: 15px;
    padding-left: 22px;
    gap: 10px;
    font-weight: 500;
    /*line-height: 120%;*/
    color: var(--color-white);
}

.btn.btn-dark-blue:hover {
    background: #006287;
    box-shadow: 0px 4px 20px 0px #00000033;

}

.btn.btn-light-blue {
    background: #0398A3;
    box-shadow: 0px 4px 4px 0px #0000001A;
    /*height: 55px;*/
    border-radius: 3px;
    padding-top: 15px;
    padding-right: 22px;
    padding-bottom: 15px;
    padding-left: 22px;
    gap: 10px;
    font-weight: 500;
    /*line-height: 120%;*/
    color: var(--color-white);
}

.btn.btn-light-blue:hover {
    background: #02848d;
}

.btn.btn-dark-blue-transparent {
    /*height: 55px;*/
    border-radius: 3px;
    border-width: 2px;
    padding-top: 15px;
    padding-right: 22px;
    padding-bottom: 15px;
    padding-left: 22px;
    gap: 10px;
    color: var(--color-white);
    border: 2px solid var(--color-dark-blue);
    box-shadow: 0px 4px 4px 0px #0000001A;
    color: var(--color-dark-blue);
    font-weight: 600;
    line-height: 120%;
}

.btn.btn-dark-blue-transparent:hover {
    background: #001E29;
    color: var(--color-white);
}

.btn.btn-blue {
    /*height: 48px;*/
    border-radius: 3px;
    gap: 10px;
    padding-top: 15px;
    padding-right: 22px;
    padding-bottom: 15px;
    padding-left: 22px;
    background: #017BA8;
    box-shadow: 0px 4px 4px 0px #0000001A;
    font-weight: 400;
    line-height: 120%;
    color: var(--color-white);
}

.btn.btn-blue:hover {
    background: #01668b;
}

/***************************
// End Buttons
***************************/

/***************************
// Navbar
***************************/
.navbar {
    padding: 0;
}
.navbar-nav .nav-link {
    display: inline; /* vagy inline-block, ha szükséges */
    padding: 0;       /* vagy csak minimális padding pl. padding: 0 5px; */
}
.navbar-nav .nav-item {
    padding: 0;
    margin: 0;
}

.navbar-custom {
    background-color: #001E29;
    box-shadow: 0px 4px 4px 0px #00000014;
    width: 100%;
    z-index: 10;
    height: 116px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    transition: none !important;
}

.navbar-custom.scrolled {
    background-color: #2f2f2f;
}

.navbar-custom .nav-link {
    font-weight: 500;
    line-height: 100%;
    color: var(--color-white);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
}

/* MEGAMENU */

.dropdown-toggle::after {
    display: none;
}

.megamenu-box {
    position: fixed !important;
    top: 115px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 1320px;
    background: var(--color-white);
    z-index: 9999;
}

.megamenu-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
    text-decoration: none;
    color: #001E29;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.megamenu-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.megamenu-item span {
    display: block;
    margin-top: 5px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    color: var(--color-dark-blue);
}

.megamenu-item.active span {
    color: var(--color-white);
}

.megamenu-item:hover {
    background-color: #e0f0f5;
}

.megamenu-item.active {
    background-color: #017BA8;
    color: var(--color-white);
}

.megamenu-item.active img {
    filter: brightness(0) invert(1);
}

/***************************
// End Navbar
***************************/

/***************************
// Hero Section
***************************/
.hero {
    position: relative;
    background: url("../assets/images/hero-bg.webp") center center / cover no-repeat;
    height: 500px;
    color: #FCFCFC;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 30, 41, 0.62), rgba(0, 30, 41, 0.62));
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero .hero-content h2 {
    font-weight: 700;
    line-height: 150%;
}

.hero .hero-content h4 {
    font-weight: 500;
    line-height: 120%;
}

.hero-little {
    position: relative;
    width: 100%;
    height: 265px;
    background: url("../images/hero-bg.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-little::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 30, 41, 0.62), rgba(0, 30, 41, 0.62));
    z-index: 1;
}

.hero-little h2 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    color: #FCFCFC;
}

/***************************
// End Hero Section
***************************/

/***************************
// Features Section
***************************/
.features {
    color: #001E29;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.features .item{
    max-width: 302px;
}

.features img {
    height: 84px;
    width: 84px;
}

.features h5 {
    font-weight: 600;
    line-height: 100%;
}

.feature p {
    font-weight: 500;
    line-height: 100%;
}

/***************************
// End Features Section
***************************/

/***************************
// Services Products Section
***************************/
.services-products {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black);
}

.services-products h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.services-products h4,
.services-products p,
.services-products .card-body p {
    font-weight: 400;
    line-height: 150%;
}

.services-products h4 {
    font-weight: 600;
}

.services-products .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    max-width: 378px;
}

.services-products .card-body {
    padding: 1rem 0;
    width: 100%;
}

.services-products .card-body h3 {
    font-weight: 700;
    line-height: 130%;
}

.services-products .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-products .card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-card {
    flex: 0 0 30%;
    max-width: 30%;
}

/***************************
// End Services Products Section
***************************/

/***************************
// Why choose Section
***************************/
.why-choose {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black);
}

.why-choose h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.why-choose h5 {
    font-weight: 700;
    line-height: 140%;
}

.why-choose p {
    font-weight: 400;
    line-height: 150%;
}

.why-choose img.index {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 531px;
}

/***************************
// End Why choose Section
***************************/

/***************************
// Perfect Execution Section
***************************/

.perfect-execution {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black);
}

.perfect-execution h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.perfect-execution p {
    font-weight: 400;
    line-height: 150%;
}

.perfect-execution p strong {
    font-weight: 500;
}

.perfect-execution img.index {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 600px;
}

/***************************
// End Perfect Execution Section
***************************/

/****************************
// Reviews Section
*****************************/
.reviews {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-black);
}

.reviews h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.reviews p {
    font-weight: 400;
    line-height: 150%;
    color: var(--color-black);
}

.reviews img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/****************************
// End Reviews Section
*****************************/

/***************************
// Cta Section
***************************/
.cta {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    background: url(../images/cta-bg.webp) center center / cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 1;
}

.cta>.container {
    position: relative;
    z-index: 2;
}

.cta h1 {
    font-weight: 700;
    line-height: 120%;
}

.cta h5 {
    font-weight: 400;
    line-height: 150%;
}

/***************************
// End Cta Section
***************************/

/***************************
// Partner Section
***************************/
.partner {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.partner h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.partner p {
    font-weight: 400;
    line-height: 150%;
}

.partner p strong {
    font-weight: 500;
}

.partner img.index {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 600px;
}

/***************************
// End Partner Section
***************************/

/***************************
// News Section
***************************/
.news-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.news-section h1 {
    font-weight: 700;
    line-height: 120%;
}

.news-section p {
    font-weight: 400;
    line-height: 150%;
}

.news-section p strong {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
}

.news-section img.index {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 505px;
}

/***************************
// End News Section
***************************/

/***************************
// FAQ Section
***************************/
.faq {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.faq h4 {
    font-weight: 600;
    line-height: 150%;
}

.faq h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.faq p {
    font-weight: 400;
    line-height: 150%;
}

.faq-item {
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: 
        max-height 0.5s ease,
        opacity 0.4s ease,
        padding-top 0.4s ease;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-black);
    margin-left: 40px;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding-top: 10px;
}


.faq-question .icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

/***************************
// End FAQ Section
***************************/

/***************************
// Blog Section
***************************/
.blog {
    padding-top: 3rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.blog .index {
	width: 100%;
	object-fit: cover;
	max-width: 217px;
	height: 250px;
}

.blog h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.blog p:not(.lead):not(.lead p) {
	font-weight: 400;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}


.blog h4 {
    font-weight: 700;
    line-height: 140%;
    max-width: 325px;
}

/***************************
// End Blog Section
***************************/

/***************************
// Newsletter Section
***************************/
.newsletter {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--color-dark-blue);
    color: #FCFCFC;
}

.newsletter h1 {
    font-weight: 700;
    line-height: 120%;
}

.newsletter p {
    font-weight: 400;
    line-height: 150%;
}

.newsletter img.index {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.newsletter-form .form-control {
    width: 100%;
    height: 48px;
    border-width: 1px;
    border-radius: 3px;
    padding: 12px;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-black);
    font-weight: 400;
    line-height: 150%;
}

.newsletter-form .form-control::placeholder {
    color: var(--color-black);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: 2px solid #017BA8;
}

.newsletter-form .form-check-input {
    margin-top: 0;
    background: var(--color-white);
    border: 0.2px solid var(--color-black);
    width: 22px;
    height: 22px;
    border-width: 0.2px;
    border-radius: 1px;
    box-shadow: 0px 0px 4px 0px #00000033;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .form-check-input:checked {
    border-color: var(--color-white);
    position: relative;
}

.newsletter-form .form-check-input:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #017BA8;
    display: block;
}

.newsletter-form .form-check-label {
    font-weight: 400;
    line-height: 150%;
}

/***************************
// End Newsletter Section
***************************/

/***************************
// Footer Section
***************************/
.site-footer {
    padding: 3rem 0;
    background-color: #001E29;
    color: var(--color-white);
}

.site-footer a {
    text-decoration: none;
}

.site-footer h6 {
    font-weight: 600;
    line-height: 1.5;
}

.site-footer p {
    font-weight: 400;
    line-height: 1.5;
}

.site-footer p strong {
    font-weight: 700;
    line-height: 1;
}

.site-footer ul li {
    padding: 5px 0;
    font-weight: 500;
}

.footer-bottom .row a:hover,
.site-footer ul li a:hover {
    color: #017BA8;
    text-decoration: underline;
}



.social-icons a {
    color: #FCFCFC;
    margin-right: 10px;
}

.footer-bottom {
    border-color: #ccc;
}


/***************************
// End Footer Section
***************************/

/***************************
// Services In Section
***************************/
.services-in {
    padding-top: 6rem;
    padding-bottom: 3rem;
    color: var(--color-black);
}

.services-in h3 {
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 1rem;
}

.services-in p {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.services-in p strong {
    font-weight: 600;
}

.slider-outside {
    position: relative;
    margin-left: calc((100% - 1300px) / 2);
    overflow: visible;
}

.splide img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border: 4px solid var(--color-white);
    box-shadow: 10px 10px 50px 3px #023A4F33;
    transition: transform 0.3s ease;
}



.splide__slide,.splide #lightgallery {
    display: flex;
    align-items: center;
}

.splide__track {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.custom-arrows {
    display: flex;
    justify-content: left;
    gap: 3rem;
}

.custom-arrows button {
    background: var(--color-white);
    border: 2px solid var(--color-dark-blue);
    color: var(--color-dark-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: normal;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    display: block;
}

.custom-arrows button:hover {
    background: var(--color-dark-blue);
    color: var(--color-white);
}

.custom-arrows button:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: default;
    background: #f9f9f9;
}

/***************************
// End Services In Section
***************************/

/***************************
// Request Section
***************************/
.request {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.request h2 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.request p {
    font-family: var(--font-roboto);
    font-weight: 400;
    line-height: 150%;
}

.request .form-control {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 51px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
    background-size: 20px 20px;
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.request .form-control::placeholder,
.request textarea::placeholder {
    color: var(--color-black);
}

.request .form-group {
    margin-bottom: 1.5rem;
}

.request .form-control-textarea {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 163px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
}

.upload-placeholder {
    pointer-events: none;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.upload-placeholder strong {
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    font-size: 12px;
    vertical-align: middle;
    text-transform: uppercase;
}

.upload-box {
    position: relative;
    border: 1px solid #7A7A7A;
    border-radius: 5px;
    padding: 40px 20px;
    background: #F8F8F8;
    text-align: center;
    color: #7A7A7A;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.upload-box input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.upload-box.drag-over {
    background-color: #e0f7ff;
    border-color: #00BFFF;
}

.request .form-check-input {
    box-shadow: 0px 0px 4px 0px #00000033;
    border: 0.2px solid var(--color-black);
    background: var(--color-white);
    width: 22px;
    height: 22px;
    border-radius: 1px;
    border-width: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.request .form-check-input:checked {
    border-color: #017BA8;
    position: relative;
}

.request .form-check-input:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #017BA8;
    display: block;
}

.request .form-check-label {
    font-weight: 400;
    line-height: 150%;
}

.image-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}

.image-grid img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/***************************
// End Request Section
***************************/

/***************************
// About Us Section
***************************/

.about-us {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.about-us h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin-bottom: 2rem;
}

.about-us p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-us p strong,
.about-us p b {
    font-weight: 500;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.about-flex>div {
    flex: 1 1 60%;
}

.about-flex img {
    flex: 1 1 35%;
    max-width: 368px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/***************************
// End About Us Section
***************************/

/***************************
// Contact Section
***************************/
.contact {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.contact h3 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.contact p {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.contact p strong {
    font-weight: 600;
}

.contact .form-control {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 51px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
    background-size: 20px 20px;
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.contact .form-control::placeholder,
.contact textarea::placeholder {
    color: var(--color-black);
}

.contact .form-group {
    margin-bottom: 1rem;
}

.contact .form-control-textarea {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 163px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
}

.contact .form-check-input {
    box-shadow: 0px 0px 4px 0px #00000033;
    border: 0.2px solid var(--color-black);
    background: var(--color-white);
    width: 22px;
    height: 22px;
    border-radius: 1px;
    border-width: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.contact .form-check-input:checked {
    border-color: #017BA8;
    position: relative;
}

.contact .form-check-input:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #017BA8;
    display: block;
}

.contact .form-check-label {
    font-weight: 400;
    line-height: 150%;
}

/* Simple Banner */

.simple-banner {
    background-color: #006287;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.simple-banner h2 {
    color: var(--color-white);
    font-weight: 700;
    line-height: 120%;
}

/* Team Section */

.team-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.team-card {
    background: #F8F8F8;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 400px;
}

.team-card .position {
    font-weight: 500;
    font-style: italic;
    line-height: 150%;
}

.team-card .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 0.5rem;
}

.team-card p {
    margin: 0.5rem 0;
    font-weight: 400;
    font-style: italic;
    line-height: 150%;
}

.team-card a {
    font-weight: 400;
    font-style: italic;
    line-height: 150%;
    color: #0398A3;
}

.team-card .icons {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.icons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.icon-box {
    background-color: #017BA8;
    width: 81px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.map {
    margin-bottom: -10px;
}

.map iframe {
    width: 100%;
    height: 412px;
    border: none;
}

/***************************
// End Contact Section
***************************/

/***************************
// Blog List Section
***************************/
.blog-list {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.blog-list p {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.blog-list .index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list .card {
    max-width: 1230px;
    width: 100%;
}

.blog-list .card h4 {
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 1rem;
}

.blog-list .card div.context p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-list .card p.date {
    font-weight: 300;
    font-style: italic;
}

.pagination-wrapper {
    text-align: right;
    margin-top: 4rem;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

.pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li a:not(.arrow) {
    font-weight: 600;
    line-height: 1;
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    transition: all 0.2s ease;
}

.pagination li a.arrow img {
    width: 20px;
    height: 20px;
    display: block;
}


.pagination li a:not(.arrow):hover {
    color: #017BA8;
}

.pagination li a.active {
    font-weight: 800;
    color: #017BA8;
}

/***************************
// End Blog List Section
***************************/

/***************************
// Blog In Section
***************************/
.blog-in {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.blog-in .breadcrumb a {
    font-weight: 500;
    font-style: italic;
    line-height: 150%;
    color: #017BA8;
}

.blog-in .context h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.blog-in .context p {
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.blog-in .context span.date {
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 1rem;
}

.blog-in .context ul {
    list-style: none;
}

.blog-in .context ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.blog-in .context ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    top: 0;
    font-size: 18px;
}

.blog-in .context img:not(.image-grid img) {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/***************************
// Blog In Section
***************************/

/***************************
// Prices Section
***************************/
.prices {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: var(--color-black);
}

.prices h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.prices p {
    font-family: var(--font-roboto);
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1rem;
}

.prices p strong {
    font-weight: 600;
}

.prices .form-control {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 51px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
    background-size: 20px 20px;
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.prices .form-control::placeholder,
.prices textarea::placeholder {
    color: var(--color-black);
}

.prices .form-group {
    margin-bottom: 1rem;
}

.prices .form-check {
    display: flex;
    align-items: center;
}

.prices .form-control-textarea {
    border: 1px solid var(--color-black);
    width: 100%;
    height: 152px;
    border-radius: 5px;
    border-width: 0.5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
}

.prices .form-check-input {
    box-shadow: 0px 0px 4px 0px #00000033;
    border: 0.2px solid var(--color-black);
    background: var(--color-white);
    width: 22px;
    height: 22px;
    border-radius: 1px;
    border-width: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.prices .form-check-input:checked {
    border-color: #017BA8;
    position: relative;
}

.prices .form-check-input:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #017BA8;
    display: block;
}

.prices .form-check-label {
    font-weight: 400;
    line-height: 150%;
    margin-left: 10px;
}

/*Price  List*/
.price-lists {
    padding-bottom: 6rem;
    color: var(--color-black);
}

.price-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}

.price-item {
    display: flex;
    flex: 0 1 30%;
}

.price-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.1s ease;
}

.price-item a:hover {
    color: #017BA8;
}

.price-item img {
    width: 126px;
    height: 126px;
}

.price-item .details:first-of-type div:first-of-type,
.price-item .details:first-of-type span:first-of-type {
    font-weight: 500;
    line-height: 150%;
}

.price-lists h1 {
    font-weight: 700;
    line-height: 120%;
    color: var(--color-dark-blue);
}

.addedToCart_layer{
    display: none;
}

.hero-bg {
	width: 100%;
	height: 100%;
	position: relative;
}
.hero-bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rotate-left{
    transform: rotate(180deg);
}

.popup-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100000;
	transform: translate(-50%,-50%);
	background: white;
	padding: 2em;
	box-shadow: 3px 3px 16px 2px black;
}
.file-error{
    color: red;
}

/***************************
// End Prices Section
***************************/

.language-menu{
    display: flex;
    gap: 1em;
    margin-left: .5em;
    height: 100%;
}
.language-menu img{
    width: 100%;
    height: 100%;
    vertical-align: baseline;
}
.language-menu a {
	display: inline-block;
	width: 33px;
	height: 33px;
	border-radius: 100%;
	overflow: hidden;
}
.language-menu a.current{
    border: 1px solid white;
}