@font-face {
    font-family: 'almarai';
    src: url(../fonts/Almarai-Light.ttf);
    font-style: light;
    font-weight: 100;
}
@font-face {
    font-family: 'almarai';
    src: url(../fonts/Almarai-Regular.ttf);
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'almarai';
    src: url(../fonts/Almarai-Bold.ttf);
    font-style: bold;
    font-weight: 700;
}
@font-face {
    font-family: 'almarai';
    src: url(../fonts/Almarai-ExtraBold.ttf);
    font-style: extra-bold;
    font-weight: 900;
}
:root {
    --p-color: #1370b3;
    scroll-behavior: smooth;
}
::placeholder {
    color: #fff;
}
* {
    box-sizing: border-box;
}
body {
    color: #333;
    margin: 0;
    padding: 0;
    font-family: almarai;
    font-weight: normal;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
}
/* Start Global Classes */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.top-bar .logo {
    width: 100px;
    cursor: pointer;
}
.top-bar .menu-btn {
    width: 50px;
    cursor: pointer;
}
.section {
    padding-left: 5vw;
    padding-right: 5vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.section-title {
    color: var(--p-color);
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    margin: 0;
}
.section-desc {
    padding-bottom: 10px;
    margin: 0;
    border-bottom: 1px solid #ddd;
    color: #787575;
    text-align: center;
    line-height: 1.5;
}
.section-desc > span{
    display: block;
    max-width: 94ch;
    margin: 0 auto;
}
.cta {
    background: var(--p-color);
    color: #fff;
    font-size: 1.25rem;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 33px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-top: auto;
}
.social-icons img {
    height: 30px;
    padding: 5px 10px;
}
.social-icons a:not(:last-child) {
    border-inline-end: 1px solid;
}
/* End Global Classes */

/* Start Hero Section */
.site-header {
    background-size: cover;
    color: #fff;
    position: relative;
}
.site-header .overlay {
    background-color: rgba(0, 0, 0, 0.7)
}
.site-header .hero {
    width: max-content;
    margin: auto 0;
}
.site-header .slogan {
    font-size: 3.65rem;
    width: min-content;
    max-width: 10ch;
    line-height: 1.2;
}
.site-header .cta {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}
.site-header .cta > img {
    width: 25px;
    margin-inline-start: 7px;
}
.site-header .cta + span {
    display: block;
    width: max-content;
    /* margin: 0 auto; */
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
}
/* End Hero Section */

/* Start Clients Section */
.our-clients .clients {
    width: 100%;
    max-width: 950px;
    margin: 10px 0 15px;
    position: relative;
}
@media screen and (min-width: 1075px) {
    .our-clients .clients {
        margin: 10px auto;
    }
}
.our-clients .clients-wrapper {
    overflow: hidden;
}
.our-clients .client-cols {
    display: flex;
    transition: transform 0.2s;
}
.our-clients .clients .col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    min-width: 100%;
}
.our-clients .client {
    max-width: 150px;
    place-self: center;
}
.our-clients .client > img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.our-clients .client > img:hover {
    filter: grayscale(0);
}
.our-clients .next,
.our-services .next,
.our-clients .prev,
.our-services .prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-20px, -50%);
    width: 20px;
    cursor: pointer;
}
.our-clients .prev,
.our-services .prev {
    opacity: 0.1;
}
.our-clients .next,
.our-services .next {
    left: 100%;
    transform: translate(0, -50%);
}
.our-clients .next > img,
.our-services .next > img {
    transform: rotate(180deg);
}
/* End Clients Section */

/* Start About Us Section */
.about-us {
    /* background-image: url(../img/PIC/about-us.JPG); */
    background-size: cover;
    color: #fff
}
.about-us .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}
.about-us .section-title {
    color: #fff;
}
.about-us .bio {
    margin: 10px auto;
    /* font-size: 1.125rem; */
    line-height: 1.5;
    max-width: 1150px;
}
.about-us .company {
    display: grid;
    gap: 30px;
    max-width: 950px;
    margin: 10px auto 10px;
    font-size: 0.875rem;
}
@media (min-width: 600px) {
    .about-us .company {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1000px) {
    .about-us .company {
        grid-template-columns: repeat(4, 1fr);
    }
}
.about-us .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
}
.about-us .icon > img {
    object-fit: contain;
}
.about-us .title {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.4rem;
    background: var(--p-color);
    border-radius: 10px 10px 0 0;
    padding: 5px;
}
.about-us .desc {
    background: #fff;
    color: #333;
    padding: 10px;
    margin: 0;
    border-radius: 0 0 10px 10px;
    line-height: 1.5;
}
.about-us .desc > li {
    display: flex;
}
.about-us .desc > li::before {
    content: '-';
    margin-inline-end: 5px;
}
/* End About Us Section */

/* Start Our Services Section */
.our-services {
    background-color: #ededed;
}
.our-services .services {
    position: relative;
}
.services-wrapper {
    overflow: hidden;
}
.service-cols {
    display: flex;
    transition: transform 0.2s;
}
.our-services .services .col {
    margin-top: 10px;
    display: grid;
    gap: 20px;
    min-width: 100%;
}
@media (min-width: 550px) {
    .our-services .services .col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 750px) {
    .our-services .services .col {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 960px) {
    .our-services .services .col {
        grid-template-columns: repeat(4, 1fr);
    }
}
.our-services .service .icon {
    width: 50px;
    height: 50px;
}
.our-services .service .icon > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.our-services .service .title {
    font-size: 1.125rem;
    margin: 10px 0;
}
.our-services .service .desc {
    color: #686767;
    line-height: 1.5;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.our-services .service .read-more {
    font-size: 0.875rem;
    color: var(--p-color);
}
.our-services .service .read-more > img {
    height: 10px;
    margin-inline-start: 7px;
}
/* End Our Services Section */

/* Start Our Products Section */
.our-products {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.our-products .section {
    min-height: auto;
    margin-bottom: 20px;
}
.products .product-logo {
    background: var(--p-color);
    padding: 20px 0 50px;
    text-align: center;
}
/* .products .product:nth-of-type(2) .product-logo {
    background: #54bebc;
} */
.products .product-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}
.products .desc {
    background: #e6e6e6;
    padding: 0 30px 20px;
    flex: 1;
}
.products .product:nth-child(2) .desc {
    background: #f4f4f4;
}
.products .thumbnail {
    margin: 0 auto;
    position: relative;
    top: -56px;
}
.products .thumbnail img {
    display: block;
    margin: 0 auto;
}
.products .desc > p{
    margin: -50px auto 0;
    font-size: 0.875rem;
    color: #3a3a3a;
    line-height: 1.5;
    /* margin-top: -50px; */
}
.products .thumbnail, .products .desc p {
    max-width: 450px;
}
.products {
    display: flex;
    /* overflow: auto; */
    transition: transform 0.2s;
}
.product {
    min-width: 100%;
    display: flex;
    flex-direction: column;
}
.our-products .next, .our-products .pre {
    position: absolute;
    top: 70%;
    width: 20px;
    cursor: pointer;
    /* display: none; */
}
@media screen and (min-width: 920px) {
    .products {
        overflow: initial;
    }
    .product {
        min-width: 33.333%;
    }
}
.our-products .next, .our-products .pre {
    display: block;
    z-index: 5;
}
.our-products .next {
    transform: rotate(180deg);
    right: 10px;
}
.our-products .pre {
    left: 10px;
    opacity: 0.1;
}
/* End Our Products Section */

/* Start Our Work Section */
.our-work .section-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.our-work .works-nav > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}
.our-work .works-nav li {
    cursor: pointer;
}
.our-work .works-nav li.active {
    color: var(--p-color);
}
.our-work .sliders {
    margin: auto 0;
}
.our-work .slider {
    height: 400px;
    position: relative;
    opacity: 0;
    display: none;
}
.our-work .slider.active {
    animation: fade-in 0.3s forwards;
    display: block;
}
.our-work .slider .screen {
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.our-work .slider .screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.our-work .slider .slides {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
/* App Slidshow */
.app-slider .screen img {
    display: block;
    margin: auto;
}
.app-slider .screen img:first-of-type {
    position: relative;
    z-index: 1;
    width: 180px;
    height: auto;
}
.app-slider .screen .screen-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 170px;
    height: 368px;
    border-radius: 22px;
    overflow: hidden;
    transform: translateX(-50%);
    transition: transform 0.2s;
}
.our-work .app-slider .screen-slide img {
    height: auto;
    object-fit: unset;
    position: absolute;
    top: 100%;
    left: 50%;
    opacity: 0;
}
.our-work .app-slider .screen-slide img.active {
    opacity: 1;
    animation: slide-website 15s linear infinite;
}
.app-slider .left, .app-slider .right {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}
.app-slider .left {
    left: 15%;
}
.app-slider .right {
    right: 15%;
}
.app-slider .slide {
    width: 100px;
    /* height: 80px;
    border: 2px solid #d1d1d1; */
    overflow: hidden;
    cursor: pointer;
}
@media screen and (max-width: 1100px) {
    .our-work .slider {
        margin-top: 20px;
    }
    .our-work .app-slider, .our-work .website-slider {
        height: auto;
    }
    .our-work .app-slider .slides {
        display: flex;
        gap: 10px;
        position: static;
        top: unset;
        height: auto;
        margin: 10px 0;
    }
    .app-slider .left, .app-slider .right {
        position: static;
        flex-direction: row;
        margin-top: 0;
    }
}
/* End App Slidshow */
/* website Slidshow */
.website-slider .screen img {
    display: block;
    margin: auto;
}
.website-slider .screen img:first-of-type {
    position: relative;
    z-index: 1;
    width: 600px;
    height: auto;
    object-fit: unset;
}
.website-slider .screen .screen-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 81%;
    height: 342px;
    overflow: hidden;
    transform: translateX(-50%);
    transition: transform 0.2s;
}
.website-slider .screen .screen-slide img {
    width: 468px;
    height: auto;
    object-fit: unset;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.website-slider .screen .screen-slide img.active {
    opacity: 1;
    animation: slide-website 20s linear infinite;
}
@keyframes slide-website {
    from {
        transform: translate(-50%, -368px);
    }
    to {
        transform: translate(-50%, -100%);
    }
}
.website-slider .left, .website-slider .right {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.website-slider .left {
    left: 0;
}
.website-slider .right {
    right: 0;
}
@media screen and (min-width: 1500px) {
    .website-slider .left {
        left: 15%;
    }
    .website-slider .right {
        right: 15%;
    }
}
.website-slider .slide {
    width: 200px;
    height: 150px;
    border: 2px solid #d1d1d1;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (max-width: 700px) {
    .our-work .website-slider .slides {
        display: flex;
        gap: 10px;
        position: static;
        top: unset;
        height: auto;
        margin: 10px 0;
    }
    .website-slider .left, .website-slider .right {
        position: static;
        flex-direction: row;
    }
}
@media screen and (max-width: 920px) {
    .website-slider .screen img:first-of-type {
        width: 400px;
    }
    .website-slider .screen .screen-slide {
        height: 220px;
    }
    .website-slider .screen .screen-slide img {
        width: 325px;
    }
}
/* End Website Slidshow */
/* Emarketing Slideshow */
.emarketing-slider {
    position: relative;
    overflow: hidden;
}
.emarketing-slider .screen {
    width: 400px;
    height: 400px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.emarketing-slider .screenshots {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 400px;
    height: 400px;
    transition: transform 0.2s;
}
.emarketing-slider .screenshots img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
}
.emarketing-slider .next, .emarketing-slider .pre {
    position: absolute;
    top: 50%;
    z-index: 10;
    left: 20px;
    width: 20px;
    opacity: 0.1;
    cursor: pointer;
}
.emarketing-slider .next {
    left: unset;
    right: 20px;
    opacity: 1;
    transform: rotate(180deg);
}
/* End Emarketing Slideshow */
/* End Our Work Section */

/* Start Our Blog Section */
.our-blog {
    background-color: #ededed;
}
.our-blog .blogs {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}
.our-blog .blog {
    min-width: 100%;
    margin: 0 auto;
    transition: transform 0.2s;
}
.our-blog .blog:not(:last-child) {
    margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
    .our-blog .blogs .slider {
        width: 30%;
        margin: auto;
    }
    .our-blog .blog {
        margin: 0;
    }
    .our-blog .blog:not(:last-child) {
        margin-bottom: 0;
    }
}
.our-blog .blog .thumbnail > img {
    display: block;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}
@media screen and (max-width: 1290) {
    .our-blog .blog .thumbnail > img {
        max-width: 150px;
    }
}
.our-blog .blog .text {
    background: #fff;
    padding: 10px;
    direction: rtl;
}
.our-blog .blog .title {
    margin: 0 0 10px;
    line-height: 1.2;
    font-size: 1rem;
}
.our-blog .blog .desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5a5a5a;
    margin: 0;
}
.our-blog .blog .read-more {
    color: var(--p-color);
}
/* Blog slider */
.our-blog .slider {
    display: flex;
    max-width: 400px;
    margin: auto;
    transform: translateX(-100%);
    transition: transform 0.2s;
}
.our-blog .blog.active {
    transform: scale(1);
}
.our-blog .blog:not(.active) {
    transform: scale(0.7);
}
.our-blog .next, .our-blog .pre {
    position: absolute;
    z-index: 10;
    width: 20px;
    height: 100%;
    background: #ededed;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.our-blog .next {
    right: 0;
    transform: rotate(180deg);
}
.our-blog .pre {
    left: 0;
}
@media screen and (max-width: 630px) {
    .our-blog .next, .our-blog .pre {
        padding: 0 3px;
    }
    .our-blog .next img,
    .our-blog .pre img {
        transform: translateX(-3px);
    }
}
.visit-blog {
    color: var(--p-color);
    text-decoration: underline;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.visit-blog img {
    width: 20px;
}
/* End Our Blog Section */

/* Start Contact Us Section */
.contact-us {
    background-size: cover;
    color: #fff;
}
.contact-us .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}
.contact-us .section-title {
    color: #fff;
}
.contact-us .contact-desc {
    text-align: center;
}
.contact-us .contact {
    display: grid;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
@media (min-width: 920px) {
    .contact-us .contact {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-us .input {
    margin-bottom: 10px;
}
.contact-us input,
.contact-us textarea {
    display: block;
    width: 100%;
    max-width: 500px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #5a5a5a;
    color: #fff;
}
.contact-us input {
    height: 40px;
}
.contact-us .contact-details .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.contact-us .contact-details > * {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 100;
}
.contact-us .address {
    line-height: 1.5;
}
/* End Contact Us Section */
footer {
    background: var(--p-color);
    text-align: center;
    padding: 10px;
    font-weight: 100;
    margin-left: -5vw;
    margin-right: -5vw;
}

/* Bullet Points */
.bullets {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.bullet {
    width: 10px;
    height: 10px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
}
.bullets.blue .bullet {
    background: var(--p-color);
}
.bullet.active {
    transform: scale(1.6);
}
/* End Bullet Points */
/* Start Request Form */
.request {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
}
.request .overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
}
.request .wrapper {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 960px;
    min-height: 100vh;
    padding-top: 50px;
    margin-inline-start: auto;
    background: var(--p-color);
    transform: translateX(100%);
}
.request .close {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
.request .wrapper > div {
    max-width: 600px;
    margin: 0 auto;
}
.request .title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
}
.request .desc {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}
.request form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.request input,
.request textarea {
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid;
    text-indent: 5px;
}
.request input {
    height: 40px;
}
.request textarea, .request .submit {
    grid-column: 1 / -1;
}
.request .submit {
    justify-self: center;
    color: var(--p-color);
    background: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}
/* End Request Form */
/* Start Navbar */
.site-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    color: #fff;
    display: none;
}
.site-nav .close {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.site-nav .overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
}
.site-nav .nav-links {
    position: relative;
    z-index: 1;
    background: var(--p-color);
    width: 250px;
    height: 100%;
    padding: 80px 50px 0;
    margin-inline-start: auto;
    overflow: auto;
    transform: translateX(100%);
}
.site-nav .nav-links > li {
    margin-bottom: 30px;
    text-transform: uppercase;
}
.site-nav .contact {
    background: #fff;
    color: var(--p-color);
    padding: 10px;
    border-radius: 20px;
    width: max-content;
    transform: translateX(-15px);
}
/* End Navbar */
/* Add animations */
.request.show .wrapper,
.site-nav.show .nav-links {
    animation: slide-in 0.3s forwards;
}
.request.show .overlay,
.site-nav.show .overlay {
    animation: fade-in 0.3s forwards;
}
@keyframes slide-in {
    from {transform: translateX(100%);}
    to {transform: translateX(0);}
}
@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Full Screen Scroll */
@media screen and (max-width: 1130px) {
    .bullets {
        display: none;
    }
}
@media screen and (min-width: 1130px) {
    body {
        overflow: hidden;
    }
}
/* Success form message */
.success {
    color: #ffffff;
    background: #13b353;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 10px 0;
}
/* Mobile Fixed */
@media screen and (max-width: 1130px) {
    .site-header .overlay {
        padding-top: 80px;
    }
    .top-bar {
        display: none;
    }
    .site-header .top-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        padding: 10px 5vw;
        background: rgba(0, 0, 0, 0.5);
        z-index: 20;
    }
    .social-icons {
        display: none;
    }
    .site-header .social-icons, .contact-us .social-icons {
        display: flex;
    }
    .section {
        padding-top: 85px;
        padding-bottom: 50px;
    }
    .site-header .section, .contact-us .section {
        padding-bottom: 0;
    }
    .our-work .slider .screen {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 630px) {
    .our-blog .blog {
        padding: 0 25px;
    }
    .our-blog .next, .our-blog .pre {
        height: auto;
        background-color: transparent;
        top: 50%;
    }
    .our-blog .next {
        transform: rotate(180deg) translateY(50%);
    }
    .our-blog .pre {
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 920px) {
    .our-products {
        overflow: hidden;
    }
}
/* Extra Large Screens */
@media screen and (min-width: 1600px) {
    html {
        font-size: 1.7rem;
    }
    .our-clients .client > img {
        width: 200px;
        height: 140px;
    }
    .our-clients .clients {
        max-width: 1100px;
    }
    .about-us .bio, .about-us .company {
        max-width: none;
    }
    .our-services .services .col {
        margin-top: 50px;
        gap: 80px;
    }
    .our-work .slider {
        height: 100%;
    }
    .app-slider .screen img:first-of-type {
        width: 380px;
    }
    .app-slider .slide {
        width: 280px;
        height: 280px;
    }
    .website-slider .screen img:first-of-type {
        width: 1000px;
    }
    .website-slider .slide {
        width: 300px;
        height: 250px;
    }
    .website-slider .left {
        left: 3%;
    }
    .website-slider .right {
        right: 3%;
    }
    .website-slider .screen .screen-slide img {
        width: 782px;
    }
    .website-slider .screen .screen-slide {
        height: 516px;
    }
    .app-slider .screen .screen-slide {
        height: 751px;
        width: 339px;
        top: 5px;
    }
    @keyframes slide-website {
        from {
            transform: translate(-50%, -700px);
        }
        to {
            transform: translate(-50%, -100%);
        }
    }
    .emarketing-slider .screenshots {
        height: 761px;
        width: 340px;
    }
    .emarketing-slider .screenshots img {
        object-fit: cover;
        margin-right: 154px;
    }
    .contact-us .input {
        margin-bottom: 30px;
    }
    .contact-us input, .contact-us textarea {
        font-size: 0.5rem;
    }
    .contact-us input {
        height: 60px;
    }
    .our-blog .slider {
        max-width: none;
    }
    .our-blog .blog .thumbnail > img {
        max-height: 300px;
    }
    .our-services .service .icon {
        width: 80px;
        height: 80px;
    }
    .site-nav .nav-links {
        width: 400px;
    }
    .emarketing-slider .screen {
        width: 380px;
    }
}