html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*                border-sizing: border-box              */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input input:active,
input:hover,
input:focus {
    outline: none;
    outline-offset: 0;
}

/*================================================================================================================================================================================================================
                 Разметка
====================================================================================================================================================================================================================
*/
body {
    max-width: 2000px;
    margin: 0 auto;
}

body.log {
    overflow: hidden;
}

.container {
    width: 100%
}

html {
    scroll-behavior: smooth;
}


/*====================================================================================================================================
    основные стили !!!
=====================================================================================================================================*/

/*==============================================
    Кнопки бургера
==============================================*/

.burger {
    display: none;
    position: fixed;
    content: "";
    top: 85px;
    right: 10px;
    width: 40px;
    height: 35px;
    text-align: center;
    background-color: rgba(0, 0, 0);
    border-radius: 15%;
    z-index: 9999;
}

.bur_one,
.bur_thu,
.bur_three {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background: #0df53c;
}

.bur_one {
    top: 6px;
    right: 5px;
}

.bur_thu {
    top: 16px;
    right: 5px;
}

.bur_three {
    top: 26px;
    right: 5px;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 970px) {
    .burger {
        display: block;
    }
    .bur_one.active {
        transform: rotate(45deg);
        top: 14px;
        transition: .3s;
    }

    .bur_thu.active {
        transform: scale(0);
    }

    .bur_three.active {
        transform: rotate(-45deg);
        top: 14px;
        transition: .3s;
    }
}

/*==============================================
    Данные бургера
==============================================*/

.burger-data {
    position: fixed;
    left: -100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 300px;
    height: 100vh;
    background-color: #282727;
    transition: .3s;
}

.burger-data.active {
    left: 0;
    transition: .3s;
}

.burger-element {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100px;
    height: 50px;
    margin-bottom: 5px;
    margin-left: 30px;
    letter-spacing: 2px;
    font-size: 20px;
    color: rgb(83, 248, 0);
    font-weight: 300;
}

.additional-burger-element {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(83, 248, 0);
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 500px) {
    .burger-data {
        width: 250px;
    }
}

/*==============================================
    социальные кнопки
==============================================*/

.social-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    bottom: 10px;
    right: 20px;
    width: 60px;
    height: 170px;
}

.social-icon {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp {
    background-color: #0df53c;
    color: #ffffff
}

.whatsapp:hover {
    box-shadow: 0 0 10px #0df53c;
}

.telegram {
    background-color: #079ff7;
    color: #ffffff
}

.telegram:hover {
    box-shadow: 0 0 10px #079ff7;
}

.phone {
    font-size: 35px;
    background-color: #ffffff;
    color: #000000
}

.phone:hover {
    box-shadow: 0 0 10px #ffffff;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 500px) {
    .social-wrapper {
        right: 10px;
    }
}

/*==============================================
    модалка
==============================================*/

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    height: 360px;
    background-color: rgb(83, 248, 0);
    z-index: 1001;
    box-shadow: 0 0 5px #353232;
    border-radius: 5px;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99%;
    height: 99%;
    background-color: #8e8e8e;
    text-align: center;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 5px;
}

.modal-text-h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.modal-text-h2 {
    font-size: 16px;
}

#form-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-field {
    width: 230px;
    height: 35px;
    box-shadow: 0 0 5px #353232;
    border: none;
    border-radius: 7px;
    margin-bottom: 15px;
    text-indent: 5px;
    background-color: #F0F0F0;
    color: #000;
    font-style: oblique;
    transition: all 0.3s ease;
}

.form-field:hover {
    cursor: pointer;
    background-color: #FFF;
    box-shadow: 0 0 5px #FFF;
}

.form-modal-button {
    height: 30px;
    width: 170px;
    box-shadow: 0 0 5px #797979;
    border: none;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    background-color: #656060;
}

.form-modal-button:hover {
    cursor: pointer;
    box-shadow: 0 0 10px rgb(83, 248, 0);
}

.text-button {
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    color: rgb(83, 248, 0);
    padding-top: 2px;
    letter-spacing: 2px;
}

.close-modal {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.close-modal::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: rgb(83, 248, 0);
    top: 14px;
    left: 0px;
    transform: rotate(45deg);
}

.close-modal::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: rgb(83, 248, 0);
    top: 14px;
    left: 0px;
    transform: rotate(-45deg);
}

/*==============================================
    адаптив
==============================================*/

/* не требуется */

/*==============================================
    модалка 'спасибо'
==============================================*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f6f2f2;
    display: none;
    z-index: 1001;
}

.popup {
    position: absolute;
    width: 280px;
    height: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background-color: #8e8e8e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.popup-p6 {
    color: rgb(83, 248, 0);
    box-shadow: 0 0 7px #F0F0F0;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 23px;
    height: 23px;
    cursor: pointer;
}

.close-popup:before {
    content: '';
    background-color: #F0F0F0;
    position: absolute;
    height: 2px;
    width: 30px;
    top: 11px;
    left: -4px;
    transform: rotate(-45deg);
}

.close-popup:after {
    content: '';
    background-color: #F0F0F0;
    position: absolute;
    height: 2px;
    width: 30px;
    top: 11px;
    transform: rotate(45deg);
    left: -4px;
}

/*==============================================
    бар
==============================================*/

.bar {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 77px;
    background-color: rgba(0, 0, 0);
}

.bar-contur {
    width: 100%;
    height: 2px;
    background-color: rgb(12, 12, 12);
}

.bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    width: 100%;
    background-color: rgba(0, 0, 0);
}

.logo {
    width: 200px;
}

.logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-element {
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100px;
    height: 35px;
    margin: 0 5px;
    letter-spacing: 2px;
    font-size: 18px;
    color: rgb(83, 248, 0);
    font-weight: 600;
}

.pfone {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    width: 200px;
    margin: 5px;
    padding: 5px;
}

.pfone a {
    font-size: 20px;
    text-decoration: none;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 1px;
}

.pfone p {
    font-size: 16px;
    color: rgb(83, 248, 0);
    font-weight: 500;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 970px) {
    .bar {
        height: 72px;
    }
    .bar-wrapper {
        height: 70px;
    }
    .bar-element {
        display: none;
    }
    .pfone {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 70%;
    }
    .logo {
        width: 20%;
    }
    .pfone a {
        margin-right: 10px;
    }
}

@media (max-width: 500px) {
    .pfone {
        width: 70%;
    }
    .logo {
        width: 25%;
    }
    .pfone a {
        font-size: 13px;
    }
    
    .pfone p {
        font-size: 11px;
    }
}

/*==============================================
    первый блок
==============================================*/

.sec-1 {
    height: 100vh;
    background-color: rgba(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sec-default {
    height: 77px;
}

.logo1 {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 50px 0px;
}

.sec-1-h1 {
    font-size: 70px;
    color: white;
    font-weight: 500;
    letter-spacing: 2px;
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 0 0 4px white;
}

.sec-1-h2 {
    font-size: 70px;
    color: white;
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px white;
}

.sec-1-h3 {
    font-size: 40px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 0 0 3px white;
}

.main-data {
    position: relative;
}

.cust-p1 {
    font-size: 30px;
    color: rgb(83, 248, 0);
    font-weight: 500;
    letter-spacing: 2px;
    font-style: italic;
    margin-bottom: 10px
}

.cust-p2 {
    font-size: 35px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 3px;
    font-style: italic;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-data ul{
    margin-left: 1vw;
    list-style-type: disc;
    font-size: 16px;
    font-weight: 300;
    color: rgb(83, 248, 0);
    letter-spacing: 2px;
    font-style: italic;
    line-height: 25px;
}

.form1 {
    position: absolute;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    background-color: #383636;
    box-shadow: 0 0 5px #797979;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.form-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.form1 p {
    display: block;
    font-size: 18px;
    transition: all 0.3s ease;
    color: rgb(83, 248, 0);
    letter-spacing: 2px;
}

.form-button:hover p {
    color: #f7ef04;
}

.form1:hover {
    box-shadow: 0 0 10px #fefefe;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 700px) {
    .sec-default {
        height: 72px;
    }
    .sec-1-h1 {
        font-size: 50px;
    }
    
    .sec-1-h2 {
        font-size: 50px;
    }
    .form1 {
        bottom: 30px;
    }
    .sec-1-h3 {
        font-size: 25px;
    }
}

@media (max-width: 500px) {
    .cust-p1 {
        font-size: 20px;
    }
    .cust-p2 {
        font-size: 25px;
    }
    .main-data ul{
        font-size: 14px;
    }
}

/*==============================================
     второй блок
==============================================*/

.sec-2 {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0);
}

.sec-2-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 95%;
}

.adv-h1 {
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 3px;
    font-style: italic;
}

.advantages {
    width: 95%;
    height: 95%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-evenly;
    align-items: center;
}

.advantages img {
    object-fit: contain;
    width: 45px;
    height: 45px;
}

.advantages p {
    margin: 5px 0;
}

.adv-h2 {
    font-size: 18px;
    color: rgb(83, 248, 0);
    font-weight: 500;
    letter-spacing: 2px;
    font-style: italic;
    text-transform: uppercase;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 60%;
    text-align: center;
    margin: auto;
}

.adv-h3 {
    font-size: 16px;
    color: rgb(83, 248, 0);
    font-weight: 300;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 1200px) {
    .advantage-card {
        width: 90%;
        height: 70%;
    }
}

@media (max-width: 750px) {
    .advantage-card {
        width: 90%;
        height: 95%;
    }
}

@media (max-width: 650px) {
    .sec-2 {
        height: 100vh;
    }
    .advantages {
        height: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .sec-2 {
        height: 115vh;
    }
}

/*==============================================
   третий блок
==============================================*/

.sec-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0);
    text-align: center;
}

.sec-3-h1 {
    margin: 10px 0;
    font-size: 30px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 3px;
    font-style: italic;
    text-transform: uppercase;
}

.sec-3-h2 {
    margin: 5px 0;
    font-size: 20px;
    color: rgb(83, 248, 0);
    font-weight: 300;
}

.tg-button {
    margin: 10px 0;
    background-color: #079ff7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sec-3-telegram {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 2px;
}

.sec-2-telegram i {
    margin: 0 5px;
}

.tg-button:hover {
    box-shadow: 0 0 10px #68b5e1;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 500px) {
    .sec-3-h1 {
        margin: 10px 0;
        font-size: 20px;
        letter-spacing: 2px;
    }
}

/*==============================================
   четвертый блок
==============================================*/

.sec-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0);
    text-align: center;
}

.sec-4-h1 {
    margin: 40px 0 20px 0;
    font-size: 30px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 3px;
    font-style: italic;
    text-transform: uppercase;
}

.sec-4-wrapper {
    margin: 10px 0;
    width: 95%;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-template-rows: 1fr;
    justify-content: space-evenly;
    align-items: center;
}

.sec-4-def {
    content: "";
    width: 160px;
    height: 0.1px;
    background-color: rgb(83, 248, 0);
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.sec-4-h2 {
    margin: 5px 0;
    font-size: 20px;
    color: rgb(83, 248, 0);
    font-weight: 300;
}

.form2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    background-color: #383636;
    box-shadow: 0 0 5px #797979;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    margin: 10px 0;
}

.form2 p {
    display: block;
    font-size: 18px;
    transition: all 0.3s ease;
    color: rgb(83, 248, 0);
    letter-spacing: 2px;
}

.form-button:hover p {
    color: #f7ef04;
}

.form2:hover {
    box-shadow: 0 0 10px #fefefe;
}

.ns-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #383636;
    box-shadow: 0 0 5px #797979;
    margin: 10px 0;
}

.sec-4-ns {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: rgb(83, 248, 0);
    letter-spacing: 1.5px;
}

.sec-4-ns i {
    margin: 0 5px;
}

.sec-4-ns:hover {
    color: #f7ef04;
}

.ns-button:hover {
    box-shadow: 0 0 10px #fefefe;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 800px) {
    .sec-4-wrapper {
        margin: 5px 0 0 0;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .sec-4-h1 {
        margin: 30px 0 5px 0;
    }
}

@media (max-width: 500px) {
    .sec-4-h1 {
        font-size: 25px;
    }
}

/*==============================================
   пятый блок
==============================================*/

.sec-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0);
    text-align: center;
}

.sec-5-title{
    margin: 40px 0 20px 0;
    font-size: 25px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 2px;
    font-style: italic;
    text-transform: uppercase;
}

.sec-5-wrapper {
    margin: 10px 0;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(2 , 45%);
    justify-content: space-evenly;
    align-items: center;
}

.city {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
}

.city ul{
    color: rgb(83, 248, 0);
    list-style-type: disc;
    line-height: 25px;
}

.city-element {
    margin: 10px 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    letter-spacing: 2px;
    font-size: 22px;
    color: rgb(83, 248, 0);
    font-weight: 600;
}


/*==============================================
    адаптив
==============================================*/

@media (max-width: 600px) {
    .sec-5-title{
        font-size: 20px;
    }

    .city-element {
        letter-spacing: 2px;
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .city-element {
        letter-spacing: 1.5px;
        font-size: 16px;
    }
}

/*==============================================
   шестой блок
==============================================*/

.sec-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content {
    text-align: center;
    color: #000000;
    min-width: 90vw;
    min-height: 50vh;
    padding: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);   
}

.content h1 {
    font-size: 35px;
    margin: 5px 5px 10px 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*==============================================
    адаптив
==============================================*/

/* не требуется */

/*==============================================
   седбмой блок
==============================================*/

.sec-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0);
    text-align: center;
}

.contact-wrapper {
    display: flex;
    width: 95%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact {
    margin: 40px 0 20px 0;
    font-size: 25px;
    color: rgb(83, 248, 0);
    font-weight: 700;
    letter-spacing: 2px;
    font-style: italic;
}

.ikon-wrapper {
    margin: 10px 0;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(2 , auto);
    justify-content: space-evenly;
    align-items: center;
}

.sec-7-social {
    text-decoration: none;
    height: 50px;
    margin: 20px 0;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.whats-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    background-color: #0df53c;
    color: #ffffff;
}

.whats-text {
    font-size: 18px;
    color: rgb(20, 253, 20);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 5px;
}

.tg-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    background-color: #079ff7;
    color: #ffffff;
}

.tg-text {
    font-size: 18px;
    color: #079ff7;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 5px;
}

.phone-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
}

.phone-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 5px
}

.ns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 50%;
    background-color: #079ff7;
    color: #ffffff;
}

.ns-text {
    font-size: 18px;
    color: #079ff7;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 5px;
}

.sec-7-ns {
    text-decoration: none;
    font-size: 18px;
    color: rgb(20, 253, 20);
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0 5px;
    font-style: italic;
}

/*==============================================
    адаптив
==============================================*/

@media (max-width: 1200px) {
    .ikon-wrapper {
        grid-template-columns: 1fr;
    }

    .sec-7-social {
        padding-left: 30%;
    }
}

@media (max-width: 800px) {
    .sec-7-social {
        padding-left: 10%;
        margin: 5px 0;
    }
}

@media (max-width: 600px) {
    .sec-7-social {
        padding-left: 5px;
    }
}

@media (max-width: 500px) {
    .ikon-wrapper {
        width: 99%;
    }
    .sec-7-social {
        height: 35px;
        /* margin: 20px 0; */
    }
    .whats-text {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 0 2px;
    }
    .tg-text {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 0 2px;
    }
    .phone-text {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 0 2px;
    }
    .ns-text {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin: 0 2px;
    }
    .sec-7-ns {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .sec-7-social {
        width: 99%;
    }
}

