*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: #666;
    text-align: left;
    background-color: #ffffff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: inherit;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

a {
    text-decoration: none;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

video,
img {
    width: 100%;
}

.btn {
    display: block;
    width: fit-content;
    border: 1px solid #ffffff;
    padding: 8px 18px 9px 18px;
    border-radius: 4px;
    background: #fff;
    color: #262626;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.btn.orange {
    background: #FF9C00;
    color: #fff;
}

.btn:hover {
    background: transparent;
    color: #fff;
}

.btn.orange:hover {
    background: #de7e00;
}

section {
    padding: 30px 12px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

h2 {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 10px;
}

h3 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 400;
    line-height: 145%;
}

@media (min-width: 768px) {
    section {
        padding: 40px 24px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    p {
        font-size: 14px;
    }

    .text-large {
        font-size: 19px;
    }
}

@media (min-width: 1024px) {
    .btn {
        padding: 10px 18px 11px 18px;
        font-size: 17px;
    }

    section {
        padding: 80px 64px;
    }

    h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    p {
        font-size: 17px;
    }

    .text-large {
        font-size: 24px;
    }
}

/* Hero section */

header.bg-img {
    background-image: url('../images/hero-img.webp');
}

.navbar {
    padding: 12px;
    width: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(256, 256, 256, .4);
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-toggler {
    padding: 4px 12px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #FFF;
    color: #fff;
    font-size: 14px;
    transition: all .3s;
}

.navbar-toggler:hover {
    background: #fff;
    color: #666;
}

.navbar .logo {
    height: 26px;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
}

.navbar-nav-wrap {
    display: none;
    position: absolute;
    right: 20px;
    left: 20px;
    top: 50px;
    text-align: center;
    background: rgba(86, 85, 85, 0.72);
    padding: 8px 0;
    border-radius: 0 0 4px 4px;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    width: 100%;
    list-style: none;
    color: #fff;
    margin: 6px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    border-radius: 0 0 4px 4px;
}

.nav-item.item-btn {
    padding: 2px 10px 4px 10px;
    border-radius: 4px;
    border: 1px solid #ffffff;
    transition: all 0.3s;
    margin: 16px;
    width: 160px;
}

.nav-item.item-btn:hover {
    background: #fff;
}

.nav-item.item-btn:hover a {
    color: #666;
    text-decoration: none;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.nav-item a:hover {
    text-decoration: underline;
}

.navbar .call-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    padding: 24px 0;
}

.navbar .phone {
    display: flex;
    column-gap: 8px;
    align-items: center;
    color: #fff;
}

.navbar .phone a {
    color: #fff;
}

.navbar .btn-call {
    padding: 10px 18px 11px 18px;
    border-radius: 4px;
    background: #FF9C00;
    color: #fff;
    transition: all 0.3s;
}

.navbar .btn-call:hover {
    background: #de7e00;
}

header.header {
    display: flex;
    height: 460px;
    padding: 80px 24px;
    color: #fff;
}

header .content {
    max-width: 740px;
}

header .content h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 12px;
}

header .content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 24px;
    color: #fff;
    font-style: italic;
}

@media (min-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }

    .navbar-toggler {
        display: none;
    }

    .navbar-nav-wrap {
        display: flex !important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        text-align: center;
        background: none;
        padding: 0;
        border-radius: 0;
        width: 100%;
        justify-content: space-between;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 16px;
        margin: 0 auto;
    }

    .nav-item {
        width: auto;
        margin: 0;
        padding-bottom: 0;
        border-bottom: none;
        border-radius: 0;
    }

    .nav-item.item-btn {
        padding: 3px 10px 5px 10px;
        margin: 0;
        width: auto;
    }

    .nav-item a {
        font-size: 13px;
    }

    .navbar .call-wrap {
        flex-direction: row;
        column-gap: 30px;
        padding: 0;
        margin-left: 30px;
    }

    .navbar .phone a {
        display: none;
    }

    .navbar .btn-call {
        padding: 5px 16px 6px;
        width: 120px;
        font-size: 13px;
        line-height: 16px;
    }

    header.header {
        padding: 100px 24px;
        align-items: flex-start;
    }

    header .content {
        max-width: 500px;
    }

    header .content h1 {
        font-size: 27px;
        margin-bottom: 16px;
    }

    header .content p {
        margin-bottom: 32px;
    }
}

@media (min-width: 1200px) {
    .navbar {
        padding: 16px 64px;
    }

    .navbar .logo {
        height: 38px;
    }

    .navbar-nav {
        column-gap: 20px;
    }

    .nav-item a {
        font-size: 16px;
        line-height: 18px;
    }

    .navbar .call-wrap {
        column-gap: 20px;
    }

    .navbar .phone {
        display: flex;
        column-gap: 8px;
        align-items: center;
        color: #fff;
    }

    .navbar .phone a {
        display: block;
    }

    .navbar .btn-call {
        padding: 13px 18px 15px 18px;
        width: 240px;
        font-size: 16px;
        line-height: 18px;
        border-radius: 4px;
        background: #FF9C00;
        color: #fff;
        margin-left: 0;
        transition: all 0.3s;
    }

    .navbar .btn-call:hover {
        background: #de7e00;
    }

    header.header {
        height: 800px;
        padding: 140px 64px;
        color: #fff;
        align-items: flex-start;
    }

    header .content {
        max-width: 740px;
    }

    header .content h1 {
        font-size: 52px;
        margin-bottom: 24px;
    }

    header .content p {
        font-size: 27px;
        margin-bottom: 36px;
    }
}

@media (min-width: 1400px) {
    .navbar-nav {
        column-gap: 36px;
    }
}

/* About section */

.about {
    background: #F6F6F6;
    text-align: center;
}

.about .text-large {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about .container {
        max-width: 620px;
    }
}

@media (min-width: 1024px) {
    .about .container {
        max-width: 840px;
    }
}

/* Features section */

.features .content-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.features-list-item {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 13px;
}

.features-list-item svg {
    width: 24px;
    min-width: 24px;
}

.features .content-wrap .video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .features .content-wrap {
        flex-direction: row;
        column-gap: 30px;
        align-items: center;
    }

    .features .content-wrap.rtl {
        flex-direction: row-reverse;
    }

    .features .content-wrap .video-wrapper {
        width: 55%;
    }

    .features .content-wrap .content {
        width: 45%;
    }

    .features .content-wrap img {
        max-width: 55%;
    }

    .features-list {
        row-gap: 16px;
    }

    .features-list-item {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .features .content-wrap {
        column-gap: 40px;
        margin-bottom: 40px;
    }

    .features .content-wrap:last-child {
        margin-bottom: 0;
    }

    .features-list-item {
        font-size: 17px;
    }
}

@media (min-width: 1400px) {
    .features .content-wrap {
        column-gap: 60px;
    }
}

/* Steps section */

.steps {
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.steps.bg-img {
    background-image: url('../images/astra-bg-img3.webp');
}

.steps,
.steps h2,
.steps p {
    color: #fff;
}

.steps .content-wrapper {
    padding: 12px;
    background: rgba(0, 0, 0, .5);
    width: fit-content;
    border-radius: 12px;
}

.steps h2 {
    font-size: 24px;
}

.step-list {
    margin: 16px 12px 24px;
}

.step-list-item {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 8px;
}

.step-list-item-number {
    display: flex;
    width: 28px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 4px;
    background: #FFF;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.steps .btn {
    width: 100%;
    font-size: 17px;
    text-align: center;
}

@media (min-width: 768px) {
    .steps {
        height: 500px;
    }

    .steps .content-wrapper {
        padding: 24px;
        border-radius: 16px;
    }

    .steps .content {
        max-width: 500px;
        margin: 0;
    }

    .steps h2 {
        font-size: 36px;
    }

    .step-list {
        margin: 16px 24px 24px;
    }

    .step-list-item {
        column-gap: 12px;
        margin-bottom: 12px;
    }

    .step-list-item-number {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .steps .btn {
        width: 280px;
        padding: 17px 24px;
        font-size: 19px;
    }
}

@media (min-width: 1024px) {
    .steps {
        height: 720px;
    }

    .steps .content-wrapper {
        padding: 40px;
        border-radius: 24px;
    }

    .steps .container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .steps .content {
        max-width: 740px;
    }

    .steps h2 {
        font-size: 52px;
        margin-bottom: 32px;
    }

    .step-list {
        margin: 24px 32px 44px;
    }

    .step-list-item {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .steps .btn {
        width: 340px;
        font-size: 21px;
        padding: 19px 18px 24px;
    }

    .steps .btn:hover {
        background: rgba(0, 0, 0, .4)
    }
}

/* Testimonials section */

.testimonials {
    background: #F6F6F6;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 16px;
}

.slick-dots {
    bottom: -30px !important;
}

.slick-dots li button:before {
    font-size: 8px !important;
    color: #000 !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
    font-size: 16px !important;
    content: '○' !important;
    color: #FF9C00 !important;
    line-height: 14px !important;
}

.slider-item {
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}

.slider-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.slider-item-header-info {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.slider-item-header-info img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.slider-item-header-info .person-info {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}

.slider-item-header-info .person-position {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
}

.slider-item-content {
    font-size: 17px;
    font-weight: 400;
    line-height: 145%;
}

@media (min-width: 768px) {
    .slick-dots {
        bottom: -36px !important;
    }

    .testimonials h2 {
        margin-bottom: 24px;
    }

    .slick-slide {
        max-width: 576px;
        margin: 0 calc(50vw - 312px);
    }

    .slick-prev:before,
    .slick-next:before {
        content: '' !important;
        opacity: 1 !important;
        display: block;
        width: 30px;
        height: 50px;
        margin: 0 auto 20px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slick-prev {
        left: 5px !important;
        z-index: 50;
    }

    .slick-next {
        right: 15px !important;
        z-index: 50;
    }

    .slick-next:before {
        background-image: url('../images/ico-arrow-next.svg');
    }

    .slick-prev:before {
        background-image: url('../images/ico-arrow-prev.svg');
    }
}

@media (min-width: 1024px) {
    .testimonials h2 {
        margin-bottom: 32px;
    }

    .slick-slide {
        width: 800px !important;
        max-width: 800px !important;
        margin: 0 calc(50vw - 464px);
    }

    .slider-item {
        padding: 32px;
    }
}

@media (min-width: 1560px) {
    .slick-slide {
        margin: 0 320px;
    }
}

/* FAQ */

.faq .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}

.faq h2 {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 24px;
}

.faq h2 span {
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.faq-list-item {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #F6F6F6;
}

.faq-list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.faq-list-item-content {
    display: none;
}

@media (min-width: 768px) {
    .faq h2 span {
        font-size: 48px;
    }

    .faq-list-item-header {
        font-size: 17px;
    }

}

@media (min-width: 1024px) {
    .faq .container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        column-gap: 40px;
    }

    .faq h2 span {
        font-size: 60px;
    }

    .faq-list {
        width: 65%;
        margin-top: 12px;
        row-gap: 24px;
    }

    .faq-list-item {
        padding: 32px;
    }

    .faq-list-item-header {
        font-size: 24px;
    }

    .faq-list-item-content {
        font-size: 17px;
    }
}

/* Products */

.products {
    background: #F6F6F6;
}

.products h2 {
    text-align: center;
    margin-bottom: 20px;
}

.products-list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 24px;
}

.product-item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    text-align: center;
    height: 100%;
}

.product-item img {
    width: 80%;
    margin: 0 auto;
}

.product-item-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.product-item-title {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
}

.products .btn {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .products h2 {
        margin-bottom: 30px;
    }

    .products-list {
        display: flex;
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-item {
        width: 348px;
    }

    .product-item-title {
        font-size: 17px;
    }
}

@media (min-width: 1440px) {
    .products-list {
        gap: 32px;
        margin-bottom: 32px;
    }

    .product-item {
        width: 416px;
        padding: 32px;
    }

    .product-item-title {
        font-size: 21px;
    }
}

/* Contact */

.contact {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
}

.contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    padding: 30px 24px 40px 24px;
}

#contact-form {
    scroll-margin-top: -140px;
    border-top: 2px solid rgba(0, 0, 0, 0.10);
    border-bottom: 2px solid rgba(0, 0, 0, 0.10);
}

.contact-form {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 4px;
    background: #F6F6F6;
    width: 100%;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form label {
    display: none;
}

.contact-form input {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #DDD;
    background: #FFF;
    width: 100%;
}

.contact-form .btn {
    margin-top: 12px;
    width: 100%;
    padding: 12px 16px 13px 16px;
}

.form-message {
    display: none;
    margin-top: 10px;
    font-size: 14px;
}

.form-message.success {
    color: green;
}

.form-message.error {
    color: red;
}

@media (min-width: 768px) {
    .contact {
        flex-direction: row;
    }

    .contact-img {
        width: 50%;
    }

    .contact .container {
        padding: 40px 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

@media (min-width: 1280px) {
    .contact-img {
        width: 55%;
    }

    .contact .container {
        padding: 40px 64px;
        max-width: 720px;
        margin-right: 0;
    }

    .contact-form {
        padding: 32px;
    }
}

/* Footer */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 11px solid #919191;
    background: #E3E3E3;
}

footer .container {
    display: flex;
    padding: 30px 12px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.footer-info {
    width: 100%;
    order: 2;
    padding: 12px 0 24px;
    border-bottom: 1px solid #666;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info h3 {
    text-align: center;
    max-width: 240px;
    margin-bottom: 16px;
}

.footer-info .logos {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.footer-info .logos svg {
    width: auto;
    height: 30px;
}

.footer-menu {
    width: 100%;
    order: 1;
    padding: 12px 0 24px;
    border-bottom: 1px solid #666;
}

.footer-menu-item {
    list-style: none;
}

.footer-menu-item a {
    display: block;
    color: #666;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 145%;
    margin-bottom: 16px;
}

.footer-menu-item a:hover {
    text-decoration: underline;
    color: #000;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    width: 100%;
    padding: 24px 20px;
    order: 3;
    border-bottom: 1px solid #666;
}

.footer-contacts a {
    color: #FF9C00;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 145%;
}

.footer-contacts .icons {
    display: flex;
    column-gap: 16px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    footer .container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 24px 24px 40px;
        justify-content: space-between;
        align-items: stretch;
    }

    .footer-info {
        width: 50%;
        padding: 20px 20px 40px;
        align-items: flex-start;
    }

    .footer-info h3 {
        text-align: left;
        font-size: 15px;
        margin-bottom: 24px;
    }

    .footer-menu {
        display: flex;
        justify-content: center;
        column-gap: 44px;
    }

    .footer-contacts {
        align-items: flex-end;
        width: 50%;
        padding: 20px 20px 40px;
    }

    .footer-contacts h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-contacts .icons {
        margin-top: 14px;
    }
}

@media (min-width: 1024px) {
    footer .container {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 40px 24px;
    }

    .footer-info {
        width: 35%;
        order: 1;
        border-top: 1px solid #666;
        justify-content: center;
        padding: 20px;
        max-width: 300px;
    }

    .footer-menu {
        order: 2;
        width: 30%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 16px;
        border-bottom: none;
        padding: 20px;
    }

    .footer-menu-item a {
        margin-bottom: 0;
    }

    .footer-contacts {
        width: 35%;
        border-top: 1px solid #666;
        justify-content: center;
        padding: 20px;
        max-width: 300px;
    }
}

@media (min-width: 1280px) {
    footer .container {
        padding: 40px 64px;
    }

    .footer-info {
        max-width: 340px;
    }

    .footer-contacts {
        max-width: 340px;
    }
}

/* Contact Icons */

.contact-icons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    z-index: 300;
}

.contact-icons-item {
    display: flex;
    padding: 6px;
    border-radius: 8px;
    background: #FF9C00;
    width: fit-content;
}

@media (min-width: 768px) {
    .contact-icons {
        display: none;
    }
}