/* CSS indexPage
1. Reset CSS and utilites 
2. Header         
3. Navigation
4. First screen
5. News Section
6. Services Section
7. Testimonials
8. Callback Section
9. FAQ

*/

/* 1.Reset CSS and utilites*/
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
li,
ol {
    list-style: none;
}

img {
    vertical-align: middle;
    border-style: none;
    font-size: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    height: 100%;
}

@font-face {
    font-family: Onest;
    src: url('./fonts/Onest-Regular.woff2') format('woff2'),
        url('./fonts/Onest-Regular.woff') format('woff');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Onest;
    src: url('./fonts/Onest-Light.woff2') format('woff2'),
        url('./fonts/Onest-Light.woff') format('woff');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: Onest;
    src: url('./fonts/Onest-Medium.woff2') format('woff2'),
        url('./fonts/Onest-Medium.woff') format('woff');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Onest;
    src: url('./fonts/Onest-Bold.woff2') format('woff2'),
        url('./fonts/Onest-Bold.woff') format('woff');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --main-color: #001A34;
    --reverse-main-color: #ffffff;
    --main-bg-color: #FFFFFF;
    --second-bg-color: #F5F6F7;
    --green-color: #4BA907;
    --red-color: #d13737;
    --main-text-color: rgba(0, 26, 52, 0.6);
    --second-text-color: rgba(0, 26, 52, 0.4);
    --main-opa-color: rgba(0, 26, 52, 0.24);
    --main-text-bg-dark: rgba(255, 255, 255, 0.6);

    --gutter: 1rem;
}

body {
    color: var(--main-text-color, rgba(0, 26, 52, 0.6));
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    font-family: Onest;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    z-index: 5;
}

[class*="__container"] {
    margin: 0 auto;
    max-width: 1456px;
    width: 100%;
    padding: 0 1rem;
    position: relative;
}

[class*="__wide-container"] {
    margin: 0 auto;
    /* max-width: 1880px; */
    width: 100%;
    padding: 0 1rem;
    position: relative;
}

.dark {
    background: var(--main-color);
}

.d-flex {
    display: flex;
}

.fd-column {
    flex-direction: column;
}

.accent-color {
    background: var(--second-bg-color);
}
.text-contrast{
    color: var(--reverse-main-color);
}
.text-bg-dark{
    color: var(--main-text-bg-dark);
}

.heading__title {
    font-size: 32px;
    line-height: 38px;
}
.bgc-main{
    background: var(--main-color);
}
@media only screen and (min-width:1280px) {
    .heading__title{
        font-weight: 300;
        font-size: 56px;
        line-height: 60px;
    }
}
.main {
    flex: 1 0 auto;
}
.main__text{
    font-size: 18px;
    line-height: 23px;
}
/* End of 1.Reset CSS and utilites*/

/* 2. Header */
.header {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: transparent;
    border: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--main-bg-color);
    border-bottom: 1px solid rgba(0, 26, 52, 0.24);
}

.header__wide-container {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
}

.burger {
    width: 40px;
    height: 14px;
    position: relative;
}

.burger__line {
    width: 100%;
    height: 3px;
    background-color: var(--main-bg-color);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.burger__line:last-child {
    top: auto;
    bottom: 0;
}

.btn-reset {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

#header.sticky>div>button>span {
    background-color: var(--main-color);
}

.sticky>.header__wide-container {
    min-height: 64px;
}

/* header BURGER BUTTON */
@media only screen and (min-width: 1280px) {
    [class*="__wide-container"] {
        padding: 0 2.5rem;
    }
}

/* End of 2. Header */

/* 3. Navigation and menu */

.nav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Stay on top */
    top: 0;
    right: 0;
    background-color: var(--main-bg-color);
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    overflow-y: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.24), 0px 4px 8px rgba(0, 0, 0, 0.14);
    transition: 0.1s;
}

.active {
    width: 100%;
    padding-left: 24px;
    padding-top: 24px;
    padding-right: 16px;
    padding-bottom: 24px;
}

.burger-close {
    width: 40px;
    height: 40px;
    position: absolute;
    align-self: flex-end;
}

.burger__line_close {
    width: 27px;
    height: 2px;
    background-color: var(--second-text-color);
    display: block;
    position: absolute;
    left: 25%;
    top: 25%;
    transform: rotate(45deg);
}

.burger__line_close:last-child {

    transform: rotate(-45deg);
}

.closebtn {
    font-size: 40px;
    text-decoration: none;
    color: var(--main-color);
    align-self: flex-end;
}

.logosidedark {
    padding-bottom: 16px;
}

.slogan {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 16px;
    color: var(--main-color);
}

.socials {
    padding-bottom: 16px;
}

.icon-socials.icon-fb,
.icon-social.icon-fb {
    background: url(../image/svg/socialfb.svg) no-repeat 0 0;
    transition-duration: .2s;
}

.icon-socials.icon-tg,
.icon-social.icon-tg {
    background: url(../image/svg/socialtg.svg) no-repeat 0 0;
    transition-duration: .2s;
}

.icon-socials.icon-inst,
.icon-social.icon-inst {
    background: url(../image/svg/socialinst.svg) no-repeat 0 0;
    transition-duration: .2s;
}

#iNav>div.menu>ul>li {
    list-style: none;
    padding-bottom: 8px;
}

#iNav>div.menu>ul>li>a {

    font-size: 15px;
    line-height: 25px;
    color: var(--main-color);
}
@media only screen and (min-width: 1280px){
    #iNav>div.menu>ul>li>a{
        font-size:18px;
        line-height:32px;
    }
}
#iNav>div.menu>ul>li>a:visited {
    color: #001A34;
}

.btn-light {
    width: 200px;
    height: 48px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-color);
    background: var(--main-bg-color);
    border: 1px solid rgba(0, 26, 52, 0.24);
    border-radius: 4px;
    padding: 12px 24px;
    gap: 4px;

    margin-bottom: 24px;
}

.chevron::after {
    content: ' ';
    display: inline-block;
    border-bottom: 2px solid #001A34;
    border-right: 2px solid #001A34;
    height: 8px;
    width: 8px;
    transform: rotate(-45deg);
    margin-left: 13px;
}

.last {
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: 5px;
}

.phones {
    display: flex;
    flex-direction: column;
}

.phones__link {

    font-size: 15px;
    line-height: 24px;
    color: var(--main-color);
    padding-bottom: 8px;
}
.lang {
    display: flex;
    grid-gap: 10px;
}

.current-lang a{
    opacity:1!important;
}
.lang a {
    font-size: 18px;
    line-height: 32px;
    color: var(--main-color);
    opacity: 0.4;
    text-transform: uppercase;
}

.lang a.active__link {
    color: var(--main-color);
    opacity: 1;
}

@media only screen and (min-width: 1280px) {
    .nav{
        height: calc(100vh - 60px);
        border-radius: 8px;
        margin-top: 14px;
        margin-right: 28px;
        margin-bottom: 45px;
        
    }
    .active{
        width: 100%;
        padding-left: 40px;
        padding-top: 16px;
        padding-bottom: 24px;
        padding-right: 16px;
        width: 480px;
        box-shadow: 0 0 0 9999px rgb(0 0 0 / 60%);
    
    }
}
/* End of 3. Navigation */

/* 4. First Section */
.main {
    flex: 1 0 auto;
}

#first {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

#first video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.first__wide-container {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 32px;
    flex-direction: column;
}

#first h1 {
    position: relative;
    color: var(--reverse-main-color);
    padding-bottom: 16px;
    font-size: 40px;
    line-height: 48px;
}

#first a {
    position: relative;
    font-weight: 500;
    line-height: 24px;
}

#first .btn {
    padding: 12px 70px;
    color: var(--main-color);
    background: var(--main-bg-color);
    border-radius: 4px;
    border: 1px solid #FFFFFF;

}

#first .chevron::after {
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}

@media only screen and (min-width: 1280px) {
    .first__wide-container {
        padding-bottom: 64px;
    }

    #first h1 {
        position: relative;
        color: var(--reverse-main-color);
        padding-bottom: 16px;
        font-size: 56px;
        line-height: 60px;
        font-weight: 300;
        max-width: 764px;
    }

    #first .btn {
        padding: 12px 32px;
        color: var(--reverse-main-color);
        background: transparent;
    }

    #first .chevron::after {
        border-bottom: 2px solid var(--reverse-main-color);
        border-right: 2px solid var(--reverse-main-color);
    }
}

/* End of 4. First Section */

/* 5. News Section */
.news__section {
    padding: 5rem 0;
}

.horizontalscroll {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin: 0 calc(-1 * var(--gutter));
    margin-bottom: calc(var(--gutter) * 0.5 - 0.5rem * 0.5);
    padding-bottom: calc(var(--gutter) * 0.5 - 0.5rem * 0.5);
    overflow-x: auto;
    scroll-snap-type: x proximity;
}

.horizontalscroll {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.horizontalscroll:hover {
    scrollbar-color: #ccc #eee;
}

.horizontalscroll::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

.horizontalscroll::-webkit-scrollbar-track {
    margin: 1rem;
    background: center / 100% 25% no-repeat linear-gradient(0deg, transparent, transparent);
    border-radius: 1rem;
}

.horizontalscroll:hover::-webkit-scrollbar-track {
    background-image: linear-gradient(0deg, lightgray, lightgray);
}

.horizontalscroll::-webkit-scrollbar-track:hover {
    background-image: linear-gradient(0deg, silver, silver);
}

.horizontalscroll::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 1rem;
}

.horizontalscroll:hover::-webkit-scrollbar-thumb {
    background: lightgrey;
}

.horizontalscroll::-webkit-scrollbar-thumb:hover {
    background: silver;
}

.horizontalscroll:before,
.horizontalscroll:after {
    content: '';
    min-width: calc(var(--gutter) * 0.8);
}

.horizontalscroll_news {
    margin: 0 calc(var(--gutter) * 0.5);
    scroll-snap-align: center;
}

.news {
    background: lightseagreen;
    border-radius: 18px;
    min-width: 320px;
    height: 280px;
    background: #FFFFFF;
    margin-right: 32px;
    padding: 16px;
}

.news__content__h2,
.sec__content__h2 {
    padding-bottom: 24px;
    color: var(--main-color, #001A34);
}

.news_date {

    font-size: 14px;
    line-height: 18px;
    color: var(--second-text-color);
    padding-bottom: 8px;
}

.news_title {
    padding-bottom: 16px;
    line-height: 20px;
}

.news_title a {
    color: #001A34;
}

.news_title a:hover {
    color: var(--second-text-color);
}

.news_descr {

    font-size: 14px;
    line-height: 18px;
    color: #001A34;
    opacity: 0.8;
}
.news__button{
    padding-top: 24px;
    padding-bottom: 24px;
}
.next_button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0px;
    gap: 4px;
    color: var(--main-color);
    opacity: 0.6;
}

.chevrons::after {
    content: ' ';
    display: inline-block;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    height: 8px;
    width: 8px;
    transform: rotate(-45deg);
    opacity: 0.6;
}

.news__container {
    flex-direction: column;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1280px) {
    .news__section {
        padding: 148px 0;
    }

}

/* End of 5. News Section */

/* 6. Service Sections */
.ftl__section{
    padding-top: 5rem;
    padding-bottom: 3rem;
}
.ftl__container{
    flex-direction: column-reverse;
    gap: 24px;
}
.ftl__content{
    flex-direction: column;
}
.autopark__picture img{
    height: 280px;
    object-fit: cover;
    object-position: left;
    
}
.sec__content__h2{
    padding-bottom: 24px;
}
.sec__content{
    padding-bottom: 32px;
}
.sec_button{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid rgba(0, 26, 52, 0.24);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    gap: 4px;
    text-align: center;
    width: 100%;
    color: var(--main-color);
}
.brands{
    align-items: center;
    padding-top: 60px;
}
.brands img{
    max-width: fit-content;
    mix-blend-mode: multiply;
}
.fd-reverse{
    flex-direction: column-reverse;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 768px) {
    .brands{
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1280px) {
    .ftl__section{
        padding: 77px 0 60px 0;
    }
    .ftl__container{
        flex-direction: row;
        gap: 40px;
        align-items: center;
        justify-content: space-between;
    }
    .autopark__picture img{
        height: 100%;
        display:block;
        
    }
    .brands{
        padding-top: 42px;
        padding-bottom: 18px;
        padding-left: 0;
        /*flex-wrap: wrap;*/
        justify-content: space-between;
    }
    .sec_button{
        width: 200px;
    }
    .fd-reverse{
        flex-direction: row-reverse;
    }
    .ftl__content{
        max-width: 60%;
        flex-direction: column;
    }
    .ftl__picture{
        
    }
    .sec__content{
    padding-bottom: 32px;
}
}
/* End of 6. Service Sections */

/* 7. Testimonials */
.testimonials__section {
    padding: 80px 0;

}

.testimonials__content__h2 {
    padding-bottom: 24px;
    color: var(--main-color, #001A34);
}

.horizontalscroll_testimonials{
    margin: 0 calc(var(--gutter) * 0.8);
    scroll-snap-align: center;
}

.testimonial {
    background: #F5F6F7;
    border-radius: 18px;
    min-width: 280px;
    height: 395px;
    margin-right: 16px;
    padding: 24px 16px;

}

.horizontalscroll_testimonials {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.tesimonial_photo img,
.member_photo img {
    min-width: 112px;
}

.testimonial_content-name,
.member_name {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    padding-bottom: 8px;
    color: var(--main-color, #001A34);
}

.testimonial_content-company,
.member_position {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 8px;
    color: var(--second-text-color);
}

.testimonial_content-review p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--main-text-color);
}

.testimonial_button {
    padding-top: 24px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1280px) {
    .testimonials__section {
        padding-top: 148px;
        padding-bottom: 212px;
    }

    .testimonial {
        background: #F5F6F7;
        border-radius: 18px;
        min-width: 644px;
        height: 224px;
        margin-right: 32px;
        padding: 24px 16px;
    }

    .horizontalscroll_testimonials {
        flex-direction: row;
        justify-content: flex-start;
    }

    .testimonial_content-review p {
        font-size: 16px;
        line-height: 20px;
    }
}
/* End of 7. Testimonials */

/* 8. Callback */
.callback__section{
    padding: 80px 0;
    
}
.callback__container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.callback__title{
    padding-bottom: 24px;
}
.callback__text{
    padding-bottom: 32px;
    font-size: 16px;
    line-height: 20px;
}
.callback__socials{

}
.callback__descr{
    max-width: 400px;
}
.callback__form{
    max-width: 344px;   
}
.callback__title, .callback__text, .callback__socials{
    text-align: center;
    
}
.form__field{
    width: 344px;
    height: 64px;
    margin-bottom: 16px;
}
.form__field input{
    width: 344px;
    height: 100%;
    border: none;
    padding-top: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    border-radius: 8px;
    background: rgba(153, 156, 160, 0.2);
    color: rgb(255, 255, 255);
}
.form__policy{
    color:rgba(255, 255, 255, 0.6);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    padding-bottom: 16px;
}
.form__policy a{
    color: #FFFFFF;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.6);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.6);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.6);
  }
.submit__button{
    background: #FFFFFF;
    border-radius: 4px;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    padding: 16px;
}
input[type=submit]{
    background: #FFFFFF;
    font-family: 'Onest';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--main-color);
}
@media only screen and (min-width: 768px) {
    .callback__container{
        justify-content: space-around;
        flex-direction: row;
    }
    .callback__title, .callback__text, .callback__socials{
        text-align: left;
        
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen  and (min-width: 1280px) {
    .callback__section{
        padding: 180px 0;
    }
    .callback__container{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap:128px;
    }
    
}
/* End of 8. Callback */

/* 9. FAQ */
:root {
    --midnight: #2c3e50;
}

.short_questions {
    padding: 80px 0;

}

.short_questions__container {
    gap: 72px;
}

.sq_image {
    display: none;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.tab-label:hover {
    background: darken(var(--midnight), 10%);

}

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: var(--main-text-bg-dark);
    background: rgba(255, 255, 255, 0.16);
    transition: all .35s;
}

.tab-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--main-text-bg-dark);
}

.tab-btn {
    display: block;
    padding: 4px 0px;
    gap: 4px;
    width: 117px;
    height: 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-bg-color);
}
.tab-btn > .chevron::after{
    border-bottom: 2px solid var(--reverse-main-color);
    border-right: 2px solid var(--reverse-main-color);
}

input.inp {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

input.inp:checked+.tab-label {
    background: rgba(255, 255, 255, 0.16);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

input.inp:checked~.tab-content {
    max-height: 100vh;
    padding: 8px 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1280px) {
    .short_questions {
        padding: 138px 0;
    }

    .sq_image {}
}
/* End of 9. FAQ */

/* 10. Team */
.team__section {
    padding-top: 80px;
    padding-bottom: 80px;

}

.team__content__h2 {
    padding-bottom: 24px;
    color: var(--main-color, #001A34);
}

.horizontalscroll_team {
    margin: 0 calc(var(--gutter) * 0.8);
    scroll-snap-align: center;
}

.horizontalscroll_team-member {
    min-width: 204px;
    height: 190px;
    margin-right: 32px;
    padding: 0px;
}

.member_photo {
    padding-bottom: 1rem;
}

.member_name {
    padding-bottom: 0.5rem;
    color: var(--main-color, #001A34);
}

.team_button {
    padding-top: 24px;
    padding-bottom: 88px;
}

.playbutton {
    background: url(../image/playbutton.png) center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -37px 0 0 -37px;
    z-index: 10;
    opacity: .6;
}

.ytvideo {
    position: relative;
    margin: 0;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    cursor: pointer;
    width: 100%;
    height: 600px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/custom-servmain.png);
    background-size: cover;
}

.ytvideo iframe {
    border-style: none;
    height: 600px;
    width: 100%;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1280px) {
    .ytvideo {
        height: 600px;
        width: 100%;
    }

    .team__section {
        padding-top: 148px;
        padding-bottom: 180px;
    }
    .sq_image{
        display: inline-flex;
    }
}
/* End of 10. Team */

/* 11. Footer */
.footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 56px;
    flex-direction: column;
    /* flex: 1 1 auto; */
    /* background-color: var(--main-color); */
}

.footer__logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-gap: 40px;
    padding-bottom: 56px;
}

.footer__adress-item,
.footer__copyright {
    color: var(--second-bg-color);
}

footer {
    background-color: var(--main-color);
    font-size: 14px;
    line-height: 32px;
    flex: 0 0 auto;
}

footer a {
    text-decoration: none;
    transition: all .3s ease 0s;
}

.main-link {
    padding-left: 0;
    cursor: pointer;
    color: var(--reverse-main-color);
}

.main-link:hover {
    opacity: 0.6;
}

.footer__menu>div>ul>li {
    margin-bottom: 8px;
}

.icon-socials {
    display: inline-block;
    height: 32px;
    width: 32px;
}

.icon-socials:not(:last-child) {
    margin-right: 16px;
}

.icon-socials.icon-facebook {
    background: url(../image/svg/footer-fb.svg) no-repeat 0 0;
    transition-duration: .2s;
}

.icon-socials.icon-telegram {
    background: url(../image/svg/footer-tg.svg) no-repeat 0 0;
    transition-duration: .2s;
}

.icon-socials.icon-instagram {
    background: url(../image/svg/footer-inst.svg) no-repeat 0 0;
    transition-duration: .2s;
}

.icon-socials.icon-facebook:hover,
.icon-socials.icon-telegram:hover,
.icon-socials.icon-instagram:hover {
    opacity: .8;
    transition-duration: .2s;
    transform: translateY(-3px);
}

.copyright {
    display: flex;
    justify-content: flex-start;
}

.footer__copyright {
    padding-bottom: 24px;
    opacity: 0.4;
}

.footer__logo-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 56px;
    margin-top: 5px;
}

@media only screen and (min-width:768px) {
    .footer {
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    .copyright {
        justify-content: center;
    }

}

@media only screen and (min-width:1280px) {
    footer {
        line-height: 24px;
    }

    .footer {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding-top: 124px;
    }

    .footer__menu {
        flex-direction: row;
    }

}
/* End of 11. Footer */