/***** Changes all elements to border-box sizing *****/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 0.8rem;
    /* height: 100%; */
}

/***** Font classes *****/
.noto-sans-regular {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #d8d8d8;
}

.noto-sans-light {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #d8d8d8;
}

.noto-sans-semi-bold {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #d8d8d8;
}

.noto-sans-black {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #d8d8d8;
}

/***** BG Fade animation keyframes *****/
@keyframes bg-image-slider {
    0% {
        background-image: url("../images/bg-1.jpg");
    }
    25% {
        background-image: url("../images/bg-2.jpg");
    }
    50% {
        background-image: url("../images/bg-3.jpg");
    }
    75% {
        background-image: url("../images/bg-4.jpg");
    }
    100% {
        background-image: url("../images/bg-1.jpg");
    }
}

/***** The background of the page *****/
.bg-slider-container {
    height: 100%;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    /* z-index: -2; */
    background-image: url("../images/bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bg-image-slider 20s ease-in-out infinite;
}

/***** The overlay on top of the background *****/
.bg-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/***** The main container *****/
.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    /* padding: 0 20px; */
}

.main-content {
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* gap: 10px; */
    height: 100%;
    width: 100%;
    /* position: sticky; */
    /* top: 0; */
    /* left: 0; */
    /* z-index: 2; */
}

/***** The main header *****/
.main-header {
    width: 60%;
    margin-top: 0px;
    /* margin: 0 auto; */
    padding: 20px 40px;
    position: sticky;
    top: 0px;
    /* left: 0px; */
    color: white;
    /* z-index: 2; */
}

.main-header ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.btn-nav {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    /* background-color: rgba(255, 255, 255, 0.2); */
    transition: all 0.3s ease-in-out;
}

.btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: black;
    cursor: pointer;
}

/***** Main Title *****/
.sub-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.main-logo {
    height: 120px;
    display: flex;
    justify-self: center;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.main-text {
    width: 60%;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.main-text span {
    font-weight: 700;
}

.main-sections {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    gap: 10px;
    font-size: 1rem;
    width: 80%;
    max-width: 600px;
}

.service-list-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.service-list-item:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    cursor: pointer;
}

.service-list-item a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
}

/***** Contact Form *****/
.contact-form {
    width: 100%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    /* margin: 0 10px; */
    border-radius: 20px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

.contact-form label {
    font-size: 0.7rem;
    color: white;
    width: 100%;
}

.contact-required {
    color: crimson;
}

.form-title {
    font-size: 1.5rem;
    margin-top: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.form-section-radio {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-input-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
}

.form-input-container-radio {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 3px;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: 0.2s;
    font: inherit;
}
.form-input:hover,
.form-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.form-select-container {
    margin: 10px auto;
}

.btn-submit {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    margin-left: auto;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.btn-submit:active {
    transform: translate(0, 2px) scale(1.05);
}

.submit-btn-icon {
    margin-right: 10px;
    font-size: 1rem;
}

/***** Footer *****/
.footer {
    width: 100vw;
    /* height: auto; */
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    /* margin-top: 60px; */
    /* position: absolute; */
    /* bottom: 0; */
}

.footer-text {
    font-size: 0.8rem;
    color: white;
    text-align: center;
}

.footer-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 2rem;
    /* margin-top: 50px; */
}

.footer-socials i {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.footer-socials i:hover {
    color: #4caf50;
    transform: scale(1.2);
}

.footer-socials i:active {
    transform: translate(0, 2px) scale(1.2);
}

/***** Media Queries *****/
@media screen and (max-width: 768px) {
    .main-sections,
    .main-header ul {
        flex-direction: column;
    }

    .main-header {
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.8);
    }
}
