.header__wrapper {
    background: #07416B;
}

.header__top {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__links a,
.header__links span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.header__links a:hover {
    color: #09ff00;
}

.header__soc {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header__soc a path {
    transition: .3s;
}

.wt:hover path {
    fill: #00900c;
}

.fb:hover path {
    fill: #0090bb;
}

.yt:hover path {
    fill: #e40000;
}

.inst:hover path {
    fill: #bb004b;
}

.header__bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}
.logo img {
    width: 170px;
    /* height: 70px; */
}
.nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav__list a {
    color: #545454;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 14px;
    /* 100% */
    text-transform: uppercase;
}

.nav__list a:hover {
    color: #07416B;
}

.header-menu-icon {
    display: none;
}
.header__bot .header__links {
    display: none;
}
.header__bot .header__soc {
    display: none;
}
@media (max-width:1140px) {
    .header__bot img {
        width: 150px;
    }
    .nav__list a {
        font-size: 12px;
    }
    .feedback-link {
        font-size: 12px;
        margin-left: auto;
    }
}
@media (max-width:992px) {
    .header-menu-icon {
        z-index: 150;
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        cursor: pointer;
        padding: 10px;
        order: 3;
    }

    .header-menu-icon::after,
    .header-menu-icon::before {
        content: "";
    }

    .header-menu-icon span,
    .header-menu-icon::after,
    .header-menu-icon::before {
        position: absolute;
        left: 25%;
        height: 4%;
        width: 30px;
        transition: all 0.3s ease 0s;
        background-color: #07416B;
    }
    .header-menu-icon::before {
        top: 12px;
    }
    .header-menu-icon::after {
        bottom: 12px;
    }
    .header-menu-icon span {
        top: 50%;
        transform: scale(1) translate(0, -50%);
    }
    .header-menu-icon._active::before {
        bottom: 50%;
        left: 27%;
        transform: rotate(45deg) translate(0, 50%);
    }
    .header-menu-icon._active::after {
        top: 33%;
        left: 27%;
        transform: rotate(-45deg) translate(0, -50%);
    }
    .header-menu-icon._active span {
        transform: scale(0) translate(0, -50%);
    }
    .header__nav {
        position: fixed;
        top: -200%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 0;
        z-index: 100;
        transition: top 0.8s ease 0s;
    }
    .header__nav._active {
        top: 0;
    }
    .nav__list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 100px;
        padding-left: 30px;
        align-items: baseline;
    }
    .nav__list a {
        color: #07416B;
    }
    .header__bot .header__links {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 20px;
        padding-left: 30px;
        margin-top: 20px;
    }
    .header__bot .header__links a,
    .header__bot .header__links span {
        color: #07416B;
    }
    .header__bot .header__soc {
        display: flex;
        padding-left: 30px;
        margin-top: 20px;
    }
    .header__wrapper {
        display: none;
    }
}
@media (max-width:540px) {
    .feedback-link {
        display: none;
    }
}

/* main */
main {
    background: url('../img/main-img-bg.png') center no-repeat;
    background-size: cover;
}
.main-slider-slide {
    position: relative;
}
.main-slider-slide::after {
    position: absolute;
    content: '';
    background: #00000059;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.slide-content {
    padding: 200px 20px;
    position: relative;
    z-index: 10;
}
.slide-content h2 {
    color: #fff;
}
.slide-content p {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.50);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 138.889% */
    max-width: 760px;
    margin: 30px auto 0;
    padding: 0 30px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}
.main-slider .swiper-button-prev {
    left: 10%;
}
.main-slider .swiper-button-next {
    right: 10%;
}
.swiper-pagination-bullet {
    background-color: #fff;
}
.brands {
    background: #EFEFEF;
}
.brands-slider {
    height: 100px;
    padding: 30px 20px;
}
/* .brands-slider img {
    filter: grayscale(100%);
} */
.brand-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.brand-slide img {
    width: 60%;
    height: 100%;
}
.plumbing h2 {
    background: url('../img/title-bg.svg') center no-repeat;
}
.plumbing p {
    color: #545454;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin-top: 30px;
}
.products-slider {
    height: 530px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.products-slide {
    height: calc((100% - 20px) / 2);
    overflow: hidden;
    position: relative;
    border: 1px solid #E8E8EA;
    background: #FFF;
}
.products-slide::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.35) 100%);
    width: 100%;
    height: 50%;
}
.products-slide img {
    object-fit: contain;
    width: 85%;
    display: block;
    margin: auto;
}
.products-slide p {
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    z-index: 5;
    margin: 0;
    text-align: start;
    bottom: 20px;
    padding: 0 20px;
}
.price-btn {
    max-width: 265px;
    margin: auto;
}
.about__wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin-top: 60px;
}
.about__card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about__card h3 {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 19px; /* 105.556% */
    margin-top: 17px;
}
.about__card p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px; /* 121.429% */
    letter-spacing: -0.4px;
    margin-top: 20px;
}
.form {
    position: relative;
}
.form .container {
    padding: 80px 20px;
}
.form::after {
    position: absolute;
    content: '';
    background: #07416bb8;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}
.form__wrapper {
    background-color: #fff;
    position: relative;
    z-index: 10;
    max-width: 570px;
    margin: auto;
    padding: 60px;
    border-radius: 10px;
}
.form__wrapper h2 {
    color: #333;
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.form__wrapper form {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
.form__wrapper label {
    color: #333;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}
.form__wrapper input {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
}
.form__wrapper input:not(:last-of-type) {
    margin-bottom: 35px;
}
.form__wrapper button {
    margin-top: 50px;
}
.map iframe {
    width: 100%;
}
@media (max-width:1240px) {
    .about__wrapper {
        grid-template-columns: repeat(4,1fr);
    }
}
@media (max-width:992px) {
    .main-slider .swiper-button-prev,
    .main-slider .swiper-button-next {
        display: none;
    }
    .slide-content {
        padding: 100px 20px;
    }
    .slide-content p {
        font-size: 14px;
    }
    .products-slide p {
        font-size: 14px;
    }
    .form__wrapper {
        padding: 30px;
    }
    .form__wrapper h2 {
        font-size: 20px;
    }
    .form__wrapper input:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .about__wrapper {
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width:640px) {
    .about__wrapper {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:480px) {
    .about__wrapper {
        grid-template-columns: repeat(1,1fr);
    }
}
/* main */

/* footer */
.footer {
    background-color: #07416B;
    padding-top: 50px;
    padding-bottom: 20px;
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.footer__top .header__soc svg {
    width: 40px;
    height: 40px;
}
.contacts {
    display: flex;
    /* align-items: center; */
    gap: 30px;
}

.contacts__group p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
}
.contacts__group span,
.contacts__group a {
    color: #FFF;
    /* text-align: center; */
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    margin-left: 35px;
    display: block;
    max-width: 260px;
}
.footer__bot {
    margin-top: 72px;
    border-top: 1px solid #f4f4f457;
    padding-top: 20px;
}
.footer__bot-wrapp {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.footer__bot-wrapp span,
.footer__bot-wrapp a {
    color: #ffffff52;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer__bot-wrapp a:hover {
    color: #fff;
}
.logo__foot img {
    width: 170px;
}
@media (max-width:1140px) {
    .logo__foot img {
        width: 140px;
    }
    .contacts {
        gap: 14px;
    }
    .footer__top {
        gap: 20px;
    }
    .contacts__group span,
.contacts__group a {
    font-size: 14px;
}
}
@media (max-width:992px) {
    .footer__top {
        flex-direction: column;
        align-items: baseline;
    }
    .contacts {
        flex-direction: column;
        align-items: baseline;
    }
    .footer__bot-wrapp {
        flex-direction: column;
    }
}
/* footer */



/* animation */
.fade-in-left {
    opacity: 0;
    transform: translateX(-300%);
    transition: opacity 0.5s ease, transform 2.5s ease;
  }
  
  .fade-in-right {
    opacity: 0;
    transform: translateX(300%);
    transition: opacity 0.5s ease, transform 2.5s ease;
  }
  
  .visible {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-in-title {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.5s ease, transform 1.5s ease;
  }
  
  .title-visible {
    opacity: 1;
    transform: translateY(0);
  }