@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.button {
    background: linear-gradient(to right, #f6a93c, #ed7f2e);
    color: #ffffff;
    font-size: 20px;
    padding: 15px 50px;
    border-radius: 15px;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
}
.title {
    font-size: 35px;
    color: #232323;
    padding-bottom: 10px;
    border-bottom: 1px solid #232323;
    width: 100%;
    margin-bottom: 50px;
    font-weight: 900;
}
.section{
    padding: 40px 0;
    margin: 40px 0;
}

.header {
    position: fixed;
    padding: 10px 0;
    background-color: #232323;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 100;
}
.header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header-logo {
    color: #ffffff;
    /* font-size: 30px; */
    text-decoration: none;
}
.header-logo img{
    max-width: 300px;
    /* filter: invert(1); */
}    
.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-nav a{
    color: #e0e0e0;
    text-decoration: none;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-buttons a {
    display: inline-block;
    background: linear-gradient(to right, #f6a93c, #ed7f2e);
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
}
a.header-buttons-tel {
    padding: 10px 20px;
    text-decoration: none;
}
a.header-buttons-wa{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
}
.header-buttons-wa img{
    width: 20px;
    height: 20px;
}
.header-burger{
    display: none;
    position: relative;
    height: 30px;
    width: 40px;
    cursor: pointer;
}
.header-burger span,
.header-burger::before,
.header-burger::after{
    content: '';
    position: absolute;
    background-color: #ffffff;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    left: 0;
    top: 0;
    transition: all .2s;
}
.header-burger span {
    top: 13px;
}
.header-burger::after {
    top: 28px;
}
.header-burger.show span{
    opacity: 0;
}
.header-burger.show::after {
    transform: rotate(45deg);
    top: 15px;
}
.header-burger.show::before {
    transform: rotate(-45deg);
    top: 15px;
}

.first-block {
    position: relative;
    height: calc(100vh - 96px);
    margin-top: 96px;
    background-color: #343434;
    /* background-image: url(/img/firstblock-bg.png); */
    background-image: url(/img/fbg2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
.first-block::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, black, transparent);
    z-index: 10;
}
.first-block-body {
    position: relative;
    z-index: 11;
    width: 56%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 40px;
}
.first-block-title {
    color: #ffffff;
    font-size: 43px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.first-block-title span{
    display: block;
}
.first-block-title span:first-child {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.first-block-title span:first-child::before {
    content: "";
    width: 45%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
}
.first-block-subtitle {
    color: #ffffff;
    font-size: 20px;
    line-height: 140%;
}
.first-block-subtitle span{
    font-weight: 600;
    font-size: 26px;
    text-shadow: 0 0 19px #d2352a;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.services-item{
    position: relative;
    background-color: #343434;
    border-radius: 15px;
    padding: 20px;
    background-position: 100px center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.services-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #232323 30%, transparent);
    z-index: 10;
}
.services-item.img-vertical {
    background-position: 100px -375px;
}
.services-item-body {
    position: relative;
    z-index: 11;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* .services-item-body .button {
    margin-top: auto;
} */
.services-item-title {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}
.services-item-desc {
    font-size: 18px;
    list-style-position: inside;
    color: #e0e0e0;
}
.services-item-price {
    margin-top: auto;   
    color: #ffffff;
    font-size: 18px;
}
.services-item-price span{
    color: #ffffff;
}

.about-block {
    border-radius: 15px;
    background-color: #343434;
    padding: 40px;
    background-image: url(/img/about.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.about-block::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #232323 30%, transparent);
    z-index: 10;
}
.about-block-text-wrap{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 11;
}
.about-block-title {
    color: #ffffff;
    font-size: 35px;
    font-weight: 900;
    line-height: 140%;
    text-transform: uppercase;
}
.about-text {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 140%;
}

.contact {
    background-color: #343434;
    margin-bottom: 0 !important;
}
.contact-title {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}
.contact-form { 
    border-radius: 15px;
    background-color: #ffffff14;
    padding: 60px 30px;
}
.contact-form-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.contact-form input{
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: #ffffff;
    font-size: 18px;
}
.contact-form input.error{
    box-shadow: 0 0 10px red;
}
.contact-form input::placeholder{
    font-size: 18px;
}
.contact-form button{
    width: 100%;
    max-width: 500px;
    outline: none;
    border: none;
}
.contact-form-title{
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
}
.contact-form-thanks{
    display: none;   
}

.footer {
    background-color: #181818;
    height: 100px;
}
.footer-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer-body a {
    color: #bcbcbc;
    text-decoration: none;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.review-person {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.review-photo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.review-name {
    font-size: 20px;
    line-height: 100%;
}
.review-text {
    font-size: 18px;
    color: #181818;
}

.slick-arrow{
    font-size: 0px;
    color: transparent;
    border: none;
    width: 95px;
    height: 30px;
    background-color: transparent;
    position: absolute;
    bottom: -40px;
    top: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.slick-next{
    right: 0;
    left: auto;
    background-image: url(/img/arrow-next.png);
}
.slick-prev{
    left: 0;
    right: auto;
    background-image: url(/img/arrow-prev.png);
}

.politica-body{
    padding: 50px 0;
}

.politica-body a {
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 20px;
}