:root {
    --bg-primary: #042e43;
    --bg-secondary: #084361;
    --bg-terciary: #1a91cd;
    --bg-footer: #0c638e;
    --fg-primary: #ff9e3e;
    --fg-secondary: #ffce9d;
}

body {
    background-color: var(--bg-primary);
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    color: unset;
    text-decoration: none;
}

span {
    margin-right: 5px;
}

footer {
    background-color: var(--bg-secondary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}

header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid #043544;
    position: fixed;
    top: 0;
    z-index: 3;
    padding: 1rem !important;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

header>ul {
    margin-bottom: 0;
    margin-top: 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    width: auto;
    flex: 0 0 auto;
}

header>ul[open] {
    display: flex;
}

main {
    padding-top: 96px;
}

label {
    padding-left: 20px;
}

.input {
    width: 100%;
    height: 56px;
    background-color: #d5d5d5;
    border-radius: 6px;
    border: none;
}

textarea.input {
    height: 100%;
    resize: none;
}

.title {
    padding: 65px 60px;
    color: white;
    background-color: var(--bg-secondary);
}

.logo {
    background-color: white;
    border-radius: 50px;
    padding: 0 33.1px 0 19px !important;
    color: black;
}

.l-image {
    object-fit: cover;
    transform: translate(0, -4px);
}

.carousel-caption {
    background-color: var(--bg-secondary);
    width: 50%;
    height: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 3rem;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
}

.carousel-image {
    width: 70%;
    display: block;
    float: right;
}

.carousel-indicators {
    margin-bottom: 0.5rem;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 10px !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.carousel-content {
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.carousel-buttons {
    display: flex;
    justify-content: space-around;
}

.section {
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s-alt {
    background-color: var(--bg-terciary);
}

.s-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 3rem;
}

.s-lists {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 3rem;
}

.s-image {
    aspect-ratio: 1/1;
    width: 172px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
}

.s-2-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.s-2-list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="checkbox"] {
    appearance: none;
    background: transparent !important;
    height: 18px;
    width: 18px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
}

.button {
    border-radius: 6px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 7rem;
    min-height: 3.5rem;
    text-decoration: none;
    padding-inline: 0;
    padding-block: 0;
    padding: 18px 24.1px;
}

.b-filled {
    background-color: #ff9e3e;
    color: black;
}

.b-tonal {
    background: rgba(255, 158, 62, 0.08);
}

.b-outlined {
    /* background-color: transparent; */
    background: rgba(255, 158, 62, 0.08);
    color: #ffce9d;
    border: solid #a6a19c 1px;
}

.b-text {
    background-color: transparent;
    color: #ffce9d;
}

.nav-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.menu-button {
    display: none;
    padding: 0;
    min-width: 64px;

    span {
        margin: 0;
        font-size: 40px;
    }
}

.jcarousel-wrapper {
    margin: 1.5rem auto;
    position: relative;
    width: 75%;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel ul li {
    width: 200px !important;
    aspect-ratio: 1/1;
    float: left;
    margin-inline: 1.5rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    border-radius: 6px;
    display: flex;
}

.jcarousel img {
    object-fit: cover;
    max-width: 100%;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #4e443c;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 1px #000;
    font:
        24px/27px Arial,
        sans-serif;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0 0 4px #f0efe7;
    -moz-box-shadow: 0 0 4px #f0efe7;
    box-shadow: 0 0 4px #f0efe7;
}

.jcarousel-control-prev {
    left: 15px;
}

.jcarousel-control-next {
    right: 15px;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #fff;
    color: #4e443c;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;

    -webkit-box-shadow: 0 0 2px #4e443c;
    -moz-box-shadow: 0 0 2px #4e443c;
    box-shadow: 0 0 2px #4e443c;
}

.jcarousel-pagination a.active {
    background: #4e443c;
    color: #fff;
    opacity: 1;

    -webkit-box-shadow: 0 0 2px #f0efe7;
    -moz-box-shadow: 0 0 2px #f0efe7;
    box-shadow: 0 0 2px #f0efe7;
}

.f-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-footer);
    width: 100%;
    padding: 60px 3rem;
}

.f-logo-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 6px;
    background-color: white;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
}

.f-contact .f-logo-wrapper img {
    object-fit: cover;
    transform: translate(0, -4px);
}

.f-contact-info {
    padding: 10px;
    border-inline: 1px solid #acacac;
    margin-inline: 3rem;

    a {
        color: white;
        text-decoration-line: underline;
    }
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-s {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.form-s-i {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form-s-i-t {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
}

.email-form {
    padding-inline: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-agree {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 11px;
}

p i {
    margin-left: 20px;
}

.info-section-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.info-section-title {
    margin-bottom: 3rem;
}

.info-section-details {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    height: 100%;

    p,
    h4,
    a {
        display: flex;
    }
}

details {
    display: flex;
    flex-direction: column;
}

.services-dropdown {
    position: fixed;
    transform: translateY(-15%);
    margin-left: 24px;
    list-style-type: none;
    padding-left: 0;

    li {
        display: flex;
        margin-top: 3px;
        background-color: #23526a;
        box-shadow: -1px 1px 1px 2px var(--bg-primary);

        a {
            padding: 0px 24.1px;
            min-height: 35px;
            min-width: 0;
        }
    }
}

summary {
    span {
        transform: translateY(10%);
    }
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 142px;
    justify-items: center;
    padding: 10px;
}

.services-items {
    width: fit-content;

    img {
        margin-bottom: 10px;
        height: 172px;
        width: 172px;
        object-fit: cover;
    }

    h3 {
        color: var(--fg-secondary);
    }
}

.email-label {
    padding-inline: 3rem;
}

.map_part {
    width: 600px;
    height: 450px;
}
