#slider {
    width: 100%;
    height: 700px;
    background-image: url("../images/slider.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
}
#slider .screen {
    width: 100%;
    height: 100%;
}

#slider .flasher {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--header);
    z-index: 30;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#slider .flasher .logo {
    width: 400px;
    height: 110px;
}
#slider .flasher.flashit {
    animation: flashit 2000ms ease-in-out;
    width: 160px;
    height: 55px;
    left: 120px;
    top: 18px;
    opacity: 1;
}
#slider .flasher.flashit .logo {
    animation: flashit-logo 2000ms ease-in-out;
}

@keyframes flashit {
    0% {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 1;
    }
    50% {
        opacity: 1;
        width: 160px;
        height: 55px;
        left: 120px;
        top: 18px;
    }
    100% {
        width: 160px;
        height: 55px;
        left: 120px;
        top: 18px;
        opacity: 0.1;
    }
}
@keyframes flashit-mobile {
    0% {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        display: flex;
        opacity: 1;
    }
    50% {
        opacity: 1;
        width: 180px;
        height: 55px;
        left: 30px;
        top: 18px;
        display: flex;
    }
    100% {
        width: 180px;
        height: 55px;
        left: 30px;
        top: 18px;
        display: flex;
        opacity: 0.1;
    }
}
@keyframes flashit-logo {
    0% {
        width: 400px;
        height: 110px;
    }
    50% {
        width: 160px;
        height: 55px;
    }
    100% {
        width: 160px;
        height: 55px;
        scale: 1.1;
    }
}

#counters {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

#counters .numbers {
    display: flex;
    align-items: center;
}

#counters .number {
    color: var(--primary);
    font-size: 80px;
    font-weight: bold;
    width: 200px;
    text-align: right;
}
#counters .sign {
    font-size: 58px;
    color: var(--primary);
    font-weight: bold;
}

#counters .text {
    margin-left: 18px;
    margin-right: 10px;
    font-size: 26px;
}

#about {
    margin-bottom: 100px;
    padding: 50px 0;
}

#about .content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

#about .content {
    flex: 1;
}
#about .paragraph {
    flex: 1;
    margin-right: 10px;
}
#about .header {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--primary);
    display: block;
}

#about .paragraph .text {
    font-size: 25px;
    line-height: 31px;
    font-weight: lighter;
    margin-right: 52px;
}
#about img {
    width: 566px;
    height: 544px;
    object-fit: cover;
    object-position: 90%;
    border-radius: 15px;
}

#projects {
    margin-top: 80px;
}

#projects .sm-header {
    font-size: 14px;
}

#projects .lg-header {
    font-size: 58px;
    font-weight: bold;
    color: var(--primary);
}

#projects .items {
    width: 100%;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#projects .items .project {
    width: 350px;
    height: calc(350px * 2 / 3);
    display: inline-block;
    font-size: 26px;
    margin: 5px;
    cursor: url(../images/pointer.svg), pointer;
}
#projects .items .project.img {
    background-size: cover;
}

#projects .items .project .cat {
    font-size: 10px;
    background: #0000006e;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
    text-wrap: wrap;
    display: inline-block;
    color:white;
}
#projects .items .project .cat:hover {
    background: var(--background);
}

#projects .more {
    margin-top: 20px;
}

#services {
    margin: 90px 0 90px 0;
    width: 100%;
}

#services .header {
    color: var(--primary);
    font-size: 58px;
    font-weight: bold;
    text-align: center;
}

.line {
    width: 70%;
    height: 1px;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 100px;
}

#clients {
    margin: 81px 0 81px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#clients .headers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#clients .headers .header {
    color: var(--primary);
    font-size: 58px;
    font-weight: bold;
}
#clients .headers .text {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
}

#logos {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

#logos .slick-list {
    margin-top: 67px;
    margin-left: 100px !important;
    margin-right: 100px !important;
}
#logos img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.slick-arrow::before {
    content: "" !important;
    width: 100px;
    height: 100px;
    display: flex;
    opacity: 1;
    z-index: 100;
}
.slick-next::before {
    background-image: url(../images/arrow_right.png);
    background-size: contain;
}
.slick-prev::before {
    background-image: url(../images/arrow_left.png);
    background-size: contain;
}
.slick-next {
    right: 25px !important;
}

.slick-initialized .slick-slide {
    display: flex !important;
    justify-content: center;
}

#clients .more {
    margin-top: 90px;
}

#newsletter {
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
    display: none;
}

#newsletter .header {
    font-size: 42px;
    color: var(--primary);
    font-weight: bold;
}

#contact {
    text-align: center;
    margin-bottom: 100px;
    width: 1000px;
    margin-left: calc((100% - 1000px) / 2);
    margin-right: calc((100% - 1000px) / 2);
}

#contact .header {
    font-size: 26px;
    margin-bottom: 30px;
}

#contact .header span {
    color: var(--primary);
}

#about .header span,
#clients .headers .header span,
#projects .lg-header span ,
#services .header span {
    color: white;
}

@media only screen and (max-width: 1300px) {
    #counters .number {
        font-size: 82px;
        text-align: center;
        width: auto;
    }
    #counters .sign {
        font-size: 50px;
    }

    #counters .text {
        font-size: 18px;
    }

    #banner .content .header {
        font-size: 50px;
    }
    #banner .content .text {
        font-size: 18px;
    }

    #projects .sm-header {
        font-size: 10px;
    }

    #projects .lg-header {
        font-size: 50px;
    }

    #projects .items .project {
        font-size: 18px;
    }

    #clients .headers .header {
        font-size: 50px;
    }
    .headers .text {
        font-size: 14px;
    }

    #blogs .header {
        font-size: 36px;
    }
    #blogs .text {
        font-size: 10px;
    }
    #blogs .items .item .meta .date {
        font-size: 10px;
    }
    #blogs .items .item .meta .author {
        font-size: 10px;
    }

    #blogs .items .item .content .title {
        font-size: 14px;
    }

    #blogs .items .item .content .excerp {
        font-size: 10px;
    }

    #newsletter .header {
        font-size: 36px;
    }

    #contact .header {
        font-size: 18px;
    }
}

@media only screen and (max-width: 900px) {
    .slick-arrow {
        display: none !important;
    }
    #slider {
        height: 500px;
        padding: 30px;
        width: calc(100% - 60px);
    }
    #slider dotlottie-player.mobile {
        width: 100%;
    }
    #slider .flasher.flashit {
        animation: flashit-mobile 2000ms ease-in-out;
        left: 30px;
        width: 180px;
    }
    #counters {
        flex-direction: column;
    }
    #counters .text {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    #about .header {
        font-size: 40px;
    }
    #about .content {
        flex-direction: column;
        margin-top: 20px;
    }
    #about .content .text {
        font-size: 13px;
        line-height: 17px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    #about img {
        width: 100%;
        height: auto;
        object-position: center;
    }

    #projects {
        margin: 80px 20px 0px 20px;
        width: calc(100% - (2 * 20px));
    }
    #projects .lg-header {
        font-size: 40px;
    }
    #projects .items .project {
        width: 350px;
        height: calc(350px * 2 / 3);
    }
    #projects .items .project .cat {
        font-size: 10px;
    }
    #services .header {
        font-size: 40px;
    }

    #blogs {
        margin-left: 20px;
        margin-right: 20px;
    }
    #blogs .header {
        font-size: 35px;
    }
    #blogs .text {
        font-size: 15px;
    }
    #blogs .items {
        margin: 35px 20px 43px 20px;
    }
    #blogs .items .item {
        width: 100%;
        margin-bottom: 30px;
    }

    #blogs .items .item .content .title {
        font-size: 20px;
    }

    #blogs .items .item .content .excerp {
        font-size: 15px;
    }
    #newsletter {
        margin: 50px 20px 62px 20px;
    }
    #newsletter .header {
        font-size: 30px;
    }
    #contact .header {
        font-size: 18px;
        margin-left: 20px;
        margin-right: 20px;
    }
    #contact .contact {
        font-size: 15px;
    }
    #logos {
        margin-left: 20px;
        margin-right: 20px;
    }
    #logos img {
        width: 100px;
        height: 100px;
    }
    .slick-arrow::before {
        width: 50px;
        height: 50px;
    }
    #logos .slick-list {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
    #clients {
        margin: 81px 20px 65px 20px;
        width: calc(100% - 40px);
    }
    #clients .headers .header {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
