@import "../reset.css";

html {
    scroll-behavior:smooth;
}
body{
    font-family: "Inter Tight", sans-serif;
}
.container{
    max-width: 1590px;
    padding: 0 30px;
    margin: 0 auto;    
}

/*Burger-menu*/
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}
.btn-line {
    width: 100%;
    height: 2px;
    background-color: black;
}

/*header-nav*/
.header-nav-logo{
    width: 70px;
}
.header-nav-logo a img{
    transition: 0.3s linear;
}
.header-nav-logo a img:hover{
    filter: drop-shadow(0px 0px 15px rgba(255, 50, 40, 0.5));
}
.header-nav{
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 80px;
}
.nav ul li a{
    color: #1F1F1F;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.nav ul li a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1F1F1F;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.3s linear;
}
.nav ul li a:hover::before{
    transform: scaleX(1);
}

/*header-content*/

.header-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1{
    font-size: 75px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    margin-top: 30px;
    font-family:sans-serif;
}

.header-content-left img{
    max-width: 800px;
}
form input{
    width: 100%;
    border: 2px solid #1F1F1F;
    color: #1F1F1F;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.form-name{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.form-pass{
    display: flex;
    column-gap: 10px;
}
button{
    padding: 10px 15px;
    color: #1F1F1F;
    border: 2px solid #1F1F1F;
    transition: .3s linear;
    border-radius: 10px;
}
button:hover{
    background-color: #1F1F1F;
    color: aliceblue;
}
/*Google map*/

.map{
    margin-top: 30px;
}

/*footer*/
footer{
    padding: 100px 0px 0px 0;
    background-color: #1F1F1F;
}
.footer-block{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 60px;
}

.footer-logo{
    width: 70px;
}
.footer-logo a img{
    transition: .3s linear;
}
.footer-logo a img:hover{ 
    filter: drop-shadow(0px 0px 15px rgba(255, 50, 40, 0.5));
}


.footer-links ul li{
    margin-bottom: 20px;
}
.footer-links ul li:last-child{
    margin-bottom: 0;
}
.footer-links ul li a{
    color: #F1F2FB;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.footer-links ul li a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1F2FB;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.3s linear;
}
.footer-links ul li a:hover::before{
    transform: scaleX(1);
}


.footer-h4{
    font-weight: 600;
    font-size: 20px;
    color: #F1F2FB;
}

.ft-c-local,
.ft-c-email,
.ft-c-tel{
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #F1F2FB;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 20px;
}
.ft-c-email{
    margin-bottom: 0;
}
.ft-c-local{
    margin-top: 20px;
}

.mes{
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.footer-block-2{
    border-top: 1px solid #9e9e9e;
    border-radius: 10px;
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-block-2 p{
    color: #F1F2FB;
    font-size: 16px;
}