*{
    margin: 0;
    padding: 0;
}
body{
    height: auto;
    font-family: Montserrat-Regular;
    font-size: clamp(12px, 3vw, 24px);
    user-select: none;
}
html {
  scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: whitesmoke;
}
.point-text{
    cursor:pointer;
    color:#F648AA;
}
.point-text:hover{
    text-decoration: underline;
}
.header-block{
    width: 100%;
    height: 100px;
    background: black;
    position: fixed;
    z-index: 5;
    top: 0;
    color: whitesmoke;
    font-family: Montserrat-Bold;
}

.header-nav{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    font-size: clamp(14px, 3vw, 24px);
}
.for-phone{
    display: none;
}
.small-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}
.header-logo{
    cursor: pointer;
}
.header-logo:hover{
    filter: invert(46%) sepia(91%) saturate(650%) hue-rotate(295deg) brightness(90%) contrast(105%);
}
.logo{
    width: auto;
    height: 90px;
}
.header-item{
    margin: 5px;
    cursor: pointer;
}
.header-item:hover{
    color:  #F648AA ;
}
.icon-btn{
    width: 36px;
    height: 36px;
    margin-right: 5px;
}
.icon-btn:hover{
    filter: invert(46%) sepia(91%) saturate(650%) hue-rotate(295deg) brightness(90%) contrast(105%);
}

.base-block{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.work-block{
    color: black;
    margin-top: 100px;
    min-height: 100vh;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start !important;
}
.work-content{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fix-content input.form-control,
.fix-content select.form-control,
.fix-content textarea.form-control{
    width: 600px;
}
.work-block a,
.work-block label {
    color: black;
}
.hello-block{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)), url(/img/background/hero1.jpg);
    background-size: cover;
    background-position: top;
    flex-direction: column;
    position: relative;
    height: 100vh;
}
.hello-text{
    font-family: Montserrat-Bold;
    text-align: center;
    color: whitesmoke;
}
.hello-text h1 {
    font-size: clamp(24px, 4vw, 46px);
    width: 90%;
}
.hello-text p {
    margin-top: 30px;
    font-size: clamp(16px, 3vw, 32px);
}
.scroll-down{
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-down span {
    position: absolute;
    bottom: 50px;
    display: block;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid whitesmoke;
    border-right: 3px solid whitesmoke;
    transform: rotate(45deg);
    margin: -10px auto;
    animation: arrow 1.5s infinite;
    cursor: pointer;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes arrow {
  0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

.title-text {
    font-size: clamp(24px, 3vw, 46px);
    padding-bottom: 5px;
    margin-bottom: 40px;
    margin-top: 40px;
    font-family: Montserrat-Bold;
}
.fix-position{
    margin-top: 80px;
}

.cta-block{
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: clamp(140px, 3vw, 200px);
    color: whitesmoke;
}
.cta-content{
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    line-height: clamp(24px, 3vw, 42px);
}

.about-us-block{
    flex-direction: row;
    justify-content: space-between;
    min-height: 100vh;
}
.about-us-img{
    width: 45%;
    height: auto;
}
.about-us-text{
    width: 50%;
    font-size: clamp(14px, 3vw, 32px);
    padding: 40px;
    line-height: clamp(24px, 3vw, 42px);
}
.service-block{
    flex-direction: column;
    width: 100%;
    min-height: 500px;
    overflow: hidden; 
}
.service-cards-block{
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.service-card{
    width: 23%;
    margin: 5px;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    color: whitesmoke;
}
.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.8);
    transform: scale(1.05);
    z-index: 2; 
}
.service-img{
    width: 100%;
    height: auto;

}
.service-text{
    position: absolute;
    z-index: 2;
    font-size: clamp(24px, 3vw, 46px);
    font-family: Montserrat-Bold;
    text-align: center;
    width: 85%;
    margin-bottom: 20%;
}

.contact-block{
    flex-direction: row;
    justify-content: space-evenly;
    user-select:text;
}
.contact-part-block{
    display: flex;
    flex-direction: column;
    width: 45%;
    height: 100%;
    align-items: center;
}
.contact-info{
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.c-info-title{
    margin-right: 10px;
    font-family: Montserrat-Bold;
}
.contact-part-block iframe {
  width: 100%;
  min-height: 600px;
  border: 0;  
}

.footer-block {
    width: 100%;
    background: black;
    color: whitesmoke;
    padding: 20px 30px;
    box-sizing: border-box;
}

.footer-part{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover{
    color:  #F648AA ;
}
.pagination{
    width:100%;
    display:flex;
    justify-content:center;
    margin:40px 0;
    list-style:none;
    gap:10px;
}

.pagination li a,
.pagination li span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border:1px solid #000;
    color:#000;
    text-decoration:none;
}

.pagination li.active a{
    background:#000;
    color:#fff;
}
.help-block {
    color:  #F648AA ;
}



@media (max-width: 960px){
    .logo{
        height: 70px;
    }
}
@media (max-width: 860px){
    .header-block{
        height: 80px;
    }
    .for-phone{
        display: flex;
    }
    .for-pc{
        display: none;
    }
    .service-card{
        width: 45%;
    }
    .service-text{
        font-size: clamp(18px, 5vw, 32px);
    }
    .contact-block{
        flex-direction: column;
    }
    .contact-part-block{
        width: 90%;
    }
    .about-us-img{
        display: none;
    }
    .about-us-text{
        width: 90%;
    }
    .footer-block{
        flex-direction: column;
    }
    .footer-part{
        width: 100%;
    }
}
@media (max-width: 600px){
    .icon-btn{
        width: 24px;
        height: 24px;
    }
    .logo{
        height: 50px;
    }
}