@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat+Alternates:wght@500&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Dela+Gothic+One&family=Montserrat+Alternates:wght@500&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #DEDEDE;
}

body {
    background-color: #040404;
}
header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
}
.logo{
    width: auto;
}
header ul {
    display: flex;
    gap: 75px;
    align-items: center;
    list-style: none;
}

header li {
    transition: 0.2s;
    text-align: center;
}

header a {
    text-decoration: none;
    text-transform: uppercase;
    color: #DEDEDE;
    font-size: 14px;
}

#burger {
    background: none;
    border: none;
    margin-right: 15px;

}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 30px;
    z-index: 50;
    cursor: pointer;
}

.burger span {
    height: 3px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 5px;
}

footer {
    margin: 2% 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.img-footer {
    width: 30%;
}

.img-footer img {
    width: 100%;
}

.link-cntr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.links-cntr1,
.links-cntr2 {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

footer a,
footer p {
    color: #a7a7a7;
}

.icons-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

header li:hover {
    transform: scale(1.05);
}

.link-cntr a {
    transition: 0.2s;
}

.link-cntr a:hover {
    transform: scale(1.05);
}

.appoiment-form h1 {
    font-family: 'Cormorant Garamond';
    font-weight: 300;
    font-size: 64px;
    text-transform: uppercase;
    color: #DEDEDE;
}

.appoiment-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.appoiment-form form::after {
    content: url(Vector.svg);
    position: absolute;
    z-index: -1;
    right: 0;
    transform: rotate(-180deg);
    object-fit: cover;
    height: 600px;
    overflow: hidden;
}

input[type=text],
input[type=email] {
    border: none;
    outline: none;
    border-bottom: 3px solid #4e4e4e;
    width: 500px;
    color: #4e4e4e;
    font-size: 20px;
    font-weight: 500;
    padding: 15px;
    background: none;
    margin: 20px;
}

input[type=submit] {
    border: none;
    background-color: #4e4e4e;
    border-radius: 25px;
    width: 300px;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 40px;
    transition: 0.3s;
}

input[type=submit]:hover, .buy-btn:hover {
    -webkit-box-shadow: 1px 0px 25px 10px rgba(78, 78, 78, 0.2);
    -moz-box-shadow: 1px 0px 25px 10px rgba(78, 78, 78, 0.2);
    box-shadow: 1px 0px 25px 10px rgba(78, 78, 78, 0.2);
    cursor: pointer;
}

input[type=submit]:active, .buy-btn:hover {
    cursor: pointer;
    scale: 0.95;
    opacity: 0.7;
}

.num {
    font-family: 'Cormorant Garamond';
    font-weight: 300;
    font-size: 96px;
    color: #4E4E4E;
}

.txt {
    font-weight: 500;
    font-size: 20px;
    color: #4E4E4E;
}

.sale-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 50px;
}

.sale-new {
    max-width: 20%;
}

table.iksweb {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    height: auto;

}

table.iksweb,
table.iksweb td {
    border-bottom: 3px solid #DEDEDE;
}

table.iksweb td,
table.iksweb th {
    font-weight: 500;
    font-size: 20px;
    color: #8D8D8D;
    padding: 30px 0 5px 20px;
    width: 60px;
    height: 35px;
}

table.iksweb th {
    font-size: 14px;
    text-align: left;
}

.tlt {
    font-family: 'Montserrat Alternates';
    font-weight: 500;
    font-size: 40px;
    text-transform: uppercase;
    color: #DEDEDE;
    text-align: center;
    padding: 50px;
}

.price {
    margin: 0 7%;
}

.bottom {
    font-weight: 500;
    font-size: 14px;
    color: #8D8D8D;
    padding: 30px 20px;
}

.buy-btn {
    text-decoration: none;
    background-color: #4e4e4e;
    border-radius: 25px;
    padding: 15px 60px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 40px;
    transition: 0.3s;
}
.buy-my{
    width: 100%;
    display: flex;
    justify-content: center;
}
.modal {
    display: block;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #CBC2AD;
    margin: 15% auto;
    padding: 50px;
    max-width: 50%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.modal-content h2{
    font-family: 'Cormorant Garamond';
    font-weight: 300;
    font-size: 40px;
    color: #040404;
}
.modal-content p{
    font-size: 20px;
    color: #040404;
    text-align: center;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .links {
        display: none;
    }

    header {
        justify-content: space-between;
    }

    .links {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background-color: black;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        z-index: 5;
        transition: .1s all linear;
        transform: translateX(-120%);

    }

    .links.open {
        transform: translateX(0%);
    }

    .links.open li {
        padding: 20px 100px;
    }

    footer a,
    footer p {
        font-size: 12px;
    }

    footer {
        gap: 10px;
    }
    .btn-appointment {
        width: 170px;
        height: 35px;
        font-size: 12px;
    }
    .appoiment-form form::after {
        scale: 0.7;
        top: -18%;
    }

    input[type=text],
    input[type=email] {
        width: 400px;
        font-size: 16px; 
        margin: 10px;   
    }

    input[type=submit] {
        width: 250px;
        padding: 12px;
        font-size: 12px;
    }
    .appoiment-form h1{
        font-size: 48px;
    }
    .txt, table.iksweb td{
        font-size: 16px;
    }
    .tlt{
        font-size: 30px;
        padding: 20px;
    }
    .buy-btn{
        font-size: 12px;
        margin: 20px;
        padding: 12px 40px;
    }
    .modal-content h2 {
        font-size: 30px;
    }
    
    .modal-content p {
        font-size: 16px;
    }
}

@media (max-width:426px){
    .appoiment-form form::after{
        scale: 0;
    }
    .links{
        font-size: 14px;
    }
    .logo{
        width: 150px;
    }
    header a{
        font-size: 12px;
    }
    .links.open li {
        padding: 20px 50px;
    }
    footer a,
    footer p {
        font-size: 10px;
    }
    .img-footer{
        scale: 0;
    }
    .icons-links img{
        width: 30px;
    }
    footer{
        margin: 7%;
    }
    .btn-appointment {
        width: 120px;
        height: 30px;
        font-size: 10px;
    }
    .appoiment-form h1{
        text-align: center;
        font-size: 32px;
    }
    input[type=text], input[type=email] {
        border-bottom: 2px solid #4e4e4e;
        width: 300px;
        font-size: 14px;
        margin: 10px;
    }
    input[type=submit] {
        width: 200px;
        padding: 10px;
        font-size: 10px;
    }
    .sale-container{
        flex-direction: column;
    }
    .sale-new {
        max-width: 86%;
        text-align: center;
    }
    .txt, table.iksweb td{
        font-size: 14px;
    }
    .tlt{
        font-size: 24px;
    }
    .num{
        font-size: 64px;
    }
    table.iksweb th, .bottom{
        font-size: 10px;
    }
    .buy-btn{
        font-size: 10px;
        margin: 10px;
        padding: 10px 30px;
    }
    .modal-content h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .modal-content p {
        font-size: 14px;
    }
}