/*-----------------------------------------------------------------------------------

CSS INDEX
===================

01. Theme default CSS
02. Header
03. Hero
04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
1. COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,500i,600,700,800|Roboto:300,400,400i,500,700&display=swap");
body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #626981;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
}
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #061727;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #626981;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.text-primary{
    color: #D90429 !important;
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #D90429;
    padding: 0 60px;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: #D90429;
}
.main-btn:hover {
    background-color: #fff;
    color: #D90429;
    border-color: #D90429;
}
.main-btn.main-btn-2 {
    background-color: #fff;
    color: #D90429;
    border-color: #D90429;
}
.main-btn.main-btn-2:hover {
    background-color: #D90429;
    border-color: #D90429;
    color: #D90429;
}
.main-btn.main-btn-3:hover {
    background-color: transparent;
    color: #fff;
}
.main-btn.main-btn-3.main-btn-4 {
    background-color: transparent;
    color: #fff;
    border-color: #D90429;
}
.main-btn.main-btn-3.main-btn-4:hover {
    background: #D90429;
    color: #061727;
}

/*===== All Button Style =====*/
.section-title {
    text-align: center;
}
.section-title .title {
    font-size: 40px;
    position: relative;
    padding-bottom: 32px;
    text-transform: capitalize;
}
@media (max-width: 767px) {
    .section-title .title {
        font-size: 34px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title .title {
        font-size: 40px;
    }
}
.section-title .title::before {
    position: absolute;
    content: '';
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    height: 2px;
    width: 100px;
    background: #D90429;
}
.section-title p {
    line-height: 30px;
    padding: 0 70px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title p {
        padding: 0 0 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title p {
        padding: 0 0 30px;
        font-size: 14px;
        line-height: 26px;
    }
}
@media (max-width: 767px) {
    .section-title p {
        padding: 0 0 30px;
        font-size: 14px;
        line-height: 26px;
    }
}
.section-title.section-title-2 {
    text-align: left;
}
.section-title.section-title-2 .title::before {
    left: 0;
    transform: translateX(0);
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999999;
    background: #F4F4F4;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

#loader-3:before, #loader-3:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: calc(50% - 10px);
    background-color: #D90429;
    animation: squaremove 1s ease-in-out infinite;
}

#loader-3:after {
    bottom: 0;
    animation-delay: 0.5s;
}

@keyframes squaremove {
    0%, 100% {
        -webkit-transform: translate(0, 0) rotate(0);
        -ms-transform: translate(0, 0) rotate(0);
        -o-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }
    25% {
        -webkit-transform: translate(40px, 40px) rotate(45deg);
        -ms-transform: translate(40px, 40px) rotate(45deg);
        -o-transform: translate(40px, 40px) rotate(45deg);
        transform: translate(40px, 40px) rotate(45deg);
    }
    50% {
        -webkit-transform: translate(0px, 80px) rotate(0deg);
        -ms-transform: translate(0px, 80px) rotate(0deg);
        -o-transform: translate(0px, 80px) rotate(0deg);
        transform: translate(0px, 80px) rotate(0deg);
    }
    75% {
        -webkit-transform: translate(-40px, 40px) rotate(45deg);
        -ms-transform: translate(-40px, 40px) rotate(45deg);
        -o-transform: translate(-40px, 40px) rotate(45deg);
        transform: translate(-40px, 40px) rotate(45deg);
    }
}
/*===========================
2.HEADER css
===========================*/
.navigation {
    padding: 0;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    padding-left: 70px;
    padding-right: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .navigation {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width: 767px) {
    .navigation {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
        padding: 32px 0;
    }
}
@media (max-width: 767px) {
    .navigation {
        padding: 32px 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .navigation {
        padding: 32px 0;
    }
}
.navigation{
    z-index: 9;
}
.navigation.sticky {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    animation: sticky 1s;
    background-color: #fff;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.sticky {
        padding: 20px 0;
    }
}
@media (max-width: 767px) {
    .navigation.sticky {
        padding: 20px 0;
    }
}
.navigation.sticky .navbar .navbar-nav .nav-item a {
    line-height: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.sticky .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .navigation.sticky .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
.navigation .navbar {
    position: relative;
    padding: 0;
}
.navigation .navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #D90429;
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}
.navigation .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-collapse {
        position: absolute;
        top: 150%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 16px;
        box-shadow: 0 26px 48px 0 rgba(0, 0, 0, 0.15);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .navigation .navbar .navbar-collapse {
        top: 150%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav {
        margin-right: 0;
    }
}
.navigation .navbar .navbar-nav .nav-item {
    position: relative;
    margin-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 18px;
        margin-left: 18px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 0px;
        margin-left: 0px;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item {
        margin-right: 0px;
        margin-left: 0px;
    }
}
.navigation .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    color: #222;
    text-transform: capitalize;
    position: relative;
    margin: 0;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation .navbar .navbar-nav .nav-item a {
        font-size: 14px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item a {
        padding: 0;
        display: block;
        color: #061727;
        border: 0;
        margin: 0;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item a {
        padding: 0;
        display: block;
        color: #061727;
        border: 0;
        margin: 0;
        line-height: 45px;
    }
}
.navigation .navbar .navbar-nav .nav-item a:hover {
    color: #D90429;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        right: auto;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transition: all none ease-out 0s;
        -moz-transition: all none ease-out 0s;
        -ms-transition: all none ease-out 0s;
        -o-transition: all none ease-out 0s;
        transition: all none ease-out 0s;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        text-align: left;
        border-top: 0;
    }
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li {
    position: relative;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-nav-toggler {
    color: #061727;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a {
    display: block;
    padding: 8px 24px;
    position: relative;
    color: #061727;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
    float: right;
    font-size: 14px;
    margin-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
        display: none;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu > li a i {
        display: none;
    }
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li a .sub-nav-toggler i {
    display: inline-block;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
    right: auto;
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
        padding-left: 30px;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu {
        padding-left: 30px;
    }
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li .sub-menu li a::before {
    display: none;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover .sub-nav-toggler {
    color: #fff;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a {
    background-color: #D90429;
    color: #fff !important;
}
.navigation .navbar .navbar-nav .nav-item .sub-menu > li:hover > a::before {
    opacity: 1;
}
.navigation .navbar .navbar-nav .nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: #061727;
    }
}
@media (max-width: 767px) {
    .navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 14px;
        font-size: 16px;
        background: none;
        border: 0;
        color: #061727;
    }
}
.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler img {
    width: 30%;
}
.navigation .navbar .navbar-nav .nav-item.active a {
    color: #D90429;
}
.navigation .navbar .navbar-nav .nav-item.active a::before {
    width: 100%;
}
.navigation .navbar .navbar-nav .nav-item.active a {
    color: #D90429;
}
.navigation.navigation-2 {
    background: #10102d;
}
.navigation.navigation-2.sticky .navbar .navbar-nav .nav-item a {
    line-height: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-2.sticky .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .navigation.navigation-2.sticky .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
.navigation.navigation-2.sticky .navbar .navbar-nav .nav-item .sub-menu li a {
    line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation.navigation-2 .navbar .navbar-nav .nav-item {
        margin-left: 15px;
        margin-right: 15px;
    }
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item a {
    color: #fff;
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-2 .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .navigation.navigation-2 .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 30px;
    height: 2px;
    width: 0%;
    background: #D90429;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-2 .navbar .navbar-nav .nav-item a::before {
        height: 0;
    }
}
@media (max-width: 767px) {
    .navigation.navigation-2 .navbar .navbar-nav .nav-item a::before {
        height: 0;
    }
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item a:hover::before {
    width: 100%;
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item.active a::before {
    width: 100%;
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item .sub-menu li a::before {
    width: 0px;
}
.navigation.navigation-2 .navbar .navbar-nav .nav-item .sub-nav-toggler {
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-2 .navbar .header-social {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (max-width: 767px) {
    .navigation.navigation-2 .navbar .header-social {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.navigation.navigation-2 .navbar .header-social ul li {
    display: inline-block;
}
.navigation.navigation-2 .navbar .header-social ul li a {
    color: #fff;
    font-size: 20px;
    margin-left: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .navigation.navigation-2 .navbar .header-social ul li a {
        font-size: 16px;
        margin-left: 20px;
    }
}
.navigation.navigation-2 .navbar .header-social ul li a:hover {
    color: #D90429;
}
.navigation.navigation-2 .navbar-collapse {
    background: #10102d;
    top: 146%;
}
.navigation.navigation-3 {
    background-color: transparent;
}
.navigation.navigation-3 .navbar .navbar-nav .nav-item a {
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-3 .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .navigation.navigation-3 .navbar .navbar-nav .nav-item a {
        line-height: 45px;
    }
}
.navigation.navigation-3 .navbar .navbar-nav .nav-item a .sub-nav-toggler {
    color: #fff;
}
.navigation.navigation-3 .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    background: #84fab0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-3 .navbar .header-btn {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (max-width: 767px) {
    .navigation.navigation-3 .navbar .header-btn {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.navigation.navigation-3 .navbar .header-btn a {
    background: #fff;
    color: #84fab0;
    border-color: #fff;
    line-height: 50px;
    padding: 0 38px;
    border-radius: 5px;
}
.navigation.navigation-3 .navbar .navbar-toggler .toggler-icon {
    background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation.navigation-3 .navbar .navbar-collapse {
        background: #84fab0;
        top: 145%;
    }
}
@media (max-width: 767px) {
    .navigation.navigation-3 .navbar .navbar-collapse {
        background: #84fab0;
        top: 145%;
    }
}
.navigation.navigation-3 .navbar .sidemenu a {
    color: #fff;
    font-size: 24px;
    line-height: 100px;
}
.navigation.navigation-3.sticky {
    background-image: -moz-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -webkit-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -ms-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -o-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
}

/*===========================
CANVAS MENU css
===========================*/
.canvas-wrapper .overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    opacity: 0;
    z-index: 99999;
    visibility: visible;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    visibility: hidden;
}
.canvas-wrapper .overlay.open::before {
    opacity: 0.5;
    visibility: visible;
}
.canvas-wrapper .canvas-area {
    position: fixed;
    top: 0;
    right: -430px;
    width: 350px;
    height: 100%;
    background-color: #fff;
    z-index: 999999;
    padding: 40px 40px 0 40px;
    overflow-y: auto;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.canvas-wrapper .canvas-area.open {
    right: 0;
}
.canvas-wrapper .canvas-area .canvas-close a {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}
.canvas-wrapper .canvas-area .canvas-close img {
    position: absolute;
    left: 0;
    top: 8px;
}
.canvas-wrapper .canvas-area .canvas-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #626981;
    display: block;
    line-height: 50px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.canvas-wrapper .canvas-area .canvas-menu ul li a:hover {
    color: #84fab0;
}
.canvas-wrapper .canvas-area .canvas-menu ul li ul.sub-menu {
    display: none;
}
.canvas-wrapper .canvas-area .canvas-menu ul li ul.sub-menu li a {
    font-size: 16px;
    color: #626981;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    font-weight: 600;
    line-height: 28px;
}
.canvas-wrapper .canvas-area .canvas-menu ul li ul.sub-menu li a:hover {
    color: #222;
}
.canvas-wrapper .canvas-area .canvas-social ul li {
    display: inline-block;
    margin-left: 25px;
}
.canvas-wrapper .canvas-area .canvas-social ul li:first-child {
    margin-left: 0;
}
.canvas-wrapper .canvas-area .canvas-social ul li a {
    font-size: 16px;
    color: #626981;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.canvas-wrapper .canvas-area .canvas-social ul li a:hover {
    color: #D90429;
}
.canvas-wrapper .canvas-area canvas-copyright p {
    color: #626981;
    font-size: 16px;
}

/*===========================
2.BANNER css
===========================*/
.banner-area {
    height: 800px;
    margin-bottom: 45px;
    background: #F4F4F4;
}
.banner-area.success {
    height: 100vh;
    margin-bottom: 45px;
    background: #F4F4F4;
}
.banner-area .banner-content .title {
    font-size: 70px;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-content .title {
        font-size: 64px;
    }
}
@media (max-width: 767px) {
    .banner-area .banner-content .title {
        font-size: 48px;
    }

    .banner-area:not(.success){
        height: auto;
    }

    .banner-area .banner-content{
        margin-top: 100px;
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area .banner-content .title {
        font-size: 70px;
    }
}
.banner-area .banner-content .title::before {
    position: absolute;
    content: '';
    top: -20px;
    left: 0;
    height: 2px;
    width: 100px;
    background: #D90429;
}
.banner-area .banner-content span {
    color: #626981;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding-top: 22px;
    padding-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-content span {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .banner-area .banner-content span {
        font-size: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area .banner-content span {
        font-size: 24px;
    }
}
.banner-area .banner-content ul {
    padding-top: 116px;
}
.banner-area .banner-content ul li {
    display: inline-block;
}
.banner-area .banner-content ul li a {
    font-size: 30px;
    color: #222;
    margin-right: 22px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.banner-area .banner-content ul li a:hover {
    color: #D90429;
}
@media only screen and (min-width: 1200px){
    .banner-area .banner-thumb {
        position: absolute;
        right: 0;
        bottom: -213px;
        z-index: 8;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .banner-area .banner-thumb {
        right: 35px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-thumb {
        right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-thumb {
        right: -220px;
    }
}
.banner-area .banner-thumb img {
    width: auto;
    border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-thumb img {
        width: 90%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-thumb img {
        width: 55%;
    }
}
@media only screen and (max-width: 576px){
    .banner-area .banner-thumb img {
        z-index: 2;
        position: relative;
    }
}
.banner-area .banner-thumb::before {
    position: absolute;
    content: '';
    right: -30px;
    bottom: -32px;
    width: 345px;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #D90429;
    z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .banner-area .banner-thumb::before {
        right: -30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area .banner-thumb::before {
        right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-thumb::before {
        right: 210px;
        width: 290px;
    }
}

@media only screen and (max-width: 576px){
    .banner-area .banner-thumb::before{
        right: 0px;
        width: 275px;
        z-index: 2;
    }
}

.banner-area.banner-2 {
    background: #10102d;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 0;
}
.banner-area.banner-2::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 19, 51, 0.4);
}
.banner-area.banner-2 .banner-content .title {
    color: #fff;
}
.banner-area.banner-2 .banner-content .title::before {
    width: 0;
}
.banner-area.banner-2 .banner-content span {
    color: #fff;
}
.banner-area.banner-3 {
    margin-top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    margin-bottom: 0;
    height: 900px;
}
.banner-area.banner-3::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -webkit-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -ms-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    background-image: -o-linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
    opacity: 0.922;
}
.banner-area.banner-3 .banner-content .title {
    color: #fff;
    font-size: 70px;
    line-height: 62px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area.banner-3 .banner-content .title {
        font-size: 44px;
        line-height: 54px;
    }
}
@media (max-width: 767px) {
    .banner-area.banner-3 .banner-content .title {
        font-size: 30px;
        line-height: 40px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3 .banner-content .title {
        font-size: 40px;
        line-height: 50px;
    }
}
.banner-area.banner-3 .banner-content .title::before {
    width: 0;
}
.banner-area.banner-3 .banner-content span {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-area.banner-3 .banner-content span {
        font-size: 16px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .banner-area.banner-3 .banner-content span {
        font-size: 13px;
        line-height: 28px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3 .banner-content span {
        font-size: 16px;
        line-height: 28px;
    }
}
.banner-area.banner-3 .banner-content a {
    line-height: 50px;
    height: 50px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0 70px;
    border-radius: 30px;
}
.banner-area.banner-3 .banner-content a:hover {
    background-color: #fff;
    color: #061727;
}
.banner-area.banner-3 .banner-thumbs {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.banner-3 .banner-thumbs {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .banner-area.banner-3 .banner-thumbs {
        margin-left: 0;
        margin-top: 40px;
    }
}
.banner-area.banner-3 .banner-thumbs .banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: -webkit-linear-gradient(133deg, rgba(132, 250, 176, 0.7) 0%, rgba(143, 211, 244, 0.7) 100%);
    background-image: -moz-linear-gradient(133deg, rgba(132, 250, 176, 0.7) 0%, rgba(143, 211, 244, 0.7) 100%);
    background-image: -ms-linear-gradient(133deg, rgba(132, 250, 176, 0.7) 0%, rgba(143, 211, 244, 0.7) 100%);
    background-image: -o-linear-gradient(133deg, rgba(132, 250, 176, 0.7) 0%, rgba(143, 211, 244, 0.7) 100%);
}
.banner-area.banner-3 .banner-thumbs .banner-overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 125px;
    width: 125px;
    border-radius: 50%;
    text-align: center;
    line-height: 125px;
    font-size: 44px;
    color: #8fd3f4;
    background: #fff;
    z-index: 1;
}
@media (max-width: 767px) {
    .banner-area.banner-3 .banner-thumbs .banner-overlay a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area.banner-3 .banner-thumbs .banner-overlay a {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 20px;
    }
}
.banner-area.banner-3 .banner-thumbs .banner-overlay a::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 3s infinite linear;
}
.banner-area.banner-3 .banner-thumbs img {
    width: 100%;
}
.banner-area.banner-3 .banner-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.banner-area.banner-3 .banner-shape img {
    width: 100%;
}
.banner-area.banner-3 .banner-shape-2 {
    position: absolute;
    left: 100px;
    top: 100px;
    z-index: 8;
}

.page-title-area {
    height: 500px;
    background: #faf2e7;
}
.page-title-area .page-title-item .title {
    text-transform: capitalize;
    font-size: 50px;
}
.page-title-area .page-title-item a {
    color: #626981;
    text-transform: capitalize;
    margin-top: 9px;
}

@keyframes pulse-border {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
/*===========================
3.ABOUT css
===========================*/
.about-area .about-thumb {
    position: relative;
    z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-area .about-thumb {
        margin-top: 40px;
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .about-area .about-thumb {
        margin-top: 40px;
        margin-right: 0;
    }
}
.about-area .about-thumb img {
    width: 100%;
    border-radius: 10px;
}
.about-area .about-thumb::before {
    position: absolute;
    content: '';
    bottom: -42px;
    left: -42px;
    height: 100%;
    width: 300px;
    border: 2px solid #D90429;
    border-radius: 10px;
    z-index: -1;
}
@media (max-width: 767px) {
    .about-area .about-thumb::before {
        left: -15px;
        bottom: -15px;
        width: 270px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-area .about-thumb::before {
        bottom: -42px;
        left: -42px;
        width: 300px;
    }
}
.about-area .about-content .title {
    font-size: 40px;
    position: relative;
}
.about-area .about-content .title::before {
    position: absolute;
    content: '';
    top: -20px;
    left: 0;
    height: 2px;
    width: 100px;
    background: #D90429;
}
.about-area .about-content p {
    line-height: 30px;
    padding-top: 29px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-area .about-content p {
        font-size: 14px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-area .about-content p {
        padding-right: 105px;
    }
}
@media (max-width: 767px) {
    .about-area .about-content p {
        font-size: 14px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-area .about-content p {
        font-size: 16px;
    }
}
.about-area .about-content ul > li {
    display: inline-block;
    margin-right: 28px;
    margin-top: 48px;
}
.about-area .about-content ul > li a {
    padding: 0 40px;
}
.about-area .about-content .about-list {
    padding-top: 20px;
}
.about-area .about-content .about-list ul li {
    display: block;
    margin: 0;
}
.about-area .about-content .about-list ul.item-1 {
    width: 25%;
}
@media (max-width: 767px) {
    .about-area .about-content .about-list ul.item-1 {
        width: 44%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-area .about-content .about-list ul.item-1 {
        width: 25%;
    }
}
.about-area .about-content .about-list ul.item-1 li {
    color: #061727;
    font-weight: 500;
    line-height: 40px;
}
.about-area .about-content .about-list ul.item-2 li {
    color: #626981;
    font-weight: 300;
    line-height: 40px;
}
@media (max-width: 767px) {
    .about-area .about-content .about-list ul.item-2 li {
        font-size: 11px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-area .about-content .about-list ul.item-2 li {
        font-size: 16px;
    }
}
.about-area .about-content .about-list ul.item-2 li span {
    padding-right: 25px;
}
.about-area.about-2 {
    background: #10102d;
}
.about-area.about-2 .about-content .title {
    color: #fff;
}
.about-area.about-2 .about-content p {
    color: #fff;
}
.about-area.about-3 .about-thumb::before {
    display: none;
}
.about-area.about-3 .about-content .title::before {
    width: 0;
}
.about-area.about-3 .about-content ul li a.main-btn {
    border-radius: 30px;
    border: 2px solid #84fab0;
    background: #84fab0;
    color: #fff;
    line-height: 46px;
}
.about-area.about-3 .about-content ul li a.main-btn:hover {
    background-color: transparent;
    color: #84fab0;
}
.about-area.about-3 .about-content ul li a.main-btn.main-btn-2 {
    background-color: transparent;
    color: #84fab0;
}
.about-area.about-3 .about-content ul li a.main-btn.main-btn-2:hover {
    background: #84fab0;
    color: #fff;
}

/*===========================
4.SERVICES css
===========================*/
.services-area .section-title .title {
    padding-bottom: 28px;
}
.services-area .single-sevices {
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0px 34px 150px 0px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    position: relative;
}
@media (max-width: 767px) {
    .services-area .single-sevices {
        padding: 60px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-area .single-sevices {
        padding: 40px 60px;
    }
}
.services-area .single-sevices i {
    height: 130px;
    width: 130px;
    background: #D90429;
    border-radius: 5px;
    text-align: center;
    line-height: 130px;
    color: #fff;
    font-size: 60px;
    position: absolute;
    left: 40px;
    top: -75px;
    transition: all linear 0.4s;
}
.services-area .single-sevices .title {
    font-size: 24px;
    font-weight: 500;
}
.services-area .single-sevices p {
    line-height: 30px;
    padding-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area .single-sevices p {
        font-size: 14px;
    }
}
.services-area .single-sevices:hover i {
    background: #fff;
    color: #D90429;
}
.services-area.services-2 {
    background: #131333;
}
.services-area.services-2 .section-title .title {
    color: #fff;
}
.services-area.services-2 .single-service-2 {
    border: 1px solid #8f6930;
    border-radius: 10px;
    padding: 30px 40px 45px;
    background: #10102d;
}
@media (max-width: 767px) {
    .services-area.services-2 .single-service-2 {
        padding: 30px 24px 45px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-area.services-2 .single-service-2 {
        padding: 30px 40px 45px;
    }
}
.services-area.services-2 .single-service-2 i {
    color: #fff;
    font-size: 60px;
}
.services-area.services-2 .single-service-2 a {
    display: block;
}
.services-area.services-2 .single-service-2 .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-top: 15px;
    padding-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area.services-2 .single-service-2 .title {
        font-size: 22px;
    }
}
.services-area.services-2 .single-service-2 p {
    color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .services-area.services-2 .single-service-2 p {
        font-size: 14px;
    }
}
.services-area.services-2 .services-btn a {
    height: 50px;
    line-height: 50px;
    padding: 0 18px;
}

.services-3 {
    background: #f7fdf9;
}
.services-3 .services-content .title {
    font-size: 40px;
    text-transform: capitalize;
    padding-bottom: 30px;
}
.services-3 .services-content p {
    line-height: 30px;
    padding-bottom: 48px;
}
.services-3 .services-content a {
    background: #84fab0;
    color: #fff;
    border: 2px solid #84fab0;
    border-radius: 30px;
    padding: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .services-3 .services-content a {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .services-3 .services-content a {
        margin-bottom: 30px;
    }
}
.services-3 .services-content a:hover {
    background-color: transparent;
    color: #84fab0;
}
.services-3 .single-services {
    padding: 45px 30px 55px 105px;
    box-shadow: 0px 5px 141px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    position: relative;
}
@media (max-width: 767px) {
    .services-3 .single-services {
        padding: 45px 30px 55px 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-3 .single-services {
        padding: 45px 30px 55px 105px;
    }
}
.services-3 .single-services i {
    position: absolute;
    left: 30px;
    top: 39%;
    transform: translateY(-50%);
    font-size: 55px;
    color: #84fab0;
}
@media (max-width: 767px) {
    .services-3 .single-services i {
        position: relative;
        left: 0;
        top: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-3 .single-services i {
        position: absolute;
        left: 30px;
        top: 39%;
    }
}
.services-3 .single-services span {
    color: #061727;
    font-weight: 500;
    font-size: 24px;
    display: block;
}
@media (max-width: 767px) {
    .services-3 .single-services span {
        font-size: 22px;
    }
}
.services-3 .single-services p {
    line-height: 30px;
    padding-top: 10px;
}
@media (max-width: 767px) {
    .services-3 .single-services p {
        font-size: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-3 .single-services p {
        font-size: 16px;
    }
}

/*===========================
5.WORK css
===========================*/
.work-area .single-work img {
    border-radius: 10px;
    width: 100%;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.work-area .single-work .work-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(254, 182, 51, 0.9);
    opacity: 0;
    transform: scale(1.3);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.work-area .single-work .work-overlay .work-content .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}
.work-area .single-work .work-overlay .work-content span {
    color: #fff;
    text-transform: capitalize;
    padding-top: 5px;
}
.work-area .single-work:hover img {
    transform: scale(1.1);
}
.work-area .single-work:hover .work-overlay {
    opacity: 1;
    transform: scale(1);
}
.work-area.work-2 {
    background: #10102d;
}
.work-area.work-2 .section-title .title {
    color: #fff;
}
.work-area.work-2 .project-menu {
    padding-bottom: 20px;
}
.work-area.work-2 .project-menu ul li {
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    margin: 0 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .work-area.work-2 .project-menu ul li {
        margin: 0 8px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .work-area.work-2 .project-menu ul li {
        margin: 0 10px;
        font-size: 13px;
    }
}
.work-area.work-2 .project-menu ul li.active {
    color: #D90429;
}
.work-area.work-2 .single-work .work-overlay {
    background-color: rgba(19, 19, 51, 0.8);
}
.work-area.work-2.work-3 {
    background: #fff;
}
.work-area.work-2.work-3 .section-title .title {
    color: #061727;
}
.work-area.work-2.work-3 .section-title .title::before {
    width: 0;
}
.work-area.work-2.work-3 .project-menu ul li {
    color: #626981;
}
.work-area.work-2.work-3 .project-menu ul li.active {
    color: #84fab0;
}
.work-area.work-2.work-3 .single-work .work-overlay {
    background-image: -webkit-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -moz-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -o-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
}
.work-area.portfolio-page .section-title .project-menu {
    padding-top: 5px;
    padding-bottom: 25px;
}
.work-area.portfolio-page .section-title .project-menu ul {
    display: inline-block;
    background: #faf2e7;
    padding: 0 80px;
    border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .work-area.portfolio-page .section-title .project-menu ul {
        padding: 0 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work-area.portfolio-page .section-title .project-menu ul {
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    .work-area.portfolio-page .section-title .project-menu ul {
        padding: 0 0px;
    }
}
.work-area.portfolio-page .section-title .project-menu ul li {
    display: inline-block;
    cursor: pointer;
    margin: 0 20px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 42px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work-area.portfolio-page .section-title .project-menu ul li {
        margin: 0 15px;
    }
}
@media (max-width: 767px) {
    .work-area.portfolio-page .section-title .project-menu ul li {
        margin: 0 10px;
        font-size: 13px;
    }
}
.work-area.portfolio-page .section-title .project-menu ul li.active {
    color: #D90429;
}
.work-area.portfolio-page .portfolio-btn a {
    line-height: 50px;
    height: 50px;
    padding: 0 20px;
}

.project-area{
    background-color: #F4F4F4;
}

.project-2 .project-content .title {
    font-size: 40px;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 30px;
}
@media (max-width: 767px) {
    .project-2 .project-content .title {
        font-size: 34px;
    }
}
.project-2 .project-content p {
    color: #fff;
    line-height: 30px;
}
@media (max-width: 767px) {
    .project-2 .project-content p {
        font-size: 15px;
    }
}
.project-2.project-3 .project-content .title {
    color: #061727;
}
.project-2.project-3 .project-content p {
    color: #626981;
}
.project-2.project-3 .project-btn a {
    background: #84fab0;
    border: 2px solid #84fab0;
    color: #fff;
    height: 55px;
    line-height: 55px;
    border-radius: 30px;
    padding: 0 35px;
}
.project-2.project-3 .project-btn a:hover {
    background-color: transparent;
    color: #84fab0;
}

/*===========================
6.CLIENT css
===========================*/
.client-area .single-client {
    box-shadow: none;
    border-radius: 15px;
    padding: 30px 45px;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .client-area .single-client {
        padding: 20px 45px;
    }
}
@media (max-width: 767px) {
    .client-area .single-client {
        padding: 20px 45px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .client-area .single-client {
        padding: 30px 45px;
    }
}
.client-area .single-client::before {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 50%;
    height: 0px;
    width: 185px;
    background: #D90429;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.client-area .single-client img {
    position: absolute;
    left: 30px;
    top: -45px;
}
.client-area .single-client p {
    line-height: 30px;
    margin-top: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .client-area .single-client p {
        font-size: 14px;
    }
}
.client-area .single-client .client-info {
    align-items: center;
    padding-top: 20px;
}
.client-area .single-client .client-info .info .title {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .client-area .single-client .client-info .info .title {
        font-size: 15px;
    }
}
.client-area .single-client .client-info .info span {
    font-weight: 300;
    padding-top: 5px;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .client-area .single-client .client-info .info span {
        font-size: 14px;
    }
}
.client-area .single-client .client-info .star ul li {
    display: inline-block;
}
.client-area .single-client .client-info .star ul li i {
    color: #fcd515;
    margin-left: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .client-area .single-client .client-info .star ul li i {
        margin-left: 5px;
    }
}
@media (max-width: 767px) {
    .client-area .single-client .client-info .star ul li i {
        margin-left: 0px;
        margin-right: 8px;
        margin-top: 10px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .client-area .single-client .client-info .star ul li i {
        margin-left: 8px;
        margin-right: 0px;
        margin-top: 0;
    }
}
.client-area .client-active .single-client {
    box-shadow: 0px 9px 54px 0px rgba(0, 0, 0, 0.15);
}
.client-area .client-active .single-client::before {
    height: 5px;
}
.client-area .client-active .slick-dots {
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}
.client-area .client-active .slick-dots li {
    display: inline-block;
}
.client-area .client-active .slick-dots li button {
    font-size: 0;
    border: 0;
    background: #D90429;
    opacity: .5;
    height: 16px;
    width: 16px;
    margin: 0 5px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.client-area .client-active .slick-dots li.slick-active button {
    width: 95px;
    opacity: 1;
    border-radius: 20px;
}
@media (max-width: 767px) {
    .client-area .client-active .slick-dots li.slick-active button {
        width: 65px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .client-area .client-active .slick-dots li.slick-active button {
        width: 95px;
    }
}
.client-area.client-2 {
    background: #10102d;
}
.client-area.client-2 .section-title .title {
    color: #fff;
}
.client-area.client-2 .section-title p {
    color: #fff;
}
.client-area.client-2 .single-client {
    background: #10102d;
}
.client-area.client-2 .single-client p {
    color: #fff;
}
.client-area.client-2 .single-client .client-info .info .title {
    color: #fff;
}
.client-area.client-2 .single-client .client-info .info span {
    color: #fff;
}
.client-area.client-2 .client-active .slick-center .single-client {
    box-shadow: 0px 9px 54px 0px rgba(0, 0, 0, 0.15);
    background: #131333;
}
.client-area.client-2 .client-active .slick-center .single-client::before {
    height: 5px;
}
.client-area.client-3 {
    margin-top: -8px;
}
.client-area.client-3 .section-title .title::before {
    width: 0;
}
.client-area.client-3 .client-active .slick-center .single-client::before {
    background: #84fab0;
}
.client-area.client-3 .client-active .slick-dots li button {
    background: #84fab0;
}

/*===========================
7.BLOG css
===========================*/
.blog-area .section-title .title {
    padding-bottom: 37px;
}
.blog-area .single-blog .blog-thumb {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.blog-area .single-blog .blog-thumb .blog-overlay {
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #D90429;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.blog-area .single-blog .blog-thumb .blog-overlay a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
}
.blog-area .single-blog .blog-thumb img {
    width: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.blog-area .single-blog .blog-content span {
    color: #626981;
    text-transform: capitalize;
    padding-top: 22px;
    padding-bottom: 16px;
}
.blog-area .single-blog .blog-content ul li {
    font-weight: 300;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 15px;
}
.blog-area .single-blog .blog-content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-right: 100px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .single-blog .blog-content .title {
        padding-right: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-area .single-blog .blog-content .title {
        padding-right: 60px;
    }
}
@media (max-width: 767px) {
    .blog-area .single-blog .blog-content .title {
        padding-right: 0px;
        font-size: 18px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .single-blog .blog-content .title {
        padding-right: 50px;
        font-size: 20px;
    }
}
.blog-area .single-blog:hover .blog-thumb img {
    transform: translateX(350px);
}
.blog-area .single-blog:hover .blog-thumb .blog-overlay {
    right: 0;
}
.blog-area .single-blog:hover .blog-content .title {
    color: #D90429;
}
.blog-area.blog-2 {
    background: #131333;
}
.blog-area.blog-2 .section-title .title {
    color: #fff;
}
.blog-area.blog-2 .single-blog {
    padding: 20px;
    border: 1px solid #D90429;
    border-radius: 10px;
}
.blog-area.blog-2 .single-blog .blog-thumb img {
    transform: translateX(0px);
}
.blog-area.blog-2 .single-blog .blog-thumb .blog-overlay {
    background-color: rgba(19, 19, 51, 0.8);
    right: 0;
    opacity: 0;
}
.blog-area.blog-2 .single-blog .blog-content span {
    color: #fff;
}
.blog-area.blog-2 .single-blog .blog-content ul li {
    color: #fff;
}
.blog-area.blog-2 .single-blog .blog-content .title {
    color: #fff;
    padding-right: 50px;
    padding-bottom: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area.blog-2 .single-blog .blog-content .title {
        padding-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-area.blog-2 .single-blog .blog-content .title {
        padding-right: 30px;
    }
}
@media (max-width: 767px) {
    .blog-area.blog-2 .single-blog .blog-content .title {
        padding-right: 0px;
    }
}
.blog-area.blog-2 .single-blog:hover .blog-overlay {
    opacity: 1;
}
.blog-area.blog-2 .single-blog:hover .blog-content .title {
    color: #D90429;
}
.blog-area.blog-2.blog-3 {
    background: #ebfef1;
}
.blog-area.blog-2.blog-3 .section-title .title {
    color: #061727;
}
.blog-area.blog-2.blog-3 .section-title .title::before {
    width: 0;
}
.blog-area.blog-2.blog-3 .single-blog {
    border-color: #84fab0;
}
.blog-area.blog-2.blog-3 .single-blog .blog-thumb img {
    transform: translateX(0px) scale(1.1);
}
.blog-area.blog-2.blog-3 .single-blog .blog-thumb .blog-overlay {
    background-image: -webkit-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -moz-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -ms-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
    background-image: -o-linear-gradient(90deg, rgba(132, 250, 176, 0.8) 0%, rgba(143, 211, 244, 0.8) 100%);
}
.blog-area.blog-2.blog-3 .single-blog .blog-content span {
    color: #626981;
}
.blog-area.blog-2.blog-3 .single-blog .blog-content ul li {
    color: #626981;
}
.blog-area.blog-2.blog-3 .single-blog .blog-content .title {
    color: #061727;
}
.blog-area.blog-2.blog-3 .single-blog .blog-content .title:hover {
    color: #84fab0;
}
.blog-area.blog-2.blog-3 .single-blog:hover .blog-thumb img {
    transform: translateX(0px) scale(1);
}
.blog-area.blog-page {
    background: #fff;
}
.blog-area.blog-details-page {
    background: #fff;
}

.blog-details-area {
    padding-top: 114px;
}
.blog-details-area .blog-details-item .blog-title {
    align-items: center;
}
.blog-details-area .blog-details-item .blog-title .title {
    font-size: 24px;
    font-weight: 600;
    margin-right: 95px;
    text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-details-item .blog-title .title {
        margin-right: 60px;
    }
}
.blog-details-area .blog-details-item .blog-title span {
    text-transform: capitalize;
    margin-right: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details-area .blog-details-item .blog-title span {
        margin-right: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details-item .blog-title span {
        margin-right: 60px;
        padding: 10px 0;
    }
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-title span {
        margin-right: 60px;
        padding: 10px 0;
    }
}
.blog-details-area .blog-details-item .blog-title ul li {
    display: inline-block;
    margin-right: 20px;
}
.blog-details-area .blog-details-item .blog-title ul li:last-child {
    margin-right: 0;
}
.blog-details-area .blog-details-item .blog-thumb {
    padding-top: 47px;
}
.blog-details-area .blog-details-item .blog-thumb img {
    width: 100%;
}
.blog-details-area .blog-details-item .blog-thumb p {
    line-height: 30px;
    padding-top: 45px;
    padding-right: 20px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-thumb p {
        padding-right: 0;
    }
}
.blog-details-area .blog-details-item .blog-thumb p.item-2 {
    padding-top: 25px;
}
.blog-details-area .blog-details-item .blog-quote {
    background: #faf2e7;
    border-radius: 10px;
    padding: 60px 80px;
    margin-top: 47px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-quote {
        padding: 60px 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-quote {
        padding: 60px 30px;
    }
}
.blog-details-area .blog-details-item .blog-quote i {
    font-size: 60px;
    color: #D90429;
}
.blog-details-area .blog-details-item .blog-quote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    padding-top: 12px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-quote p {
        font-size: 14px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-quote p {
        font-size: 16px;
    }
}
.blog-details-area .blog-details-item .blog-contents .title {
    font-size: 24px;
    font-weight: 600;
    padding-top: 50px;
    padding-bottom: 37px;
}
.blog-details-area .blog-details-item .blog-contents p {
    line-height: 30px;
}
.blog-details-area .blog-details-item .blog-contents .blog-details-list ul li {
    line-height: 50px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-list ul li {
        font-size: 14px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-list ul li {
        font-size: 16px;
    }
}
.blog-details-area .blog-details-item .blog-contents .blog-details-list ul li img {
    padding-right: 12px;
}
.blog-details-area .blog-details-item .blog-contents .blog-details-thumb {
    margin-left: -30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-thumb {
        margin-left: 0;
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-thumb {
        margin-left: 0;
        margin-top: 30px;
    }
}
.blog-details-area .blog-details-item .blog-contents .blog-details-thumb img {
    width: 100%;
}
.blog-details-area .blog-details-item .blog-contents .blog-details-icons .social-icon ul li {
    display: inline-block;
}
.blog-details-area .blog-details-item .blog-contents .blog-details-icons .social-icon ul li a {
    font-size: 30px;
    color: #222;
    margin: 0 45px;
    padding-top: 35px;
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-icons .social-icon ul li a {
        margin: 0 15px;
        font-size: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-contents .blog-details-icons .social-icon ul li a {
        margin: 0 20px;
    }
}
.blog-details-area .blog-details-item .blog-details-comments {
    background: #F4F4F4;
    padding: 40px 40px 30px;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments {
        padding: 40px 15px 30px;
    }
}
.blog-details-area .blog-details-item .blog-details-comments .title {
    font-size: 24px;
    font-weight: 600;
    padding-top: 25px;
    padding-bottom: 25px;
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item {
    position: relative;
    padding-left: 90px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item {
        padding-left: 55px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item {
        padding-left: 90px;
    }
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item img {
    position: absolute;
    left: 0;
    top: 35px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item img {
        width: 20%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item img {
        width: auto;
    }
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item a {
    position: absolute;
    right: 0;
    top: 60px;
    color: #626981;
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item h5 {
    font-size: 16px;
    font-weight: 500;
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item span {
    padding-top: 3px;
    padding-bottom: 20px;
}
.blog-details-area .blog-details-item .blog-details-comments .comments-area-item.item-2 {
    border-top: 1px solid #fddfaa;
    border-bottom: 1px solid #fddfaa;
    margin-left: 130px;
}
@media (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item.item-2 {
        margin-left: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details-area .blog-details-item .blog-details-comments .comments-area-item.item-2 {
        margin-left: 130px;
    }
}
.blog-details-area .blog-details-item .blog-details-form .title {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 15px;
}
.blog-details-area .blog-details-item .blog-details-form .input-box input {
    width: 100%;
    line-height: 60px;
    border: 0;
    border-bottom: 1px solid #fde4c1;
    color: #626981;
}
.blog-details-area .blog-details-item .blog-details-form .input-box input::placeholder {
    text-transform: capitalize;
    opacity: 1;
    color: #626981;
}
.blog-details-area .blog-details-item .blog-details-form .input-box textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fde4c1;
    height: 50px;
    margin-bottom: 50px;
    resize: none;
    margin-top: 100px;
}

/*===========================
8.CONTACT css
===========================*/
.contact-area .contact-thumb {
    border-radius: 10px;
    position: relative;
    z-index: 8;
}

.contact-area .about-content .title::before {
    position: absolute;
    content: '';
    top: 55px;
    left: 15px;
    height: 2px;
    width: 100px;
    background: #D90429;
}

.consent p{
    color:#626981;
    font-size:11px;
    font-weight:400;
    margin-bottom:0;
    line-height:14px
}

.consent input{
    height:auto
}
.consent .opt-in-label{
    margin:5px 15px;
    cursor:pointer
}

form div.error{
    color:#dc3545;
    font-size:13px;
    font-weight:600;
    padding-left: 20px;
}

.consent a,
.consent a:hover,
.consent a:visited,
.consent a:focus{
    color: #D90429;
}

.contact-area .contact-form .input-box select {
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-radius: 10px;
    border: 1px solid #acacac;
    padding-left: 18px;
    color: #626981;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area .contact-thumb {
        margin-right: 0;
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .contact-area .contact-thumb {
        margin-right: 0;
        margin-top: 40px;
    }
    .contact-area{
        padding: 110px 0px 40px 0px;
    }
}
.contact-area .contact-thumb::before {
    position: absolute;
    content: '';
    left: -45px;
    bottom: -45px;
    width: 300px;
    height: 100%;
    border: 2px solid #D90429;
    border-radius: 10px;
    z-index: -1;
}
.contact-area .contact-thumb img {
    width: 100%;
    border-radius: 10px;
}
.contact-area .contact-form .title {
    font-size: 40px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    padding-bottom: 30px;
}
.contact-area .contact-form .input-box input {
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-radius: 10px;
    border: 1px solid #acacac;
    padding-left: 18px;
    color: #626981;
}
.contact-area .contact-form .input-box input::placeholder {
    opacity: 1;
    color: #626981;
    text-transform: capitalize;
}
.contact-area .contact-form .input-box textarea {
    width: 100%;
    resize: none;
    border-radius: 10px;
    border: 1px solid #acacac;
    padding-top: 13px;
    padding-left: 18px;
    height: 226px;
    color: #626981;
}
.contact-area .contact-form .input-box textarea::placeholder {
    opacity: 1;
    color: #626981;
    text-transform: capitalize;
}
.contact-area .contact-form .input-box button {
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
}

.contact-area-2 {
    background: #10102d;
}
@media (max-width: 767px) {
    .contact-area-2 .contact-content {
        margin-right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .contact-area-2 .contact-content {
        margin-right: 40px;
    }
}
.contact-area-2 .contact-content .title {
    font-size: 40px;
    color: #fff;
    padding-bottom: 35px;
}
.contact-area-2 .contact-content p {
    color: #fff;
    line-height: 30px;
}
.contact-area-2 .contact-form .input-box input {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #7b7988;
    line-height: 60px;
    color: #fff;
}
.contact-area-2 .contact-form .input-box input::placeholder {
    color: #fff;
    opacity: 1;
}
.contact-area-2 .contact-form .input-box input:focus {
    border-bottom: 1px solid #876330;
}
.contact-area-2 .contact-form .input-box input:focus::placeholder {
    color: #D90429;
}

.contact-info-area .contact-info-item .icon {
    margin-right: 22px;
}
.contact-info-area .contact-info-item .icon i {
    height: 115px;
    width: 115px;
    background: #fff;
    box-shadow: 0px 34px 125px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    line-height: 115px;
    font-size: 65px;
    color: #D90429;
}
.contact-info-area .contact-info-item .contact-info-content span {
    color: #222;
    font-weight: 700;
    padding-bottom: 9px;
    text-transform: capitalize;
}
.contact-info-area .contact-info-item .contact-info-content ul li {
    line-height: 30px;
}
@media (max-width: 767px) {
    .contact-info-area .contact-info-item .contact-info-content ul li {
        font-size: 14px;
    }
}

/*===========================
9.FOOTER css
===========================*/
.footer-area {
    background: #f4e0c8;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-copyright p {
        font-size: 13px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .footer-list {
        padding: 15px 0;
    }
}
@media (max-width: 767px) {
    .footer-area .footer-list {
        padding: 15px 0;
    }
}
.footer-area .footer-list ul li {
    display: inline-block;
}
.footer-area .footer-list ul li a {
    color: #626981;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 14px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-list ul li a {
        font-size: 14px;
        margin: 0 10px;
    }
}
@media (max-width: 767px) {
    .footer-area .footer-list ul li a {
        font-size: 14px;
        margin: 0 8px;
    }
}
.footer-area .footer-list ul li a:hover {
    color: #D90429;
}
.footer-area .footer-social ul li {
    display: inline-block;
}
.footer-area .footer-social ul li a {
    color: #222;
    font-size: 30px;
    margin-left: 21px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .footer-social ul li a {
        font-size: 20px;
    }
}
.footer-area .footer-social ul li a:hover {
    color: #D90429;
}
.footer-area.footer-2 {
    background: #131333;
}
.footer-area.footer-2 .footer-list ul li a {
    color: #fff;
    opacity: 1;
}
.footer-area.footer-2 .footer-list ul li a:hover {
    color: #D90429;
}
.footer-area.footer-2 .footer-social {
    padding-top: 25px;
    padding-bottom: 25px;
}
.footer-area.footer-2 .footer-social ul li a {
    color: #fff;
}
.footer-area.footer-2 .footer-social ul li a:hover {
    color: #D90429;
}
.footer-area.footer-2 .footer-copyright p {
    color: #fff;
}
.footer-area.footer-2.footer-3 .footer-list ul li a:hover {
    color: #84fab0;
}
.footer-area.footer-2.footer-3 .footer-social ul li a:hover {
    color: #84fab0;
}

/*===========================
BACK TO TOP CSS
===========================*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    z-index: 99;
}
.back-to-top a {
    color: #fff;
    background: #D90429;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}
.back-to-top.back-to-top-2 a {
    background: #84fab0;
}

/*===========================
10.COUNTER css
===========================*/
.counter-area {
    background: #f7fdf9;
}
.counter-area .single-counter {
    box-shadow: 0px 15px 144px 0px rgba(0, 0, 0, 0.18);
    border-radius: 15px;
    padding: 30px 0px;
}
.counter-area .single-counter span {
    font-weight: 700;
    font-size: 40px;
    color: #84fab0;
}
.counter-area .single-counter p {
    color: #061727;
    text-transform: capitalize;
    padding-top: 7px;
}

/*===========================
11.NEWSLETTER css
===========================*/
.newsletter-area .section-title .title::before {
    width: 0;
}
.newsletter-area form .input-box input {
    width: 100%;
    box-shadow: 0px 17px 57px 0px rgba(0, 0, 0, 0.08);
    height: 70px;
    line-height: 70px;
    border: 0;
    border-radius: 35px;
    padding-left: 25px;
    color: #626981;
}
.newsletter-area form .input-box input::placeholder {
    opacity: 1;
    color: #626981;
    text-transform: capitalize;
}
.newsletter-area form .input-box button {
    height: 70px;
    line-height: 70px;
    background: #84fab0;
    border: 2px solid #84fab0;
    color: #fff;
    border-radius: 35px;
    padding: 0 75px;
    font-weight: 500;
    text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-area form .input-box button {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .newsletter-area form .input-box button {
        margin-top: 30px;
        padding: 0 35px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .newsletter-area form .input-box button {
        margin-top: 30px;
        padding: 0 50px;
    }
}

/*===========================
11.SKILLS css
===========================*/
.skills-area {
    background: #F4F4F4;
}
.skills-area .skills-items .title {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 20px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .skills-area .skills-items .title {
        margin-top: 50px;
    }
}

.skills {
    position: relative;
}

.skills .skill-item {
    position: relative;
    margin-bottom: 46px;
}

.skills .skill-item .skill-header {
    position: relative;
    margin-bottom: 10px;
}

.skills .skill-item .skill-header .skill-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #626981;
    opacity: 1;
    text-transform: capitalize;
}

.skills .skill-item .skill-header .skill-percentage {
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 15px;
    font-weight: 600;
    color: #ff5e14;
}

.skills .skill-item .skill-header .skill-percentage .count-box {
    font-size: 14px;
    font-weight: 400;
}

.skills .skill-item .skill-header .skill-percentage .count-box span {
    font-weight: 400;
    font-size: 14px;
}

.skills .skill-item:last-child {
    margin-bottom: 0;
}

.skills .skill-item .skill-bar {
    position: relative;
    width: 100%;
}

.skills .skill-item .skill-bar .bar-inner {
    position: relative;
    width: 100%;
    border-top: 11px solid #fff;
    border-bottom: 11px solid #fff;
    box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
}

.skills .skill-item .skill-bar .bar-inner .bar {
    position: absolute;
    left: 0;
    top: -8px;
    width: 0;
    height: 22px;
    background: #D90429;
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    border-radius: 30px;
    margin-top: -3px;
}

/*===========================
11.EXPERIENCES css
===========================*/
.experiences-area .single-experiences {
    border-radius: 10px;
    padding: 66px 40px 68px;
    position: relative;
    background: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .experiences-area .single-experiences {
        padding: 66px 20px 68px;
    }
}
.experiences-area .single-experiences::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 0px;
    width: 160px;
    background: #D90429;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.experiences-area .single-experiences span {
    text-transform: capitalize;
    padding-bottom: 10px;
}
.experiences-area .single-experiences .title {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 8px;
}
.experiences-area .single-experiences p {
    padding-right: 7px;
}
.experiences-area .single-experiences:hover::before, .experiences-area .single-experiences.active::before {
    height: 3px;
}

/*# sourceMappingURL=style.css.map */
