* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 50px 0;
}

.mobile {
    display: none !important;
}

.df {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    cursor: pointer;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-family: 'TT Firs Neue Trial';
    font-size: 16px;
    font-weight: 400;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    text-decoration: none;
    margin-bottom: 5px;
}
.btn:hover {
    color: #000;
    background-color: #fff;
}
.btn:hover svg {
    fill: #000;
}

.btn svg {
    padding-left: 5px;
    width: 25px;
}

.btn.btn-c-black {
    border-color: #000;
    color: #000000;
}
.btn.btn-c-black:hover {
    background-color: #000;
    color: #fff;
}
.btn.btn-c-black:hover svg {
    fill: #fff;
}

.btn.btn-black {
    border-color: #000;
    background: #000;
}
.btn.btn-black:hover {
    color: #000;
    background-color: transparent;
}
.btn.btn-black:hover svg {
    fill: #000;
}
.btn.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.btn.btn-white:hover {
    color: #fff;
    background-color: transparent;
}
.btn.btn-white:hover svg {
    fill: #fff;
}
.swiper-button-prev, .swiper-button-next {
    background: #051833;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 12px;
}
.swiper-button-prev {
    left: 0px;
}
.swiper-button-next {
    right: 0px;
}
.swiper-button-prev:after, .swiper-button-next:after {
    display: none;
}

.title {
    color: #000;
    font-family: 'TT Firs Neue Trial';
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
}

.text {
    color: #000;
    font-family: 'TT Firs Neue Trial';
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.text span {
    font-weight: 500;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 0;
    transition: .3s;
}

header.active {
    background: rgba(0, 0, 0, 0.8);
}

.header-list {
    list-style-type: none;
    gap: 30px;
}

/* ===== Select Box ===== */
.sel {
    display: inline-block;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    min-width: 70px
}

.sel::before {
    position: absolute;
    content: '';
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding: 3px;
    color: #FFF;
    right: 0;
    top: calc(50% - 5px);
}

.sel.active::before {
    transform: rotate(225deg);
}

.sel__placeholder {
    display: block;
    color: #fff;
    font-family: 'TT Firs Neue Trial';
    padding: 0.2em 0.5em;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible;
}

.sel.active .sel__placeholder {
    visibility: hidden;
}

.sel__placeholder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.2em 0.5em;
    content: attr(data-placeholder);
    visibility: hidden;
}

.sel.active .sel__placeholder::before {
    visibility: visible;
}

.sel__box {
    position: absolute;
    top: calc(100% + 4px);
    left: -4px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: calc(100% + 8px);
    box-sizing: border-box;
}

.sel.active .sel__box {
    display: block;
    animation: fadeInUp 500ms;
}

.sel__box__options {
    display: list-item;
    font-family: 'TT Firs Neue Trial';
    color: #000;
    padding: 0.5em 1em;
    user-select: none;
}

.sel__box__options.selected::after {
    display: inline;
}

.sel__box__options:hover {
    background-color: #ebedef;
}

/* ----- Select Box Black Panther ----- */

.sel--black-panther {
    z-index: 3;
}

/* ----- Select Box Superman ----- */
.sel--superman {
    /*   display: none; */
    z-index: 2;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

header a {
    text-decoration: none;
    color: #fff;
    font-family: 'TT Firs Neue Trial';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: .3s;
}

header .header-link {
    position: relative;
}

header .header-link::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: -5px;
    height: 2px;
    background-color: #FFCF2D;
    width: 0;
    transition: .3s;
    margin: 0 auto;
}

header .header-link:hover.header-link::before {
    width: 70%;
}

.mobile-menu {
    display: none;
}

.menu-active {
    overflow: hidden;
}

#menu__toggle {
    position: absolute;
    opacity: 0;
}

#menu__toggle:checked~.menu__btn>span {
    transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    transform: rotate(0);
}

#menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
    visibility: visible;
    left: 0;
}

#menu__toggle:checked~.menu__box li {
    transform: translateX(0);
}

.menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 40px;
    right: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #B2B1AA;
    transition-duration: .25s;
}

.menu__btn>span::before {
    content: '';
    top: -8px;
}

.menu__btn>span::after {
    content: '';
    top: 8px;
}

.menu__box {
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 120px 20px;
    list-style: none;
    background: rgba(0, 0, 0, 0.95);
    transition-duration: .25s;
}

.menu__box li {
    transform: translateX(-150px);
    transition: .8s;
}

.menu__item {
    color: #FFF;
    font-family: 'TT Firs Neue Trial';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 0;
    line-height: normal;
}

.menu__item:hover {
    background-color: #CFD8DC;
}

main {
    height: 100vh;
    background: url("../img/main-bg.png") center no-repeat;
    background-size: cover;
    position: relative;
}

.main-inner {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.main-title {
    font-family: Playfair Display;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.main-subtitle {
    color: #FFF;
    font-family: 'TT Firs Neue Trial';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 0;
}

.main-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
}

.info-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    padding: 10px 30px 0;
}

.info-img {
    width: 50%;
}

.info-content {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.info-content p {
    padding-bottom: 40px;
}

.form {
    padding: 100px 0;
}

.form-inner {
    width: 30%;
}

.form .df {
    position: relative;
}

.form .title br {
    display: none;
}

.form-item {
    position: relative;
}

.form-img {
    position: absolute;
    right: 0;
    height: auto;
    width: 60%;
}

.form-item input {
    width: 100%;
    padding: 10px 0;
    color: #181D24;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #181D24;
    outline: none;
    background: transparent;
    font-family: 'TT Firs Neue Trial';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.form-item label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    color: #181D24;
    pointer-events: none;
    transition: .3s;
    font-family: 'TT Firs Neue Trial';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.form-item input:focus~label,
.form-item input:valid~label {
    top: -20px;
    left: 0;
    color: #4F4F4F;
    font-size: 12px;
    opacity: 0.5;
}

.pictures-inner {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.pictures-inner img {
    width: 100%;
}

footer {
    color: #FFFFFF;
    background: #1B1B1A;
}

.footer-inner {
    gap: 50px;
    padding: 60px 0;
}

.footer-content {
    width: 100%;
    max-width: 70%;
}

.footer-content-inner {
    margin: 20px 0;
    border-top: 2px solid #403F3C;
    border-bottom: 2px solid #403F3C;
}

.footer-content-inner>div {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.footer-content .phones {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.footer-content .phones p {
    color: #6F6D66;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-btnn {
    margin-top: 30px;
}

.footer-content .phones .phone-link {
    color: #B2B1AA;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.footer-content h4 {
    color: #FFF;
    font-family: Playfair Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: right;
}

.footer-content .main-subtitle {
    font-size: 10px;
    font-weight: 300;
    text-align: right;
}

.footer-title {
    color: #6F6D66;
    font-family: 'TT Firs Neue Trial';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-link {
    color: #B2B1AA;
    font-family: 'TT Firs Neue Trial';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.footer-link:last-child {
    margin-bottom: 20px !important;
}

.buttons {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}

.buttons button,
.buttons a {
    cursor: pointer;
    padding: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #4C4B47;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.buttons button svg {
    width: 30px;
}

.buttons .scroll-up {
    width: 70px;
    height: 70px;
}

.buttons .social {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom {
    padding: 30px 0;
    background: #131311;
}

.footer-bottom p {
    color: #6F6D66;
    font-family: 'TT Firs Neue Trial';
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 10;
}

.modal-inner {
    background-color: #051833;
    gap: 20px;
    justify-content: left;
    position: relative;
    margin: 0 30px;
}

.modal-content {
    padding: 40px 20px;
}

.modal-title {
    color: #FFF;
    font-family: 'TT Firs Neue Trial';
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    padding-bottom: 20px;
}

.modal-text {
    color: #FFF;
    font-family: 'TT Firs Neue Trial';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    width: 300px;
    padding-bottom: 20px;
    margin: 0 auto;
}
.modal .form-item input {
    border-color: #fff;
    color: #fff;
}
.modal .form-item label {
    color: #fff;
}
.modal-close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: #000;
    height: 20px;
    width: 20px;
    font-size: 15px;
    background-color: #fff;
    top: 10px;
    border-radius: 2px;
    line-height: 0;
    cursor: pointer;
    right: 10px;
}
.modal-success {
    background-image: url('../img/success.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.modal-success .modal-content {
    text-align: center;
}
