@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0px;
}

/* Nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

nav .menu {
    display: block;
}

nav .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav .menu ul li a {
    text-decoration: none;
    color: #1C1C1A;
    text-transform: uppercase;
    font-size: 16px;
    padding: 15px;
    font-weight: 600;
}

nav .menu ul li a:hover {
    color: #757575;
}

.menu-mobile {
    display: none;
}

@media (max-width: 1200px) {
  nav .menu ul li a {
    font-size: 12px;
    padding: 14px;
  }
}

@media (max-width: 1000px) {
    nav .menu-mobile {
        display: block;
    }
    nav .menu-mobile .close {
        display: none;
    }
    nav .menu-mobile {
        width: 25px;
        cursor: pointer;
    }
    nav .menu {
        display: none;
        position: absolute;
        background: white;
        width: 100%;
        left: 0;
        top: 91px;
    }
    nav .menu ul {
        flex-direction: column;
    }

    nav .menu ul li {
        padding: 15px;
        border-bottom: 1px solid #c4c4c4;
    }

    nav .menu ul li a {
        padding: 15px 0;
        font-size: 22px;
    }
}

/* Baner */
.baner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #122135;
}

.baner img {
    max-width: 100%;
}

/* Description */
.description {
    margin-top: 55px;
    margin-bottom: 55px;
    text-align: center;
}

.description h1 {
    color: rgb(30, 30, 30);
    font-size: 48px;
}

.description h2 {
    color: rgb(117, 117, 117);
    font-size: 36px;
    margin: 20px;
}

/* Form */
.form-box{
    background: rgb(245, 245, 245);
    padding: 30px;
    text-align: center;
}

.form-box h3 {
    color: rgb(30, 30, 30);
    font-size: 48px;
}

.form-box .subtitle {
    color: rgb(117, 117, 117);
    font-size: 22px;
    padding: 20px;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-success {
    font-size: 24px;
    margin: 40px 0;
}

.form-section {
    width: 400px;
    max-width: 100%;
}

.form {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.form label {
    color: rgb(28, 28, 26);
    font-size: 22px;
    font-weight: 500;
}

.form select,
.form input {
    border: 1px solid rgb(28, 28, 26);
    border-radius: 20px;
    font-size: 16px;
    line-height: 24px;
    padding: 20px;
    margin: 5px;
}

.checkbox-group {
    margin: 20px;
    text-align: left;
}

.checkbox-group label {
    display: flex;
    color: rgb(28, 28, 26);
    font-size: 16px;
    font-weight: 500;
}

.checkbox-group label a {
    color: rgb(117, 117, 117);
}

.checkbox-group label a:hover {
    color: rgb(53, 53, 53);
}

.checkbox-group div {
    margin-left: 10px;
}

.error {
    display: none;
    color: rgb(220, 50, 50);
    font-size: 22px;
    font-weight: 400;
}

.button-group button {
    font-size: 22px;
    line-height: 33px;
    background-color: rgb(235, 183, 151);
    border: none;
    border-radius: 40px;
    padding: 25px 60px;
    max-width: 245px;
    width: 245px;
    margin: 30px;
    transition: 500ms all;
    font-weight: 600;
}

.button-group button:hover {
    background: #F09E6C !important;
}

/* Logos */
.logos>div {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    padding: 40px;
}

/* Footer */
footer {
    background-color: rgb(245, 245, 245);
    padding: 30px 0;
    margin-top: 30px;
    font-size: 18px;
    line-height: 30px;
}

footer .menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

footer .menu ul li {
    padding: 15px 0;
    font-size: 16px;
}
footer .menu ul li a {
    text-decoration: none;
    color: #1C1C1A;
    font-size: 16px;
    padding: 15px 0;
    font-weight: 600;
}

footer .menu ul li a:hover {
    color: #757575;
}

footer a {
    color: rgb(117, 117, 117);
    text-decoration: none;
}

footer .phone a {
    text-decoration: underline;
}

footer .social {
    display: flex;
    margin: 20px 0;
}

footer .social a {
    background: rgb(28, 28, 26);
    border-radius: 10%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

footer .social a:hover {
    background: #1C1C1A;
}

footer .social svg{
    width: 25px;
    transition: 500ms all;
    fill: rgb(255, 255, 255);
}

footer section {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.hide {
    display: none;
}