/* BASE
================================================== */

:root {
    --bs-border-radius: 1rem;
}

body {
    font-size: 1.125rem;
    color: #697273;
    background: #fff;
}

body,
input,
button,
textarea {
    font-family: Inter, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a,
input,
textarea,
button {
    transition:
        color 0.3s,
        background-color 0.3s,
        border-color 0.3s,
        opacity 0.3s;
}

a {
    text-decoration: none;
    color: #00b0f0;
}

a:hover {
    color: #697273;
}

*,
*:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

/* LAYOUT
================================================== */

/*
    Top Bar
*/

.top-bar {
    display: flex;
    align-items: center;
    height: 2.5rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    font-size: 0.875rem;
    color: #fff;
    background: #5d6364;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    opacity: 0.8;
}

/*
	Header
*/

.header {
    display: flex;
    align-items: center;
    z-index: 1010;
    top: 0;
    right: 0;
    left: 0;
    height: 5rem;
}

.header > .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__logo {
    position: relative;
    height: 3rem;
}

.header__logo img {
    width: auto;
    height: 100%;
}

.header__logo img + img {
    position: absolute;
    top: 0;
    left: 0;
}

.header--default {
    position: sticky;
    background: #fff;
}

.header--shape {
    position: absolute;
    top: 2.5rem;
}

.header--shape:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 0.625rem;
    background: #fff;
}

.header--shape .header__bg {
    position: absolute;
    display: flex;
    overflow: hidden;
    z-index: -1;
    top: 0.625rem;
    right: 0;
    bottom: 0;
    width: 100%;
}

.header--shape .header__bg .container {
    position: relative;
}

.header--shape .header__bg .container:after {
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    height: 100%;
    width: 100vw;
    background: #fff;
}

.header--shape .header__bg svg {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: calc(100% - 15rem);
    height: 100%;
}

.header--shape:not(.header--sticky) .header__logo {
    margin-top: 0.625rem;
}

.header--shape .header__logo img + img {
    opacity: 0;
}

.header--shape.header--sticky {
    position: fixed;
    top: 0;
    background: #fff;
}

.header--sticky .header__bg {
    display: none;
}

.header--sticky .header__logo img:first-child:not(:last-child) {
    opacity: 0;
}

.header--sticky .header__logo img + img {
    opacity: 1;
}

/*
    Navigation
*/

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.25rem;
    height: 1rem;
    margin-left: 2rem;
    transition: all 0.3s;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
}

.main-menu {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.main-menu ul {
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 0;
    color: #697273;
}

.main-menu ul li:hover > a,
.main-menu ul li.current-menu-item > a {
    color: #00b0f0;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    top: 100%;
    left: -1.5rem;
    min-width: 15rem;
    text-align: left;
    background: #fff;
    opacity: 0;
    transition: all 0.3s;
}

.main-menu ul ul li a {
    padding: 0.5rem 1.5rem;
}

.main-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
}

/*
	Footer
*/

.footer {
    font-size: 1rem;
    font-weight: 700;
    color: #697273;
    background: #1e2a38;
}

.footer a {
    color: #697273;
}

.footer a:hover,
.footer li.active > a {
    color: #00b0f0;
}

.footer__contact {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__partner-logo {
    height: 2rem;
    width: auto;
}

.footer__logo {
    display: flex;
}

.footer__logo a {
    display: block;
    height: 2rem;
    margin: 0 auto;
}

.footer__logo a img {
    display: block;
    width: auto;
    height: 100%;
}

.copyright {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 400;
    background: #141c25;
}

/*
    Offcanvas
*/

.offcanvas {
    max-width: 80%;
    font-size: 1rem;
    background: #fff;
}

.offcanvas ul {
    padding: 0;
    list-style-type: none;
}

.offcanvas ul a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.25rem 0;
    color: #697273;
}

.offcanvas ul a i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
}

.offcanvas ul a i:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg) translate(1px, -6px);
    transform-origin: center center 0;
}

.offcanvas ul ul {
    margin-left: 1.5rem;
    font-size: 0.875rem;
}

.offcanvas-body > ul ul {
    display: none;
}

.offcanvas-body > ul li.active > ul {
    display: block;
}

.offcanvas ul li.active > a > i {
    transform: rotate(0);
}

.offcanvas-body > ul > li > a {
    text-transform: uppercase;
    font-weight: 700;
}

/* SECTIONS
================================================== */

.section {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.sc + .sc {
    padding-top: 0;
}

/*
    Hero
*/

.hero {
    display: flex;
    flex-direction: column;
    height: 45rem;
    padding-top: 7rem;
    padding-bottom: 2rem;
    color: #fff;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 120% auto;
}

/* MODULES
================================================== */

/*
    Carousels
*/

.swiper-pagination {
    position: absolute;
    bottom: 2rem;
}

.swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #fff;
    transition: all 0.3s;
}

/*
    Feature Box
*/

.feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
    color: #697273;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0 0 0 /20%);
    transition: all 0.3s;
}

.feature-box figure {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.feature-box figure:after {
    display: block;
    content: "";
    padding-bottom: 140%;
}

.feature-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    background: #00b0f0;
    border-radius: 100%;
    transition: all 0.3s;
}

.feature-box__title {
    font-size: 1.5rem;
    color: #1e2a38;
    transition: all 0.3s;
}

.feature-box:hover {
    color: #fff;
    background: #00b0f0;
}

.feature-box:hover .feature-box__icon {
    color: #00b0f0;
    background: #fff;
}

.feature-box:hover .feature-box__title {
    color: inherit;
}

.feature-box:hover .btn-primary {
    border-color: #fff;
    color: #fff;
    background-color: #00b0f0;
}

/*
    Product Box
*/

.product-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
    color: #000;
    background: #fff;
    border-radius: 1rem;
    transition: box-shadow 0.3s;
}

.product-box figure {
    position: relative;
    width: 100%;
}

.product-box figure:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.product-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-box__title {
    font-size: 1.5rem;
}

.product-box:hover {
    color: #000;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.product-box:hover .btn {
    color: #00b0f0;
    background-color: #fff;
}

/*
    Post Box
*/

.post-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
    padding: 0.5rem;
    text-align: center;
    color: #000;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.post-box figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 0.5rem;
}

.post-box figure:after {
    display: block;
    content: "";
    padding-bottom: 65%;
}

.post-box figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-box__title {
    font-size: 1.375rem;
}

.post-box:hover {
    color: #fff;
    background: #00b0f0;
}

.post-box:hover .btn {
    border-color: #fff;
    color: #fff;
    background-color: #00b0f0;
}

/*
    Icon Box
*/

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 3rem 2rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    transition: all 0.3s;
}

.icon-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    background: #00b0f0;
    border-radius: 100%;
    transition: all 0.3s;
}

.icon-box__icon img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.icon-box__title {
    font-size: 1.75rem;
    color: #000;
    transition: all 0.3s;
}

.icon-box--transparent-white {
    color: #fff;
    background: rgba(255 255 255 / 30%);
}

.icon-box--transparent-white .icon-box__icon {
    color: #00b0f0;
    background: #fff;
}

.icon-box:not(.icon-box--transparent-white) {
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.icon-box:not(.icon-box--transparent-white):hover {
    color: #fff;
    background: #00b0f0;
}

.icon-box:not(.icon-box--transparent-white):hover .icon-box__icon {
    color: #00b0f0;
    background: #fff;
}

.icon-box:not(.icon-box--transparent-white):hover .icon-box__title {
    color: #fff;
}

/*
    Testimonial
*/

.testimonial {
    position: relative;
    height: 100%;
    padding: 5rem 2rem 2rem;
    text-align: center;
    border-radius: 1rem;
}

.testimonial > i {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.75rem;
    line-height: 1;
}

.testimonial--transparent-white {
    color: #fff;
    background: rgba(255 255 255 / 30%);
}

blockquote {
    font-size: 1.125rem;
    font-style: italic;
}

blockquote cite {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.7;
}

/*
    Accordion
*/

.accordion-item {
    margin-bottom: 2rem;
    border: 0;
}

.accordion-body {
    padding: 2rem 0 1px;
    color: #697273;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
    background: #fff;
    box-shadow: 0 0 1rem rgba(0 0 0 / 20%);
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 1rem;
}

.accordion-button:after {
    display: none;
}

.accordion-button i {
    margin-left: auto;
    font-size: 1.5rem;
    color: #d3d3d3;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: #00b0f0;
}

.accordion-button:not(.collapsed) i {
    color: inherit;
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0 0 0 / 10%);
}
/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: 0.5rem 1.5rem;
    border-width: 2px;
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0.5rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    border-radius: 1rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.btn-primary,
.btn-primary:focus {
    border-color: #00b0f0;
    color: #fff;
    background: #00b0f0;
}

.btn-primary:hover,
.btn-primary:first-child:active,
.btn-primary:hover:active,
.btn-primary:focus:active {
    border-color: #00b0f0;
    color: #00b0f0;
    background-color: #fff;
}

.btn--outline-white,
.btn--outline-white:focus {
    border-color: #fff;
    color: #fff;
}

.btn--outline-white:hover,
.btn--outline-white:first-child:active,
.btn--outline-white:hover:active,
.btn--outline-white:focus:active {
    border-color: #fff;
    color: #00b0f0;
    background-color: #fff;
}

/*
	Form components
*/

.form-control,
.form-select {
    padding: 0.8125rem 1.25rem;
    border: 0;
    border-radius: 1.5rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus {
    border-color: #ededed;
    background: #e2f8ff;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-control--white,
.form-control--white:focus,
.form-select--white,
.form-select--white:focus {
    border-color: #fff;
    background: #fff;
}

.form-check {
    padding-left: 2.5em;
    color: #2c2429;
}

.form-check a {
    text-decoration: underline;
    color: #00b0f0;
}

.form-check a:hover {
    text-decoration: none;
}

.form-check .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-left: -2.5em;
    margin-top: 0;
    border-width: 0;
    background-color: #e2f8ff;
}

.form-check--white .form-check-input {
    background-color: #fff;
}

.form-check .form-check-input[type="checkbox"] {
    border-radius: 0;
}

.form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0 0 0 / 10%);
}

.form-check .form-check-input:checked {
    background-color: #00b0f0;
}

/*
    Lists
*/

.list-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    list-style-type: none;
}

.list-with-icon {
    padding: 0;
    list-style-type: none;
}

.list-with-icon li {
    position: relative;
    padding-left: 1.75em;
}

.list-with-icon li i {
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    line-height: inherit;
    text-align: center;
}

.list-with-icon--horizontal {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
}

/*
    Titles
*/

.section-subtitle {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 500;
}

.page-title {
    font-size: 2rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: #00b0f0;
}

/*
    Separator
*/

.page-separator {
    position: relative;
    bottom: -2.5rem;
    border-bottom: 4px solid #00b0f0;
}

.page-separator::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 2rem;
    height: 2rem;
    border-top: 4px solid #00b0f0;
    border-right: 4px solid #00b0f0;
    background: #fff;
    transform: rotate(-45deg) translate(-75%, 0);
}

/*
    Counter Box
*/

.counter-box {
    padding: 1rem;
    font-size: 1.275rem;
    text-align: center;
    color: #fff;
    background: #00b0f0;
    border-radius: 1rem;
}

.counter-box span {
    display: block;
    font-size: 2.5em;
    line-height: 1;
    font-weight: 900;
}

/*
    Info Box
*/

.info-box {
    padding: 1.5rem;
    color: #fff;
    background: #00b0f0;
    border-radius: 1rem;
}

.info-box__text {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.25;
}

.info-box__text strong {
    display: block;
    font-size: 1.25em;
    font-weight: 900;
}

.info-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.375rem;
    height: 3.375rem;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #00b0f0;
    background: #fff;
    border-radius: 100%;
}

/*
    Animated Text
*/

.animated-text {
    text-transform: uppercase;
    font-weight: 900;
    font-size: min(5.5vw, 6.25rem);
    color: #00b0f0;
}

/*
    Map
*/

.map iframe {
    display: block;
    width: 100%;
    height: 36rem;
    max-height: 60vh;
}

/*
    Panel
*/

.panel {
    padding: 1.5rem;
    background: #e2f8ff;
    border-radius: 1rem;
}

/*
    Pagination
*/
.page-link{
    color: #000;
}
.active > .page-link, .page-link.active{
    color: #fff;
    background-color: #00b0f0;
    border-color: #00b0f0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.page-link:hover{
    color: #000;
}
.page-link:focus{
    box-shadow: none;
}

/* GLOBALS
================================================== */

.bg-climates {
    background: url("../img/bg-blue-climate.jpg") center center;
    background-size: cover;
}

.bg-left-shape {
    background: url("../img/bg-circle-left.png") left center no-repeat;
    background-size: 45% auto;
}

.bg-right-shape {
    background: url("../img/bg-circle-right.png") right center no-repeat;
    background-size: 45% auto;
}

.bg--primary {
    background: #00b0f0;
}

.c--primary {
    color: #00b0f0;
}

.text--strong {
    font-size: 1.375rem;
    line-height: 1.25;
    font-weight: 900;
    color: #15233a;
}

.position-sticky {
    top: 6rem;
}

.miw--164 {
    min-width: 10.25rem;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {
}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
}

/*
	MD and down
*/

@media screen and (max-width: 991px) {
}

/*
	LG and down
*/

@media screen and (max-width: 1199px) {
}

/*
	MD and up
*/

@media screen and (min-width: 768px) {
    .hero {
        justify-content: center;
        min-height: 35rem;
        background-size: 80% auto;
    }

    .feature-box {
        padding: 0;
    }

    .feature-box figure {
        height: 100%;
    }

    .feature-box figure {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .feature-box .order-md-2 figure {
        border-radius: 0 1rem 1rem 0;
    }
}

/*
	LG and up
*/

@media screen and (min-width: 992px) {
}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {
    .footer__contact {
        padding-top: 2.5rem;
    }

    .container__inner {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .info-box {
        display: flex;
        align-items: center;
    }

    .info-box .btn {
        margin-left: auto;
    }

    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        display: flex;
        padding: 0 3rem;
        justify-content: flex-end;
        bottom: 3rem;
    }

    .panel {
        padding: 4rem;
    }
}

/*
	XXL and up
*/

@media screen and (min-width: 1400px) {
    .footer__partner-logo {
        height: auto;
        max-height: 7rem;
    }

    .section {
        padding-top: 9rem;
        padding-bottom: 7.5rem;
    }

    .page-separator {
        bottom: -7.5rem;
    }

    .main-menu {
        font-size: 1.125rem;
    }

    .hero {
        min-height: calc(100vh - 7rem);
    }

    .page-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 3.25rem;
    }

    .accordion-button {
        font-size: 1.625rem;
    }

    .accordion-button i {
        font-size: 3rem;
    }
}

/*
	XXXL and up
*/

@media screen and (min-width: 1800px) {
    .main-menu > ul {
        gap: 2.5rem;
    }

    .footer__contact {
        padding-left: 3rem;
        margin-bottom: 4rem;
        padding-right: 3rem;
    }

    .container {
        max-width: 1700px;
    }

    .page-title {
        font-size: 4.875rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.375rem;
    }

    .text--strong {
        font-size: 1.75rem;
    }

    .counter-box {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 1.375rem;
    }

    .info-box {
        font-size: 1.375rem;
    }

    .feature-box__title {
        font-size: 2.125rem;
    }

    .icon-box__title {
        font-size: 2rem;
    }

    .form-control,
    .form-select {
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 1.375rem;
        border-radius: 2rem;
    }

    .btn {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .btn-lg {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
