/* ===================================
   Digital Marketing Template - Optimized CSS
   =================================== */

/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* GENERAL CLASSES */
body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.white-btn {
    background-color: #fff;
    color: #fa2851;
    border: 1px solid #fa2851;
}

.white-btn:hover {
    background-color: #fa2851;
    color: #fff;
    border: 1px solid #fa2851;
}

.pink-btn {
    background-color: #fa2851;
    color: #fff;
    border: 1px solid #fa2851;
}

.pink-btn:hover {
    background-color: #202020;
    color: #fff;
    border: 1px solid #202020;
}

.yellow-btn {
    background-color: #0093dd;
    color: #fff;
    border: 1px solid #0093dd;
}

.yellow-btn:hover {
    background-color: #202020;
    color: #fff;
    border: 1px solid #202020;
}

.pink-btn:focus {
    color: #fff;
}

.bg-white {
    background-color: white;
}

.text-yellow {
    color: #0093dd;
}

.text-black {
    color: #202020;
}

.text-red {
    color: #fa2851;
}

.height {
    height: 100vh;
}

.height1 {
    height: 100%;
}

.mt-40 {
    margin-top: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-20 {
    margin-top: 1.9rem;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-90 {
    margin-top: 90px;
}

.small-view {
    display: none;
}

/* SCROLLBAR */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #0093dd;
    border-right: 25px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

/* PRELOADER */
.loader-area {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 999999;
}

.loader {
    width: 111px;
    height: 111px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.loader>div {
    border-radius: 50%;
    position: absolute;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.loader .one {
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 11.1px solid #0093dd;
    border-left: 11.1px solid transparent;
    border-right: 11.1px solid transparent;
    border-bottom: 11.1px solid transparent;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loader .two {
    width: 74px;
    height: 74px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 11.1px solid #000;
    border-left: 11.1px solid rgba(255, 255, 255, 0.5);
    border-right: 11.1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 11.1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}

.loader .three {
    width: 37px;
    height: 37px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 11.1px solid #fa2851;
    border-left: 11.1px solid rgba(255, 255, 255, 0.5);
    border-right: 11.1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 11.1px solid rgba(255, 255, 255, 0.5);
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

@-webkit-keyframes spin {

    50%,
    100% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@keyframes spin {

    50%,
    100% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

/* NAVBAR FOR LARGE SCREEN */
.navbar-nav .nav-link {
    padding: 10px 0 2px 0 !important;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.btn-slider {
    padding: 10px 25px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.btn-main {
    padding: 10px 35px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.small-screen {
    display: none;
}

/* TRANSPARENT NAVBAR */
.bg-trans-color {
    background-color: transparent !important;
}

.bg-trans-color .navbar-nav .nav-link {
    color: #202020;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.transparent-bar.navbar.fixed-menu.margin-nav {
    margin-top: 0;
}

.bg-trans-color .navbar-nav .nav-item {
    margin: 12px 23px;
}

.banner-icons a .icons {
    margin: 0 8px 5px 0;
    font-size: 19px;
    background-color: #202020;
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
}

.banner-icons a .icons:hover {
    color: #fff;
}

.banner-icons a .fb:hover {
    background-color: #3b5998 !important;
}

.banner-icons a .inst:hover {
    background-color: red !important;
}

.banner-icons a .twt:hover {
    background-color: #00acee !important;
}

.rounded-bar.transparent-bar {
    margin-top: 15px;
}

.rounded-bar.transparent-bar.navbar.fixed-menu {
    margin-top: 0;
}

.rounded-bar.transparent-bar.margin-nav .logo {
    display: none;
}

.rounded-bar {
    z-index: 1111;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 90px;
    padding: 10px 15px;
    width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #222;
}

.navbar.fixed-menu {
    z-index: 1111;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 100px;
    background: #ffffff;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.15);
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.navbar-light .navbar-nav .nav-link.active {
    color: #0093dd;
}

/* SIDE MENU */
.side-menu {
    width: 40%;
    position: fixed;
    right: 0;
    top: 0;
    background: #ffffff;
    z-index: 9999;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    overflow: hidden;
}

.side-menu.side-menu-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

.side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 25px;
    cursor: pointer;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #202020;
    top: 5px;
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 40px;
    padding: 6px;
    margin-right: 1rem;
    position: absolute;
    right: 15px;
    display: inline-block;
}

.sidemenu_btn span {
    height: 2px;
    width: 100%;
    background: #202020;
    display: block;
}

.sidemenu_btn span:nth-child(2) {
    margin: 5px 0;
}

.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 15px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #202020;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    line-height: normal;
    position: relative;
    border-radius: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.side-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    background: #202020;
    display: inline-block;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}

.side-menu p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.side-footer p {
    color: #202020;
}

/* HOME SECTION */
.home {
    background-color: #f7f8fb;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 10px 10px, rgba(0, 147, 221, 0.20) 0 2px, transparent 2.5px),
        radial-gradient(circle at 32px 32px, rgba(250, 40, 81, 0.10) 0 2px, transparent 2.5px),
        linear-gradient(45deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.04) 75%, transparent 75%, transparent);
    background-size: 44px 44px, 44px 44px, 90px 90px;
    background-position: 0 0, 0 0, 0 0;
    animation: homePatternMove 22s linear infinite;
}

@keyframes homePatternMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 180px 120px, 140px 200px, 240px 240px;
    }
}

.home #home-slider {
    position: relative;
    z-index: 2;
}

.home #home-slider .home-text {
    padding-left: 120px;
}

.home #home-slider .animated-text,
.home #home-slider .animated-image {
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .home #home-slider .home-text {
        padding-left: 30px;
    }
}

svg {
    position: absolute;
    right: 0;
    height: 152%;
    fill: #0093dd;
    top: -147px;
    bottom: 0;
}

svg.left-square {
    position: absolute;
    left: 0;
    height: 177%;
    top: -117px;
    bottom: 0;
}

svg.yellow-square {
    position: absolute;
    right: 0;
    height: 335%;
    top: -340px;
    bottom: 0;
}

svg.right-square {
    position: absolute;
    right: 0;
    height: 150%;
    top: -83px;
    bottom: 0;
}

.feature {
    position: relative;
    padding-top: 130px;
}

.large-logo {
    position: absolute;
    z-index: 9;
    width: 75%;
    left: 40%;
    top: 25%;
}

.plant-home {
    position: absolute;
    bottom: 2%;
    width: 57%;
    left: 36.5%;
    z-index: 9;
}

.plant-contact {
    position: absolute;
    bottom: -69%;
    z-index: 9;
    left: 4.5%;
}

.feature-icon {
    font-size: 120px;
    -webkit-transform: translateY(-30%);
    color: #202020;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.feature-icon.center {
    color: #0093dd;
}

.card-body .card-text {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.3;
}

.card .card-body {
    padding: 0 70px 30px 70px;
}

.card {
    border: none;
    cursor: pointer;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-box-shadow: 2px 2px 10px #e1e1e1;
    box-shadow: 2px 2px 10px #e1e1e1;
}

.card:hover {
    background-color: #0093dd;
}

.card:hover .feature-icon {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    color: #202020;
}

.small-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: normal;
}

.sub-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.main-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 0;
}

.heading {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
}

/* HOME SLIDER NAVIGATION */
.home-owl .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.home-owl .owl-nav button.owl-prev,
.home-owl .owl-nav button.owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fa2851 !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(250, 40, 81, 0.3);
    outline: none;
}

.home-owl .owl-nav button.owl-prev:hover,
.home-owl .owl-nav button.owl-next:hover {
    background: #0093dd !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.home-owl .owl-nav button.owl-prev {
    left: 20px;
}

.home-owl .owl-nav button.owl-next {
    right: 20px;
}

.home-owl .owl-nav button i {
    font-size: 28px;
}

/* Animation delays for staggered text appearance */
.animated-text:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-text:nth-child(2) {
    animation-delay: 0.3s;
}

.animated-text:nth-child(3) {
    animation-delay: 0.5s;
}

.animated-text:nth-child(4) {
    animation-delay: 0.7s;
}

/* Animation delays for images */
.animated-image {
    animation-delay: 0.5s;
}

/* STATS SECTION */
.stats {
    position: relative;
    padding-top: 200px;
}

.stats-text {
    width: 585px;
}

.stats-text .main-heading {
    font-size: 40px;
}

.stats-text .home-text .sub-heading {
    font-size: 20px;
    color: rgb(105, 105, 105);
}

.stats-box {
    cursor: pointer;
}

.stats-icon {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    margin-top: auto;
    margin-bottom: auto;
}

.stats-box:hover .stats-icon {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.stats-icon i {
    font-size: 36px;
    color: #0093dd;
}

.stats-box-text .numbering {
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 500;
}

.stats-box-text .sub-heading {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
}

.plant {
    position: absolute;
    right: 0;
    bottom: -167px;
}

.plant-img {
    position: relative;
}

/* TEAM SECTION */
.team {
    position: relative;
    padding-top: 200px;
}

.team-text .sub-heading {
    font-size: 18px;
    color: rgb(105, 105, 105);
    line-height: 1.667;
}

svg.right-square.team {
    top: -22px;
}

.team-owl .owl-nav.disabled {
    display: block;
}

.team-owl .owl-nav button.owl-next,
.team-owl .owl-nav button.owl-prev {
    font-size: 40px;
    color: #acacac;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.team-owl .owl-nav button.owl-next:hover,
.team-owl .owl-nav button.owl-prev:hover {
    color: #fa2851;
}

.team-owl .owl-prev span {
    position: absolute;
    left: -7%;
    top: 37%;
}

.team-owl .owl-next span {
    position: absolute;
    right: -1%;
    top: 37%;
}

.item .team-img {
    width: 80%;
}

.team-tittle {
    padding: 15px 100px 20px 20px;
}

.name-img {
    position: relative;
}

.name-img .name {
    position: absolute;
    top: 8px;
    left: 26%;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
    color: #fff;
}

.team-tittle .sub-heading {
    font-size: 15px;
    font-weight: 400;
}

.social-icons a {
    color: #202020;
}

.social-icons a i {
    width: 33px;
    height: 33px;
    background-color: transparent;
    color: #202020;
    padding: 9px 0;
    border-radius: 50%;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.social-icons a .fb:hover {
    background-color: #3b5998;
    color: #fff;
}

.social-icons a .twt:hover {
    background-color: #00acee;
    color: #fff;
}

.social-icons a .drb:hover {
    background-color: #ea4c89;
    color: #fff;
}

/* DESIGN SECTION */
.design {
    position: relative;
    padding-top: 200px;
}

.design .stats-text .home-text .sub-heading {
    font-size: 16px;
    color: rgb(116, 123, 134);
    line-height: 1.5;
}

.design .stats-text .home-text h1.sub-heading {
    font-size: 20px;
    color: rgba(24, 33, 46, 0.702);
}

/* GALLERY SECTION */
.gallery {
    position: relative;
    padding-top: 200px;
}

/* Masonry Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    width: calc(50% - 17.5px);
    /* 50% width minus half of the 35px gutter */
    float: left;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
}

.gallery-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay-content {
    color: #fff;
}

.gallery-overlay-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
}

.gallery-overlay-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
}

.gallery-overlay-content i {
    font-size: 24px;
    color: #0093dd;
}

.gallery-footer {
    padding-top: 100px;
}

/* Responsive */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item:nth-child(even) {
        margin-top: 0;
    }
}

/* TESTIMONIAL SECTION */
.testimonial {
    position: relative;
    padding-top: 200px;
}

.testimonial-owl {
    background-color: #ffffff;
    margin-top: 4%;
}

.item .quotes i {
    color: #0093dd;
    font-size: 23px;
}

.testimonial-owl .item .testimonial-img {
    width: 105px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100px;
}

.testimonial-owl .owl-nav button.owl-next,
.testimonial-owl .owl-nav button.owl-prev {
    font-size: 53px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.testimonial-tittle h3 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    color: rgb(32, 32, 32);
    line-height: 1;
    font-weight: 400;
}

/* BRAND/SPONSORS */
.sponser-tags {
    padding-top: 4%;
    cursor: pointer;
}

.brand-img {
    width: 65%;
    height: auto;
}

/* BLOG SECTION */
.blog {
    position: relative;
    padding-top: 200px;
}

.blog-item {
    cursor: pointer;
    margin: 5px;
    -webkit-box-shadow: 2px 2px 15px #e1e1e1;
    box-shadow: 2px 2px 15px #e1e1e1;
}

.blog .home-text .sub-heading {
    font-size: 16px;
    color: rgb(116, 123, 134);
    line-height: 1.5;
}

.writer-img {
    width: 16%;
    height: auto;
}

.writer-img img {
    border-radius: 50%;
}

.info-blog a {
    color: #202020;
}

.info-blog h4 {
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
}

.blog-description .sub-heading {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: rgb(159, 164, 175);
    line-height: 1.75;
}

.writer .writer-name {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin-top: auto;
    margin-bottom: auto;
}

.date p {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    color: rgb(250, 40, 81);
    line-height: 2;
}

.blog-text {
    padding: 20px 32px;
}

svg.blog {
    position: absolute;
    left: 0;
    height: 108%;
    top: -25px;
    bottom: 0;
}

/* CONTACT SECTION */
.contact {
    position: relative;
    padding-top: 200px;
}

.padding_button {
    padding: 13px 0 13px 0 !important;
}

.contact-list {
    padding-left: 0;
}

.margin_form {
    margin-top: auto;
    margin-bottom: auto;
}

.contact-list li {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    list-style: none;
    margin-bottom: 5px;
}

.alert-success {
    font-size: 12px;
    color: #28a745;
    display: block;
    margin-bottom: 20px;
    padding: 4px !important;
    font-family: 'Open Sans', sans-serif;
}

.alert-danger {
    font-size: 12px;
    color: #DC3545;
    margin-bottom: 20px;
    padding: 4px !important;
    display: block;
    font-family: 'Open Sans', sans-serif;
}

.user-danger {
    border-color: #DC3545 !important;
}

.user-success {
    border-color: #ced4da !important;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: .75rem 2rem;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: rgb(135, 153, 163);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, .25);
}

.address-icon {
    color: #0093dd;
    font-size: 25px;
}

.address p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: rgba(37, 37, 37, 0.702);
    font-weight: 400;
}

svg.contact-square {
    top: -130px;
    height: 135%;
}

.contact-plant {
    position: absolute;
    top: 116%;
}

.shadow-contact {
    position: absolute;
    top: 148%;
    left: 6%;
}

/* FOOTER SECTION */
ul.footer_ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

li.footer_list i {
    display: inline-block;
    margin-right: 14px;
    font-size: 22px;
    color: rgb(42, 42, 42);
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: transparent;
    border-radius: 50px;
    padding-top: 13px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

li.footer_list .fb:hover {
    color: #fff;
    background-color: #3b5998;
}

li.footer_list .link:hover {
    color: #fff;
    background-color: #0e76a8;
}

li.footer_list .twt:hover {
    color: #fff;
    background-color: #00acee;
}

li.footer_list .gogle:hover {
    color: #fff;
    background-color: #0093dd;
}

li.footer_list .inst:hover {
    color: #fff;
    background-color: red;
}

li.footer_list .gmail:hover {
    color: #fff;
    background-color: darkred;
}

.footer_text {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: rgb(136, 136, 136);
    font-weight: 400;
}

.footer {
    padding-top: 110px !important;
}

/* MEDIA QUERIES */
@media (max-width: 575.98px) {
    .portfolio-foot-detail {
        padding-top: 70%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .portfolio-foot-detail {
        padding-top: 70%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .portfolio-foot-detail {
        padding-top: 35%;
    }
}

@media screen and (max-width: 1920px) {
    svg.yellow-square {
        position: absolute;
        right: 0;
        height: 374%;
        top: -546px;
        bottom: 0;
    }

    svg.left-square.blog {
        position: absolute;
        left: 0;
        height: 145%;
        top: -180px;
        bottom: 0;
    }

    svg.left-square {
        position: absolute;
        left: 0;
        height: 230%;
        top: -275px;
        bottom: 0;
    }

    .large-logo {
        width: 92%;
    }

    .plant-home {
        position: absolute;
        bottom: 2%;
        width: 65%;
        z-index: 9;
        left: 33%;
    }
}

@media screen and (max-width: 1600px) {
    svg.yellow-square {
        position: absolute;
        right: 0;
        height: 335%;
        top: -340px;
        bottom: 0;
    }

    svg.left-square.blog {
        position: absolute;
        left: 0;
        height: 108%;
        top: -25px;
        bottom: 0;
    }

    svg.left-square {
        position: absolute;
        left: 0;
        height: 150%;
        top: -279px;
        bottom: 0;
    }

    .plant-home {
        position: absolute;
        bottom: 50%;
        width: 90%;
        left: -5%;
    }

    .large-logo {
        width: 60%;
        left: 0%;
        top: 0%;
    }
}

@media screen and (max-width: 1366px) {
    svg.yellow-square {
        position: absolute;
        right: -100px;
        height: 335%;
        top: -340px;
        bottom: 0;
        z-index: -1;
    }

    svg.left-square {
        position: absolute;
        left: -100px;
        height: 100%;
        top: -279px;
        bottom: 0;
        z-index: -1;
    }

    svg.right-square {
        position: absolute;
        right: -80px;
        height: 150%;
        top: -83px;
        bottom: 0;
        z-index: -1;
    }

    svg.left-square.blog {
        position: absolute;
        left: -80px;
        height: 108%;
        top: -25px;
        bottom: 0;
        z-index: -1;
    }

    svg.left-square.design {
        position: absolute;
        left: -100px;
        height: 173%;
        top: -228px;
        z-index: -1;
    }

    svg.left-square.stats {
        position: absolute;
        left: -100px;
        z-index: -1;
    }

    svg.right-square.team {
        position: absolute;
        right: -80px;
        z-index: -1;
    }

    svg.right-square.test {
        position: absolute;
        right: -80px;
        z-index: -1;
    }

    svg.left-square.gallery {
        position: absolute;
        left: -80px;
        z-index: -1;
    }

    svg.right-square.small-blog {
        position: absolute;
        right: -80px;
        z-index: -1;
    }

    svg.right-square.contact-square {
        position: absolute;
        right: -200px;
        z-index: -1;
    }
}

@media screen and (width: 1024px) {
    svg.yellow-square {
        position: absolute;
        right: 0;
        height: 168%;
        top: -7px;
    }

    .small-screen {
        display: none;
    }

    .main-heading {
        font-size: 40px;
    }

    svg.left-square {
        position: absolute;
        left: 0;
        height: 146%;
        top: -98px;
        bottom: 0;
    }

    svg.left-square.design {
        position: absolute;
        left: 0;
        height: 173%;
        top: -228px;
    }

    .plant-img {
        display: none;
    }

    .stats-box-text .sub-heading {
        font-size: 18px;
    }

    .card-body .card-text {
        font-size: 17px;
    }

    .name-img .name {
        font-size: 19px;
    }

    .portfolio-foot-detail .p-num {
        font-size: 64px;
    }

    .portfolio-foot-detail .p-text {
        font-size: 13px;
    }

    svg.contact-square {
        top: -111px;
        height: 134%;
    }

    svg.left-square.blog {
        height: 98%;
    }

    .banner-icons {
        text-align: center;
    }

    .bg-trans-color .navbar-nav .nav-item {
        margin: 12px 13px;
    }

    .plant-home {
        position: absolute;
        bottom: 16%;
        width: 100%;
        z-index: 9;
        left: 17%;
    }

    .large-logo {
        position: absolute;
        z-index: 9;
        width: 63%;
        left: 27%;
        top: 41%;
    }
}

@media screen and (width: 768px) {
    .large-logo {
        width: 70%;
        left: 21%;
        top: 38%;
    }

    .heading {
        font-size: 33px;
    }

    .plant-home {
        position: absolute;
        bottom: 16%;
        width: 67%;
        left: 33.5%;
    }

    svg.yellow-square {
        position: absolute;
        right: 0;
        height: 171%;
        top: -16px;
        bottom: 0;
    }

    .stats-text .main-heading {
        font-size: 36px;
    }

    .name-img .name {
        top: 12px;
        left: 30%;
    }

    .stats-text .home-text .sub-heading {
        font-size: 17px;
    }

    .item .team-img {
        width: 100%;
    }

    .team-owl .owl-prev span {
        left: 1%;
    }

    li.footer_list i {
        margin-right: 8px;
    }

    .heading {
        font-size: 38px;
    }

    .small-screen {
        display: block;
    }

    .logo {
        max-width: 65px;
    }

    .side-menu {
        width: 100%;
    }

    .main-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .blog .home-text .sub-heading {
        font-size: 14px;
    }

    .design .stats-text .home-text h1.sub-heading {
        font-size: 17px;
    }

    .card-body .card-text {
        font-size: 20px;
    }

    svg.yellow-square {
        position: absolute;
        right: 0;
        height: 86%;
        top: -81px;
        bottom: 0;
    }

    .small-view {
        display: block;
    }

    svg.left-square.small-view {
        position: absolute;
        left: 0;
        height: 36%;
        top: 515px;
        bottom: 0;
    }

    svg.left-square.stats {
        display: none;
    }

    svg.right-square.team {
        top: -330px;
    }

    svg.right-square {
        position: absolute;
        right: 0;
        height: 60%;
        top: -83px;
        bottom: 0;
    }

    svg.left-square.design {
        display: none;
    }

    svg.right-square.test {
        display: none;
    }

    svg.left-square.gallery {
        position: absolute;
        left: 0;
        height: 55%;
        top: -201px;
        bottom: 0;
    }

    svg.left-square.blog {
        display: none;
    }

    svg.right-square.small-blog {
        position: absolute;
        right: 0;
        height: 34%;
        top: -22px;
        bottom: 0;
    }

    svg.right-square.contact-square {
        display: none;
    }

    .stats-text {
        width: auto;
    }

    .large-logo {
        display: none;
    }

    .navbar.fixed-menu {
        height: 72px;
    }

    .plant1 {
        position: absolute;
    }

    .plant {
        display: none;
    }

    .plant-home {
        position: unset;
        width: 119%;
        margin-top: -80%;
        margin-left: 100%;
    }

    .team-tittle {
        padding: 15px 25px;
    }

    .name-img .name {
        top: 12px;
        left: 30%;
    }

    .stats-text .main-heading {
        font-size: 36px;
    }

    .cbp-l-filters-button .cbp-filter-item {
        font-size: 12px;
        margin-right: 9px;
    }

    .sub-heading {
        font-size: 14px;
    }

    .stats-text .home-text .sub-heading {
        font-size: 17px;
    }

    .item .team-img {
        width: 100%;
    }

    .team-owl .owl-prev span {
        left: 1%;
    }

    li.footer_list i {
        margin-right: 8px;
    }

    .heading {
        font-size: 38px;
    }

    .small-screen {
        display: block;
    }

    .logo {
        max-width: 65px;
    }

    .side-menu {
        width: 100%;
    }

    .main-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 320px) {
    li.footer_list i {
        margin-right: 0;
    }

    .btn-main {
        font-size: 14px;
    }

    .portfolio-foot-detail .p-num {
        font-size: 64px;
    }

    .portfolio-foot-detail .p-text {
        font-size: 13px;
    }
}

@media screen and (min-width: 960px) and (max-width: 1200px) {

    .home-text,
    .stats-text {
        z-index: 2;
    }

    svg.left-square {
        z-index: -1;
        height: 150%;
        top: -190px;
    }

    .banner-icons {
        display: none;
    }
}


.logo img{
    max-width: 150px;
    margin-top: 25px;
}

.navbar.fixed-menu .logo img{
    max-width: 85px;
    margin-top: 10px;
}

.banner-img{
    max-width: 750px;
    margin-right: 100px;
}

.brand-placeholder{
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cfcfcf;
    border-radius: 10px;
    background: #fff;
    color: #202020;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 10px;
    text-align: center;
}