/*------------------------------------------------------------------
[Master Stylesheet]

Project:  ShineWise
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header
3. Banner  /.banner-con
4. About  /.about-con
5. Service  /.service-con
6. Choose  /.choose-con
7. Video  /.video-con
8. Pricing  /.pricing-con
9. Project  /.project-con
10. Need  /.need-con
11. Testimonial  /.testimonial-con
12. Article  /.article-con
13. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

#    --e-global-color-primary: #ffffff;
#    --e-global-color-secondary: #000000;
#    --e-global-color-accent: #fddf79;
#    --e-global-color-text: #6d6c6c;
#	 --e-global-color-white: #ffffff;
#    --e-global-color-black: #000000;
#    --e-global-color-lime-green: #315347;
#    --e-global-color-very-dark-cyan: #10241d;
#    --e-global-color-dark-cyan: #0d1e18;
#	 --e-global-color-very-light-gray: #f9f9f9;
#	 --e-global-color-border: #e5e5e5;
#	 --e-global-color-nav-text: #3f3f3f;
#    --e-global-color-star-yellow: #fbc729;
#    --e-global-color-pure-red: #ff0000;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Plus Jakarta Sans", sans-serif;
Heading: "Plus Jakarta Sans", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #000000;
    --e-global-color-accent: #fdde77;
    --e-global-color-text: #6d6c6c;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-lime-green: #315347;
    --e-global-color-very-dark-cyan: #10241d;
    --e-global-color-dark-cyan: #0d1e18;
	--e-global-color-very-light-gray: #f9f9f9;
	--e-global-color-border: #e5e5e5;
	--e-global-color-nav-text: #3f3f3f;
    --e-global-color-star-yellow: #fbc729;
    --e-global-color-pure-red: #ff0000;
}

h1{
    font-size: 80px;
    line-height: 84px;
    font-weight: 800;
    color: var(--e-global-color-primary);
}
h2{
    font-size: 46px;
    line-height: 50px;
    font-weight: 800;
    color: var(--e-global-color-secondary);
}
h3{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h4{
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h5{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-color-lime-green);
}
p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
    word-break: break-word;
}
.text-size-18{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.text-size-16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.primary_btn{
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.primary_btn:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.primary_btn i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.primary_btn:hover i{
    color: var(--e-global-color-white);
}
html{
    scroll-behavior: smooth;
}
.all_row {
    display: flex;
    flex-wrap: wrap;
}
.all_column {
    display: flex;
}
.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Home Page */

.header {
    padding: 22px 0px;
    position: relative;
    z-index: 5;
}
.header .logo img {
    width: 170px;
}
.navbar-collapse .navbar-nav{
    text-align: center;
    align-items: center; 
    display: inherit;
}
.navbar-expand-lg{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav .nav-item a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    color: var(--e-global-color-accent) !important;
}
.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 61px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages .active:first-child > a::before{
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages li:last-child{
    margin: 0;
    border: none;
    display: block !important;
}
.navbar-nav .nav-item .dropdown-item:hover{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a:hover {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 10px 10px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 10px 10px;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.header .last_list {
    display: flex;
    align-items: center;
    padding-left: 35px;
}
.header .last_list .log_in{
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    min-width: 198px;
    height: 52px;
    padding: 18px;
    border-radius: 35px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
    transition: all 0.3s ease-in-out;
}
.header .last_list .log_in i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.header .last_list .log_in:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-lime-green) !important;
}
.header .last_list .log_in:hover i{
    color: var(--e-global-color-white);
}
.header .phone-number {
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.header .phone-number .header-phone {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.header .phone-number .number {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.header .phone-number:hover .header-phone {
    transform: translateY(-5px);
}
.header .phone-number:hover .number {
    color: var(--e-global-color-lime-green);
}

/* Banner */

.banner-con {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url(../images/banner-backgroundimage1.png);
}
.banner-con .icons {
    position: absolute;
    left: -152px;
    top: 42%;
    z-index: 2;
}
.banner-con .icons li {
    margin: 18px 0;
    transition: all 0.3s ease-in-out;
}
.banner-con .icons li:first-child {
    margin-top: 0;
}
.banner-con .icons li:last-child {
    margin-bottom: 0;
}
.banner-con .icons li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.banner-con .icons li a:hover i {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    border: 1px solid var(--e-global-color-lime-green);
}
.banner-con .banner_content {
    padding: 207px 200px 280px 0;
}
.banner-con .banner_content h1{
    margin-bottom: 30px;
}
.banner-con .banner_content h1 span{
    color: var(--e-global-color-accent) !important;
}
.banner-con .banner_content .text1{
    line-height: 30px;
    margin-bottom: 38px;
    padding-right: 100px;
}
.banner-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner-con .banner_content .primary_btn i{
    color: var(--e-global-color-secondary);
}
.banner-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner-con .banner_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner-con .banner_content .icons {
    display: none;
}
.banner-con .top-btn {
    display: inline-block;
    left: 0;
    right: 0;
    bottom: 110px;
    margin: 0 auto;
    position: absolute;
}
.banner-con .top-btn figure{
    transition: all 0.3s ease-in-out;
}
.banner-con .top-btn figure:hover {
    transform: translateY(-5px);
}

/* About */

.about-con {
    padding: 132px 0 200px;
    background-color: var(--e-global-color-white);
}
.about-con .about-sideimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about-con .about-sideimage img {
    opacity: 10%;
}
.about-con .about_wrapper .about-image1 {
    position: relative;
    top: 0;
    left: 0;
}
.about-con .about_wrapper .about-image1 img {
    border-radius: 30px;
}
.about-con .about_wrapper .about-image2 {
    position: absolute;
    top: 230px;
    right: 10px;
}
.about-con .about_wrapper .about-image2 img {
    border-radius: 30px;
    border: 11px solid var(--e-global-color-white);
}
.about-con .about_wrapper .about-image3 {
    position: absolute;
    top: 12px;
    right: 52px;
}
.about-con .about_wrapper .about-image3 img {
    border-radius: 100%;
}
.about-con .about_wrapper .box {
    position: absolute;
    left: 50px;
    bottom: -235px;
    width: 176px;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    background-color: var(--e-global-color-white);
    box-shadow: 0 3px 66px rgb(0 0 0 / 4%);
}
.about-con .about_wrapper .box .icon{
    margin: 0 auto 12px;
    transition: all 0.8s ease-in-out;
}
.about-con .about_wrapper .box:hover .icon{
    transform: translateY(-5px);
}
.about-con .about_wrapper .box .value {
    margin-bottom: 4px;
}
.about-con .about_wrapper .box .value span {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
.about-con .about_wrapper .box .text {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-text);
}
.about-con .about_content {
    padding-top: 62px;
}
.about-con .about_content h6{
    margin-bottom: 14px;
}
.about-con .about_content h2{
    margin-bottom: 40px;
}
.about-con .about_content .text{
    margin-bottom: 36px;
}
.about-con .about_content .propertise {
    margin-bottom: 25px;
}
.about-con .about_content ul{
    display: inline-block;
}
.about-con .about_content .list1{
    padding-right: 30px;
}
.about-con .about_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.about-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.about-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.about-con .about_content .primary_btn {
    padding: 20px 35px 22px;
}

/* Home Page Our Services Section Style */

.our_services_section{
    z-index: 1;
    position: relative;
    padding: 130px 10px 185px 405px;
    background-color: var(--e-global-color-very-light-gray);
}
.our_services_section::before{
    content: "";
    left: 0;
    top: 0;
    width: 30.5%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/our_services_left_image.jpg");
}
.our_services_section .image_box {
    padding: 50px 35px;
    border-radius: 20px;
    background-color: var(--e-global-color-accent);
}
.our_services_section .image_box h6 {
    margin-bottom: 18px;
    color: var(--e-global-color-secondary);
}
.our_services_section .image_box h2 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 16px;
}
.our_services_section .image_box p {
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.our_services_section .image_box .primary_btn {
    font-size: 14px;
    line-height: 14px;
    padding: 18px 30px 20px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.our_services_section .image_box .primary_btn i {
    color: var(--e-global-color-white);
}
.our_services_section .image_box .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.our_services_section .image_box .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}
.our_services_section .owl-stage-outer {
    padding-left: 2px;
}
.our_services_section .owl-stage {
    display: flex;
}
.our_services_section .owl-item{
    width: 100%;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.our_services_section .box .service-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.our_services_section .box:hover .service-icon {
    transform: translateY(-5px);
}
.our_services_section .box h3 {
    margin-bottom: 16px;
    padding-right: 70px;
}
.our_services_section .box p {
    margin-bottom: 32px;
}
.our_services_section .box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.our_services_section .box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.our_services_section .box:hover .read_more {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.our_services_section .box:hover .read_more i {
    color: var(--e-global-color-white);
}
.our_services_section .box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.our_services_section .box .read_more:hover i {
    color: var(--e-global-color-white);
}
.our_services_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 42px !important;
    line-height: 0;
    position: absolute;
    text-align: left;
}
.our_services_section .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.our_services_section .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.our_services_section .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.our_services_section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}
.our_services_section .owl-carousel .owl-item img {
    display: inline-block;
    width: auto !important;
}

/* Choose */

.choose-con {
    padding: 125px 0 280px;
    background-color: var(--e-global-color-lime-green);
}
.choose-con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 6%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/choose-backgroundimage.jpg);
}
.choose-con .choose_content h6 {
    margin-bottom: 16px;
    color: var(--e-global-color-accent);
}
.choose-con .choose_content h2 {
    margin-bottom: 0;
}
.choose-con .choose_content p {
    margin-bottom: 0;
    padding-left: 25px;
    border-left: 2px solid var(--e-global-color-accent);
}
.choose-con .lower_portion {
    padding: 60px 0;
}
.choose-con .choose-box {
    width: 100%;
    padding: 33px 50px;
    border-radius: 20px;
    background-color: var(--e-global-color-lime-green);
    box-shadow: 0 20px 50px rgb(49 83 71 / 3%);
    transition: all 0.8s ease-in-out;
}
.choose-con .choose-box:hover {
    transform: translateY(-5px);
} 
.choose-con .choose-box .number,
.choose-con .choose-box .plus {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    color: var(--e-global-color-accent);
}
.choose-con .choose-box .plus {
    top: 0;
    left: 0;
    position: relative;
}
.choose-con .choose-box .text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-white);
}

/* Video */

.video-con .image_wrapper {
    margin-top: -280px;
}
.video-con .image_wrapper .video-image {
    position: relative;
}
.video-con .image_wrapper .video-image img {
    width: 100%;
    border-radius: 30px;
}
.video-con .image_wrapper .icon {
    height: 113px;
    width: 113px;
    line-height: 113px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 60%);
}
.video-con .image_wrapper .icon:hover {
    transform: translateY(-5px);
}
.video-con .image_wrapper .icon .video-icon {
    height: 88px;
    width: 88px;
    line-height: 88px;
    top: 11px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    text-align: center;
    border-radius: 100%;
    transition: all 0.8s ease-in-out;
    background: var(--e-global-color-accent);
}

/* Pricing */

.pricing-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-white);
}
.pricing-con .pricing-sideimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.pricing-con .pricing-sideimage img {
    opacity: 10%;
}
.pricing-con .pricing_content h6{
    margin-bottom: 14px;
}
.pricing-con .pricing_content h2{
    margin-bottom: 35px;
}
.pricing-con .pricing_content p{
    margin-bottom: 52px;
}
.pricing-con .pricing-box {
    padding: 50px 60px 55px;
    border-radius: 20px;
    text-align: center;
    background-color: var(--e-global-color-white);
    box-shadow: 0 20px 50px rgb(49 83 71 / 10%);
    border: 1px solid var(--e-global-color-white);
    cursor: pointer;
    transition: all 0.8s ease-in-out;
}
.pricing-con .pricing-box:hover {
    border: 1px solid var(--e-global-color-lime-green);
}
.pricing-con .pricing-box .pricing-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.pricing-con .pricing-box:hover .pricing-icon {
    transform: translateY(-5px);
}
.pricing-con .pricing-box .content {
    padding-bottom: 28px;
    margin-bottom: 26px;
    border-bottom: 1px solid #e8f0f6;
}
.pricing-con .pricing-box h4 {
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}
.pricing-con .pricing-box .value {
    margin-bottom: 20px;
}
.pricing-con .pricing-box sup,
.pricing-con .pricing-box span {
    display: inline-block;
    color: var(--e-global-color-lime-green);
}
.pricing-con .pricing-box .dollar {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    top: -14px;
}
.pricing-con .pricing-box .number {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}
.pricing-con .pricing-box .month {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.pricing-con .pricing-box p {
    transition: all 0.3s ease-in-out;
}
.pricing-con .pricing-box ul {
    margin-bottom: 32px;
    text-align: left;
}
.pricing-con .pricing-box ul li {
    position: relative;
    margin-bottom: 6px;
}
.pricing-con .pricing-box ul li:last-child {
    margin-bottom: 0 !important;
}
.pricing-con .pricing-box ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.pricing-con .pricing-box ul li p {
    padding-left: 25px;
    color: var(--e-global-color-secondary);
}
.pricing-con .pricing-box .primary_btn {
    padding: 20px 34px 22px;
    display: inline-block;
}
.pricing-con .pricing-box:hover .primary_btn {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.pricing-con .pricing-box:hover .primary_btn i {
    color: var(--e-global-color-white);
}
.pricing-con .pricing-box .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
}

/* Project */

.project-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-very-light-gray);
}
.project-con .project_content h6{
    margin-bottom: 14px;
}
.project-con .project_content h2{
    margin-bottom: 35px;
}
.project-con .project_content p{
    margin-bottom: 52px;
}
.project-con .owl-stage-outer {
    padding-left: 2px;
}
.project-con .owl-stage {
    display: flex;
}
.project-con .project-box {
    cursor: pointer;
    position: relative;
    transition: all 0.8s ease-in-out;
}
.project-con .project-box .project-image img {
    border-radius: 20px;
}
.project-con .project-box .content {
    margin: 15px;
    width: 91%;
    padding: 20px 70px 20px 15px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    position: absolute;
    background-color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.project-con .project-box:hover .content {
    background-color: var(--e-global-color-lime-green);
}
.project-con .project-box .content h4 {
    margin-bottom: 4px;
    transition: all 0.8s ease-in-out;
}
.project-con .project-box .content p {
    transition: all 0.8s ease-in-out;
}
.project-con .project-box:hover .content h4,
.project-con .project-box:hover .content p {
    color: var(--e-global-color-white);
}
.project-con .project-box .content i {
    font-size: 16px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    top: 23%;
    right: 15px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.project-con .project-box .content i:hover {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.project-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.project-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.project-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.project-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.project-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.project-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Need */

.need-con {
    padding: 125px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/need-backgroundimage.jpg);
}
.need-con:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgb(0 0 0 / 50%), transparent);
}
.need-con .need_content h6 {
    margin-bottom: 16px;
    color: var(--e-global-color-accent);
}
.need-con .need_content h2 {
    margin-bottom: 36px;
}
.need-con .need_content .primary_btn {
    padding: 20px 34px 22px;
}

/* Testimonial */

.testimonial-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-white);
}
.testimonial-con .testimonial_content h6{
    margin-bottom: 14px;
}
.testimonial-con .testimonial_content h2{
    margin-bottom: 55px;
}
.testimonial-con .slider-box .owl-carousel .owl-stage-outer{
    overflow: inherit;
    overflow-x: clip !important;
}
.testimonial-con .slider-box .review-details-box figure{
    text-align: center;
    margin-bottom: 20px;
}
.testimonial-con .slider-box .review-details-box figure img{
    margin: 0 auto;
}
.testimonial-con .slider-box .review-details-box {
    width: 82.9%;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    text-align: center;
    padding: 60px 63px 55px;
    background: var(--e-global-color-white);
    box-shadow: 2px 2px 67px rgb(0 0 0 / 7%);
}
.testimonial-con .slider-box .owl-carousel .owl-item img{
    width: auto;
}
.testimonial-con .review-details-box figure {
    margin-bottom: 20px;
}
.testimonial-con .review-details-box p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 28px;
    font-weight: 400;
}
.testimonial-con #thumbs figure{
    width: 53px;
    height: 53px;
    margin: 0 4px;
    position: relative;
    border-radius: 100%;
    transition: .4s ease-in-out;
}
.testimonial-con #thumbs figure:after{
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 30%);
    border-radius: 50%;
}
.testimonial-con #thumbs .owl-item {
    width: auto !important;
}
.testimonial-con #thumbs .owl-item img{
    border-radius: 50%;
}
.testimonial-con #thumbs .owl-stage{
    text-align: center;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88% !important;
    transform: none !important;
}
.testimonial-con #big {
    position: relative;
    margin-bottom: 44px;
}
.testimonial-con .customer-status h5 {
    margin-bottom: 8px;
}
.testimonial-con .customer-status span {
    font-size: 14px;
    line-height: 14px;
}
.testimonial-con .customer-status {
    left: 51%;
    bottom: -174px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
}
.testimonial-con .slider-con .owl-nav button{
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.testimonial-con .slider-con .owl-next{
    right: 0;
}
.testimonial-con .slider-con .owl-prev{
    left: 0;
}
.testimonial-con #thumbs .owl-item.current  figure{
    opacity: 1;
    scale: 1.3;
    margin: 0 20px;
}
.testimonial-con #thumbs .owl-item.current  figure:after{
    display: none;
}
.testimonial-con .slider-box .review-details-box::after {
    width: 0;
    height: 0;
    left: 50%;
    content: "";
    bottom: -15px;
    position: absolute;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
}
.testimonial-con .slider-box .owl-theme .owl-nav {
    margin-top: 0;
}
.testimonial-con .slider-box .owl-theme .owl-nav button {
    top: 50%;
    margin: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    position: absolute;
    color: var(--e-global-color-white);
    transform: translateY(-50%);
    background: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.testimonial-con .slider-box .owl-theme .owl-nav button.owl-prev{
    left: 0;
}
.testimonial-con .slider-box .owl-theme .owl-nav button.owl-next{
    right: 0;
}
.testimonial-con .slider-box .owl-theme .owl-nav [class*=owl-]:hover{
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
}

/* Article */

.article-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-very-light-gray);
}
.article-con .article_content h6{
    margin-bottom: 14px;
}
.article-con .article_content h2{
    margin-bottom: 35px;
}
.article-con .article_content p{
    margin-bottom: 52px;
}
.article-con .owl-stage-outer {
    padding-left: 2px;
}
.article-con .owl-stage {
    display: flex;
}
.article-con .owl-item {
    border-radius: 20px;
    text-align: center;
    background-color: var(--e-global-color-white);
}
.article-con .article-box .image{
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background-color: var(--e-global-color-black);
    transition: all 0.3s ease-in-out;
}
.article-con .article-box .image img{
    width: 100% !important;
    transition: all 0.3s ease-in-out;
}
.article-con .article-box:hover .image img {
    opacity: 70%;
    transform: scale(1.1);
}
.article-con .article-box .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    padding: 16px;
    bottom: -45px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    background-color: var(--e-global-color-lime-green);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}
.article-con .article-box:hover .icon {
    transform: translateY(-5px);
}
.article-con .article-box .icon .number {
    font-size: 30px;
    line-height: 30px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    color: var(--e-global-color-white);
}
.article-con .article-box .icon .text {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    display: block;
    color: var(--e-global-color-white);
}
.article-con .lower_portion {
    padding: 60px 40px 32px;
}
.article-con .article-box h4 {
    margin-bottom: 16px;
}
.article-con .article-box p {
    margin-bottom: 12px;
}
.article-con .article-box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.article-con .article-box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.article-con .article-box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.article-con .article-box .read_more:hover i {
    color: var(--e-global-color-white);
}
.article-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.article-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.article-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.article-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.article-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Footer */

.footer-con .footer_lowerportion{
    background: var(--e-global-color-very-dark-cyan);
}
.footer-con .middle_portion .logo-content {
    padding: 80px 52px 75px;
    background: var(--e-global-color-accent);
}
.footer-con .middle_portion .logo-content .footer-logo {
    margin-bottom: 30px;
}
.footer-con .middle_portion .logo-content .footer-logo img{
    width: 170px;
}
.footer-con .middle_portion .logo-content .text{
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
}
.footer-con .middle_portion .logo-content i{
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
    color: var(--e-global-color-black);
}
.footer-con .middle_portion .logo-content a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500px;
    margin-left: 0 !important;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.footer-con .middle_portion .logo-content a:hover {
    color: var(--e-global-color-lime-green);
}
.footer-con .middle_portion .links {
    padding: 74px 0;
}
.footer-con .middle_portion h4{
    margin-bottom: 20px;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion li{
    margin-bottom: 8px;
}
.footer-con .middle_portion li:last-child{
    margin-bottom: 0 !important;
}
.footer-con .middle_portion li i{
    font-size: 10px;
    line-height: 10px;
    top: -2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion li a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-left: 13px;
    text-decoration: none;
    color: var(--e-global-color-white);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li a:hover{
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion .icon {
    padding: 74px 0 74px 30px;
}
.footer-con .middle_portion .icon h4{
    margin-bottom: 24px;
}
.footer-con .middle_portion form {
    margin-bottom: 25px;
}
.footer-con .middle_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 18px 55px 18px 24px;
    width: 100%;
    position: relative;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    border-radius: 30px;
    overflow: visible;
    outline: none;
}
.footer-con .middle_portion input:focus {
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .middle_portion button {
    font-size: 16px;
    width: 48px;
    height: 48px;
    top: 4px;
    right: 4px;
    border: none;
    float: right;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border-radius: 100%;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.footer-con .middle_portion button:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.footer-con .middle_portion .social-icons li{
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons a{
    margin-left: 0 !important;
}
.footer-con .middle_portion .social-icons i{
    font-size: 14px;
    height: 46px;
    width: 46px;
    line-height: 44px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .middle_portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-con .middle_portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-con .copyright p{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-cyan);
}

/* Sub banner */

.sub_banner .sub_banner_con {
    padding: 145px 0 155px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/subbanner-backgroundimage.jpg);
}
.sub_banner .sub_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}
.sub_banner .sub_banner_con h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 800;
    margin-bottom: 26px;
}
.sub_banner .sub_banner_con p {
    margin-bottom: 38px;
}
.sub_banner .sub_banner_con .box {
    padding: 10px 35px 14px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 45%);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}
.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    top: -1px;
    margin: 0 15px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
}
.sub_banner .sub_banner_con .box .box_span {
    color: var(--e-global-color-accent);
}

/* Contact Page */

/* Contact info */

.contactinfo-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-very-light-gray);
}
.contactinfo-con .contact_content h6{
    margin-bottom: 14px;
}
.contactinfo-con .contact_content h2{
    margin-bottom: 35px;
}
.contactinfo-con .contact_content p{
    margin-bottom: 52px;
}
.contactinfo-con .contact-box {
    width: 100%;
    padding: 46px 50px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 20px 50px rgb(49 83 71 / 10%);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box:hover {
    border: 1px solid var(--e-global-color-lime-green);
}
.contactinfo-con .contact-box .contact-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box:hover .contact-icon {
    transform: translateY(-5px);
}
.contactinfo-con .contact-box h3 {
    margin-bottom: 10px;
}
.contactinfo-con .contact-box a {
    display: inline-block;
    color: var(--e-global-color-text);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-lime-green);
}

/* Contact Form */

.contactform-con {
    background-color: var(--e-global-color-lime-green);
}
.contactform-con::before {
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/contact-rightbackground.jpg);
}
.contactform-con .contact-sideimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.contactform-con .contact-sideimage img {
    opacity: 5%;
}
.contactform-con .contact_content{
    padding: 118px 45px 125px 0;
    position: relative;
    z-index: 1;
}
.contactform-con .contact_content h6{
    margin-bottom: 15px;
    color: var(--e-global-color-accent);
}
.contactform-con .contact_content h2{
    margin-bottom: 40px;
}
.contactform-con .contact_content .form-group{
    margin-bottom: 22px;
}
.contactform-con .contact_content .input1 {
    float: left;
    margin-right: 18px;
}
.contactform-con .contact_content input,
.contactform-con .contact_content textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 51px;
    width: 238px;
    padding: 10px 10px 12px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.contactform-con .contact_content textarea {
    height: 117px;
    width: 100% !important;
    padding: 16px 22px;
    border-radius: 20px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contactform-con .contact_content .message {
    margin-bottom: 24px;
}
.contactform-con .contact_content input:focus,
.contactform-con .contact_content textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-accent);
}
.contactform-con .contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 20px 35px 22px;
    width: 100%;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.contactform-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.contactform-con .contact_content .submit_now:hover {
    background-color: var(--e-global-color-white);
}
.contactform-con .contact_content input::placeholder,
.contactform-con .contact_content textarea::placeholder{
    color: var(--e-global-color-text);
}
.contactform-con .contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red);
}
.contactform-con .contact_wrapper {
    display: none;
}

/* Map */

.map-con iframe {
    width: 100%;
    height: 684px;
    margin-bottom: -8px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}

/* Project Page */

/* Project */

.projectpage-con {
    padding-bottom: 100px;
}
.projectpage-con .project-box {
    margin-bottom: 40px;
}

/* Work */

.work-con {
    padding: 125px 0;
    background-color: var(--e-global-color-white);
}
.work-con .work_content h6{
    margin-bottom: 14px;
}
.work-con .work_content h2{
    margin-bottom: 35px;
}
.work-con .work_content p{
    margin-bottom: 52px;
}
.work-con .work-box {
    text-align: center;
}
.work-con .work-box .image {
    position: relative;
}
.work-con .work-box .work-icon {
    width: 130px;
    height: 130px;
    line-height: 125px;
    margin-bottom: 45px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.work-con .work-box .work-icon::before {
    content: "";
    width: 200px;
    height: 1px;
    left: 110px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    border: 1px dashed var(--e-global-color-lime-green);
}
.work-con .box4 .work-icon::before {
    display: none;
}
.work-con .work-box span {
    font-size: 16px;
    font-weight: 700;
    bottom: 30px;
    width: 39px;
    height: 39px;
    line-height: 39px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.work-con .work-box:hover span {
    transform: translateY(-5px);
}
.work-con .work-box h3 {
    margin-bottom: 12px;
}

/* Project Form */

.projectform-con {
    padding: 130px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/projectform-backgroundimage.jpg);
}
.projectform-con .project_content {
    width: 503px;
    padding: 58px 37px 60px;
    border-radius: 30px;
    text-align: center;
    background-color: var(--e-global-color-white);
}
.projectform-con .project_content h6{
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
}
.projectform-con .project_content h2{
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 36px;
}
.projectform-con .project_content .form-group{
    text-align: left;
    margin-bottom: 22px;
}
.projectform-con .project_content .input1 {
    float: left;
    margin-right: 18px;
}
.projectform-con .project_content input,
.projectform-con .project_content select {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    width: 100%;
    padding: 10px 10px 12px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-border);
    border-radius: 35px;
    box-shadow: none;
    overflow: visible;
    outline: none;
}
.projectform-con .project_content .small-input {
    width: 205px;
}
.projectform-con .project_content select {
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 90.3% 23px !important;
    background-image: url(../images/dropdown-arrow.png) !important;
}
.projectform-con .project_content select option{
    color: var(--e-global-color-text);
}
.projectform-con .project_content input:focus,
.projectform-con .project_content select:focus {
    box-shadow: none;
    border: 1px solid var(--e-global-color-accent);
}
.projectform-con .project_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 20px 35px 22px;
    width: 100%;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.projectform-con .project_content .submit_now i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.projectform-con .project_content .submit_now:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.projectform-con .project_content .submit_now:hover i {
    color: var(--e-global-color-white);
}
.projectform-con .project_content input::placeholder,
.projectform-con .project_content select::placeholder{
    color: var(--e-global-color-text);
}
.projectform-con .project_content form span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    margin-top: 4px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red);
}

/* Faq */

.faq-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-very-light-gray);
}
.faq-con .faq_content h6{
    margin-bottom: 14px;
}
.faq-con .faq_content h2{
    margin-bottom: 35px;
}
.faq-con .faq_content p{
    margin-bottom: 52px;
}
.faq-con h5 {
    margin-bottom: 0;
}
.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 58px rgb(0 0 0 / 3%);
}
.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}
.faq-con .accordion-card .btn-link h5 {
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed h5 {
    color: var(--e-global-color-secondary);
}
.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-accent);
}
.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}
.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-con .accordian-inner .card-header a {
    padding: 20px 45px 22px 26px;
}
.faq-con .accordian-inner .card-body {
    padding: 0 26px 20px;
}
.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}
.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-con .accordion-card .btn-link:before {
    content: "\f063";
    font-size: 15px;
    top: 23px;
    right: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-secondary);
}

/* Team Page */

/* Team */

.team-con {
    padding: 125px 0 70px;
    background-color: var(--e-global-color-white);
}
.team-con .team_content h6{
    margin-bottom: 14px;
}
.team-con .team_content h2{
    margin-bottom: 35px;
}
.team-con .team_content p{
    margin-bottom: 52px;
}
.team-con .team-box {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box figure {
    margin: 0 auto 26px;
    overflow: hidden;
}
.team-con .team-box figure img {
    border-radius: 20px;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box h4 {
    margin-bottom: 8px;
}
.team-con .team-box span {
    display: block;
    margin-bottom: 22px;
}
.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box i {
    font-size: 14px;
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.team-con .team-box li:hover {
    transform: translateY(-5px);
}
.team-con .team-box li:first-child {
    margin-left: 0;
}
.team-con .team-box li:last-child {
    margin-right: 0;
}
.team-con .team-box:hover i {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}

/* About */

.teamabout-con {
    padding: 130px 0 154px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/teamabout-backgroundimage.jpg);
}
.teamabout-con .about_wrapper .about-image {
    position: absolute;
    left: 0;
    top: 0;
}
.teamabout-con .about_wrapper .about-image img {
    border-radius: 30px;
}
.teamabout-con .about_wrapper .icon {
    height: 105px;
    width: 105px;
    line-height: 105px;
    top: 210px;
    right: 40px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.teamabout-con .about_wrapper .icon:hover {
    transform: translateY(-5px);
}
.teamabout-con .about_content{ 
    padding-top: 64px;
    margin-right: -50px;
}
.teamabout-con .about_content h6{
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.teamabout-con .about_content h2{
    margin-bottom: 40px;
}
.teamabout-con .about_content .text{
    margin-bottom: 36px;
}
.teamabout-con .about_content .propertise {
    margin-bottom: 25px;
}
.teamabout-con .about_content ul{
    display: inline-block;
}
.teamabout-con .about_content .list1{
    padding-right: 30px;
}
.teamabout-con .about_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.teamabout-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.teamabout-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-white);
}
.teamabout-con .about_content .primary_btn {
    padding: 20px 35px 22px;
}
.teamabout-con .about_content .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.teamabout-con .about_content .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}

/* Testimonial */

.teamtestimonial-con {
    padding-top: 195px;
}

/* Service Detail Page */

.sub_banner .service_detail_banner {background-image: url(../images/servicedetail-subbannerimage.jpg);}

/* Service Detail */

.servicedetail-con {
    padding: 130px 0 95px;
    background-color: var(--e-global-color-white);
}
.servicedetail-con .servicedetail-sideimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.servicedetail-con .servicedetail-sideimage img {
    opacity: 10%;
    width: 390px;
}
.servicedetail-con .servicedetail_wrapper .servicedetail-image {
    position: absolute;
    left: 0;
    top: 0;
}
.servicedetail-con .servicedetail_wrapper .servicedetail-image img {
    border-radius: 30px;
}
.servicedetail-con .servicedetail_wrapper .servicedetail-icon {
    position: absolute;
    left: -60px;
    top: 72px;
    width: 123px;
    height: 123px;
    line-height: 123px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.servicedetail-con .upper_portion {
    margin-bottom: 36px;
}
.servicedetail-con .content{ 
    padding-left: 40px;
}
.servicedetail-con .servicedetail_content h2{
    margin-bottom: 40px;
}
.servicedetail-con .servicedetail_content p{
    line-height: 28px;
    font-weight: 500;
}
.servicedetail-con .servicedetail_content .text1{
    margin-bottom: 16px;
}
.servicedetail-con .servicedetail_content .text2{
    margin-bottom: 22px;
}
.servicedetail-con .servicedetail_content ul{
    display: inline-block;
}
.servicedetail-con .servicedetail_content ul li {
    position: relative;
    margin-bottom: 5px;
}
.servicedetail-con .servicedetail_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 8px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.servicedetail-con .servicedetail_content ul li p {
    font-weight: 600;
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}

/* Service Detail Need */

.servicedetailneed-con {
    background-image: url(../images/servicedetailneed-backgroundimage.jpg);
}
.servicedetailneed-con:before {
    background-image: linear-gradient(to right, rgb(0 0 0 / 60%), transparent);
}

/* Service */

.service-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-very-light-gray);
}
.service-con .service_content h6{
    margin-bottom: 14px;
}
.service-con .service_content h2{
    margin-bottom: 35px;
}
.service-con .service_content p{
    margin-bottom: 52px;
}
.service-con .owl-stage-outer {
    padding-left: 2px;
}
.service-con .owl-stage {
    display: flex;
}
.service-con .owl-item{
    width: 100%;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.service-con .owl-item:hover{
    border: 1px solid var(--e-global-color-lime-green);
}
.service-con .service-box .service-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box:hover .service-icon {
    transform: translateY(-5px);
}
.service-con .service-box h3 {
    margin-bottom: 16px;
    padding-right: 70px;
}
.service-con .service-box p {
    margin-bottom: 32px;
}
.service-con .service-box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box:hover .read_more {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.service-con .service-box:hover .read_more i {
    color: var(--e-global-color-white);
}
.service-con .service-box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.service-con .service-box .read_more:hover i {
    color: var(--e-global-color-white);
}
.service-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.service-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.service-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.service-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.service-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}
.service-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto !important;
}

/* Service Page */

.servicepage-con {
    padding-bottom: 110px;
}
.servicepage-con .service-box{
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}
.servicepage-con .service-box:hover{
    border: 1px solid var(--e-global-color-lime-green);
}

/* About */

.serviceabout-con {
    padding: 130px 0;
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con::before {
    content: "";
    width: 52%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/serviceabout-leftbackground.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.serviceabout-con .serviceabout-sideimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.serviceabout-con .serviceabout-sideimage img {
    opacity: 10%;
}
.serviceabout-con .about_content{
    z-index: 1;
}
.serviceabout-con .content {
    position: relative;
    padding: 84px 68px 90px;
    border-radius: 20px;
    background-color: var(--e-global-color-accent);
}
.serviceabout-con .about_content h6{
    margin-bottom: 18px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content h2{
    margin-bottom: 36px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .text{
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .propertise {
    margin-bottom: 25px;
}
.serviceabout-con .about_content ul{
    display: inline-block;
}
.serviceabout-con .about_content .list1{
    padding-right: 15px;
}
.serviceabout-con .about_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.serviceabout-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .primary_btn {
    padding: 20px 36px 22px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con .about_content .primary_btn i {
    color: var(--e-global-color-white);
}
.serviceabout-con .about_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .primary_btn:hover i {
    color: var(--e-global-color-white);
}
.serviceabout-con .about_wrapper{
    display: none;
}

/* Service Need */

.serviceneed-con {
    padding: 165px 0 170px;
    background-image: url(../images/serviceneed-backgroundimage.jpg);
}
.serviceneed-con:before {
    background-image: linear-gradient(to right, rgb(0 0 0 / 60%), rgb(0 0 0 / 60%));
}
.serviceneed-con .need_content h2 {
    margin-bottom: 56px;
}
.serviceneed-con .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
}
.serviceneed-con .phone-number .number {
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 15px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.serviceneed-con .phone-number .number:hover {
    color: var(--e-global-color-accent);
}

/* About Page */

/* About */

.aboutpage-con {
    padding-bottom: 140px;
}
.aboutpage-con .about_wrapper .aboutpage-image1 {
    position: absolute;
    top: 0;
    left: 0;
}
.aboutpage-con .about_wrapper .aboutpage-image1 img {
    border-radius: 30px;
}
.aboutpage-con .about_wrapper .aboutpage-image2 {
    position: relative;
    top: 0;
    right: -330px;
    display: inline-block;
}
.aboutpage-con .about_wrapper .aboutpage-image2 img {
    border-radius: 30px;
}
.aboutpage-con .about_wrapper .box {
    left: 0;
    bottom: 0;
    width: 303px;
    padding: 30px 45px;
    text-align: left;
    display: flex;
    align-items: center;
    background-color: var(--e-global-color-lime-green);
}
.aboutpage-con .about_wrapper .box .icon{
    margin: 0;
}
.aboutpage-con .about_wrapper .box .text_content {
    padding-left: 20px;
}
.aboutpage-con .about_wrapper .box .value {
    margin-bottom: 3px;
}
.aboutpage-con .about_wrapper .box .value span {
    color: var(--e-global-color-accent);
}
.aboutpage-con .about_wrapper .box .text {
    color: var(--e-global-color-white);
}
.aboutpage-con .about_content {
    padding-top: 0;
    padding-left: 30px;
}

/* Choose */

.aboutchoose-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-very-light-gray);
}
.aboutchoose-con .choose_content h6{
    margin-bottom: 14px;
}
.aboutchoose-con .choose_content h2{
    margin-bottom: 35px;
}
.aboutchoose-con .choose_content p{
    margin-bottom: 104px;
}
.aboutchoose-con .choose-box {
    width: 100%;
    padding: 62px 50px 33px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    background-color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.aboutchoose-con .choose-box .choose-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    left: 0;
    right: 0;
    top: -52px;
    margin: 0 auto;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.aboutchoose-con .choose-box:hover .choose-icon {
    transform: translateY(-5px);
}
.aboutchoose-con .choose-box .number,
.aboutchoose-con .choose-box .plus {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
    color: var(--e-global-color-secondary);
}
.aboutchoose-con .choose-box .plus {
    top: 0;
    left: 0;
    position: relative;
}
.aboutchoose-con .choose-box .text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-text);
}

/* Team */

.aboutteam-con {
    background-color: var(--e-global-color-very-light-gray);
}

/* Space */

.space-con {
    background-color: var(--e-global-color-lime-green);
}
.space-con::before {
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/space-rightbackground.jpg);
}
.space-con .space-sideimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.space-con .space-sideimage img {
    opacity: 5%;
}
.space-con .space_content{
    padding: 118px 45px 125px 0;
    position: relative;
    z-index: 1;
}
.space-con .space_content h6{
    margin-bottom: 15px;
    color: var(--e-global-color-accent);
}
.space-con .space_content h2{
    margin-bottom: 40px;
}
.space-con .space_content .text{
    margin-bottom: 25px;
}
.space-con .space_content ul{
    margin-bottom: 40px;
    display: inline-block;
}
.space-con .space_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.space-con .space_content ul li:last-child {
    margin-bottom: 0;
}
.space-con .space_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.space-con .space_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-white);
}
.space-con .space_content .box {
    padding: 40px 35px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: var(--e-global-color-accent);
}
.space-con .space_content .box h3{
    font-size: 24px;
    line-height: 36px;
    font-weight: 800;
    padding-left: 85px;
    color: var(--e-global-color-secondary);
}
.space-con .space_content .box .space-icon{
    position: absolute;
}
.space-con .space_wrapper {
    display: none;
}

/* Home 2 */

/* Banner */

.banner2-con {
    padding: 250px 0 340px;
    background-color: var(--e-global-color-secondary);
}
.banner2-con::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 48%;
    left: 0;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner2-backgroundimage.jpg);
}
.banner2-con::after {
    content: "";
    width: 100%;
    height: 216px;
    left: 0;
    bottom: -75px;
    position: absolute;
    background-position: bottom;
    background-image: url(../images/banner2-backgroundbottom.png);
}
.banner2-con .banner-starimage {
    position: absolute;
    right: -305px;
    bottom: -182px;
}
.banner2-con .banner-circleimage {
    position: absolute;
    left: -50px;
    bottom: -200px;
}
.banner2-con .banner_content {
    z-index: 1;
    position: relative;
}
.banner2-con .banner_content h6{
    font-size: 20px;
    line-height: 20px;
    padding: 0 55px;
    width: 34%;
    margin: 0 auto 28px;
    position: relative;
    letter-spacing: 0;
    color: var(--e-global-color-white);
}
.banner2-con .banner_content h6::before,
.banner2-con .banner_content h6::after {
    content: "";
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 35px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner2-con .banner_content h6::before {
    left: 0;
}
.banner2-con .banner_content h6::after {
    right: 0;
}
.banner2-con .banner_content h1{
    font-size: 90px;
    line-height: 94px;
    margin-bottom: 40px;
}
.banner2-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner2-con .banner_content .primary_btn i{
    color: var(--e-global-color-secondary);
}
.banner2-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner2-con .banner_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}
.banner2-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner2-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner2-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner2-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner2-con .owl-carousel .owl-nav{    
    margin-top: 0 !important;
    position: absolute;
    top: 158px;
}
.banner2-con .owl-carousel .owl-prev span,
.banner2-con .owl-carousel .owl-next span {
    font-size: 18px;
    width: 67px;
    height: 67px;
    line-height: 67px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: rgb(0 0 0 / 30%);
    transition: all 0.3s ease-in-out;
}
.banner2-con .owl-carousel .owl-prev{
    position: absolute;
    left: -324px;
}
.banner2-con .owl-carousel .owl-next{
    position: absolute;
    right: -1446px;
}
.banner2-con .owl-carousel .owl-prev:focus,
.banner2-con .owl-carousel .owl-prev:focus-visible,
.banner2-con .owl-carousel .owl-next:focus,
.banner2-con .owl-carousel .owl-next:focus-visible,
.banner2-con .owl-carousel .owl-prev:hover,
.banner2-con .owl-carousel .owl-next:hover{
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent !important;
}
.banner2-con .owl-carousel .owl-prev span:hover,
.banner2-con .owl-carousel .owl-next span:hover{
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
}
.banner2-con .owl-carousel .owl-dots {
    display: none !important;
    margin-top: 48px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.banner2-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.banner2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.banner2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.banner2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Service */

.service2-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-white);
}
.service2-con .service_content h6{
    margin-bottom: 14px;
}
.service2-con .service_content h2{
    margin-bottom: 35px;
}
.service2-con .service_content p{
    margin-bottom: 52px;
}
.service2-con .owl-stage-outer {
    padding-left: 2px;
}
.service2-con .owl-stage {
    display: flex;
}
.service2-con .service-box .service-image img {
    width: 100% !important;
    border-radius: 20px;
}
.service2-con .service-box .content{
    width: 275px;
    margin: -124px auto 0;
    padding: 62px 28px 32px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    box-shadow: 0 20px 50px rgb(49 83 71 / 10%)inset;
    transition: all 0.8s ease-in-out;
}
.service2-con .service-box:hover .content{
    border: 1px solid var(--e-global-color-lime-green);
}
.service2-con .service-box .service-icon {
    width: 88px;
    height: 88px;
    line-height: 80px;
    top: -46px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.service2-con .service-box:hover .service-icon {
    transform: translateY(-5px);
}
.service2-con .service-box h3 {
    margin-bottom: 10px;
}
.service2-con .service-box p {
    margin-bottom: 22px;
}
.service2-con .service-box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.service2-con .service-box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.service2-con .service-box:hover .read_more {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.service2-con .service-box:hover .read_more i {
    color: var(--e-global-color-white);
}
.service2-con .service-box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.service2-con .service-box .read_more:hover i {
    color: var(--e-global-color-white);
}
.service2-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.service2-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 48px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.service2-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.service2-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.service2-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.service2-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Project */

.project2-con {
    padding: 125px 0 130px;
    background-color: var(--e-global-color-white);
}
.project2-con .project_content h6{
    margin-bottom: 14px;
}
.project2-con .project_content h2{
    margin-bottom: 35px;
}
.project2-con .project_content p{
    margin-bottom: 52px;
}
.project2-con .project-box {
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box {
    cursor: pointer;
    position: relative;
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box .project-image img {
    border-radius: 20px;
}
.project2-con .project-box .content {
    margin: 20px 25px;
    width: 91%;
    padding: 20px 80px 20px 28px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    position: absolute;
    background-color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box:hover .content {
    background-color: var(--e-global-color-lime-green);
}
.project2-con .project-box .content p {
    margin-bottom: 4px;
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box .content h4 {
    margin-bottom: 4px;
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box:hover .content h4,
.project2-con .project-box:hover .content p {
    color: var(--e-global-color-white);
}
.project2-con .project-box .content i {
    font-size: 16px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    top: 22%;
    right: 22px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.project2-con .project-box .content i:hover {
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.project2-con .primary_btn {
    margin-top: 28px;
    padding: 20px 44px 22px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.project2-con .primary_btn i {
    margin-left: 25px;
    color: var(--e-global-color-white);
}
.project2-con .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.project2-con .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}

/* Contact */

.contact2-con .contact_wrapper .contact-image {
    right: -120px;
    left: unset !important;
    text-align: right;
}
.contact2-con .contact_wrapper .contact-image::before {
    display: none !important;
}
.contact2-con .contact_wrapper .contact-bgimage {
    position: absolute;
    right: -80px;
    top: 120px;
}
.contact2-con .contact_wrapper .contact-bgimage img {
    opacity: 20%;
}
.contact2-con .contact_content {
    padding: 124px 30px 130px 0 !important;
}

/* Home 3 */

.home3_banner_outer {
    background-color: var(--e-global-color-very-light-gray);
}
.home3_banner_outer::before {
    content: "";
    width: 43%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/banner3-rightbackground.jpg);
}
.header3 .phone-number .header-phone {
    background-color: #274239;
}
.header3 .phone-number .number {
    color: var(--e-global-color-white);
}
.header3 .phone-number:hover .number {
    color: var(--e-global-color-accent);
}

/* Banner */

.banner3-con {
    padding: 0;
    overflow: hidden;
}
.banner3-con .banner_wrapper .banner-image {
    position: absolute;
    right: -75px;
    bottom: 0;
    z-index: 1;
}
.banner3-con .banner_wrapper .banner-image::before {
    content: "";
    width: 534px;
    height: 534px;
    top: 52px;
    left: 0;
    right: 160px;
    margin: 0 auto;
    position: absolute;
    border-radius: 100%;
    background-color: var(--e-global-color-white);
    z-index: -1;
}
.banner3-con .banner_wrapper .banner-starimage {
    position: absolute;
    right: -95px;
    top: 288px;
}
.banner3-con .banner_content {
    padding: 205px 100px 225px 0;
}
.banner3-con .banner_content h1{
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.banner3-con .banner_content h1 span{
    color: var(--e-global-color-lime-green) !important;
}
.banner3-con .banner_content .text1{
    line-height: 30px;
    margin-bottom: 38px;
    padding-right: 175px;
}
.banner3-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
}
.banner3-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    border: 1px solid var(--e-global-color-lime-green);
}
.banner3-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner3-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner3-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}

/* Partner */

.partner-con {
    padding: 45px 0;
    background-color: var(--e-global-color-very-dark-cyan);
}
.partner-con ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.partner-con ul li:first-child {
    margin-left: 0;
}
.partner-con ul li:last-child {
    margin-right: 0;
}
.partner-con ul li img {
    transition: all 0.8s ease-in-out;
}
.partner-con ul li:hover img {
    transform: translateY(-5px);
}

/* Service */

.service3-con {
    padding: 125px 0 95px;
    background-color: var(--e-global-color-white);
}
.service3-con .top_portion {
    padding-bottom: 60px;
}
.service3-con .service_content h6 {
    margin-bottom: 16px;
    color: var(--e-global-color-lime-green);
}
.service3-con .service_content h2 {
    margin-bottom: 0;
}
.service3-con .service_content p {
    margin-bottom: 0;
}
.service3-con .service_wrapper .service-image {
    position: relative;
    left: 0;
    top: 0;
}
.service3-con .service_wrapper .service-image img {
    border-radius: 30px;
}
.service3-con .service_wrapper .service-image::before {
    content: "";
    width: 261px;
    height: 261px;
    left: -82px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    z-index: -1;
}
.service3-con .service-box{
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    box-shadow: 0 20px 50px rgb(49 83 71 / 10%);
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}
.service3-con .service-box:hover{
    border: 1px solid var(--e-global-color-lime-green);
}
.service3-con .service-box .service-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.service3-con .service-box:hover .service-icon {
    transform: translateY(-5px);
}
.service3-con .service-box h3 {
    margin-bottom: 16px;
    padding-right: 30px;
}
.service3-con .service-box p {
    margin-bottom: 32px;
}
.service3-con .service-box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.service3-con .service-box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.service3-con .service-box:hover .read_more {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.service3-con .service-box:hover .read_more i {
    color: var(--e-global-color-white);
}
.service3-con .service-box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.service3-con .service-box .read_more:hover i {
    color: var(--e-global-color-white);
}

/* Work */

.work3-con {
    background-color: var(--e-global-color-very-light-gray);
}

/* Project */

.project3-con {
    padding: 125px 0 130px;
    background-color: var(--e-global-color-white);
}
.project3-con .project_content h6{
    margin-bottom: 14px;
}
.project3-con .project_content h2{
    margin-bottom: 35px;
}
.project3-con .project_content p{
    margin-bottom: 52px;
}
.project3-con .project-box {
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: all 0.8s ease-in-out;
}
.project3-con .project-box .image {
    margin-bottom: 0;
}
.project3-con .project-box figure {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.project3-con .project-box figure img {
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.project3-con .project-box:hover figure img {
    opacity: 40%;
}
.project3-con .project-box figure::before {
    content: "";
    left: 15px;
    top: 15px;
    width: 320px;
    height: 350px;
    border-radius: 20px;
    position: absolute;
    border: 1px solid var(--e-global-color-white);
    display: none;
}
.project3-con .project-box:hover figure::before  {
    display: block;
}
.project3-con .project-box .content {
    padding: 20px 30px;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    transition: all 0.8s ease-in-out;
    display: none;
}
.project3-con .project-box:hover .content {
    display: block;
}
.project3-con .project-box .content h4 {
    margin-bottom: 4px;
    transition: all 0.8s ease-in-out;
}
.project3-con .project-box .content p {
    transition: all 0.8s ease-in-out;
}
.project3-con .project-box .content h4,
.project3-con .project-box .content p {
    color: var(--e-global-color-white);
}
.project3-con .project-box .content i{
    font-size: 25px;
    height: 81px;
    width: 81px;
    line-height: 81px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 140px;
    margin: 0 auto;
    display: none;
}
.project3-con .project-box:hover i{
    display: block;
}
.project3-con .primary_btn {
    margin-top: 28px;
    padding: 20px 44px 22px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.project3-con .primary_btn i {
    margin-left: 25px;
    color: var(--e-global-color-white);
}
.project3-con .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.project3-con .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}

/* Choose */

.choose3-con {
    padding: 125px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/choose3-backgroundimage.jpg);
}
.choose3-con:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 60%;
    background-color: var(--e-global-color-secondary);
}
.choose3-con .choose_content h6 {
    margin-bottom: 16px;
    color: var(--e-global-color-accent);
}
.choose3-con .choose_content h2 {
    margin-bottom: 36px;
}
.choose3-con .choose_content .primary_btn {
    padding: 20px 34px 22px;
}
.choose3-con .choose_wrapper {
    text-align: right;
}
.choose3-con .choose_wrapper ul li {
    padding-right: 60px;
    display: inline-block;
    text-align: left;
}
.choose3-con .choose_wrapper ul li:last-child {
    padding-right: 0;
}
.choose3-con .choose_wrapper .number,
.choose3-con .choose_wrapper .plus {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.choose3-con .choose_wrapper .plus {
    top: 0;
    left: 0;
    position: relative;
}
.choose3-con .choose_wrapper .text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: var(--e-global-color-white);
}

/* Testimonial */

.testimonial3-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-white);
}
.testimonial3-con .testimonial_content h6{
    margin-bottom: 14px;
}
.testimonial3-con .testimonial_content h2 {
    margin-bottom: 52px;
}
.testimonial3-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial3-con .owl-stage {
    display: flex;
}
.testimonial3-con .owl-item {
    padding: 48px 40px 40px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-top: 2px solid var(--e-global-color-white);
    box-shadow: 0 2px 50px rgb(49 83 71 / 5%)inset;
    transition: all 0.8s ease-in-out;
}
.testimonial3-con .owl-item:hover {
    border-top: 2px solid var(--e-global-color-lime-green);
}
.testimonial3-con .testimonial-box ul {
    margin-bottom: 14px;
}
.testimonial3-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial3-con .testimonial-box ul li i {
    font-size: 13px;
    color: var(--e-global-color-star-yellow);
}
.testimonial3-con .testimonial-box .text {
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.testimonial3-con .testimonial-box .info {
    display: flex;
    align-items: center;
}
.testimonial3-con .testimonial-box .user-img {
    float: left;
    margin-right: 17px;
    margin-top: -2px;
}
.testimonial3-con .testimonial-box .user-img img{
    border-radius: 100%;
}
.testimonial3-con .testimonial-box .designation-outer {
    padding-top: 2px;
    display: inline-block;
}
.testimonial3-con .testimonial-box .name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    color: var(--e-global-color-secondary);
}
.testimonial3-con .testimonial-box .position {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.testimonial3-con .testimonial-box .quote-img {
    top: 7px;
    right: -5px;
}
.testimonial3-con .testimonial-box .quote-img img {
    opacity: 30%;
}
.testimonial3-con .owl-carousel .owl-item img {
    width: auto !important;
}
.testimonial3-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.testimonial3-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Home 4 */

/* Banner */

.banner4-con {
    background-color: var(--e-global-color-lime-green);
}
.banner4-con::before,
.banner4-con::after {
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.banner4-con::before {
    left: 0;
    background-image: url(../images/banner4-leftbackground.jpg);
}
.banner4-con::after {
    right: 0;
    background-image: url(../images/banner4-rightbackground.jpg);
}
.banner4-con .icons {
    position: absolute;
    left: -152px;
    top: 42%;
    z-index: 2;
}
.banner4-con .icons li {
    margin: 18px 0;
    transition: all 0.3s ease-in-out;
}
.banner4-con .icons li:first-child {
    margin-top: 0;
}
.banner4-con .icons li:last-child {
    margin-bottom: 0;
}
.banner4-con .icons li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.banner4-con .icons li a:hover i {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content {
    z-index: 1;
    position: relative;
    padding: 257px 105px 250px 0;
}
.banner4-con .banner_content h6{
    font-size: 20px;
    line-height: 20px;
    padding-left: 55px;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: 0;
    color: var(--e-global-color-white);
}
.banner4-con .banner_content h6::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 35px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner4-con .banner_content h1{
    font-size: 76px;
    line-height: 80px;
    margin-bottom: 30px;
}
.banner4-con .banner_content h1 span{
    color: var(--e-global-color-accent) !important;
}
.banner4-con .banner_content .text1{
    line-height: 30px;
    margin-bottom: 38px;
    padding-right: 100px;
}
.banner4-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content .primary_btn i{
    color: var(--e-global-color-secondary);
}
.banner4-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner4-con .banner_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner4-con .banner_content .icons {
    display: none;
}

/* Pricing */

.pricing4-con {
    padding-top: 195px;
}
.pricing4-con .pricing-box {
    text-align: left;
}

/* Testimonial */

.testimonial4-con {
    background-color: var(--e-global-color-very-light-gray);
}

/* Article */

.article4-con {
    padding-bottom: 140px;
    background-color: var(--e-global-color-white);
}
.article4-con .article-box {
    transition: all 0.3s ease-in-out;
}
.article4-con .article-box .box-content .span_wrapper {
    margin-bottom: 12px;
}
.article4-con .article-box .box-content .span_wrapper span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    color: var(--e-global-color-lime-green);
}
.article4-con .article-box .box-content .span_wrapper .dash {
    padding-left: 4px;
}
.article4-con .article-box .box-content h4 {
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}
.article4-con .article-box h4:hover {
    color: var(--e-global-color-lime-green);
}
.article4-con .article-box .box-content p {
    line-height: 24px;
    color: var(--e-global-color-text);
}
.article4-con .article-box figure {
    margin-bottom: 24px;
}
.article4-con .article-box figure img {
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

/* Home 5 */

/* Topbar */

.top-bar-con {
    background-color: var(--e-global-color-lime-green);
}
.top-bar-con .top-bar-box{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-con .top-bar-box ul li:last-child {
    margin-bottom: 0 !important;
}
.top-bar-con .top-bar-box ul,
.top-bar-con .top-bar-box .info,
.top-bar-con .top-bar-box .top-bar-social {
    display: flex;
    align-items: center;
}
.top-bar-con .top-bar-box .info {
    padding-right: 35px;
}
.top-bar-con .top-bar-box .info:last-child {
    padding-right: 0;
}
.top-bar-con .top-bar-box .info i{
    font-size: 16px;
    color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.top-bar-con .top-bar-box .info a,
.top-bar-con .top-bar-box .info p{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 14px;
    color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.top-bar-con .top-bar-box .info a:hover {
    color: var(--e-global-color-accent);
}
.top-bar-con .top-bar-box .social-icons li {
    display: inline-block;
    margin: 0 10px;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons li:first-child {
    margin-left: 0;
}
.top-bar-con .top-bar-box .social-icons li:last-child {
    margin-right: 0;
}
.top-bar-con .top-bar-box .social-icons i {
    font-size: 14px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons a:hover i{
    color: var(--e-global-color-accent);
}

/* Banner */

.banner5-con {
    padding: 0;
    overflow: hidden;
    background-color: var(--e-global-color-very-light-gray);
}
.banner5-con .banner-sideimage {
    position: absolute;
    left: 0;
    top: 30%;
}
.banner5-con .banner_wrapper .banner-image {
    position: absolute;
    right: 50px;
    bottom: 0;
    z-index: 1;
}
.banner5-con .banner_wrapper .banner-image::before {
    content: "";
    width: 597px;
    height: 597px;
    top: 72px;
    right: -18px;
    opacity: 35%;
    position: absolute;
    border-radius: 100%;
    background-image: linear-gradient(to right, var(--e-global-color-lime-green) 0%, var(--e-global-color-accent) 100%);
    z-index: -1;
}
.banner5-con .banner_wrapper .banner-starimage {
    position: absolute;
    right: -60px;
    top: 108px;
}
.banner5-con .banner_wrapper .box {
    position: absolute;
    right: -40px;
    bottom: 142px;
    width: 252px;
    padding: 28px 10px 24px;
    border-radius: 20px;
    text-align: center;
    z-index: 1;
    background-color: var(--e-global-color-lime-green);
}
.banner5-con .banner_wrapper .box .content {
    margin-bottom: 16px;
}
.banner5-con .banner_wrapper .box .value {
    margin-bottom: 5px;
}
.banner5-con .banner_wrapper .box .value span {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: var(--e-global-color-accent);
}
.banner5-con .banner_wrapper .box .text {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-white);
}
.banner5-con .banner_wrapper .images figure{
    margin: 0 -10px;
    display: inline-block;
}
.banner5-con .banner_wrapper .images figure:first-child{
    margin-left: 0;
}
.banner5-con .banner_wrapper .images figure:last-child{
    margin-right: 0;
}
.banner5-con .banner_wrapper .images img{
    width: 56px;
    border-radius: 100%;
    border: 2px solid var(--e-global-color-lime-green);
}
.banner5-con .banner_content {
    padding: 200px 100px 200px 0;
}
.banner5-con .banner_content h1{
    font-size: 76px;
    line-height: 80px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.banner5-con .banner_content h1 span{
    color: var(--e-global-color-lime-green) !important;
}
.banner5-con .banner_content .text1{
    line-height: 30px;
    margin-bottom: 38px;
    padding-right: 145px;
}
.banner5-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
}
.banner5-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    border: 1px solid var(--e-global-color-lime-green);
}
.banner5-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner5-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner5-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}

/* About */

.about5-con {
    padding-bottom: 132px;
}
.about5-con .about_wrapper .about-image1 {
    position: relative;
    top: 0;
    left: 0;
}
.about5-con .about_wrapper .about-image2 {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
}
.about5-con .about_wrapper .about-image1 img,
.about5-con .about_wrapper .about-image2 img {
    border-radius: 30px;
    border: none !important;
}
.about5-con .about_wrapper .box {
    left: 0 !important;
    right: 0;
    top: 0;
    bottom: 0 !important;
    margin: auto;
    height: fit-content;
}
.about5-con .about_content {
    padding-top: 0 !important;
    padding-left: 30px;
}

/* Service */

.service5-con .service-box h3 {
    padding-right: 0 !important;
    margin-right: -12px;
}
.service5-con .owl-item {
    padding: 40px 28px 34px 36px;
}

/* Video */

.video5-con {
    background-color: var(--e-global-color-very-light-gray);
}

/* Contact */

.contact5-con {
    padding: 0;
    overflow: hidden;
    background-color: var(--e-global-color-very-light-gray);
}
.contact5-con .contact_wrapper .contact-image {
    position: absolute;
    left: -112px;
    bottom: 0;
    z-index: 1;
}
.contact5-con .contact_wrapper .contact-image::before {
    content: "";
    width: 549px;
    height: 549px;
    top: 72px;
    left: 12px;
    opacity: 40%;
    position: absolute;
    border-radius: 100%;
    background-image: linear-gradient(to right, var(--e-global-color-lime-green) 0%, var(--e-global-color-accent) 100%);
    z-index: -1;
}
.contact5-con .contact_wrapper .contact-starimage {
    position: absolute;
    left: -145px;
    top: 128px;
}
.contact5-con .contact_content {
    padding: 206px 0 140px 30px;
}
.contact5-con .contact_content h6{
    margin-bottom: 15px;
}
.contact5-con .contact_content h2{
    margin-bottom: 60px;
    padding-right: 55px;
}
.contact5-con .contact_content .form-group{
    margin-bottom: 28px;
}
.contact5-con .contact_content .input1 {
    float: left;
    margin-right: 18px;
}
.contact5-con .contact_content input,
.contact5-con .contact_content select {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 51px;
    width: 289px;
    padding: 10px 10px 12px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.contact5-con .contact_content input:focus,
.contact5-con .contact_content select:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-accent);
}
.contact5-con .contact_content select {
    -webkit-appearance: none;
    background-repeat: no-repeat !important;
    background-position: 90.3% 23px !important;
    background-image: url(../images/dropdown-arrow.png) !important;
}
.contact5-con .contact_content select option{
    color: var(--e-global-color-text);
}
.contact5-con .contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 20px 35px 22px;
    width: 100%;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.contact5-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.contact5-con .contact_content .submit_now:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.contact5-con .contact_content .submit_now:hover i {
    color: var(--e-global-color-white);
}
.contact5-con .contact_content input::placeholder,
.contact5-con .contact_content select::placeholder {
    color: var(--e-global-color-text);
}
.contact5-con .contact_content form span {
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red);
}

/* Testimonial */

.testimonial5-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-white);
}
.testimonial5-con .testimonial_content h6{
    margin-bottom: 14px;
}
.testimonial5-con .testimonial_content h2 {
    margin-bottom: 52px;
}
.testimonial5-con .owl-stage-outer {
    padding-left: 2px;
}
.testimonial5-con .owl-stage {
    display: flex;
}
.testimonial5-con .owl-item {
    padding: 48px 36px 44px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    border-top: 2px solid var(--e-global-color-accent);
    box-shadow: 0 2px 50px rgb(49 83 71 / 5%)inset;
    transition: all 0.8s ease-in-out;
}
.testimonial5-con .owl-item:hover {
    border-top: 2px solid var(--e-global-color-lime-green);
}
.testimonial5-con .testimonial-box .testimonial-quoteimage {
    margin-bottom: 20px;
}
.testimonial5-con .testimonial-box p {
    margin-bottom: 24px;
}
.testimonial5-con .review-content {
    padding-left: 16px;
    display: flex;
}
.testimonial5-con .review-content .testimonial-personimage {
    position: relative;
    top: 2px;
    left: -15px;
}
.testimonial5-con .review-content .testimonial-personimage img {
    width: 54px !important;
    border-radius: 100%;
}
.testimonial5-con .testimonial-box ul {
    margin-bottom: 6px;
}
.testimonial5-con .testimonial-box ul li {
    display: inline-block;
}
.testimonial5-con .testimonial-box ul li i {
    font-size: 12px;
    line-height: 12px;
    color: var(--e-global-color-star-yellow);
}
.testimonial5-con .review-content .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    display: block;
    color: var(--e-global-color-secondary);
}
.testimonial5-con .review-content .review {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.testimonial5-con .owl-carousel .owl-item img {
    width: auto !important;
}
.testimonial5-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}
.testimonial5-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.testimonial5-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.testimonial5-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.testimonial5-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.project_modal .modal.show .modal-dialog {
    transform: translate(0,0);
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}
.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}
.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.project_modal button.btn-close {
    border: 0;
    -webkit-appearance: none;
}
.project_modal button {
    text-transform: none;
    overflow: visible;
}
.project_modal .modal-header button i {
    color: var(--e-global-color-black);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.project_modal .fa-x:before {
    content: "\58";
}
.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}
.project_modal .blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}
.project_modal .modal-body .blog-img{
    float: left;
    width: 100%;
}
.project_modal .modal-body .blog-img figure {
    position: relative;
}
.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}
.project_modal .modal-content .project_content{
    padding: 40px 0 40px 20px;
}
.project_modal .modal-content .project_content h4{
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}
.project_modal .modal-content .project_content .text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties{
    margin-bottom: 20px;
}
.project_modal .modal-content .project_content .properties ul{
    padding-left: 25px;
}
.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}
.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    transition: all 0.3s ease-in-out;
}
.project_modal .modal-content .project_content .primary_btn{
    padding: 18px 30px 20px;
}
.project_modal .modal-content .project_content .primary_btn:hover{
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.project_modal .modal-content .project_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page{
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-very-light-gray);
}
.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.error_page .error_content .back_home i{
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .back_home:hover i{
    color: var(--e-global-color-white);
}

/* Coming Soon */

.comingsoon_outer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-very-light-gray);
}
.comingsoon_outer .logo_outer{
    margin-bottom: 70px;
}
.comingsoon_outer .logo_outer img{
    width: 143px;
}
.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content h1 {
    font-size: 90px;
    line-height: 92px;
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--e-global-color-text);
}
.comingsoon_outer .sub_banner_content form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content .form-group{
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content input {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    padding: 14px 16px 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 94px 1px rgb(0 0 0 / 3%);
    border: 1px solid transparent;
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.comingsoon_outer .sub_banner_content button {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 15px 30px 18px;
    height: 100%;
    top: 0;
    right: -5px;
    border-radius: 0 35px 35px 0;
    position: absolute;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-lime-green);
}
.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
    border: 1px solid var(--e-global-color-lime-green);
}
.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}
.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}
.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}
.comingsoon_outer .sub_banner_content .social-icon a{
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 36px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
    border: 1px solid var(--e-global-color-lime-green);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--e-global-color-accent);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

/* Preloader -------------------------------------------------------*/

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/