* {
    box-sizing: border-box;
    margin: 0;

    
 }
*::after,
*::before {
    box-sizing: border-box;
}
:root {
    --accent: #ff4f7b;
    --dark: #1a1a1a;
    --light: #ffffff;
    --bg: #f7f7f7;
    --radius: 18px;
    --shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'PT Serif', serif;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 20px;
}
.main {
    background-image: url("img/mainbg_2.jpg");
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-height: 715px;
    z-index: 10;
    position: relative;
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
}

.main .container {
    position: relative;
    z-index: 1;
}

.img-size {
    width: 100%;
    border-radius: var(--radius);
    transition: 0.4s;
  }
  
  .img-size:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
  }
  
  
.main-header {
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    transition: 0.3s;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.2);
}

  
.logo-form {
    min-height: 63px;
    min-width: 135px;
}
.home {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #262625;
    text-decoration: none;
}
.home:not(:last-child) {
    padding-right: 30px;
}

.main-list {
    padding-top: 140px;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 60px;
}

.main-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.main-title span {
    color: #ff4f7b;
}


.main-description {
    font-size: 20px;
    color: #f0f0f0;
    font-family: 'PT Serif', serif;
    font-size: var(--regular);
    line-height: 28px;
    max-width: 497px;
    max-height: 76px;
}
.main-list-form {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

  
.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    padding-bottom: 30px;
}

.input-style {
    margin: 10px 0px;
    font-family: 'PT Serif', serif;
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    background: white;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .input-style:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,79,123,0.15);
  }
  
.form-ckeckbox {
    display: inline-flex;
    align-items: center;
    padding-top: 16px;
    padding-right: 27px;
}
.checkbox-text {
    display: flex;
    font-family: 'PT Serif', serif;
    font-size: var(--regular);
    color: white;
    white-space: nowrap;
}
.checkbox-style {
    min-width: 19px;
    min-height: 18px;
    margin-right: 24px;
    border-radius: 10px;
}
.form-btn {
    margin-top: 17px;
}
.form-button {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 22px;
    font-weight: 400;
    border: none;
    outline: none;
    min-width: 353px;
    min-height: 57px;
    background-color: #161616;
    border-radius: 5px;
}
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.section-title span {
    color: #ff4f7b;
}


.services-desciption {
    padding-top: 44px;
    font-family: 'PT Serif' serif;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    max-width: 191px;
    color: #161616;
}
.services-desciption2 {
    padding-top: 29px;
    font-family: 'PT Serif' serif;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    max-width: 191px;
    color: #161616;
}
.aboutUs {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    padding: 80px 0 100px;
}




.about-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.services-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.3s ease;
}


.services-card p {
    padding: 20px;
    font-size: 18px;
    font-family: 'PT Serif', serif;
    color: #333;
    text-align: center;
}



.services-desciption,
.services-desciption2 {
    font-family: 'PT Serif', serif;
    font-size: 18px;
    line-height: 26px;
    color: #333;
    max-width: 200px;
    margin: 0 auto;
}
.about-story {
    max-width: 100%;
    padding: 36px 0px;
    background-color: var(--pink);
}
.description-text {
    font-family: 'PT Serif' serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #ffffff;
}
.about-inner {
    display: flex;
    justify-content: space-between;
}
.story-button {
    padding-left: 72px;
}
.our-story {
    border: none;
    outline: none;
    min-width: 269px;
    min-height: 64px;
    background-color: var(--brown);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #161616;
}
.our-story:hover {
    background-color: black;
    color: var(--white);
}
.pricing {
    background: #f7f7f7;
    padding: 100px 0;
}

.section-title1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.pricing-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}


.triangle_text {
    content: 'Popular';
    font-family: 'PT Serif';
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #1f1f1f;
    position: absolute;
    -webkit-transform: rotate(-46deg);
    z-index: 2;
    margin-top: -75px;
    margin-left: 5px;
}

.triangle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4f7b;
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.pricing-type {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.pricing-value {
    font-size: 56px;
    font-weight: 800;
    color: #ff4f7b;
    margin-bottom: 25px;
}

.pricing-advantages {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.advantage {
    font-size: 18px;
    color: #555;
    padding: 8px 0;
}

.pricing-btn {
    background: #ff4f7b;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #d63a63;
}

.reviews {
    padding-top: 150px;
}
.reviews-inner {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 65px;
    padding-bottom: 120px;
}
.testimonial-review-card {
    margin-top: 51px;
    display: flex;
    align-items: center;
}
.testimonial-description {
    font-family: 'PT Serif';
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #161616;
    min-width: 371px;
}
.testimonial-text {
    border-radius: 6px;
    min-width: 372px;
    padding: 18px 70px 25px 25px;
}
.testimonial-text:hover {
    background-color: var(--brown);
    transition-duration: 1s;
}
.reviewer-name {
    padding-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    color: var(--pink);
}
.reviewer1 {
    min-width: 105px;
    min-height: 105px;
    margin-top: -15px;
    z-index: 20px;
}
.reviewer2 {
    min-width: 105px;
    min-height: 105px;
    margin-top: 9px;
    z-index: 20px;
}
.reviewer-photo {
    margin-left: -77px;
}
.galery-review-inner {
    padding-top: 61px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.section-title1 span {
    color: var(--pink);
}
.linkOfGallery {
    padding-top: 54px;
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--pink);
    font-weight: bold;
}
.footer {
    width: 100%;
    background-color: #161616;
    padding: 80px 0px;
}
.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    font-family: 'PT Serif';
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: #ffffff;
}
.copyright span {
    color: var(--pink);
}
.footer-form {
    min-height: 49px;
    min-width: 97px;
}

    .main-list-form {
        min-height: 250px;
        min-width: 100px;
        align-items: center;
        padding-left: 0px;
        padding-right: 0px;
    }
    .main-list {
        padding-top: 100px;
        gap: 5px;
    }
    .form-title {
        font-size: 20px;
        padding-bottom: 15px;
    }
    .input-style {
        padding: 10px;
        font-size: 18px;
        min-width: 150px;
        min-height: 22px;
    }
    .checkbox-text {
        font-size: 16px;
        white-space: pre-wrap;
        text-align: start;
    }
    .checkbox-style {
        max-width: 10px;
        max-height: 10px;
        margin-right: 12px;
    }
    .form-ckeckbox {
        margin-left: 10px;
    }
    .form-button {
        padding: 10px;
        font-size: 20px;
        min-width: 180px;
        max-height: 57px;
    }
    .about-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-inner {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
    .pricing-card {
        min-width: 483px;
        min-height: 565px;
    }
    .pricing-type {
        font-size: 30px;
        padding: 20px 0px;
    }
    .pricing-value {
        padding-top: 30px;
        font-size: 70px;
        padding-bottom: 40px;
    }
    .pricing-advantages {
        padding-bottom: 5px;
    }
    .advantage {
        font-size: 22px;
        padding: 10px;
    }
    .pricing-btn {
        min-width: 269px;
        min-height: 64px;
    }
    .reviews-inner {
        display: grid;
        grid-template-columns: 1fr;
    }
    .galery-review-inner {
        gap: 31px;
        justify-items: center;
    }
    .img-size {
        min-height: 200px;
        min-width: 200px;
    }
    .footer-menu {
        flex-direction: column;
    }
    .footer-form {
        padding-top: 20px;
    }
    .linkOfGallery {
        padding-bottom: 80px;
    }
}
@media (max-width: 400px) {
    .header-nav { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .logo-form { min-width: 110px; min-height: 50px; }
    .main { max-height: unset; padding-bottom: 40px; }
    .main-list-descrip { text-align: center; }
    .form-title { text-align: center; font-size: 20px; }
    .form-ckeckbox { justify-content: center; }
    .checkbox-style { margin-right: 10px; }
    .main-list-form { border-radius: 16px; }
    }

@media (max-width: 750px) {
    .main-header { flex-direction: column; gap: 20px; }
    .header-nav a { font-size: 14px; padding: 6px 10px; }
    .main-title { font-size: 38px; line-height: 1.2; }
    .main-description { font-size: 16px; max-width: 90%; }
    .main-list { padding-top: 60px; gap: 30px; }
    .main-list-form { width: 100%; padding: 25px 20px; }
    .input-style { padding: 14px; font-size: 15px; }
    .form-button { width: 100%; min-width: unset; min-height: 50px; font-size: 18px; }
    .form-ckeckbox { flex-wrap: wrap; gap: 10px; }
    .checkbox-text { font-size: 14px; white-space: normal; }
    .about-services {grid-template-columns: 1fr;}
    .galery-review-inner {padding-top: 61px;display: grid;grid-template-columns:repeat(2, 1fr);}
    .aboutUs {margin-top: 170px;
    }
    }

@media (max-width: 992px) {
    .main-list { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; text-align: center; }
    .main-title { font-size: 52px; }
    .main-description { margin: 0 auto; }
    .main-list-form { max-width: 450px; margin: 0 auto; }
    .logo-form {width: 75px;}
    .header-nav a {font-size: 13px;}
    .form-button {font-size: 15px;}
    .input-style {font-size: 15px;}
    .aboutUs {padding: 100px 0 100px;}
}
    

@media screen and (max-width: 1090px) {
    .container {
        padding: 0px 20px;
    }
