* {
    padding: 0;
    margin: 0;
    /* outline: 2px solid red; */
}

/* Стили самой страницы */

body {
    background-color: #FAFBFF;
    overflow-x: hidden;
}

main {
    width: 100%;

}

section {
    width: 90%;
    margin: auto;
}
.section-title {
    padding-top: 100px;
}
.telegram-color {
    color: #0088CC; 
}
.gradient1 {
    position: absolute;
    width: 725.07px;
    height: 725.07px;
    transform: rotate(-89.69deg);
    transform-origin: 0 0;
    background: linear-gradient(143deg, #6100FF 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 9999px;
    filter: blur(280.42px)
}

/* Header */
header {
    width: 100%;
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    /* background: #000000; */
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    box-sizing: border-box;
}

header>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header>div>a>img{
    width: 250px;
}
.navigation {
    display: flex;
}

.tel,
.socials,
.lang {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    background: radial-gradient(108.11% 108.11% at 50% 50%, rgba(255, 255, 255, 0.33) 0%, #0088CC 100%);
    backdrop-filter: blur(5.8139543533325195px);
    cursor: pointer;
}

.tel>a, .tel>p {
    display: none;
}

.tel.active {
    width: 230px;
    background-color: rgba(0, 136, 204, 0.6);
    justify-content: space-evenly;
    transition: 1s;
}

.tel.active>p {
    display: block;
    border-radius: 0;
    margin: 0;
    font-family: Gilroy-SB ;
    font-size: 18px;
    color: white;
    text-decoration: none;
    background: none;
    opacity: 0;
    animation: ani 4s forwards;
}

@keyframes ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.socials>a {
    display: none;
}

.socials.active {
    width: 140px;
    background-color: rgba(0, 136, 204, 0.6);
    justify-content: space-evenly;
    transition: 1s;
}

.socials.active>img {
    display: none;
}

.socials.active>a>img {
    height: 100%;
}

.socials.active>a {
    display: block;
    border-radius: 0;
    height: 37px;
    opacity: 0;
    animation: share 3s forwards;

}

@keyframes share {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.lang {
    position: relative;
    margin-right: 60px;
}

.lang.active {
    width: 140px;
    background-color: rgba(0, 136, 204, 0.6);
    justify-content: space-evenly;
    transition: 1s;
}

.lang_option {
    display: none;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-decoration: none;
}

.lang.active>a {
    display: flex;
    animation: ani 0.5s forwards;
    color: #333;
    text-decoration: none;
    font-family: Gilroy-SB;
    font-size: 18px;
}

.lang_option.active {
    display: flex;
    color: #30358E;
    text-decoration: none;
    font-family: Gilroy-SB;
    font-size: 18px;
}

.lang.active>.lang_option.active {
    color: #30358E;
    font-family: Gilroy-BD;

}


.burger {
    margin-top: 10px;
}

.burger span {
    position: relative;
    display: block;
    width: 45px;
    height: 4px;
    margin-bottom: 8px;
    background-color: #0088CC;
    cursor: pointer;
    z-index: 5;
    border-radius: 10px;
}

.burger span:first-child,
.burger span:nth-child(2),
.burger span:last-child {
    top: 0;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}

.burger span:last-child {
    width: 25px;
    float: right;
}

.burger.active span:first-child {
    top: 5.4545454545px;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
    background-color: white;
}

.burger.active span:nth-child(2) {
    top: -5.4545454545px;
    transform: rotate(-45deg);
    transition: 0.5s ease-in-out;
    background-color: white;
}

.burger.active span:last-child {
    right: 11px;
    top: -16.3636363636px;
    transform: rotate(-45deg);
    transition: 0.5s ease-in-out;
    background-color: white;
}

.navbar {
    position: absolute;
    top: -40px;
    right: 0;
    height: 110vh;
    width: 550px;
    background-color: rgba(0, 136, 204, 0.8);
    backdrop-filter: blur(20px);
    clip-path: circle(0px at 80% 50px);
    transition: 0.5s ease-in all;

}



.nav-links {
    position: absolute;
    top: 70px;
    left: 40px;
}

.navbar>.nav-links>li {
    list-style-type: none;
    margin-bottom: 28px;
}

.navbar .nav-links li>p {
    font-family: Gilroy-BD;
    font-size: 24px;
    color: white;
    margin-top: 21px !important;
}

.navbar>.nav-links>li a {
    display: inline-flex;
    text-decoration: none;
    letter-spacing: 1px;
    align-items: center;
}

.navbar>.nav-links>li a>p {
    font-family: Gilroy-BD;
    color: white;
    font-size: 38px;
    text-transform: uppercase;
}

.navbar.nav-open {
    display: block;
    clip-path: circle(100%);
}

.nav-links>div {
    position: absolute;
    top: 460px;
    left: 40px;
}
.nav_lang{
    display: none;
}
.arrows {
    margin-left: 30px;
    width: 28px;
    height: 28px;
    outline: white 1px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in;
}

.nav-links a:hover .arrows {
    background: #222;
    outline: none;
}

.nav-links>li a:hover>p {
    color: #222;
    transition: 0.3s ease-in;
}

.nav-links div li {
    list-style-type: none;
    /* width: 130px; */
    text-align: right;
    margin-bottom: 20px;
}

.nav_socials {
    margin-top: 60px;
}

.social_btn {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.nav-links>div>li>a:hover {
    color: #c1c1c1;
}

.navbar .nav-links li:nth-of-type(1),
.navbar .nav-links li:nth-of-type(2),
.navbar .nav-links li:nth-of-type(3),
.navbar .nav-links li:nth-of-type(4),
.navbar .nav-links li:nth-of-type(5),
.navbar .nav-links li:nth-of-type(6),
.navbar .nav-links li:nth-of-type(7),
.navbar .nav-links li:nth-of-type(8) {
    opacity: 0;
    transition: 0.3s ease-in all;
}

.navbar .nav-links li:nth-of-type(1).nav-link-open,
.navbar .nav-links li:nth-of-type(2).nav-link-open,
.navbar .nav-links li:nth-of-type(3).nav-link-open,
.navbar .nav-links li:nth-of-type(4).nav-link-open,
.navbar .nav-links li:nth-of-type(5).nav-link-open,
.nav-links li:nth-of-type(6).nav-link-open,
.nav-links li:nth-of-type(7).nav-link-open,
.nav-links li:nth-of-type(8).nav-link-open {
    opacity: 1;
    transform: translateY(10px);
}

.navbar .nav-links li:nth-of-type(1).nav-link-open {
    transition-delay: 0.25s;
}

.navbar .nav-links li:nth-of-type(2).nav-link-open {
    transition-delay: 0.35s;
}

.navbar .nav-links li:nth-of-type(3).nav-link-open {
    transition-delay: 0.45s;
}

.navbar .nav-links li:nth-of-type(4).nav-link-open {
    transition-delay: 0.55s;
}

.navbar .nav-links li:nth-of-type(5).nav-link-open {
    transition-delay: 0.65s;
}

.navbar .nav-links li:nth-of-type(6).nav-link-open {
    transition-delay: 0.75s;
}

.navbar .nav-links li:nth-of-type(7).nav-link-open {
    transition-delay: 0.85s;
}

.navbar .nav-links li:nth-of-type(8).nav-link-open {
    transition-delay: 1s;
}

.banner{
    width: 100%;
    margin-bottom: 30px;
}

/* .slides>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.swiper-pagination-bullet {
    background: #30358E;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #CD202A;
    /* opacity: 1; */
}
.banner-title {
    position: relative;
}
.banner_text {
    width: 80%;
    margin: auto;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.banner_text-bottom {
    margin-top: 70px;
}
.banner_wrapper::after {
    content: " ";
    background-color: #000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.button {
    padding: 12px 30px;
    background-color: #0088CC;
    font-family: Gilroy-BD  ;
    color: white;
    text-decoration: none;
    font-size: 26px;
    border-radius: 10px;
}
button {
    background-color: #0088CC;
}
.banner_wrapper {
    height: 100vh;
}
.banner_gif-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100vh;

}
.banner_gif-wrapper video {
    width: 100%;
    object-fit: cover;
    height: 100vh;
}
.banner_text>div {
    display: flex;
    width: max-content;
    margin: auto;
}

.banner_photo {
    width: 45%;
}
.banner-title {
    position: absolute;
    z-index: 10;
}
.banner_wrapper {

}
.banner_gif {
   position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;

}


.banner_photo>img {
    width: 100%;
}

.player {
    margin-left: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(48, 53, 142, 0.80);
    backdrop-filter: blur(6.606741428375244px);
    background-size: 400% 400%;
    cursor: pointer;
    animation: note 2s ease-in-out infinite alternate;

}

@keyframes note {
    0% {
        transition: 0.5s ease-in;
        background: radial-gradient(58.75% 58.75% at 50% 50%, rgba(127, 90, 248, 0.6) 0%, rgba(25, 25, 25, 0.6) 100%);
    }

    25% {
        transition: 0.5s ease-in;
        background: radial-gradient(78.89% 78.89% at 50% 50%, rgba(127, 90, 248, 0.6) 0%, rgba(25, 25, 25, 0.6) 100%);
    }

    50% {
        transition: 0.5s ease-in;
        background: radial-gradient(105.3% 105.3% at 50% 50%, rgba(127, 90, 248, 0.6) 0%, rgba(25, 25, 25, 0.6) 100%);
    }

    100% {
        transition: 0.5s ease-in;
        background: radial-gradient(89.57% 89.57% at 50% 50%, rgba(131, 94, 255, 0.6) 0%, rgba(25, 25, 25, 0.6) 100%);
    }
}



/* Модальный (фон) */
.modal {
    display: none;
    /* Скрыто по умолчанию */
    position: fixed;
    /* Оставаться на месте */
    z-index: 100;
    /* Сидеть на вершине */
    left: 0;
    top: 0;
    width: 100%;
    /* Полная ширина */
    height: 100vh;
    /* Полная высота */
    overflow: hidden;
    /* Включите прокрутку, если это необходимо */
    /* background-color: rgb(0, 0, 0); */
    /* Цвет запасной вариант */
    background-color: rgba(0, 0, 0, 0.8);
    /* Черный с непрозрачностью */

}

/* Модальное содержание/коробка */
.modal-content {
    background-color: #30358E;
    margin: 6% auto;
    /* 15% сверху и по центру */
    padding: 10px 10px;
    width: 70%;
    height: 70%;
    border-radius: 20px;
    opacity: 0;
    animation: share 2s forwards;
    /* Может быть больше или меньше, в зависимости от размера экрана */
}

.modal-content>span {
    display: flex;
    transition: 0.5s ease-in;
}

.modal-content>span>p {
    font-family: Gilroy-SB;
    color: #ffffff;
    font-size: 24px;
    margin: 15px 10px 0 0;
    font-weight: bold;
    text-align: right;
    transition: 0.5s ease-in;
}

/* Кнопка закрытия */
.close {
    color: #ffffff;
    float: right;
    font-size: 50px;
    margin-right: 10px;
}

.close:hover,
.close:focus,
.close:hover>p,
.close:focus>p {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.modal-content>iframe {
    width: 100%;
    height: 90%;
    border-radius: 20px;
}

#about {
    width: 100%;
    
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}
#about h3{

    margin-bottom: 80px;
    text-align: center;
}
.aboutus_text {
    width: 90%;
    margin: auto;
}
.a_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.a_photo{
    width: 45%;
}
.a_photo img{
    width: 100%;
}
.a_text{
    width: 45%;
}
.a_text div{
    display: flex;
    align-items: center;
}
.flat-icons {
    width: 60px;
    height: 40px;
    display: inline-block;
    padding-right: 20px;
}
.flat-icons img {
    width: 100%;
    height: 100%;
}
.aboutus_text p {
    margin: 20px 0 30px 0;
}
.experience {
    width: 95%;
    margin: auto;
    display: flex;
    text-align: center;
    align-items: center;
}
.experience-col {
    width: 50%;
    /* display: flex;
    align-items: center; */

}


.experience div {
    color: #000;

}
.experience-wrapper
{

}
.experience-num {
    display: flex;
    justify-content: space-evenly;
}
.experience-num >div{
    width: 33%;
    display: flex;
    justify-content: center;
}
.experience-decsrp {

    display: flex;
    justify-content: space-evenly;
}
.experience-decsrp >div{
    width: 33%;
    display: flex;
    justify-content: center;
}
.experience-num h6{
    margin: 0 ;
}
.exp-m{
    margin: 0;
}
.experience_img {
    width: 100%;
    height: 100%;


}
.experience_img img {
    width: 60%;

}
.aboutus_photo {
    width: 50%;
}

.aboutus_photo>img {
    width: 100%;
    border-radius: 20px;
}

.gradient2 {
    display:none;
}

.services_wrapper {
    width: 100%;
    margin-top: 10%;
}
.services-img {
    position: relative;

    margin-bottom: 80px;
    width: 100%;
}
.services-img img {

    width: 100%;


}
.services_text {
    width: 70%;
    margin: auto;
    text-align: center;
}

.services_text p {
    margin: 40px 0 60px 0;
}

.services_wrapper .services_block {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.services_block>div:nth-of-type(1) {
    margin-right: 40px;
}

.hover-effect {
    width: 700px;
    height: 210px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px 15px 40px;
    box-sizing: border-box;
    transition: 0.5s ease-out;
}
.hover-effect:hover>h4{
    color: #fff;
    transition: 0.5s ease-in;
}
#openModal1{
    background: url(../img/pol.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
#openModal2{
    background: url(../img/multi.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
#openModal3{
    background: url(../img/vrf.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
#openModal4{
    background: url(../img/chiller.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/* .hover-effect:hover {
    background-color: #30358E;
}

.hover-effect:hover>h4 {
    color: white;
    transition: 0.5s ease-in-out;
}
.hover-effect >img{
    height: 100%;
} */
.productModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
}

.productModal-content {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px 50px 60px 50px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

/* .productModal-content>div {
    display: flex;
    justify-content: space-between;
    width: 100%;
} */
.product-descp{
    width: 49%;
}
.product-photo{
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-photo>img{
    width: 100%;
}
.productModal-content p {
    margin-top: 30px;
}

/* .productModal-content>div>div:nth-of-type(1) {
    width: 30%;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
} */
.productModal-content>div>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .productModal-content>div>div:nth-of-type(1)>img {
    width: 100%;
    border-radius: 10px;
} */
.productModal-content>div>div>img {
    width: 500px;
    border-radius: 10px;
}
/* .modal_full
{
    width: 100%!important;
} */
/* .productModal-content>div>div:nth-of-type(2) {
    width: 66%;
}

.productModal-content>div>div:nth-of-type(2)>img {
    width: 100%;
    border-radius: 10px;

} */

#portfolio {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.portfolio_text {
    margin-top: 100px;
    width: 65%;
    margin: auto;
}

.portfolio_text p {
    margin-top: 40px;
}

.portfolio_photo {
    width: 35%;
    display: inline-flex;
    flex-direction: column;
    /* overflow: hidden; */
}
.port_slide{
    margin: 40px 40px 0 40px;
}
.port_slide >img{
    width: 100%;
    /* height: 260px; */
    border-radius: 20px;
}
.port_slide>p{
    margin: auto;
    margin-top: 20px;
    font-family: Gilroy-SB;
    font-size: 26px;

}
.portfolio_photo>div {
    width: 100%;
}

.portfolio_photo>div>img {
    width: 100%;
    border-radius: 10px;
}

.portfolio_photo1 {
    width: 74%;
    float: right;
    margin-top: 100px;
    margin-right: 20px;

}

.portfolio_photo1>img {
    width: 100%;
    border-radius: 20px;
}


.portfolio_photo3 {
    margin-top: 40px;


}

.wind {
    position: absolute;
    z-index: -1;
    margin-top: 390px;
    left: 900px;

}

#testimonials {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
}

.t_slider {
    width: 100%;
    margin-top: 80px;
}

#testimonials>h3 {
    text-align: center;
}

.t_slide {
    width: 435px;
    height: 342px;
    background: #ffffff;
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    opacity: 0.5;
}

/* .t_slider> .slick-center{
    opacity: 1!important;
} */
.t_slide>div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 2px solid #30358E;
}

.t_slide>div>img {
    width: 70%;
}

.slick-dots {
    margin-top: 40px !important;
    width: 20%;
    margin: auto;
    display: flex;
    justify-content: center;
}

/* Скрываем цифры внутри dots и маркеры */
.slick-dots li {
    list-style: none;
}

/* Стили для активной точки (active dot) */
.slick-dots li.slick-active button {
    background-color: #CD202A;
    /* Цвет фона активной точки */
}

/* Стили для неактивных точек (inactive dots) */
.slick-dots li button {
    background-color: #0088CC;
    /* Цвет фона неактивных точек */
    width: 10px;
    /* Ширина неактивной точки */
    height: 10px;
    /* Высота неактивной точки */
    font-size: 0px;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
}


/* Стили для активного слайда */
.slick-slide.slick-current {
    opacity: 1;
    /* Полная непрозрачность для активного слайда */
    transition: opacity 0.3s ease;
    /* Плавный переход */
}

#faq>h3,
#faq>p {
    text-align: center;
}

#faq>p {
    margin: 40px 0 60px 0;
}

.faq-section {
    margin-top: 60px;
    width: 80%;
    margin: auto;
}

.faq-item {
    background: #fff;
    cursor: pointer;
    margin-bottom: 40px;
    border-radius: 20px;

}

.faq-question {
    padding: 30px 20px 30px 40px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px 40px;
    border-radius: 0 0 20px 20px;
    transition: 0.5s ease-in-out;

}

.faq-item.active .faq-question {
    background-color: #30358E;
    color: #fff;
}

.faq-item.active .faq-question h4 {
    color: #fff;
}

.faq-item.active .faq-answer {
    background-color: #30358E
}


.faq-item.active .faq-answer p {
    color: #fff;
}

.faq-item.active .question-mark::after {
    content: '-';
}

.question-mark::after {

    content: '+';
    color: #fff;
    font-family: Gilroy-bd;
    font-size: 20px;

}

.faq-question>div {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: rgba(48, 53, 142, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-question>div>div {
    width: 37px;
    height: 37px;
    background: rgba(48, 53, 142, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.faq-item.active .faq-question>div {
    background: rgba(235, 236, 255, 0.10)
}

.faq-item.active .faq-question>div>div {
    background: rgba(235, 236, 255, 0.30)
}

#contacts {
    width: 90%;
}

#contacts>h3 {
    text-align: center;
    margin-bottom: 20px;
}
#contacts>p {
    text-align: center;
    margin-bottom: 80px;
}
#contacts>div {
    display: flex;
    justify-content: space-between;
}
.contact_info{
    width: 50%;
}
.contact_info iframe {
    /* width: 60%; */
    
    width: 100%;
    height: 350px;
    border-radius: 20px;
}

.contact_info div {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.contact_info div img {
    margin-right: 20px;
}

.contact_info div a,.contact_info div p {
    font-family: Gilroy-SB;
    color: #231F20;
    font-size: 26px;
    text-decoration: none;
}

.contact_form {
    width: 45%;
    /* flex: 1; */
    /* margin-left: 80px; */
}

form {
    width: 100%;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
}

form>div:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
}

form>div:nth-of-type(1)>div>label {
    margin-left: 10px;
    margin-bottom: 10px;
}

form>div:nth-of-type(1)>div {
    width: 47%;
}

/*form>div:nth-last-child() {*/
/*    display: block;*/
/*}*/

.message {
    height: 175px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    border: none;
    outline: 2px solid #F4F4F5;
    color: #666;
    font-family: MyriadPro;
    font-size: 22px;
    padding: 16px 21px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 10px;
    resize: none;
    transition: 0.5s ease-in-out;
}

.message:active,
.message:focus {
    outline: 2px solid #30358E;
}

button {
    width: 100%;
    height: 56px;
    background: #0088CC;
    border: none;
    outline: none;
    margin-top: 30px;
    color: white;
    font-family: Gilroy-BD;
    font-size: 26px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
}

button:hover {
    background: #1a1d4e;
    color: #0088CC;
}
.banner-button a {
    transition: all 0.4s;
}
.banner-button a:hover {
    background-color: #fff;
    color: #0088CC;
    
}
footer {
    margin-top: 160px;
    width: 100%;
    background: #191919;
    padding: 50px 100px 20px 100px;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/illustration.png);
    background-repeat: no-repeat;
    background-position: right 100px bottom 85px;
}

.slogan>div:nth-of-type(1) {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.slogan p {
    font-family: Gilroy-SM-Italic;
    color: #30358E;
    font-size: 26px;
}

.slogan span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CD202A;
    margin: 12px 15px;
}

.f_socials {
    margin: 50px auto;
    width: 40%;
    display: flex;
    justify-content: space-between;

}
.f_socials a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.social-icons{
    width: 30px;
    height: 30px;

}
.social-icons img {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.4s;
}
.social-icons::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
/* .f_illustration{
    position: relative;
    float: right;
} */
hr {
    width: 100%;
    height: 2px;
    background: #444444;
    border: none;
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;

}

.copyright p {
    color: #666666;
    font-size: 20px;
    font-family: Gilroy-SB;
}