@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --orange-color: rgba(255, 110, 1, 1);
    --Green-color: #11c27f;
    --blue-color: rgba(0, 142, 206, 1);
    --light-blue-color: rgba(58, 130, 254, 1);
    --white-color: rgba(255, 255, 255, 1);
    --yellow-color: rgba(245, 166, 1, 1);
    --light-green-color: rgba(7, 171, 177, 1);
    --dark-blue-color: #000001;
    --black-color: rgba(61, 61, 61, 1);
    --light-blackColor: #7d7f80;
    --red-color: rgba(228, 60, 92, 1);
    --light-red-color: rgba(253, 239, 242, 1);
    --darkBlack-color: #111;
    --primary-green-color: #17543E;
    --light-golden-color: #CFA649;
    --purple-color-100: #facc6f;
    --purple-color-200: #dce2fa;
}

*, *:before, *:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html, body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #000001;
    line-height: 32px;
}

a {
    color: #14212B;
    display: inline-block;
}

a, a:active, a:focus, a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    color: var(--light-golden-color);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-green-color);
    margin: 0px;
    font-weight: 600;
    font-family: 'Playfair Display', sans-serif;
    line-height: 1.6;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img, img {
    max-width: 100%;
    -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;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}


*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}


/* ===================
preloader
====================== */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
.preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-green-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-green-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #F5F8FD;
}

.bg-linear {
    background-color: transparent;
    background-image: linear-gradient(180deg, #D6ECE1 0%, #FFFFFF 100%);
}

/* ===================
preloader
====================== */

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
.preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-green-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 5px solid var(--primary-green-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #D6ECE1;
}


/* ===================
site title css
====================== */

.site-heading {
    margin-bottom: 40px;
}

.site-title-tagline {
    position: relative;
    letter-spacing: 2px;
    color: var(--light-golden-color);
    font-family: 'Playfair Display', sans-serif;
    font-size: 24px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 35px;
    color: var(--primary-green-color);
    margin-top: 5px;
    margin-bottom: 0;
}

.site-title span{
    color: var(--light-golden-color);
}

.site-heading p {
    font-size: 18px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 4px;
    background-color: var(--primary-green-color);
    width: 90px;
    overflow: hidden;
    border-radius: 50px;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}


@media all and (max-width: 767px) {
    .site-title {
        font-size: 30px;
    }
}



/* ===================
margin & padding
====================== */

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #CFA649;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #CFA649;
    border-radius: 50px 50px 50px 50px;
    padding: 8px 40px 10px 40px;
    font-family: 'Playfair Display', sans-serif;
    font-size: 20px;
    text-transform: capitalize;
    background: none;
}

.theme-btn:hover{
    color: #fff;
    background: var(--light-golden-color);
}


.theme-btn i{
    margin-left: 6px;
}

/* ===================
container
====================== */

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1185px;
    }
}

@media (min-width: 1600px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1480px;
    }
}




/* ===================
scroll-top css
====================== */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 22px;
    border: none;
    outline: none;
    background: var(--primary-green-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
    transition: all .5s ease-in-out;
}

/* ===================
header top css
====================== */

.header-top {
    padding: 10px 0;
    position: relative;
    background: var(--primary-green-color);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    z-index: 2;
}

.header-top-wrapper {
    width:100%;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
    margin-bottom: 0;
}

.header-top-contact ul li ,
.header-top-contact ul li a {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
}

.header-top-contact ul li span {
    font-size: 14px;
    margin-right: 10px;
    color: #fff;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-left: 5px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
}

.header-top-social a:hover {
    background: #fff;
    color: var(--light-golden-color);
}

.header-top-account a {
    color: #fff;
    margin-right: 20px;
}

.header-top-account a i {
    margin-right: 8px;
}

@media all and (max-width: 1199px) {
    .header-top-account {
        display: none;
    }
    .header-top::before{
        width: 270px;
    }
    .header-top::after{
        width: 260px;
    }
}

@media all and (max-width: 992px) {
    .header-top {
        display: none;
    }
}

/* ===================
nav menu css
====================== */

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
        padding: 28px 0 28px 0;
        font-size: 15px;
        font-weight: 500;
        color: #000001;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 15px;
        border: none;
        border-radius: 8px;
        width: 300px;
        box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
	    background: #ffffff;
    }

    .navbar .nav-item .dropdown-menu li {
        border-bottom: 1px solid #eee;
    }

    .navbar .nav-item .dropdown-menu li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 15px;
        font-weight: 500;
        padding: 8px 15px;
        color: #000001;
        border-radius: 5px;
        position: relative;
        transition: all .5s ease-in-out;
        white-space: break-spaces;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before{
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        width: 0px;
        height: 2px;
        opacity: 0;
        background: var(--primary-green-color);
        transition: all .7s ease-in-out;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before{
        width: 28px;
        opacity: 1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: var(--primary-green-color);
        padding-left: 33px;
    }

    .navbar .nav-item:nth-child(3)>ul {
        display: inline-table;
        height: 300px;
        width: 310px !important;
    }

    .navbar .nav-item:nth-child(3)>ul>li>a {
        border-bottom: 1px solid #eee;
    }

    .navbar .nav-item:nth-child(3)>ul>li>ul {
        position: relative;
        background: none;
        box-shadow: none;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: normal;
        width: 280px !important;
        padding-left:10px;
    }

    .navbar .nav-item:nth-child(3)>ul>li>ul>li {
        position: relative;
        background: none;
        box-shadow: none;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: normal;
        width: 310px !important;
    }

    .navbar .nav-item:nth-child(3)>ul>li>ul>li>a {
        position: relative;
        background: none;
        box-shadow: none;
        overflow: hidden;
        /* display: -webkit-box; */
        /* -webkit-box-orient: vertical; */
        /* -webkit-line-clamp: 2; */
        white-space: normal;
        width: 286px !important;
    }

    .navbar .nav-item .nav-link {
        position: relative;
        z-index: 1;
    }

    .navbar .nav-item .nav-link::before{
        content: "";
        position: absolute;
        background: var(--primary-green-color);
        width: 0px;
        height: 3px;
        bottom: 20px;
        left: 1px;
        border-radius: 50px;
        transition: all .5s ease-in-out;
    }

    .navbar .nav-item .nav-item .nav-link::before{
        content: none;
    }

    .navbar .nav-item .nav-link.active::before,
    .navbar .nav-item .nav-link:hover::before {
        width: 20px;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--primary-green-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .header-nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: 30px;
    }

    .header-nav-search a {
        color: #000001;
        font-size: 17px;
        padding: 5px;
    }

    .navbar .header-btn {
        padding-top: 8px;
    }

    .navbar .header-btn .theme-btn:hover{
        color: #fff;
    }

}

.toper{
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

/*bootstrap menu*/



.navbar {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    z-index: 999;
}

.navbar.fixed-top {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}


.navbar.fixed-top .header-nav-search a {
    color: #000001;
}

.navbar.fixed-top .header-nav-search a:hover {
    color: var(--light-golden-color);
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

button.navbar-toggler {
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand img {
    width: 229px;
}

/* dropdown toggler */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    font-family: 'icomoon';
    content: "\e990";
    font-weight: bold;
    border: none;
    font-size: 14px;
}

.dropdown-toggle:hover::after {
    content: "\e97f";
}

/* mobile menu */

.mobile-menu-right {
    display: flex;
    align-items: center;
}

@media all and (max-width: 1199px) {
    .navbar .header-btn {
        display: none;
    }
    .navbar .header-btn {
        display: none;
    }
    .header-phone {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .navbar {
        top: 0;
        right: 0;
        left: 0;
        position: fixed;
    }

    .navbar-brand {
        padding-left: 10px;
    }

    .navbar-brand img {
        width: 229px;
    }

    .navbar-collapse {
        max-height: 290px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff;
    }

    .dropdown-toggle::after {
        display: none;
        float: right;
        margin-top: 5px;
    }
   

    .navbar .nav-item .nav-link {
        color: #000001;
        font-weight: 700;
        transition: all .5s ease-in-out;

    }

    .navbar .nav-item .nav-link:hover {
        color: var(--primary-green-color) !important;
    }

    .navbar-toggler{
        border: none;
    }

    .navbar-toggler-icon {
        font-size: 32px;
        color: #000001;
        font-weight: 500;
        padding-right: 10px;
        margin-bottom: 10px;
        background: transparent;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
        padding-top: 0;
    }

    .navbar.fixed-top .navbar-toggler-icon {
        color: #000001;
    }

    .header-nav-right {
        display: none;
    }
}

/* ===================
search area css
====================== */


.submit_search {
    text-decoration: none;
    margin: 0;
    width: 100%;
    max-width: 800px;
    top: 0;
    right: 0;
    z-index: 9999
}

.submit_search .searchbox {
    position: relative
}

.submit_search input {
    display: block;
    width: 100%;
    line-height: 36px;
    border-radius: 0;
    outline: none;
    font-size: 14px;
    padding: 5px 50px 5px 10px;
    border: 1px solid #e5e5e5;
    color: #292c37;
    background: #ffffff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.submit_search button {
    border: none;
    cursor: pointer;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
    outline: none;
    background: var(--primary-green-color);
    font-size: 1.1rem;
    color: #ffffff;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease-in-out;
}

.submit_search button:hover,.submit_search button:focus,.submit_search button:active {
    background: #292c37
}

@media (max-width: 1024px) {
    .submit_search {
        right: 20px;
        padding-left: 300px;
    }
}

@media (max-width: 600px) {
    .submit_search {
        padding: 10px 20px 0;
        position: relative;
        width: 100%;
        right: 0;
    }
}


/* ===================
main css
====================== */
.main {
    margin-top: 0rem;
}


/* ===================
hero css
====================== */

.hero-wrapper{
    padding-top: 250px;
    padding-bottom: 120px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-wrapper::before{
    content: "";
    position: absolute;
    background: rgba(7, 9, 36, .9);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-shape{
    position: absolute;
    bottom: -5px;
    left: 0px;
}

.hero-img{
    position: relative;
    z-index: 1;
}

.hero-wrapper .hero-sub-title{
    text-transform: uppercase;
    color: #fff;
    font-size: 25px;
}

.hero-wrapper .hero-title{
    font-size: 45px;
    color: #fff;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-wrapper .hero-title span{
    color: #E7295A;
}

.hero-wrapper p{
    font-size: 17px;
    color: #fff;
}

.hero-wrapper .hero-btn{
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.hero-single {
    height: 960px;
    padding-top: 150px;
    padding-bottom: 150px;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-single::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-image: linear-gradient(180deg, #60545400 0%, #D6ECE1 100%);*/
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-single .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-single .hero-content .hero-title {
    color: var(--primary-green-color);
    font-size: 49px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-single .hero-content .hero-title span{
    color: var(--primary-green-color);
}

.hero-single .hero-content .hero-sub-title {
   
    font-size: 25px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.hero-single .hero-content p {
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-single .hero-content .theme-btn{
    background-color: var(--light-golden-color);
    color: #fff;
}

.hero-single .hero-content .hero-btn {
    gap: 2rem;
    display: flex;
    margin-top: 1rem;
    justify-content: start;
}

.hero-title {
    font-weight: 700;
    margin: 20px 0;
}

.hero-sub-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.hero-btn .video-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.hero-btn .play-btn{
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: var(--light-golden-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
    left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
}
.hero-slider.owl-theme .owl-nav .owl-prev i, .hero-slider.owl-theme .owl-nav .owl-next i{
    font-style: normal;
}

.fa-long-arrow-left:before{
    content: "\e902";
    font-family: icomoon;
}

.fa-long-arrow-right:before{
    content: "\e903";
    font-family: icomoon;
}

@media all and (max-width: 1199px) {
    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }
    .hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 20px !important;
    }
    .hero-slider.owl-theme .owl-nav .owl-next {
        left: 120px;
    }
}

@media all and (max-width: 991px) {
    .hero-single .hero-content .hero-title {
        font-size: 35px;
    }

    .hero-wrapper{
        padding-top: 260px;
        padding-bottom: 160px;
    }

    .hero-wrapper .hero-title{
        font-size: 32px;
    }

    .hero-wrapper .hero-img{
        margin-top: 70px;
    }

}

@media all and (max-width: 767px) {
    .hero-single .hero-content .hero-sub-title {
        font-size: 15px;
    }
    .hero-single .hero-content .hero-btn {
        gap: 1rem;
    }
}

.hero-single .path{
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    transform: rotateX(180deg);
    bottom: -1px;
}

.path img{
}

.path-1{
    transform: rotate(180deg);
    position: relative;
    bottom: -1px;
}

.path-1 img{
}

.path10{
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: -1px;
    transform: rotate(180deg);
    box-sizing: border-box;
}
.path10 img{
    box-sizing: border-box;
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(300% + 1.3px);
    height: 105px;
    transform: translateX(-50%) rotateY(180deg);
    z-index: -1;
}

/* ===================
about css
====================== */

.about-area {
    position: relative;
    display: block;
}

.about-left {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img{
    position: relative;
    padding: 20px;
    padding-right: 40px;
}

.about-img img{
    border-radius: 10px;
}

.about-right {
    position: relative;
    display: block;
    padding-left: 25px;
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-list-flex {
    position: relative;
    display: flex;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-list {
    position: relative;
    display: block;
}

.about-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-list li+li {
    margin-top: 10px;
}

.about-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-list li .icon span {
    font-size: 20px;
    color: var(--primary-green-color);
    border: 1px solid var(--primary-green-color);
    border-radius: 50px;
}

.about-list li .text {
    margin-left: 16px;
}

.about-list li .text p {
    color: #000;
    margin: 0;
}

@media all and (max-width: 991px) {
    .about-right {
        margin-top: 80px;
    }
}


/* ===================
service css
====================== */

.service-area {
    position: relative;
    overflow: hidden;
}

.service-item {
    position: relative;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all .5s ease-in-out;
}

.service-item .service-content {
    display: block;
}

.service-item.offer-first .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.service-item.offer-first .service-content .service-title{
    color: #fff;
    text-transform: uppercase;
}

.service-item:hover{
    transform: translateY(-10px);
}

.service-img img{
    border-radius: 10px;
}

.service-icon{
    position: relative;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    transition: all .5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}



.service-item:hover .service-icon{
    border-radius: 50%;
}

.service-icon span {
    font-size: 76px;
    color: var(--light-golden-color);
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

.service-title {
    margin-top: 5px;
}

.service-title a {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-green-color);
}

.service-title a:hover {
    color: var(--light-golden-color) !important;
}

.service-arrow {
    margin-top: 20px;
}

.service-arrow .service-read-btn{
    font-weight: 500;
    color: var(--primary-green-color);
}

.service-arrow .service-read-btn:hover{
    color: #000001;
}

.service-arrow a i{
    margin-left: 8px;
}


/* ======================
technology-area-stylesheet
========================= */


.technology-area {
    width: auto;
    max-width: none;
    min-width: 0px;
    height: auto;
    max-height: none;
    min-height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}


.technology-area .demo {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.technology-area .lists {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.technology-area .list {
    position: relative;
}

.technology-area .list1 .bg {
    width: 100%;
    height: 100%;
    background: url(../images/technology-1.jpg)no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    position: absolute;
    background-size: cover;
    top: 0;
}

.technology-area .list2 .bg {
    width: 100%;
    background: url(../images/technology-2.jpg)no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
}

.technology-area .list3 .bg {
    width: 100%;
    background: url(../images/technology-3.jpg) no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
}

.technology-area .list4 .bg {
    width: 100%;
    background: url(../images/technology-4.jpg) no-repeat;
    background-position: 50%;
    background-size: auto 100%;
    position: absolute;
    top: 0;
}

.technology-area .list5 .bg {
    width: 100%;
    background: url(../images/technology-5.jpg) no-repeat;
    background-position: 50%;
    background-size: auto 100%;
    position: absolute;
    top: 0;
}

.technology-area .list6 .bg {
    width: 100%;
    background: url(../images/technology-6.jpg) no-repeat;
    background-position: 50%;
    background-size: auto 100%;
    position: absolute;
    top: 0;
}

.technology-area .title {
    position: absolute;
    top: 35%;
    width: 100%;
    padding:10%;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    z-index: 2;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

.technology-area .title span{
    display: block;
    font-size: 1.125rem;
}

.technology-area .more {
    position: absolute;
    bottom: 60px;
    width: 100%;
    height: 50px;
    text-align: center;
    z-index: 9;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.technology-area .more span,.technology-area .more a {
    display: inline-block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    color: #CFA649;
    opacity: 1;
    font-size: 16px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #CFA649;
    border-radius: 50px 50px 50px 50px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: 'Playfair Display', sans-serif;
}

.technology-area .more span i {
    font-style: normal;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen and (min-width: 992px) {
    .technology-area .demo {
        height: 670px;
    }

    .technology-area .lists {
        height: 100%;
    }

    .technology-area .list {
        float: left;
        transition: all 0.8s ease-out;
    }

    .technology-area .list1 {
        position: relative;
        width: calc(100% / 3);
        height: 100%;
        float: left;
        overflow: hidden;
    }

    .technology-area .list1 .bg {
        height: 100%;
    }

    .technology-area .list2 {
        position: relative;
        width: calc(100% / 3);
        height: 100%;
        float: left;
        overflow: hidden;
    }

    .technology-area .list2 .bg {
        height: 100%;
    }

    .technology-area .list3 {
        position: relative;
        width: calc(100% / 3);
        height: 100%;
        overflow: hidden;
    }

    .technology-area .list3 .bg {
        height: 100%;
    }

    .technology-area .list4 {
        position: relative;
        width: calc(100% / 6);
        height: 100%;
        float: left;
        overflow: hidden;
    }

    .technology-area .list4 .bg {
        height: 100%;
    }

    .technology-area .list5 {
        position: relative;
        width: calc(100% / 6);
        height: 100%;
        float: left;
        overflow: hidden;
    }

    .technology-area .list5 .bg {
        height: 100%;
    }

    .technology-area .list6 {
        position: relative;
        width: calc(100% / 6);
        height: 100%;
        float: left;
        overflow: hidden;
    }

    .technology-area .list6 .bg {
        height: 100%;
    }

    .technology-area .bg::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(24, 84, 63, 0.3);
        opacity: .7;
        transition: all .4s;
        -moz-transition: all .4s;
        -webkit-transition: all .4s;
    }

    .technology-area .bg:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background: none;
        opacity: .95;
        transition: all .4s;
        -moz-transition: all .4s;
        -webkit-transition: all .4s;
        width: 0%;
        height: 400px;
    }

    .technology-area .list:hover .bg:after {
        width: 54%;
        transition: all .4s;
        border-radius: 56px 0px;
    }

    .technology-area .more {
        bottom: 60px;
        opacity: 0;
    }

    .technology-area .more span:hover {
        color: #ffffff;
        background: var(--light-golden-color);
    }

    .technology-area .more span:hover i {
        margin-left: 5px;
    }

    .technology-area .list:hover .more {
        opacity: 1;
        bottom: 215px;
    }

    .technology-area .deactive {
        width: 20%;
    }

    .technology-area .active {
        width: 60%;
    }
}

@media only screen and (max-width: 993px) {
    .technology-area .list {
        height: 270px;
    }

    .technology-area .titleLink {
        display: block;
        width: 100%;
        height: 100%;
    }

    .technology-area .list .bg {
        height: 100%;
        background-size: cover;
    }
}

.technology-area .list:before {
    position: absolute;
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 20px;
    left: 20px;
    z-index: 1;
}


@media only screen and (max-width: 768px) {

    .technology-area .more span {
        background: #eec968!important;
    }

    .technology-area .more span {
        border: 0px solid #eec968!important;
    }

    .technology-area .title {
        text-shadow: 1px 1px 0px #666;
    }
}


/* ======================
contact-form
========================= */

.iframe-box {
    height: 100%;
}

.forms {
    width: 100%;
}

.forms .row {
    margin-right: -15px;
    margin-left: -15px;
}

.forms .row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.forms .form_control {
    width: 100%;
    height: 46px;
    border: 1px solid #aaadaa;
    padding: 0px 10px;
    margin-bottom: 0px;
    font-size: 14px;
    color: #454646;
    box-shadow: none;
    border-radius: 5px;
    background: none;
}

.forms .form_group {
    margin-bottom: 15px;
}

.forms textarea.form_control {
    height: 80px;
    padding: 11px 10px;
    line-height: 22px;
    display: inherit;
}

.forms textarea.form_control.title {
    height: 46px;
}

.forms .form_control.file {
    padding-top: 10px;
}

.forms .inquiry-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.forms .inquiry-quantity select.form_control {
    width: 110px;
    font-size: 18px;
    outline: none;
}

.forms label {
    margin-bottom: 5px;
    font-size: 15px;
    color: #0E0D1B;
    margin-left: 0px;
    display: block;
}

.forms .inquiry-quantity {
    width: 100%;
}

.forms .inquiry-quantity input#iquantity {
    width: calc(100% - 110px);
    margin-right: 0px;
    border-right: none;
}

.forms .inquiry-quantity input.form_control:after {
    content: " ";
    position: absolute;
    z-index: 2;
    top: -25px;
    width: 110%;
    height: 50px;
    background-color: #fff;
    transform: rotate(-0.5deg)
}

.forms #otherunit {
    margin-left: 0px;
    background: none;
    width: 110px;
    border-left: none;
}

.forms .form_button {
    margin-top: 10px;
    text-align: center;
}

.forms .form-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 10px;
}

.forms .form-check label {
    line-height: 1.3;
}

.forms .form-check .form-check-input {
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 3px;
}

/* ======================
footer-stylesheet
========================= */

.footer {
    width: 100%;
    height: auto;
    background: var(--primary-green-color);
}

.footer p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer p a {
    line-height: inherit;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--light-golden-color);
}

.footer .foottitle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: grid;
}

.footer .email-box{
    margin-top: 20px;
}
.footer .email-box input{
    font-size: 15px;
    height: 50px;
    padding: 5px 10px;
    position: relative;
    background: none;
    border: 1px solid #fff;
    margin: 0;
    border-radius: 4px;
    width: -webkit-fill-available;
}
.footer .email-box input::placeholder{
    color: #fff;
}

.foot-info {
    width: 100%;
    height: auto;
    padding: 50px 0px 35px;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    column-gap: 400px;
    position: relative;
    z-index: 2;
}

.foot-logo {
    width: auto;
}

.foot-logo img {
    width: auto;
    height: 60px;
    max-width: 100%;
    margin-bottom: 30px;
}

.foot-logo .certificates img {
    width: auto;
    height: 80px;
    max-width: 100%;
    margin-bottom: 0px;
}

.foot-logo p {
    max-width: 600px;
}

.foot-contact-list {
    margin-bottom: 15px;
}

.foot-contact-list p span{
    padding-right: 10px;
}


.foot-link-icon {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
}

.foot-link-icon a {
    font-size: 18px;
    transition: all .3s;
    color: #fff;
}

.foot-link-icon a:hover {
    transform: translateY(-3px);
    color: #fff;
}

.foot-link-icon .twitter-pic {
    width: auto;
    height: 16px;
    margin-bottom: 3px;
}

.foot-link-icon p {
    margin-bottom: 0px;
}

.foot-follow {
    max-width: 300px;
}

.foot-nav {
    width: auto;
    max-width: 100%;
    /*min-width: 300px;*/
}
.foot-logo{
    min-width: 360px;
}

.foot-nav:nth-child(2) {
    min-width: 180px;
}
.foot-nav:nth-child(3) {
    min-width: 220px;
}
.foot-nav:nth-child(4) {
    min-width: 200px;
}

.foot-nav p a {
    padding-left: 20px;
    position: relative;
    display: inline-block;
    transition: all .3s;
}

.foot-nav p a:before {
    content: '>';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.foot-nav p a:hover {
    transform: translateX(5px);
}

.social-contact-info{
    padding-top: 30px;
    border-top: 1px solid #19674c;
}

.contact-info-item{
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item .icon-box{
    margin-right: 10px;
}

.contact-info-item .icon-box span{
    color: #ffffff;
    font-size: 45px;
}

.contact-info-item .text h3{
    color: #ffffff;
}


.copyright {
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: auto;
    padding: 12px 0px;
    position: relative;
    background: var(--primary-green-color);
}

.copyright p {
    padding-top:15px;
    border-top:1px solid #19674c;
    text-align: center;
    margin-bottom: 0px;
    color: #fff;
    font-size: 15px;
}

.go_top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 4px;
    background-color: var(--primary-green-color);
    position: fixed;
    right: 5px;
    bottom: 120px;
}

.go_top:before {
    content: "\e9a6";
    font-family: 'icomoon';
    margin: 0 auto;
    font-size: 20px;
    padding: 20px 10px;
}

.go_top:hover {
    background-color: #000000;
    color:#ffffff;
}

@media (max-width:1200px) {

    .footer .foottitle {
        display: inline-block;
    }
    .foot-contact {
        width: 100%;
    }
    .foot-nav {
        width: 100%;
        margin-top: 25px;
    }
    .foot-logo img {
        height: 50px;
    }
    .foot-logo {
        width: 100%;
    }
    .foot-info {
        flex-wrap: wrap;
    }
    .search-info {
        position: absolute;
        left: 0px;
        top: calc(100% - 2px);
        width: 100%;
        padding: 5px 15px 10px;
    }
}


/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    padding-top: 320px;
    padding-bottom: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.site-breadcrumb:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    background: url(../images/nybanner.svg) no-repeat left top;
    background-size: auto 100%;
    height: 100%;
    z-index: -1;
}
@media (min-width: 1700px) {
    .site-breadcrumb:before{
        background: url(../images/nybanner-big.svg) no-repeat left top;
    }
}

@media (max-width: 768px) {
    .site-breadcrumb:before{
        background: url(../images/wapbanner.svg) no-repeat left bottom;
    }
}

.inquiry-breadcrumb{
    background-image: url(../images/inquiry-banner.jpg);
}
.about-breadcrumb {
    background-image: url(../images/about-banner.jpg);
}
.solution-breadcrumb {
    background-image: url(../images/soultion-banner.jpg);
}
.technology-breadcrumb {
    background-image: url(../images/technology-banner.jpg);
}
.contact-breadcrumb {
    background-image: url(../images/contact-banner.jpg);
}

.breadcrumb-shape{
    position: absolute;
    bottom: -4px;
    left: 0px;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 35px;
    color: var(--light-golden-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
    padding-left: 0;
}

.site-breadcrumb .breadcrumb-menu .icon-home{
    padding-right: 10px;
}

.site-breadcrumb .breadcrumb-menu .active{
    color: #fff;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: #fff;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\e932';
    font-family: 'icomoon';
    right: -19px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .site-breadcrumb {
        padding-top: 180px;
    }
}

/* ===================
Technology Categories css
====================== */

.platforms-item {
    margin-bottom: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.platforms-item:hover{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.platforms-item img{
    border-radius: 8px 8px 0 0;
}
.platforms-item a.theme-btn{
    margin: 0px 0px 15px 20px;
    font-size: 16px;
}

.platforms-item-info {
    padding: 23px 30px 20px 30px;
    height:200px;
}

.platforms-item-meta ul {
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #e6e8eb;
    padding-bottom: 18px;
}

.platforms-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #232323;
}

.platforms-item-meta ul li i {
    margin-right: 5px;
    color: var(--primary-green-color);
}

.platforms-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.platforms-item-info p {
    margin-bottom: 25px;
}

.platforms-item-info a:hover {
    color: var(--light-purple-color);
}

.platforms-item-info .theme-btn:hover{
    color: #fff;
}


/* ===================
CTA css
====================== */

.cta-area{
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.cta-area::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    opacity: 0.65;
    height: 100%;
    width: 100%;
    z-index: -1;

}

.cta-content{
    text-align: center;
}

.cta-content h5{
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-content h2{
    margin-bottom: 10px;
}

/* ===================
Contact Us css
====================== */
.contact h3{
    font-size: 22px;
    border-bottom: 1px solid var(--primary-green-color);
    padding-bottom: 7px;
    margin-bottom: 10px;
}

.contact {
    font-size: 16px;
}

.contact span{
    margin-right: 15px;
}

