.header {
    position: relative;
    width: 100vw; 
    margin: 0;
}
.header__container {
    position: relative;
    max-width: 1173px;
    margin: 0 auto;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}
.header__content{
    min-height: 144px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__log {
    font-size: 24px;
    font-weight: 900;
    color: rgba(48, 18, 78, 1);
    letter-spacing: 2px;
}
.menu {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu__list {
    width: 45%;
    display: flex;
    gap: 54px;
}
.menu__link {
    font-weight: 800;
    font-size: 14.4px;
    color: rgba(48, 35, 61, 1);
    letter-spacing: 2px;

}
.menu__contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 26%;
}
.menu__text {
    font-weight: 800;
    font-size: 14.4px;
    color: rgba(48, 18, 78, 1);
    letter-spacing: 2px;
}
.menu__burger {
  width: 27px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: transparent; 
}
.menu__line {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(48, 35, 61, 1);
}

.menu__line:last-child {
  width: 70%; 
  align-self: flex-end; 
}

.about {
    position: relative;
    width: 100vw; 
    margin: 0;
    background-image: url("/src/assets/img/Header-About.png");
    background-size: cover;
    overflow: hidden;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(94, 35, 157, 1);
    mix-blend-mode: multiply;
    z-index: 1;
}

.about__container{
    position: relative;
    z-index: 2;
    max-width: 1173px;
    margin: 0 auto;
}

.about__title {
    margin-top: 108px;
    color: rgba(246, 16, 103, 1);
    font-weight: 500;
    font-size: 54px;
}
.about__subtitle {
    margin-top: 30px;
    color: #F4F4ED;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 141px;
    text-transform: uppercase;
}


/* Intro */

.intro__container {
    max-width: 1173px;
    margin: 0 auto;
    margin-bottom: 112px;
}
.intro__title {
    margin-top: 115px;
    color: rgba(246, 16, 103, 1);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.intro__subtitle {
    margin-top: 12px;
    color: rgba(48, 35, 61, 1);
    font-weight: 500;
    font-size: 27px;
    width: 60%;
    line-height: 40px;
}
.intro__columns {
    margin-top: 87px;
    width: 89%;
    display: flex;
    justify-content: space-between;
}
.column {
    width: 40%;
}
.column__title {
    margin-bottom: 12px;
    color: rgba(48, 35, 61, 1);
    font-weight: 500;
    font-size: 18px;
}
.column__subtitle {
    color: rgba(119, 108, 130, 1);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
}

/* features */

.features {
    position: relative;
    display: flex;
    min-height: 100vh;
    padding-top: 118px;
}

.features__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    flex: 1;
}

.features__title{
    position: relative;
}

.features__title::before{
    background-color: rgba(246, 16, 103, 1);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.features__title-content{
    padding: 110px 0;
    padding-left: 10%;
}


.features__name{
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 6px;
    color: #FCFCFC;
    text-transform: uppercase;
}

.features__subname {
    padding-top: 30px;
    font-weight: 500;
    font-size: 45px;
    color: #FCFCFC;
}

.features__content {
    position: relative;
}

.features__items {
    display: flex;
    flex-direction: column;
}

.features__item {
    position: relative;
    height: 22.25rem;
    display: flex;
    width: 100%;
}

.features__item-header {
    flex: 0 0 30%;
    background-color: #FCFCFC;
    display: flex;
    align-items: center;
    padding-left: 10%;
    position: relative;
    z-index: 1;
}

.features__item-info {
    flex: 1;
    background-color: rgba(94, 35, 157, 1);
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.features__text {
    width: 65%;
    font-weight: 500;
    font-size: 27px;
    color: rgba(246, 16, 103, 1);
    line-height: 40px;
}

.features__info {
    width: 40%;
    font-weight: 400;
    font-size: 18px;
    color: rgba(244, 244, 237, 1);
    line-height: 1.6;
    opacity: 0.9;
}

.features__image {
    position: absolute;
    right: 0; 
    margin-top: 64px; 
    height: calc(100% - 118px);
    top: 50%;
    transform: translateY(-40.5%);
    max-width: 40%;
    height: auto;
    z-index: 2;
}

/* Section */

.section {
    position: relative;
    display: flex;
    padding-top: 180px;
}

.section::before{
    background-color: rgba(94, 35, 157, 1);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
}
.section__container {
    max-width: 1145px;
    margin: 0 auto;
    min-height: 100vh; 
}
.section__title {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 6px;
    color: rgba(246, 16, 103, 1);
    text-transform: uppercase;
}
.section__text {
    margin-top: 22px;
    font-weight: 500;
    font-size: 27px;
    color: #FCFCFC;
    line-height: 40px;
    width: 60%;
}
.section__items {
    margin-top: 111px;
    display: flex;
    justify-content: space-between;
}

.item:nth-child(1) {
    background-color:rgba(246, 16, 103, 1);
}
.item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    width: 32%;
    padding: 55px 36px;
}
.item__img {
    width: 54px;
    height: 62px;
}
.item__name {
    margin-top: 22px;
    font-weight: 500;
    font-size: 27px;
    color:#FCFCFC;
}
.item__text {
    margin-top: 13px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #FCFCFC;
    width: 70%;
}

/* Logo */

.logo {
}
.logo__container {
    max-width: 1145px;
    margin: 0 auto;
    margin-top: 55px;
    margin-bottom: 113px;
}
.logo__name {
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 4px;
    color: rgba(48, 35, 61, 1);
    text-transform: uppercase;
}
.logo__items {
    margin-top: 87px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo__img {
}

/* Testimonials */

.testimonials {
    position: relative;
    padding: 60px 20px;
}

.testimonials__container {
    position: relative;
}
.testimonials__bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 67px;
}

.bg__main-circle-container {
    position: relative;
    width: 460px;
    height: 460px;
}

.bg__circle {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bg__quotes {
    position: absolute;
    bottom: -50px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100px; 
    z-index: 1;
}
.bg__circle-1 { 
    position: absolute;
    top: 20%;
    left: 10%;
}

.bg__circle-2 {
    position: absolute;
    top: 50%;
    left: 21%;
}

.bg__circle-3 {
    position: absolute;
    top: 70%;
    left: 5%;
}

.bg__circle-4 {
    position: absolute;
    top: 60%;
    right: 19%;
}

.bg__circle-5 {
    position: absolute;
    top: 77%;
    right: 0%;
}

.bg__circle-6 {
    position: absolute;
    top: 14%;
    right: 0%;
}

.bg__circle-7 {
    position: absolute;
    top: 41%;
    right: 10%;
}

.testimonials__content {
    max-width: 1144px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonials__text-container {
    width: 66%;
    text-align: center;
    
    margin-top: 66px;
}
.testimonials__text {
    font-family: "Noticia Text", sans-serif;
    font-style: italic;
    font-size: 36px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 48px;
}

.testimonials__subtitle {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 136px;
}

.testimonials__nav {
    border: 2px solid rgba(246, 16, 103, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px; 
    height: 36px; 
    padding: 0;
    cursor: pointer;
    background: none;
    position: relative;
}

.testimonials__nav--left {
    background: rgba(246, 16, 103, 1);
}

.testimonials__nav img {
    width: 11px;
    display: block;
}




@media (max-width: 1183px) {
    .header__container {
        padding: 0 20px;
    }
    .menu__text{
        font-size: 11px;
    }
    
    .menu__list {
        gap: 30px;
    }
    
    .menu__contacts {
        width: 30%;
    }

    .about__container{
        padding: 0 30px;
    }

    .intro__container{
        padding: 0 20px;
    }

    
    .section__container{
        padding: 0 20px;
    }

    .logo__container{
        padding: 0 20px;
    }

    .bg__main-circle-container {
        width: 380px;
        height: 380px;
    }

}

@media (max-width: 990px) {
    .features__title-content {
    padding: 75px 0;
    padding-left: 10%;
}

.features__item{
    height: 16.25rem;
}
.features__text{
    font-size: 18px;
}
.features__info{
    font-size: 14px;
    width: 90%;
}

.features__image{
    display: none;
}

.features__item-header {
    flex: 0 0 50%;
}

    .section__items{
        margin-top: 65px;
    }

    .item__text{
        font-size: 14px;
    }

    .logo__container{
        margin-top: 100px;
    }

    .logo__items{
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .logo__img{
        padding-top: 30px;
    }
    
}


@media (max-width: 826px){
    .menu__list{
        gap: 16px;
        width: 38%;
    }
    .menu__link{
        font-size: 13px;
    }
    .menu__contacts{
        width: 32%;
    }
    .menu__text{
        font-size: 11px;
    }

    .bg__main-circle-container{
        width: 300px;
        height: 300px;
    }

    .bg__circle-1 {
        top: -2%;
        left: -5%;
    }

    .bg__circle-2{
        left: 7%;
    }

    .bg__circle-3{
        top: 78%;
        left: 0;
    }

    .bg__circle-6{
        top: 0;
    }

    .bg__circle-7{
        top: 47%;
        right: -4%;
    }

    .bg__circle-4 {
        top: 60%;
        right: 10%;
    }

    .bg__quotes{
        bottom: -32px;
        width: 65px;
    }
}


@media (max-width: 768px) {
    
    .menu {
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .menu__list {
        display: none;
    }
    
    .menu__contacts {
        display: none;
    }

    .menu__burger{
        align-self: flex-end; 
    }

    .intro__container{
        margin-top: 80px;

    }

    .intro__subtitle{
        font-size: 20px;
        line-height: 27px;
        width: 100%;
    }

    .intro__columns{
        flex-direction: column;
        margin-top: 45px;
    }
    .column{
        width: 80%;
        padding-bottom: 25px;
    }

    .column__title{
        font-size: 15px;
    }

    .column__subtitle{
        font-size: 15px;
    }

    .section__items{
        flex-direction: column;
        align-items: center;
        margin-bottom: 90px;
    }

    .item{
        width: 100%;
        margin-bottom: 20px;
    }

    .testimonials__text {
        font-size: 26px;
    }

}

@media (max-width:662px) {
      .testimonials__bg{
        margin-bottom: 0;
    }

    .testimonials__text {
        font-size: 19px;
    }

    .testimonials__subtitle{
        margin-bottom: 0;
        font-size: 14px;
    }

    .bg__circle-1, .bg__circle-2, .bg__circle-3, .bg__circle-4, .bg__circle-5, .bg__circle-6, .bg__circle-7{
        display: none;
    }   
        
}

@media (max-width:500px) {

    .about__title{
        font-size: 42px;
    }

    .about__subtitle{
        font-size: 11px;
    }

    .features__text{
        font-size: 15px;
        line-height: 25px;
    }

    .features__info{
        font-size: 10px;
    }

    .features__item{
    height: 14.25rem;
}
}
