/*------------------------------------------------------------------
 * Theme Name: Limon
 * Theme URI: https://www.brandio.io/envato/limon/html
 * Author: Brandio
 * Author URI: https://www.brandio.io/
 * Description: A Bootstrap Responsive HTML5 Template
 * Version: 1.0
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Bootstrap v4.1 (http://getbootstrap.com)
 * Copyright 2020 Brandio.
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. General Styles
2. Header Styles
3. About Section Styles
4. Features Styles
5. Products Styles
6. Other Info Section Styles
7. Default Content Styles
8. Clients Section Styles
9. Other Content Styles
10. Process Section Styles
11. Team Section Styles
12. Jobs Section Styles
13. Blog Section Styles
14. Post Section Styles
15. Few Contact Styles
16. Extra Contact Styles
17. Jobs Section Styles
18. Project Info Styles
19. Footer Styles
20. Responsive Styles
-------------------------------------------------------------------*/
@import url("../webfonts/gilroy.css");

@import url("../webfonts/limon.css");
/* -----------------------------------
    1 - General Styles
------------------------------------*/
::selection {
    background-color: rgba(137, 139, 145, 0.7);
}

*, body {
    font-family: 'gilroy-light', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "gilroy-extrabold", sans-serif;
}

.lm-btn {
    display: inline-block;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 1.45rem;
    color: #fff;
    padding: 1.3rem 2.1rem;
    border-radius: 10rem;
    -webkit-box-shadow: inset 0 0 0 0.25rem #fff;
    box-shadow: inset 0 0 0 0.25rem #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.lm-btn:hover, .lm-btn:focus {
    color: #272B2C;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 3.25rem #fff;
    box-shadow: inset 0 0 0 3.25rem #fff;
}

.lm-btn.primary {
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 0.28rem #840BFC;
    box-shadow: inset 0 0 0 0.28rem #840BFC;
}

.lm-btn.primary:hover, .lm-btn.primary:focus {
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 3.25rem #840BFC;
    box-shadow: inset 0 0 0 3.25rem #840BFC;
}

.lm-btn.black {
    color: #000;
    -webkit-box-shadow: inset 0 0 0 0.28rem #000;
    box-shadow: inset 0 0 0 0.28rem #000;
}

.lm-btn.black:hover, .lm-btn.black:focus {
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 3.25rem #000;
    box-shadow: inset 0 0 0 3.25rem #000;
}

.lm-btn.ex-padding {
    padding: 1.3rem 3.7rem;
}

.btn-link {
    position: relative;
    display: inline-block;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 18px;
    color: #272B2C;
}

.btn-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #840BFC;
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.btn-link:hover, .btn-link:focus {
    text-decoration: none;
    color: #272B2C;
}

.btn-link:hover:before, .btn-link:focus:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

body {
    overflow-x: hidden;
    -webkit-transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
    transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
}

.menu-toggle {
    position: fixed;
    z-index: 99999;
    width: 1.7rem;
    height: 1.2rem;
    cursor: pointer;
    left: 3.6rem;
    top: 8rem;
    -webkit-transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
    transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
}

.menu-toggle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.4rem;
    height: 2.4rem;
    margin-top: -1.5rem;
    margin-left: -1.2rem;
    border-radius: 2rem;
    background-color: #840BFC;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-toggle .icon {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-toggle .icon:before, .menu-toggle .icon:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #840BFC;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-toggle .icon:before {
    top: 0;
}

.menu-toggle .icon:after {
    top: 0.75rem;
}

.menu-toggle.open .icon:before, .menu-toggle.open .icon:after {
    background-color: #000;
}

.menu-toggle.open .icon:before {
    top: .375rem;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.menu-toggle.open .icon:after {
    top: .375rem;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
}

.menu-toggle.sm:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.menu-toggle.sm .icon {
    left: 50%;
    margin-left: -35%;
    width: 70%;
}

.menu-toggle.sm .icon:before, .menu-toggle.sm .icon:after {
    background-color: #fff;
}

.menu-toggle.sm .icon:after {
    top: 0.5rem;
}

.menu-toggle.sm.open .icon {
    left: 0;
    margin-left: 0;
    width: 100%;
}

.menu-toggle.sm.open .icon:before, .menu-toggle.sm.open .icon:after {
    background-color: #000;
}

.menu-toggle.sm.open .icon:after {
    top: .375rem;
}

.main-menu {
    position: fixed;
    top: 0;
    left: -9rem;
    height: 100%;
    width: 8.8rem;
    background-color: #840BFC;
    text-align: right;
    padding: 1rem;
    overflow-y: hidden;
    opacity: 0;
    z-index: 9999;
    -webkit-transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
    transition: all 500ms cubic-bezier(1, -0.02, 0.25, 0.75);
}

.main-menu.opened {
    opacity: 1;
    left: 0;
}

.main-menu .menu-links {
    position: relative;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 100vh;
    top: 8.8rem;
    left: 3.4rem;
    text-align: left;
}

.main-menu .menu-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-menu .menu-links ul li {
    display: inline-block;
    margin-right: 1.4rem;
}

.main-menu .menu-links ul li a {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.04rem;
    font-family: "gilroy-extrabold", sans-serif;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.main-menu .menu-links ul li a:hover, .main-menu .menu-links ul li a:focus {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

@media (max-height: 550px) {
    .main-menu .menu-links {
        width: 100%;
        top: 10rem;
        left: 1.2rem;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .main-menu .menu-links ul li {
        display: block;
    }
}

/* -----------------------------------
    2 - Header Styles
------------------------------------*/
.cnav {
    position: fixed;
    width: 100%;
    z-index: 99999;
    padding: 2.5rem 2.6rem;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cnav .logo-bg {
    position: absolute;
    top: 0;
    left: -8.8rem;
    width: 8.8rem;
    height: 6.5rem;
    background-color: #840BFC;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cnav .logo-holder {
    display: inline-block;
    pointer-events: all;
    margin-right: 3.5rem;
}

.cnav .logo-holder img {
    width: 3.9rem;
}

.cnav .social-media {
    display: inline-block;
    opacity: 1;
    pointer-events: all;
    vertical-align: middle;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cnav .social-media .social-link-holder {
    display: inline-block;
    margin-right: 0.5rem;
}

.cnav .social-media .social-link-holder a {
    font-size: 1rem;
    font-family: "gilroy-extrabold", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cnav .social-media .social-link-holder a:hover, .cnav .social-media .social-link-holder a:focus {
    color: white;
    text-decoration: none;
}

.cnav .social-media.hide {
    -webkit-transform: translateY(-13rem);
    -moz-transform: translateY(-13rem);
    -ms-transform: translateY(-13rem);
    transform: translateY(-13rem);
}

.cnav.blend .logo-bg {
    left: 0;
}

.header {
    position: relative;
    background-color: #272B2C;
    text-align: center;
    padding: 16rem 3.5rem 14rem;
    max-height: 850px;
    min-height: 650px;
    background-color: #272B2C;
}

.header .info-content {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: -75px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 9999;
}

.header .info-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.header .info-content ul li {
    -moz-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.header .info-content ul li a {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
}

.header .info-content ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #840BFC;
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.header .info-content ul li a:hover:before, .header .info-content ul li a:focus:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.header .bg {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 90%;
    height: 80%;
    margin-left: -45%;
    background-image: url("../images/bg1.svg");
    background-size: 47px;
}

.header .mouse-scroll {
    position: absolute;
    display: inline-block;
    bottom: 3rem;
    left: 50%;
    margin-left: -0.8rem;
    width: 1.6rem;
    height: 2.4rem;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    -webkit-box-shadow: 0 0.3rem 5rem rgba(0, 0, 0, 0.24);
    box-shadow: 0 0.3rem 5rem rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .mouse-scroll:before {
    position: absolute;
    content: "";
    top: 0.5rem;
    left: 50%;
    margin-left: -0.1rem;
    width: 0.2rem;
    height: 0.4rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.21);
    -webkit-animation: m-an 2s ease infinite;
    -moz-animation: m-an 2s ease infinite;
    -ms-animation: m-an 2s ease infinite;
    animation: m-an 2s ease infinite;
}

.header .mouse-scroll.hide {
    opacity: 0;
}

.header .mouse-scroll.hide:before {
    opacity: 0;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

@-webkit-keyframes m-an {
    0% {
        top: 0.5rem;
        height: 0.2rem;
        opacity: 0;
    }

    15% {
        top: 0.7rem;
        height: 0.6rem;
        opacity: 1;
    }

    50% {
        top: 0.9rem;
        height: 0.6rem;
        opacity: 1;
    }

    70% {
        top: 1rem;
        height: 0.5rem;
        opacity: 1;
    }

    90% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }

    100% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }
}

@-moz-keyframes m-an {
    0% {
        top: 0.5rem;
        height: 0.2rem;
        opacity: 0;
    }

    15% {
        top: 0.7rem;
        height: 0.6rem;
        opacity: 1;
    }

    50% {
        top: 0.9rem;
        height: 0.6rem;
        opacity: 1;
    }

    70% {
        top: 1rem;
        height: 0.5rem;
        opacity: 1;
    }

    90% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }

    100% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }
}

@-ms-keyframes m-an {
    0% {
        top: 0.5rem;
        height: 0.2rem;
        opacity: 0;
    }

    15% {
        top: 0.7rem;
        height: 0.6rem;
        opacity: 1;
    }

    50% {
        top: 0.9rem;
        height: 0.6rem;
        opacity: 1;
    }

    70% {
        top: 1rem;
        height: 0.5rem;
        opacity: 1;
    }

    90% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }

    100% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }
}

@keyframes m-an {
    0% {
        top: 0.5rem;
        height: 0.2rem;
        opacity: 0;
    }

    15% {
        top: 0.7rem;
        height: 0.6rem;
        opacity: 1;
    }

    50% {
        top: 0.9rem;
        height: 0.6rem;
        opacity: 1;
    }

    70% {
        top: 1rem;
        height: 0.5rem;
        opacity: 1;
    }

    90% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }

    100% {
        top: 1.2rem;
        height: 0.5rem;
        opacity: 0;
    }
}

.extra-lg-text {
    color: #fff;
    text-align: center;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 6.4rem;
    line-height: 6.5rem;
}

.extra-lg-text span {
    display: inline-block;
    font-family: "gilroy-extrabold", sans-serif;
}

.extra-lg-text .other-color {
    color: #840BFC;
    font-family: "gilroy-extrabold", sans-serif;
}

/* -----------------------------------
    3 - About Section Styles
------------------------------------*/
.sm-about {
    background-color: #fff;
    padding: 4rem 4rem;
}

.sm-about .sm-text {
    font-size: 20px;
    color: #121212;
    margin-bottom: .5rem;
}

.sm-about .md-text {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 42px;
    color: #840BFC;
    line-height: 55px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 2rem;
}

/* -----------------------------------
    4 - Features Styles
------------------------------------*/
.features {
    text-align: center;
    background-color: #fff;
    padding: 4rem 4rem;
}

.row-title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 42px;
    color: #000000;
    margin-bottom: 6rem;
}

.feature-box {
    position: relative;
    margin-bottom: 4rem;
    display: inline-block;
    width: 100%;
    max-width: 212px;
    padding: 1rem;
}

.feature-box .icon {
    margin-bottom: 1.8rem;
}

.feature-box .icon i {
    font-size: 51px;
    color: #8A8B8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 21px;
    color: #272B2C;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #840BFC;
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.feature-box:hover .icon i {
    color: #000;
}

.feature-box:hover .title {
    color: #840BFC;
}

.feature-box:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* -----------------------------------
    5 - Products Styles
------------------------------------*/
.products {
    text-align: center;
    background-color: #fff;
    padding: 4rem 4rem;
}

.products .row-title {
    margin-bottom: 4rem;
}

.products .link-holder {
    text-align: right;
}

.product-box {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
    height: 330px;
    overflow: hidden;
    margin-bottom: 2rem;
    z-index: 1;
}

.product-box .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

.product-box .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box .title-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 1.2rem 2rem;
    padding-bottom: 4rem;
    background-color: #000;
    opacity: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.3s cubic-bezier(0.34, 1.61, 0.7, 1) 0.5s;
    transition: all 0.3s cubic-bezier(0.34, 1.61, 0.7, 1) 0.5s;
}

.product-box .title-holder .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 35px;
    color: #fff;
}

.product-box .title-holder .tags {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: 100%;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.product-box:hover .img, .product-box:focus .img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.product-box:hover .title-holder, .product-box:focus .title-holder {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* -----------------------------------
    6 - Other Info Section Styles
------------------------------------*/
.other-info {
    text-align: center;
    background-color: #000;
    padding: 4rem 4rem;
}

.other-info .row-title {
    color: #fff;
}

.info-box {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
    text-align: left;
    padding: 2rem 1.5rem;
    z-index: 1;
}

.info-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg2.svg");
    background-size: 47px;
    background-position: -47px -50px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.info-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 21px;
    color: #fff;
    margin-bottom: 1.3rem;
}

.info-box .text {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 15px;
    color: #898989;
    line-height: 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.info-box:hover:before {
    opacity: 1;
    background-position: 0px 0px;
}

.info-box:hover .text {
    color: #fff;
}

/* -----------------------------------
    7 - Default Content Styles
------------------------------------*/
.default-content {
    background-color: #232931;
    text-align: center;
    padding: 7rem 4rem 5rem;
}

.default-content .lg-text {
    margin-bottom: 5rem;
}

.default-content .btn-link {
    color: #fff;
}

.lg-text {
    color: #fff;
    text-align: center;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 79px;
    line-height: 72px;
    margin-bottom: 2.2rem;
}

.lg-text span {
    font-family: "gilroy-extrabold", sans-serif;
    display: inline-block;
}

.normal-text p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.slg-text {
    color: #fff;
    text-align: center;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 5rem;
    line-height: 3.9rem;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.slg-text span {
    font-family: "gilroy-extrabold", sans-serif;
    display: inline-block;
}

.slg-text .other-color {
    color: #840BFC;
    font-family: "gilroy-extrabold", sans-serif;
}

.normal-lg-text {
    text-align: center;
}

.normal-lg-text p {
    font-family: "gilroy-extrabold", sans-serif;
    color: rgba(255, 255, 255, 0.66);
    font-size: 2.5rem;
    line-height: 3.3rem;
}

.normal-lg-text p a {
    font-family: "gilroy-extrabold", sans-serif;
    color: rgba(255, 255, 255, 0.66);
    font-size: 2rem;
    line-height: 3.3rem;
}

/* -----------------------------------
    8 - Clients Section Styles
------------------------------------*/
.clients-section {
    background-color: #fff;
    text-align: left;
    padding: 5rem 10rem 3rem;
}

.clients-section .sm-text {
    font-size: 20px;
    color: #000000;
    margin-bottom: 2rem;
}

.clients-section .lg-text {
    color: #000;
    text-align: left;
    margin-bottom: 2.2rem;
}

.clients-section p {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.clients-section .normal-text {
    margin-bottom: 5rem;
}

.clients-section .clients-logos {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
}

.clients-section .clients-logos .logo-holder {
    -moz-flex: 1 1 25%;
    -webkit-flex: 1 1 25%;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    margin-bottom: 5rem;
}

.clients-section .clients-logos .logo-holder img {
    max-height: 2.8rem;
}

/* -----------------------------------
    9 - Other Content Styles
------------------------------------*/
.other-content {
    background-color: #393E46;
    text-align: center;
    padding: 9rem 3.5rem 7rem;
}

.other-content .lg-text {
    margin-bottom: 2.2rem;
}

.other-content p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.other-content .normal-text {
    margin-bottom: 4rem;
}

/* -----------------------------------
    10 - Process Section Styles
------------------------------------*/
.process-section {
    background-color: #fff;
    text-align: left;
    padding: 8rem 12rem 3rem;
}

.process-section .lg-text {
    text-align: left;
    font-size: 79px;
    color: #000;
}

.process-section p {
    color: rgba(0, 0, 0, 0.66);
    margin-bottom: 6rem;
}

.process-section > .row {
    margin-right: -40px;
    margin-left: -40px;
}

.process-section > .row > div[class^="col"] {
    padding-right: 40px;
    padding-left: 40px;
}

.text-box {
    margin-bottom: 4rem;
}

.text-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 21px;
    color: #840BFC;
    margin-bottom: 0.8rem;
}

.text-box p {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

/* -----------------------------------
    11 - Team Section Styles
------------------------------------*/
.team-section {
    position: relative;
    background-color: #840BFC;
    padding: 10rem 8rem 12rem;
    z-index: 10;
}

.team-section .sm-text {
    font-family: "gilroy-extrabold", sans-serif;
    color: #fff;
    font-size: 21px;
    margin-bottom: 2rem;
    text-align: center;
}

.team-section .extra-lg-text {
    font-size: 105px;
    color: #FFE200;
    text-shadow: -10px 5px 0 #000;
}

.team-section .team-photos {
    position: absolute;
    left: 0;
    bottom: -12.25rem;
    width: 100%;
    padding-bottom: 5rem;
    overflow: hidden;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.team-section .team-photos .photo-holder {
    position: relative;
    display: inline-block;
    margin: 0 2.4rem;
}

.team-section .team-photos .photo-holder img {
    border-radius: 10rem;
    width: 14.5rem;
}

.team-section .team-photos .photo-holder:nth-child(odd) {
    bottom: -3.5rem;
}

@-webkit-keyframes photos-move {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-140%);
        -moz-transform: translateX(-140%);
        -ms-transform: translateX(-140%);
        transform: translateX(-140%);
    }
}

@-moz-keyframes photos-move {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-140%);
        -moz-transform: translateX(-140%);
        -ms-transform: translateX(-140%);
        transform: translateX(-140%);
    }
}

@-ms-keyframes photos-move {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-140%);
        -moz-transform: translateX(-140%);
        -ms-transform: translateX(-140%);
        transform: translateX(-140%);
    }
}

@keyframes photos-move {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-140%);
        -moz-transform: translateX(-140%);
        -ms-transform: translateX(-140%);
        transform: translateX(-140%);
    }
}

/* -----------------------------------
    12 - Jobs Section Styles
------------------------------------*/
.jobs-section {
    background-color: #fff;
    text-align: left;
    padding: 10rem 10rem 3rem;
}

.jobs-section .lg-text {
    color: #840BFC;
    text-align: left;
    margin-bottom: 7rem;
}

.jobs-section .job-box-row {
    margin-bottom: 5rem;
}

.jobs-section .job-box-row:last-child {
    margin-bottom: 0;
}

.jobs-section .job-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 2.4rem;
    line-height: 2.5rem;
    text-transform: lowercase;
}

.jobs-section .job-box .subtitle {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.jobs-section .btn-holder {
    text-align: right;
}

.padding-for-team {
    padding-top: 17rem !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

/* -----------------------------------
    13 - Blog Section Styles
------------------------------------*/
.blog-section {
    padding: 6rem;
    background-color: #fff;
}

.post-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: #EEEEEE;
    margin-bottom: 5rem;
}

.post-box:last-child {
    margin-bottom: 0;
}

.post-box .text-holder {
    padding: 6.5rem 5rem;
}

.post-box .text-holder .title {
    display: inline-block;
    color: #840BFC;
    text-align: left;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 42px;
    line-height: 3.9rem;
    margin-bottom: 2.2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post-box .text-holder .title:hover, .post-box .text-holder .title:focus {
    text-decoration: none;
    color: #60666d;
}

.post-box .text-holder .text {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.post-box .img-holder img {
    width: 29rem;
}

/* -----------------------------------
    14 - Post Section Styles
------------------------------------*/
.post-section {
    background-color: #fff;
    padding: 0;
}

.post-section > .row {
    margin: 0;
}

.post-section > .row > div[class^="col"] {
    padding: 0;
}

.post-section .post-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.post-section .post-header .post-info-holder {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 4rem;
}

.post-section .post-header .post-info-holder .link-holder {
    -moz-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.post-section .post-header .post-info-holder .link-holder a {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 1.6rem;
    color: #393E46;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post-section .post-header .post-info-holder .link-holder a:hover, .post-section .post-header .post-info-holder .link-holder a:focus {
    color: #60666d;
    text-decoration: none;
}

.post-section .post-header .post-info-holder .post-info {
    -moz-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

.post-section .post-header .post-info-holder .post-info .date {
    display: inline-block;
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    margin-right: 1rem;
}

.post-section .post-header .post-info-holder .post-info .auther {
    display: inline-block;
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
}

.post-section .post-header .text-holder {
    padding: 4rem 9.5rem;
}

.post-section .post-header .text-holder .title {
    display: inline-block;
    color: #232931;
    text-align: left;
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 54px;
    line-height: 3.9rem;
    margin-bottom: 2.2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.post-section .post-header .text-holder .text {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.post-section .post-header .img-holder img {
    width: 29rem;
}

.post-section .post-content {
    padding: 4rem 9.5rem;
}

.post-section .post-content h1 {
    margin-bottom: 1rem;
}

.post-section .post-content p {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.12rem;
    line-height: 2.5rem;
    margin-bottom: 4rem;
}

/* -----------------------------------
    15 - Few Contact Styles
------------------------------------*/
.few-contact {
    padding: 4rem 8rem;
    background-color: #fff;
}

.few-contact .contact-info-holder {
    text-align: left;
}

.few-contact .contact-info-holder .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 25px;
    color: #777A80;
}

.few-contact .contact-info-holder .contact-info {
    font-family: "gilroy-extrabold", sans-serif;
    color: #232931;
    font-size: 47px;
}

.few-contact .contact-info-holder .contact-info a {
    font-family: "gilroy-extrabold", sans-serif;
    color: #840BFC;
    font-size: 47px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.few-contact .contact-info-holder .contact-info a:hover, .few-contact .contact-info-holder .contact-info a:focus {
    color: #777A80;
    text-decoration: none;
}

/* -----------------------------------
    16 - Extra Contact Styles
------------------------------------*/
.extra-contact {
    background-color: #232931;
    padding: 7rem 8rem 5rem;
}

.extra-contact .contact-info-box {
    margin-bottom: 3rem;
}

.extra-contact .contact-info-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 25px;
    color: #777A80;
    margin-bottom: 1rem;
}

.extra-contact .contact-info-box .title span {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 25px;
}

.extra-contact .contact-info-box .text {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 25px;
    color: #fff;
}

.extra-contact .contact-info-box .text p {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 30px;
}

/* -----------------------------------
    17 - Jobs Section Styles
------------------------------------*/
.our-people-section {
    background-color: #fff;
    text-align: left;
    padding: 10rem 10rem;
}

.our-people-section .extra-lg-text {
    color: #393E46;
    margin-bottom: 11rem;
}

.our-people-section .lg-text {
    color: #840BFC;
    text-align: left;
    margin-bottom: 2rem;
}

.our-people-section .normal-text {
    margin-bottom: 5rem;
}

.our-people-section .normal-text p {
    color: rgba(0, 0, 0, 0.66);
}

.our-people-section .people-box-row {
    margin-bottom: 5rem;
}

.our-people-section .people-box-row:last-child {
    margin-bottom: 0;
}

.our-people-section .people-box .title {
    font-family: "gilroy-extrabold", sans-serif;
    font-size: 2.4rem;
    line-height: 2.5rem;
}

.our-people-section .people-box .subtitle {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1.26rem;
    line-height: 2.5rem;
}

.our-people-section .btn-holder {
    text-align: right;
}

/* -----------------------------------
    18 - Project Info Styles
------------------------------------*/
.project-info {
    background-color: #fff;
    padding: 6rem 8rem 2rem;
}

.project-info h2 {
    color: #393E46;
    margin-bottom: 1rem;
}

.project-info .lg-text {
    color: #000;
    text-align: left;
    margin-bottom: 2rem;
}

.project-info .normal-text {
    margin-bottom: 5rem;
}

.project-info .normal-text p {
    color: rgba(0, 0, 0, 0.66);
}

.project-info .text-box .title {
    color: #840BFC;
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
}

.project-imgs {
    background-color: #fff;
    padding: 3.5rem;
}

.project-imgs .img-holder {
    margin-bottom: 4rem;
}

.project-imgs .img-holder img {
    width: 100%;
}

/* -----------------------------------
    19 - Footer Styles
------------------------------------*/
.footer {
    position: relative;
    background-color: #840BFC;
    text-align: center;
    padding: 6rem 4rem;
    z-index: 1;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg1.svg");
    background-size: 55px;
    z-index: -1;
}

.footer .lg-text {
    color: #fff;
    margin-bottom: 2.2rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.96);
    font-size: 20px;
    line-height: 38px;
}

.footer .normal-text {
    margin-bottom: 6rem;
}

.footer .normal-text p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.footer .contact-info-holder {
    text-align: left;
}

.footer .contact-info-holder .title {
    font-size: 19px;
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer .contact-info-holder .contact-info {
    font-family: "gilroy-extrabold", sans-serif;
    color: #fff;
    font-size: 42px;
    margin-bottom: 1.5rem;
}

.footer .contact-info-holder .contact-info a {
    font-family: "gilroy-extrabold", sans-serif;
    color: #fff;
    font-size: 42px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer .contact-info-holder .contact-info a:hover, .footer .contact-info-holder .contact-info a:focus {
    opacity: 0.7;
    text-decoration: none;
}

.footer .contact-info-holder .social-media {
    display: inline-block;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer .contact-info-holder .social-media .social-link-holder {
    text-align: left;
    display: inline-block;
    margin-right: 0.5rem;
}

.footer .contact-info-holder .social-media .social-link-holder a {
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer .contact-info-holder .social-media .social-link-holder a:hover, .footer .contact-info-holder .social-media .social-link-holder a:focus {
    opacity: 0.7;
    text-decoration: none;
}

.footer.one-word {
    padding: 14rem 8rem 13rem;
}

.footer.one-word .lg-text {
    color: #fff;
}

/* -----------------------------------
    20 - Responsive Styles
------------------------------------*/
@media (max-width: 1200px) {
    body.menu-open {
        padding-left: 0;
    }

    .clients-section .clients-logos .logo-holder img {
        max-height: 2rem;
    }

    .post-box {
        margin-bottom: 3rem;
    }

    .post-box:last-child {
        margin-bottom: 0;
    }

    .post-box .text-holder {
        padding: 4rem 4rem;
    }

    .post-box .text-holder .title {
        font-size: 4rem;
        line-height: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .post-box .text-holder .text {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .post-box .img-holder img {
        width: 23rem;
    }

    .post-section .post-header .post-info-holder {
        margin-bottom: 3rem;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .post-section .post-header .post-info-holder .post-info {
        text-align: left;
    }

    .post-section .post-header .text-holder .title {
        font-size: 3.6rem;
        line-height: 2.5rem;
        margin-bottom: 2.2rem;
    }

    .post-section .post-header .img-holder img {
        width: 24rem;
    }
}

@media (max-width: 992px) {
    .extra-lg-text {
        font-size: 4.8rem;
        line-height: 4.8rem;
    }

    .lg-text {
        font-size: 4rem;
        line-height: 4rem;
    }

    .normal-text p {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }

    .slg-text {
        font-size: 2.6rem;
        line-height: 1.9rem;
        margin-bottom: 3rem;
    }

    .normal-lg-text p {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .clients-section {
        padding: 6rem 6.5rem 5rem;
    }

    .clients-section .clients-logos .logo-holder {
        -moz-flex: 1 1 25%;
        -webkit-flex: 1 1 25%;
        -ms-flex: 1 1 25%;
        flex: 1 1 25%;
        margin-bottom: 3rem;
    }

    .clients-section .clients-logos .logo-holder img {
        max-height: 1.8rem;
    }

    .process-section {
        padding: 6rem 6.5rem;
    }

    .process-section p {
        margin-bottom: 4rem;
    }

    .process-section .lg-text {
        font-size: 4rem;
        line-height: 4rem;
    }

    .text-box {
        margin-bottom: 2rem;
    }

    .text-box .title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .text-box p {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }

    .team-section {
        padding: 6rem 2rem 6rem;
    }

    .team-section .team-photos {
        bottom: -10.25rem;
        padding-bottom: 5rem;
    }

    .team-section .team-photos .photo-holder {
        margin: 0 1.5rem;
    }

    .team-section .team-photos .photo-holder img {
        width: 10rem;
    }

    .team-section .team-photos .photo-holder:nth-child(odd) {
        bottom: -2rem;
    }

    .team-section .extra-lg-text {
        font-size: 4.8rem;
        line-height: 4.8rem;
    }

    .jobs-section {
        padding: 6rem 6.5rem;
    }

    .jobs-section .lg-text {
        margin-bottom: 4rem;
    }

    .jobs-section .job-box-row {
        margin-bottom: 4rem;
    }

    .jobs-section .job-box-row:last-child {
        margin-bottom: 0;
    }

    .jobs-section .job-box .title {
        font-size: 2rem;
        line-height: 2.5rem;
        text-transform: capitalize;
    }

    .jobs-section .job-box .subtitle {
        font-size: 1.1rem;
        line-height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .jobs-section .btn-holder {
        text-align: right;
    }

    .jobs-section .btn-holder .lm-btn {
        padding: 1rem 2rem 0.7rem;
    }

    .padding-for-team {
        padding-top: 12rem !important;
    }

    .project-info {
        padding: 4rem 6.5rem 0;
    }

    .project-info h2 {
        font-size: 2rem;
        line-height: 1.8rem;
    }

    .project-info .normal-text {
        margin-bottom: 2rem;
    }

    .project-info .text-box .title {
        font-size: 1.9rem;
        margin-bottom: 0.2rem;
    }

    .blog-section {
        padding: 4rem 6.5rem;
    }

    .post-box {
        margin-bottom: 3rem;
    }

    .post-box:last-child {
        margin-bottom: 0;
    }

    .post-box .text-holder {
        padding: 4rem 3rem;
    }

    .post-box .text-holder .title {
        font-size: 2.9rem;
        line-height: 2rem;
        margin-bottom: 1.2rem;
    }

    .post-box .text-holder .text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    .post-box .img-holder img {
        width: 20rem;
    }

    .post-section .post-header .post-info-holder {
        margin-bottom: 3rem;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .post-section .post-header .post-info-holder .link-holder a {
        font-size: 1.4rem;
    }

    .post-section .post-header .post-info-holder .post-info {
        text-align: left;
    }

    .post-section .post-header .post-info-holder .post-info .date {
        font-size: 1.1rem;
    }

    .post-section .post-header .post-info-holder .post-info .auther {
        font-size: 1.1rem;
    }

    .post-section .post-header .text-holder {
        padding: 3rem 6.5rem 0rem;
    }

    .post-section .post-header .text-holder .title {
        font-size: 2.6rem;
        line-height: 2rem;
        margin-bottom: 2.2rem;
    }

    .post-section .post-header .text-holder .text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    .post-section .post-header .img-holder img {
        width: 20rem;
    }

    .post-section .post-content {
        padding: 3rem 6.5rem;
    }

    .post-section .post-content h1 {
        font-size: 2rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }

    .post-section .post-content p {
        font-size: 1rem;
        line-height: 1.8rem;
        margin-bottom: 3rem;
    }

    .our-people-section {
        padding: 6rem 6.5rem;
    }

    .our-people-section .extra-lg-text {
        margin-bottom: 5rem;
    }

    .our-people-section .lg-text {
        margin-bottom: 2rem;
    }

    .our-people-section .normal-text {
        margin-bottom: 3rem;
    }

    .our-people-section .people-box-row {
        margin-bottom: 3rem;
    }

    .our-people-section .people-box-row:last-child {
        margin-bottom: 0;
    }

    .our-people-section .people-box .title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .our-people-section .people-box .subtitle {
        font-size: 1.2rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }

    .our-people-section .btn-holder {
        text-align: right;
    }

    .our-people-section .btn-holder .lm-btn {
        padding: 1.1rem 2rem 0.9rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        left: initial;
        top: 2.3rem;
        right: 3rem;
    }

    .main-menu {
        right: 100%;
        width: 100%;
        left: initial;
        height: initial;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .main-menu.opened {
        right: 0;
        left: initial;
    }

    .main-menu .menu-links {
        position: relative;
        width: 100%;
        text-align: center;
        top: 0;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .main-menu .menu-links ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 1.4rem;
    }

    .cnav {
        padding: 2rem 2rem;
    }

    .cnav .logo-bg {
        width: 7.4rem;
        height: 5.8rem;
    }

    .cnav .logo-holder img {
        width: 3.4em;
    }

    .cnav .social-media {
        -webkit-transform: translateY(-13rem);
        -moz-transform: translateY(-13rem);
        -ms-transform: translateY(-13rem);
        transform: translateY(-13rem);
    }

    .lm-btn {
        font-size: 1.3rem;
    }

    .header {
        padding: 14rem 2rem 14rem;
        min-height: initial;
    }

    .header .info-content {
        display: none;
    }

    .extra-lg-text {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }

    .lg-text {
        font-size: 2.6rem;
        line-height: 2.6rem;
    }

    .normal-text p {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    .clients-section {
        padding: 6rem 5rem 5rem;
    }

    .clients-section .clients-logos .logo-holder img {
        max-height: 1.5rem;
    }

    .default-content {
        padding: 10rem 2rem 8rem;
    }

    .other-content {
        padding: 6rem 2rem;
    }

    .footer {
        padding: 6rem 2rem 6rem;
    }

    .footer .contact-info-holder {
        text-align: center;
    }

    .footer .contact-info-holder .title {
        font-size: 1.8rem;
    }

    .footer .contact-info-holder .contact-info {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .footer .contact-info-holder .contact-info a {
        font-size: 1.8rem;
    }

    .footer .contact-info-holder .social-media .social-link-holder a {
        font-size: 0.9rem;
    }

    .footer.one-word {
        padding: 8rem 8rem 7rem;
    }

    .process-section {
        padding: 6rem 5rem;
    }

    .process-section p {
        margin-bottom: 4rem;
    }

    .process-section .lg-text {
        font-size: 2.6rem;
        line-height: 2.6rem;
    }

    .text-box {
        margin-bottom: 2rem;
    }

    .text-box .title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .text-box p {
        font-size: 1rem;
        line-height: 1.8rem;
        margin-bottom: 2rem;
    }

    .team-section {
        padding: 6rem 2rem 6rem;
    }

    .team-section .team-photos {
        bottom: -8.25rem;
        padding-bottom: 5rem;
    }

    .team-section .team-photos .photo-holder {
        margin: 0 1rem;
    }

    .team-section .team-photos .photo-holder img {
        width: 8rem;
    }

    .team-section .team-photos .photo-holder:nth-child(odd) {
        bottom: -2rem;
    }

    .team-section .extra-lg-text {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }

    .jobs-section {
        padding: 6rem 5rem 6rem;
    }

    .padding-for-team {
        padding-top: 8rem !important;
    }

    .project-info {
        padding: 4rem 5rem 0;
    }

    .project-imgs {
        padding: 2rem;
    }

    .project-imgs .img-holder {
        margin-bottom: 2.5rem;
    }

    .blog-section {
        padding: 3rem 5rem;
    }

    .post-box {
        margin-bottom: 3rem;
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .post-box:last-child {
        margin-bottom: 0;
    }

    .post-box .text-holder {
        padding: 3rem;
    }

    .post-box .img-holder img {
        width: 100%;
    }

    .post-section .post-header {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .post-section .post-header .text-holder {
        padding: 3rem 5rem 0rem;
    }

    .post-section .post-header .text-holder .title {
        font-size: 2.9rem;
    }

    .post-section .post-header .img-holder img {
        width: 100%;
    }

    .post-section .post-content {
        padding: 3rem 5rem;
    }

    .few-contact {
        padding: 4rem 2rem;
    }

    .few-contact .contact-info-holder {
        text-align: center;
    }

    .few-contact .contact-info-holder .title {
        font-size: 1.8rem;
    }

    .few-contact .contact-info-holder .contact-info {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .few-contact .contact-info-holder .contact-info a {
        font-size: 1.8rem;
    }

    .our-people-section {
        padding: 6rem 5rem;
    }

    .our-people-section .extra-lg-text {
        margin-bottom: 4rem;
    }

    .our-people-section .lg-text {
        margin-bottom: 2rem;
    }

    .our-people-section .normal-text {
        margin-bottom: 3rem;
    }

    .our-people-section .people-box-row {
        margin-bottom: 3rem;
    }

    .our-people-section .people-box-row:last-child {
        margin-bottom: 0;
    }

    .our-people-section .people-box .title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .our-people-section .people-box .subtitle {
        font-size: 1.2rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }

    .our-people-section .btn-holder {
        text-align: right;
    }

    .our-people-section .btn-holder .lm-btn {
        padding: 1.1rem 2rem 0.9rem;
    }
}

@media (max-width: 575px) {
    .extra-lg-text {
        font-size: 2.8rem;
        line-height: 2.8rem;
    }

    .features {
        padding: 4rem 2rem;
    }

    .clients-section {
        padding: 6rem 2rem;
    }

    .clients-section .clients-logos .logo-holder {
        -moz-flex: 1 1 50%;
        -webkit-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        margin-bottom: 3rem;
    }

    .clients-section .clients-logos .logo-holder img {
        max-height: 1.5rem;
    }

    .footer .contact-info-holder .social-media .social-link-holder a {
        font-size: 0.7rem;
    }

    .process-section {
        padding: 6rem 2rem;
    }

    .process-section > .row {
        margin-right: 0;
        margin-left: 0;
    }

    .process-section > .row > div[class^="col"] {
        padding-right: 0;
        padding-left: 0;
    }

    .jobs-section {
        padding: 6rem 2rem 6rem;
    }

    .jobs-section .btn-holder {
        text-align: left;
    }

    .products {
        padding: 4rem 2rem;
    }

    .other-info {
        padding: 4rem 2rem;
    }

    .extra-contact {
        padding: 4rem 2rem;
    }

    .project-info {
        padding: 4rem 2rem 0;
    }

    .project-imgs .img-holder {
        margin-bottom: 1rem;
    }

    .blog-section {
        padding: 2rem;
    }

    .post-box .text-holder {
        padding: 2rem;
    }

    .post-section .post-header .text-holder {
        padding: 3rem 2rem 0rem;
    }

    .post-section .post-content {
        padding: 3rem 2rem;
    }

    .our-people-section {
        padding: 6rem 2rem;
    }

    .our-people-section .btn-holder {
        text-align: left;
    }
}
