@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;
    
}
.header-title{
    padding-top: 120px;
    font-weight: 500;
    font-size: 75px;
    color: #222;
    margin-bottom: 30px;
}
.header-subtitle{
    font-size: 30px;
    line-height: 36px;
    color: #222;
    padding-bottom: 60px;
}
.header-btn a{
    font-weight: 600;
    font-size: 20px;
    padding: 20px 40px;
    background-color: #222;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s linear;
}
.header-btn a:hover{
    background-color: #2E81CC;
    color: #fff;
}
/*raster section*/
.raster{
    background-color: #F1F2FB;
    padding: 120px 0;
}
.raster-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.raster-left h4{
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
}
.raster-left p{
    max-width: 618px;
    font-size: 20px;
    line-height: 26px;
}

/*raster archiv*/

.raster-archiv{
    background-color: #F4FDFF;
    padding: 120px 0;
}
.archiv-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archiv-right{
    max-width: 726px;
}
.archiv-right h4{
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
    
}
.archiv-right p{
    max-width: 618px;
    font-size: 20px;
    line-height: 26px;
    text-align: justify;
}

/*example*/
.example{
    background-color: #F8F6FF;
    padding: 120px 0;
}
.example-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.example-left h4{
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
}
.example-left p{
    max-width: 618px;
    font-size: 20px;
    line-height: 26px;
    text-align: justify;
}
.example-right img{
    width: 500px;
}

/*join*/
.join{
    padding: 20px 0px;
    background-color: #1F1F1F;
}
.join-h2{
    color: #F1F2FB;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.join-block{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.join-left img{
    max-width: 600px;
}
.join-right{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 170px;
}
.name-lastname input{
    border: 2px solid #F1F2FB;
    padding: 15px 10px 15px 10px;
    color: #F1F2FB;
    border-radius: 10px;
    width: 400px;
    margin-bottom: 20px;
}
.name + .lastname{
    margin-left: 30px;
}
.email-phone input{
    border: 2px solid #F1F2FB;
    padding: 15px 10px 15px 10px;
    color: #F1F2FB;
    border-radius: 10px;
    width: 400px;
    margin-bottom: 20px;
}
.email + .tel{ 
    margin-left: 30px;
}
.reset, .submit{
    text-align: center;
    border: 2px solid #F1F2FB;
    color: #F1F2FB;
    border-radius: 10px;
    padding: 10px 15px;
    transition: 0.3s linear;
}
.reset:hover,.submit:hover{
    background-color: #F1F2FB;
    color: #222;
}
.reset + .submit{
    margin-left: 20px;
}


/*footer block*/
footer{
    border-top: 2px solid #9e9e9e;
    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: 0.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;
}

