@import "../reset.css";

html {
    scroll-behavior:smooth;
}
body{
    font-family: "Open Sans", 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-content{
    margin-top: 50px;
    padding: 15px 0;
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
}
.header-content__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}
.header-content__left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-content__logo img{
    max-width: 60px;
}
.header-content__title h1{
    font-weight: 700;
    font-size: 75px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}
.header-content__title p{
    font-size: 30px;
    line-height: 36px;
    color: #ffffff;
    text-align: center;
    max-width: 700px;
}
.header-content__right img{
    min-width: 750px;
}

/*Photoshop*/
.photoshop{
    margin-top: 50px;
}
.photoshop__title{
    padding-bottom: 70px;
}
.photoshop__title h1{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.photoshop__title p{
    font-size: 30px;
    font-weight: 400;
    text-align:center;
}

.photoshop__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}
.photoshop__item + .photoshop__item{
    margin-top: 30px;
}

.photoshop__text h4{
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}
.photoshop__text p{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #222;
}
.photoshop__video video{
    min-width: 650px;
    max-height: 650px;
}
.photoshop__text p{
    margin-bottom: 10px;
}

/*new*/
.new{
    background-color: #adf4ff;
    padding: 30px 0;
}
.new__title h2{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.new__title p{
    font-size: 22px;
    font-weight: 300;
    text-align: center;

    margin-bottom: 20px;
}
.new__big__text h2{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}
.new__big__text p{
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}
.new__big__video{
    max-width: 1200px;
    margin: 0 auto;
}
.new__item__top{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.new__item__bottom{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.new__item img{
    min-width: 1200px;
}

.new__item h3{
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 22px;
    color: #222;
    font-weight: 700;
    text-align: center;
}
.new__item p{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-align: center;
    max-width: 1200px;
}
.text__width__1200px{
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

/*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;
}