@charset "utf-8";

/*************** DEFAULT CSS ***************/
:root {
    --body-font: "Epilogue", sans-serif;
    --body-font-Size: 16px;
    --body-color: #000;
    --primary-color: #ff3000;
    --secondary-color: #111184;
    --light-gray: #e2e2e2;
    --dark-gray: #757575;
    --bg-gray: #f7f7f7cc;
    --black: #000;
    --white: #fff;
    --off-black: #1e1d1d;
    --border-color: #cbcfd2;


}

/*************** THEME TOGGLE BUTTON ***************/
.theme-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background-color: var(--black);
	color:var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background-color: var(--white);
    transform: rotate(30deg);
}

.theme-toggle:hover .sun-icon,
.theme-toggle:hover .moon-icon {
    color: var(--black);
    stroke: var(--black);
}

.theme-toggle .sun-icon {
    color: var(--white);
    stroke: var(--white);
    transition: all 400ms ease-in-out;
    position: absolute;
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.theme-toggle .moon-icon {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
    transition: all 400ms ease-in-out;
    position: absolute;
    opacity: 0;
    transform: scale(0) rotate(-90deg);
}

/* Dark mode toggle button state */
body.dark-mode .theme-toggle {
    border-color: var(--white);
    background-color: transparent;
}

body.dark-mode .theme-toggle:hover {
    background-color: var(--white);
}

body.dark-mode .theme-toggle:hover .sun-icon,
body.dark-mode .theme-toggle:hover .moon-icon {
    stroke: #1a1a1a;
}

body.dark-mode .theme-toggle .sun-icon {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

body.dark-mode .theme-toggle .moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    stroke: var(--white);
    color: var(--white);
}

/*************** DARK MODE ***************/
body.dark-mode {
    background-color: #000;
    color: #e0e0e0;
}

/* Preloader */
body.dark-mode #preloader {
    background-color: #000;
}

body.dark-mode .spinner {
    /*filter: brightness(0.8);*/
	 background-image: url(../images/arar-preloder-logo2.png);
}

/* Header */
body.dark-mode header {
    background-color: var(--black);
}

body.dark-mode header.smaller {
    background-color: #161616;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
}

/* Navigation */
body.dark-mode .vg-nav>ul>li>a {
    color: #e0e0e0;
}

body.dark-mode .vg-nav>ul>li.active a,
body.dark-mode .vg-nav>ul>li a:hover {
    color: var(--primary-color);
}

body.dark-mode .vg-nav .dropdown ul {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .vg-nav .dropdown ul li a {
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .vg-nav .dropdown ul li a:hover {
    color: var(--primary-color);
}

body.dark-mode .vg-nav-hamburger span {
    background: #e0e0e0;
}
body.dark-mode .list li {
  color: #d7d7d7;}
/* Mobile sidebar */
body.dark-mode .vg-nav-sidebar {
    background: #141428;
}

body.dark-mode .vg-nav-sidebar__content>ul>li>a,
body.dark-mode .vg-nav-collapse>ul>li>a {
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .vg-nav-sidebar__content>ul ul li>a,
body.dark-mode .vg-nav-collapse>ul ul li>a {
    color: #c0c0c0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .vg-nav-sidebar__content>ul ul,
body.dark-mode .vg-nav-collapse>ul ul {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .vg-nav-main-container span.toggle span.default {
    border-top-color: #e0e0e0;
}



/* Slide right fixed logos */
body.dark-mode .slide-right-fixed {
    background-color: #141428;
}

/* Headings */
body.dark-mode .heading {
    color: #e0e0e0;
}

body.dark-mode .title-style {
    color: #a0a0a0;
}

body.dark-mode .title-style::before {
    outline-color: #000;
}

body.dark-mode p {
    color: #b0b0b0;
}

/* About section */
body.dark-mode .about-us-right h1 {
    color: #e0e0e0;
}

body.dark-mode .about-us-right p {
    color: #b0b0b0;
}

body.dark-mode .round-text-logo-anim:after {
    filter: brightness(0.85);
}

/* Counter section */
body.dark-mode .counter-left {
    background-color: #1a1a1a;
}

/* Major Activities */
body.dark-mode .major-box {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .major-box:after {
    background-color: #242424;
}

body.dark-mode .maj-top-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .maj-top-head h3 {
    color: #e0e0e0;
}

body.dark-mode .major-box p {
    color: #b0b0b0;
}

/* Clients section */
body.dark-mode .clients-section {
    background-color: #1a1a1a;
}

body.dark-mode .clients-section .title-style::before {
    outline-color: #1a1a1a;
}

body.dark-mode .clients-wrapper li {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
}

body.dark-mode .clients-wrapper li:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .clients-wrapper li img {
    filter: brightness(0.9);
}

/* Major Projects */
body.dark-mode .top-cap {
    background-color: #000;
    color: #e0e0e0;
}

body.dark-mode .top-cap h3 {
    color: #e0e0e0;
}

body.dark-mode .prj-box:hover .top-cap {
    background-color: #1a1a1a;
    color: #ffffff;
}

body.dark-mode .num {
    color: #e0e0e0;
}

/* How it Works - Box style */
body.dark-mode .box-style {
    background-color: #1a1a1a;
}

body.dark-mode .box-style::before {
    background-color: #242424;
}

body.dark-mode .box-style h4 {
    color: #e0e0e0;
}

body.dark-mode .box-style p {
    color: #a0a0a0;
}

body.dark-mode .num-btm {
    color: #1a1a1a;
    text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.15),
        1px -1px 0 rgba(255, 255, 255, 0.15),
        -1px 1px 0 rgba(255, 255, 255, 0.15),
        1px 1px 0 rgba(255, 255, 255, 0.15);
}

body.dark-mode .box-style:hover .num-btm {
    color: #252545;
}

/* Testimonial / Chairman */
body.dark-mode .testi-rght {
    background: #1a1a1a;
}

/* News & Events */
body.dark-mode .news-item {
    background-color: #1a1a1a;
}

body.dark-mode .news-item:after {
    background-color: #242424;
}

body.dark-mode .news-cap h3 {
    color: #e0e0e0;
}

body.dark-mode .news-cap p {
    color: #a0a0a0;
}

body.dark-mode .date {
    color: #a0a0a0;
}

/* Footer */
body.dark-mode .footer p {
    color: #fff;
}

body.dark-mode .footer-top-head {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .ftr-middle {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}



body.dark-mode .call-in-wrapper {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Forms */
body.dark-mode .fieldset {
    background-color: #000;
    border-color: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

body.dark-mode .label-style {
    background-color: #000;
    color: #a0a0a0;
}



body.dark-mode .cap-box h3 {
    color: #e0e0e0;
}

/* Service Cards */
body.dark-mode .serv-card {
    background-color: #1a1a1a;
}

body.dark-mode .serv-card h2 {
    color: #e0e0e0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .serv-card p {
    color: #b0b0b0;
}

body.dark-mode .serv-card:after {
    background-color: #363636;
}
body.dark-mode .box-style2 { background-color: #343434;}
/* Inner Banner */
body.dark-mode .banner {
    background-color: #1a1a1a;
}

/* Inner pages */
body.dark-mode .message-box {
    background-color: #1a1a1a;
}

body.dark-mode .message-box .author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Contact */
body.dark-mode .contactstyle {
    background-color: #1a1a1a;
}

body.dark-mode .cont-inn-box {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .contactstyle h3 {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .mission-box {
    background-color: #1a1a1a;
}

body.dark-mode .vision-box {
    background-color: #1a1a1a;
}

/* Selection */
body.dark-mode ::selection {
    background: var(--primary-color);
    color: #fff;
}

/* Back to top */
body.dark-mode .progress-wrap::after {
    color: #e0e0e0;
}

body.dark-mode .progress-wrap svg.progress-circle path {
    stroke: #333;
}

/* Scrollbar */
body.dark-mode::-webkit-scrollbar {
    width: 8px;
}

body.dark-mode::-webkit-scrollbar-track {
    background: #000;
}

body.dark-mode::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Tables */
body.dark-mode td,
body.dark-mode th {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode tr:nth-child(even) {
    background-color: #1a1a1a;
}

body.dark-mode tr:hover {
    background-color: #252545;
}

body.dark-mode ::-webkit-input-placeholder {
    color: #c7c7c7 !important;
}

body.dark-mode :-moz-placeholder {
    color: #c7c7c7 !important;
}

body.dark-mode ::-moz-placeholder {
    color: #c7c7c7 !important;
}

body.dark-mode :-ms-input-placeholder {
    color: #c7c7c7 !important;
}




/* Text color overrides */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}



/* Transition for smooth theme change */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.dark-mode header,
body.dark-mode .major-box,
body.dark-mode .clients-wrapper li,
body.dark-mode .box-style,
body.dark-mode .news-item,
body.dark-mode .top-cap,
body.dark-mode .slide-right-fixed,
body.dark-mode .clients-section,
body.dark-mode .box-style2,
body.dark-mode .serv-card,
body.dark-mode .message-box,
body.dark-mode .footer {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-font-Size);
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    color: var(--body-color);
    text-decoration: none;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #000;
    color: #fff;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

p {
    margin: 0 0 30px 0;
    clear: left;
    padding: 0;
    line-height: 28px;
}

ul {
    padding: 0px;
    margin: 0 0 25px;
}

ul li {
    list-style: none;
}

/******* Headings Style *******/
h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: normal;
}

hr {
    margin: 40px 0 30px 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    width: 100%;
    position: relative;
}

img {
    border: 0;
    max-width: 100%;
}

a img {
    border: 0;
}

.heading {
    font-size: 46px;
    line-height: 60px;
    color: var(--black);
    font-weight: 600;
}

.title-style {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    color: var(--dark-gray);
    padding: 0px 11px;
    text-align: center;
}

.title-style::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    outline: 2px solid var(--primary-color);
}

.title-style::before {
    content: "";
    position: absolute;
    width: 89%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0 auto;
    outline: 3px solid var(--white);
    z-index: 1;
}

.title-style-margin {
    margin: 0 0 35px 0;
}

/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.spinner {
    width: 100%;
    height: 100%;
    background-image: url(../images/arar-preloder-logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 350px;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/*************** COLUMS AND ROWS ***************/
main {
    position: relative;
}

.row {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.justify-content-flex-end {
    justify-content: flex-end
}

.section-spacing {
    padding: 100px 0;
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px;
    width: 100%;
}

.clearfix {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    display: block;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.fullwidth {
    width: 100%;
    display: block;
}

.pos-relative {
    position: relative;
}

.two-col {
    flex: 0 0 48%;
}

.three-col {
    flex: 0 0 31%;
}

.four-col {
    flex: 0 0 22%;
}

section {
    width: 100%;
    display: block;
    position: relative;
}

aside {
    flex: 0 0 25%;
    margin: 0;
    padding: 0;
}

summary {
    flex: 0 0 70%;
    margin: 0;
    padding: 0;
}

.list {
    padding: 0px;
    margin: 0 0 25px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.list li {
    list-style: none;
    color: #3a4455;
    padding-left: 22px;
    margin-bottom: 6px;
    line-height: 24px;
    position: relative;
}

.list li:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border: 2px solid var(--primary-color);
    left: 0px;
    top: 8px;
    border-radius: 50px;
}

.list li a {
    color: #3a4455;
}

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

.scrollwrap {
    width: calc(50vw + 680px);
    overflow: hidden;
}

.scrollwrap-left {
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.gap-1 {
    gap: 1%
}

.gap-2 {
    gap: 2%
}

.gap-3 {
    gap: 3%
}

.gap-4 {
    gap: 4%
}

.gap-5 {
    gap: 5%
}

.gap-10,
.gap-20,
.gap-30,
.gap-40,
.gap-50,
.gap-60,
.gap-70,
.gap-80,
.gap-90,
.gap-100 {
    display: flex;
    width: 100%;
    height: 10px;
}

.gap-20 {
    height: 20px;
}

.gap-30 {
    height: 30px;
}

.gap-40 {
    height: 40px;
}

.gap-50 {
    height: 50px;
}

.gap-60 {
    height: 60px;
}

.gap-70 {
    height: 70px;
}

.gap-80 {
    height: 80px;
}

.gap-90 {
    height: 90px;
}

.gap-100 {
    height: 100px;
}

.m-b-0 {
    margin-bottom: 0px;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-b-35 {
    margin-bottom: 35px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-b-45 {
    margin-bottom: 45px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.pr-10 {
    padding-right: 10px;
}

.pl-50 {
    padding-left: 50px;
}

.bg-grey {
    background-color: #F4F4F4;
}

.direction-column {
    flex-direction: column;
}

.stickybar {
    position: sticky;
    top: 100px;
}

/*********************/
.smd10 {
    width: 10%;
}

.smd15 {
    width: 15%;
}

.smd20 {
    width: 20%;
}

.smd25 {
    width: 25%;
}

.smd30 {
    width: 30%;
}

.smd40 {
    width: 40%;
}

.smd50 {
    width: 50%;
}

.smd60 {
    width: 60%;
}

.smd70 {
    width: 70%;
}

.smd75 {
    width: 75%;
}

.smd80 {
    width: 80%;
}

.smd85 {
    width: 85%;
}

.smd90 {
    width: 90%;
}

.smd100 {
    width: 100%;
}

/*************** ROUND TEXT ANIMATION ***************/

@-moz-keyframes spinPulse {
    0% {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #bdd73c;
    }

    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-moz-keyframes spinoffPulse {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinPulse {
    0% {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #bdd73c;
    }

    50% {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-webkit-keyframes spinoffPulse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotatecircle {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotatecircle {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

/*************** PAGE CSS ***************/
header {
    top: -100px;
    width: 100%;
    background-color: var(--white);
    padding: 10px 0px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

header.smaller {
    padding: 10px 0;
    position: fixed;
    z-index: 9;
    /* background-image: none; */
    box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1);
    top: 0;
    left: 0;
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    justify-content: space-between;
}

.logo img {
    width: 250px;
}

header.smaller .logo img {
    width: 180px;
}

.slide-right-fixed {
    position: absolute;
    width: 340px;
    height: 97px;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
}

.slide-right-fixed::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -39px;
    width: 39px;
    height: 51px;
    background-image: url(../images/rounded-btm-left.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-right-fixed::after {
    content: "";
    position: absolute;
    top: -51px;
    right: 0;
    width: 39px;
    height: 51px;
    background-image: url(../images/rounded-btm-right.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.pad {
    padding: 100px 0;
}

.round-text-logo-anim {
    position: absolute;
    width: 155px;
    height: 155px;
    background-color: var(--primary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
    margin-left: -30px;
}

.round-text-logo-anim:after {
    position: absolute;
    content: '';
    width: 129px;
    height: 134px;
    background-image: url(../images/round-text.png);
    left: auto;
    top: auto;
    -moz-animation: spinoffPulse 20s infinite linear;
    -webkit-animation: spinoffPulse 20s infinite linear;
    background-repeat: no-repeat;
    background-position: center;
}

.about-us-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
}

.counter-left {
    flex: 0 0 28%;
    background-color: var(--secondary-color);
    padding: 45px 0 0 0;
    border-radius: 17px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-right-img {
    flex: 0 0 72%;
    padding-right: 100px;
}

.counter-right-img .hover-effect {
    border-radius: 17px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-container {
    padding: 0 50px 30px 50px;
    margin: 0 0 30px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

.counter-container:last-child {
    padding: 0 50px 0px 50px;
    margin: 0;
    border-bottom: 0;
}

.counter-wrapper,
span.counter {
    font-size: 54px;
    font-weight: 700;
    line-height: 54px;
    color: var(--white);
    margin: 0 0 8px 0;
}

.counter-container h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-15 {
    border-radius: 15px;
}

.rounded-17 {
    border-radius: 17px;
}

.rounded-20 {
    border-radius: 20px;
}

.major-activities {
    padding: 0 0 100px 0;
}

.major-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 65px 0 0 0;
}

.major-box {
    flex: 0 0 48.2%;
    background-color: #f1f5f9;
    padding: 75px 25px 25px 25px;
    border-radius: 17px;
    position: relative;
    text-align: left;
    transition: all ease-in-out 500ms;
    overflow: hidden;
}

.major-box:after {
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--off-black);
    content: '';
    z-index: 0;
    transition: all ease-in-out 500ms;
}

.major-box:hover:after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.major-box:hover {
    color: var(--white);
}

.major-box:hover .maj-top-head img {
    filter: contrast(0.5);
}

.maj-top-head {
    display: flex;
    gap: 35px;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-end;
    padding: 0 0 20px 0;
    margin: 0 0 35px 0;
}

.maj-top-head h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}

.major-box p {
    margin: 0 0 60px 0;
    min-height: 84px;
}

.maj-top-head,
.maj-top-head h3,
.major-box p,
.major-box .hover-effect {
    position: relative;
    z-index: 1;
}

.clients-section {
    padding: 100px 0;
    background-color: #f1f5f9;
}

.clients-section .title-style::before {
    outline: 3px solid #f1f5f9;
}

.clients-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1.5%;
    padding: 0;
    margin: 50px 0 60px 0;
    list-style-type: none;
}

.clients-wrapper li {
    flex: 0 0 15.4%;
    padding: 6px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--white);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.clients-wrapper li img {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.clients-wrapper li:hover img {
    filter: grayscale(100%);
    transform: scale(0.9);
}

.clients-wrapper li:hover {
    border: 1px solid var(--light-gray);
}

.inner-clients {
    margin: 0;
}

.inner-clients li {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.scrollwrapper {
    width: calc(50vw + 750px);
    overflow: hidden !important;
    padding: 80px 0 0 0;
}

.major-projects {
    overflow-x: hidden;
}

.prj-box {
    position: relative;
    overflow: hidden;
}

.prj-box .hover-effect {
    border-radius: 17px;
}

.prj-cap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 23px 0px 23px 23px;
}

.prj-cap .heading {
    color: var(--white);
    margin: 0;
    font-size: 28px;
    line-height: 32px;
    position: relative;
    z-index: 1;
}

.top-cap {
    width: 63%;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    color: var(--black);
    gap: 18px;
    z-index: 2;
    transition: all ease-in-out 300ms;
}

.prj-box:hover .top-cap {
    background-color: var(--off-black);
    color: var(--white);
}

.prj-box:hover .top-cap h3 {
    border-left: 3px solid var(--primary-color);
}

.top-cap h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    padding-left: 18px;
    border-left: 3px solid var(--primary-color);
}

.top-cap h3 span {
    display: block;
}

.num {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.prj-box::after {
    position: absolute;
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 200px;
    left: 0px;
    bottom: 0px;
    z-index: 0;
    opacity: 0.7;
    border-radius: 17px;
}

.how-it-works {
    padding: 0 0 100px 0;
}

.box-style-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 40px 0 0 0;
}

.box-style {
    flex: 0 0 24%;
    padding: 35px 30px 100px 30px;
    background-color: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.box-style::before {
    position: absolute;
    content: "";
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    background-color: var(--off-black);
    z-index: 0;
}

.box-style:hover:before {
    height: 100%;
    border-radius: 20px;
}

.icn {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 65px;
    z-index: 1;
}

.icn img {
    position: absolute;
    max-width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.box-style:hover .nrml-img {
    opacity: 0;
}

.box-style:hover .over-img {
    opacity: 1;
}

.over-img {
    opacity: 0;
}

.box-style:hover h4,
.box-style:hover p {
    color: var(--white);
}

.box-style h4 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 30px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.box-style p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    font-weight: 300;
    color: #434343;
    position: relative;
    z-index: 1;
}

.num-btm {
    font-size: 120px;
    font-weight: 900;
    /* -webkit-text-stroke: 1px var(--black); */
    color: #f1f5f9;
    ;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        1px -1px 0 rgba(0, 0, 0, 0.5),
        -1px 1px 0 rgba(0, 0, 0, 0.5),
        1px 1px 0 rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: -35px;
    left: 43px;
}

.box-style:hover .num-btm {
    color: var(--off-black);
    text-shadow:
        -1px -1px 0 rgba(250, 250, 250, 0.2),
        1px -1px 0 rgba(250, 250, 250, 0.2),
        -1px 1px 0 rgba(250, 250, 250, 0.2),
        1px 1px 0 rgba(250, 250, 250, 0.2);
}

.testi-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding: 130px 0 0 0;
}

.testi-left {
    flex: 0 0 39%;
    position: relative;
}

.testi-rght {
    flex: 0 0 59%;
    border-radius: 17px;
    overflow: hidden;
    padding: 110px 80px 70px 80px;
    background: hsla(11, 100%, 40%, 1);
    background: linear-gradient(45deg, hsla(11, 100%, 40%, 1) 0%, hsla(0, 0%, 0%, 1) 45%, hsla(0, 0%, 0%, 1) 55%, hsla(238, 90%, 42%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(11, 100%, 40%, 1) 0%, hsla(0, 0%, 0%, 1) 45%, hsla(0, 0%, 0%, 1) 55%, hsla(238, 90%, 42%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(11, 100%, 40%, 1) 0%, hsla(0, 0%, 0%, 1) 45%, hsla(0, 0%, 0%, 1) 55%, hsla(238, 90%, 42%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#CC2600", endColorstr="#000000", GradientType=1);
    color: var(--white);
}

.testi-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 55px 65px 55px;
    color: var(--white);
}

.testi-cap h1 {
    margin: 0;
}

.text-white {
    color: var(--white);
}

.title-style-chairman {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    padding: 0px 11px;
    text-align: center;
    margin: 0 0 34px 0;
}

.title-style-chairman::before,
.title-style-chairman::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-right: 0;
    left: 0;
    top: -5px;
    position: absolute;
}

.title-style-chairman::after {
    left: auto;
    right: 0;
    border-left: 0;
    border-right: 2px solid var(--primary-color);
}

.msg-box {
    padding: 0 0 115px 70px;
    margin: 0 0 25px 0;
    position: relative;
    border-bottom: 1px solid #898180;
}

.qoute {
    position: absolute;
    left: 0;
    max-width: 21px;
}

.msg-box h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 25px 0;
}

.msg-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author h4 {
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}

.news-events {
    padding: 0 0 50px 0;
}

.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 50px 0;
}

.news-item {
    flex: 0 0 32%;
    padding: 20px 20px 60px 20px;
    background-color: #f1f5f9;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.news-cap {
    padding: 40px 15px 0px 25px;
    position: relative;
    z-index: 1;
}

.date {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
    color: #434343;
    display: block;
    margin: 0 0 25px 0;
    transition: all ease-in-out 500ms;
}

.news-cap h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px 0;
    color: var(--black);
    line-height: 26px;
    transition: all ease-in-out 500ms;
}

.news-cap p {
    font-size: 14px;
    line-height: 24px;
    color: #434343;
    margin: 0;
    transition: all ease-in-out 500ms;
}

.news-item:after {
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--off-black);
    content: '';
    z-index: 0;
    transition: all ease-in-out 500ms;
}

.news-item:hover:after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.news-item .hover-effect {
    position: relative;
    z-index: 1;
}

.news-item:hover .news-cap,
.news-item:hover .news-cap p,
.news-item:hover .news-cap h3,
.news-item:hover .date {
    color: var(--white);
}

.about-inner .round-text-logo-anim {
    margin-left: 0;
}

.about-inner .counter-right-img {
    padding-right: 0;
}

.pl-50 {
    padding-left: 50px;
}

.pl-100 {
    padding-left: 100px;
}

.pt-10 {
    padding-top: 10px;
}

.about-inn-left .round-text-logo-anim {
    left: auto;
    margin-top: 65px;
    margin-left: 0;
    top: 0;
    right: -76px;
}

.hilite-text {
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
}

.message-box {
    background-color: #f1f5f9;
    padding: 40px;
    border-radius: 17px;
    transition: all ease-in-out 500ms;
}

.message-box .author {
    border-top: 1px solid var(--border-color);
    padding: 30px 0 0 0;
    margin: 40px 0 0 0;
    align-items: flex-start;
}

.mission-box {
    padding: 100px 40px 40px 40px;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    transition: all ease-in-out 500ms;
    overflow: hidden;
}

.mission-box:after {
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--off-black);
    content: '';
    z-index: 0;
    transition: all ease-in-out 500ms;
}

.mission-box .heading {
    position: relative;
    z-index: 1;
}

.mission-box:hover::after {
    height: 100%;
}

.vision-box {
    background-color: var(--secondary-color);
}

.mission-box p:last-child {
    margin: 0;
    position: relative;
    z-index: 1;
}

.ms-icn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.contactstyle {
    flex: 0 0 34%;
    display: inline-block;
    position: relative;
    margin: 0 0 12px;
    padding: 30px 20px;
    background-color: var(--off-black);
    border-radius: 15px;
}

.coic,
.contactstyle a:hover,
.label-style {
    color: var(--secondary-color)
}

.coic {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    background-color: var(--white);
    font-size: 16px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -ms-border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coic,
.out-inn-links a {
    line-height: 41px;
    height: 40px;
    color: var(--white);
    background-color: var(--primary-color);
}

.contactstyle h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-medium);
}

.contactstyle p {
    margin-bottom: 0;
    color: var(--white);
}

.contactstyle p a {
    color: var(--white)
}

.contact-left {
    flex: 0 0 30%
}

.cont-inn-box {
    position: relative;
    padding: 0 0 20px 60px;
    margin-bottom: 20px;
    border-bottom: 1px solid #3c3c3c;
}

.cont-inn-box:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.contactstyle h3 {
    font-size: 26px;
    border-bottom: 1px solid #3c3c3c;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 500;
}

.contact-right {
    flex: 0 0 62%;
}

.map {
    display: flex;
    width: 100%;
    margin-top: 30px;
}

.contact-right .form-group {
    margin-bottom: 15px;
}

.label-style {
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 14px;
    background-color: #fff;
    padding: 0 5px;
    color: #626262;
    z-index: 1;
}

.form-group {
    position: relative;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
}

.contact-form .form-group {
    flex: 0 0 49%;
}

.contact-form .form-group-full {
    flex: 0 0 100%;
}

.contact-right .heading:after {
    display: none;
}

.contact-right .heading {
    padding-bottom: 0px;
}

.contact-page-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 4%;
}

.contact-form .form-group-full {
    flex: 0 0 100%;
}

/*************** FOOTER ***************/
.footer {
    max-width: 98%;
    margin: 0 auto 20px auto;
    background-image: url(../images/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 160px 45px 160px;
    overflow: hidden;
    border-radius: 15px;
    color: var(--white);
}

.footer-top-head {
    display: flex;
    justify-content: space-between;
    padding: 0 0 50px 0;
    margin: 0 0 60px 0;
    border-bottom: 1px solid #696569;
}

.ftr-top-left h1 {
    color: var(--white);
    line-height: 48px;
    margin: 0 0 15px 0;
}

.ftr-top-left p {
    font-size: 16px;
    margin: 0;
    font-weight: 300;
}

.footer-logo {
    max-width: 115px;
    margin: 0 0 40px 0;
}

.footer-top-head a {
    margin: 10px 0 0 0;
}

.ftr-col p {
    font-size: 16px;
    line-height: 24px;
}

.ftr-middle {
    display: flex;
    flex-wrap: wrap;
    gap: 75px;
    padding: 0 0 45px 0;
    margin: 0 0 45px 0;
    border-bottom: 1px solid #696569;
}

.ftr-col {
    flex: 0 0 29.4222%;
}

.ftr-col h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.ftr-col ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.ftr-col ul li a {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 10px 0;
    display: block;
}

.ftr-col ul li:hover a,
.call:hover {
    color: var(--primary-color);
}

.call {
    color: var(--white);
    display: block;
    margin: 0 0 15px 0;
}

.ftr-col-mdl {
    display: flex;
    justify-content: space-between;
}

.call-back-box {
    padding: 35px;
    background: hsla(238, 97%, 52%, 0.7);
    background: linear-gradient(45deg, hsla(238, 97%, 52%, 0.7) 17%, hsla(11, 100%, 50%, 0.7) 84%);
    background: -moz-linear-gradient(45deg, hsla(238, 97%, 52%, 0.7) 17%, hsla(11, 100%, 50%, 0.7) 84%);
    background: -webkit-linear-gradient(45deg, hsla(238, 97%, 52%, 0.7) 17%, hsla(11, 100%, 50%, 0.7) 84%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0E17FB", endColorstr="#FF3000", GradientType=1);
    border-radius: 15px;
}

.call-back-box h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.call-in-wrapper {
    display: flex;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 16px 10px;
    position: relative;
}

.call-in-wrapper input {
    width: 100%;
    background-color: transparent;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.call-in-wrapper input::placeholder {
    color: var(--white) !important;
    font-size: 12px;
}

.submit-call {
    border: none;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 6px;
    text-align: center;
    transition: .3s ease-in-out;
    font-size: 16px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--white);
    color: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.submit-call:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-btm p {
    margin: 0;
    font-size: 14px;
}

.footer-btm p a {
    color: var(--white);
}

.social-links {
    display: inline-flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.social-links li a {
    color: var(--white);
    font-size: 25px;
}

.social-links li:hover a {
    color: var(--primary-color);
}

.box-style2-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 1.5%;
}

.box-style2 {
    flex: 0 0 32.32%;
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.box-style2 .hover-effect,
.cap-box {
    position: relative;
    z-index: 1;
}

.cap-box {
    display: flex;
    justify-content: space-between;
    padding: 20px 5px 0 5px;
    align-items: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.cap-box h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 600;

}

.link {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--primary-color);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}

.link::after {
    color: var(--white);
    content: "\f061";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    right: 0;
    position: absolute;
    top: 0;
    line-height: 40px;
    border-radius: 6px;
    text-align: center;
    transition: .3s ease-in-out;
    font-size: 18px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%;
    rotate: -40deg;
}

.box-style2:hover .link {
    background-color: var(--secondary-color);
}

.box-style2:hover .cap-box {
    color: var(--white);
}

.box-style2:hover .link::after {
    rotate: 0deg;
}

.box-style2:after {
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--off-black);
    content: '';
    z-index: 0;
    transition: all ease-in-out 500ms;
}

.box-style2:hover:after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.project-item {
    flex: 0 0 49.223%;
}

.cap-lft h3 {
    margin: 0 0 5px 0;
    font-size: 30px;
}

.cap-lft p {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 500;
}

span.p-locte {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    padding: 12px 0 0 0;
    border-top: 1px solid #d5d5d5;
}

span.p-locte i {
    position: relative;
    top: -1px;
    color: hsla(238, 90%, 42%, 1);
}

.cap-box.prj-cap-box {
    padding-right: 30px;
}

.cap-box.prj-cap-box .link {
    position: absolute;
    right: 0;
    bottom: 11px;
}

.cap-lft {
    width: 100%;
}

.fg-item.fg-type-image.fg-loaded {
    flex: 0 0 24.3333%;
}


.serv-card {
    flex: 0 0 32.3333%;
    padding: 30px;
    background-color: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.serv-card h2 span {
    font-weight: 300;
    font-size: 28px;
    font-style: italic;
}

.serv-card h2 {
    display: flex;
    gap: 15px;
    font-size: 26px;
    border-bottom: 1px solid var(--light-gray);
    padding: 0 0 15px 0;
    font-weight: 500;
    align-items: flex-start;
    line-height: 26px;
}

.serv-card:hover h2,
.serv-card:hover p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.serv-card:after {
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    content: '';
    z-index: 0;
    transition: all ease-in-out 500ms;
}

.serv-card:hover:after {
    height: 100%;
    bottom: auto;
    top: 0;
}

.box-wrap-four {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2.5%;
}

.box-wrap-four .box-style {
    flex: 0 0 23%;
    padding: 30px;
}

/*************** BUTTON STYLE ***************/
.button-style a,
.button-style-span {
    position: relative;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    padding: 17px 72px 17px 20px;
    border-radius: 6px;
    display: inline-block;
    opacity: 1;
    border: 2px solid var(--secondary-color);
}

.button-style a:after,
.button-style-span:after {
    color: var(--white);
    content: "\f061";
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    right: 3px;
    position: absolute;
    top: 4px;
    line-height: 40px;
    border-radius: 6px;
    text-align: center;
    transition: .3s ease-in-out;
    font-size: 16px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--primary-color);
}

.button-style a:hover,
.button-style-span:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.button-style a:hover:after,
.button-style-span:after {
    background-color: var(--secondary-color);
    color: var(--white);
}

/*************** INNER BANNER ***************/

.banner-main {
    padding: 0 10px 10px;
}

.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url(../images/banner.jpg);
    text-align: center;
    align-items: center;
    background-color: var(--color-3);
    border-radius: 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.banner-inn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner h2 {
    color: var(--white);
    font-weight: 600;
    font-size: 45px;
    margin: 0 0 8px;
    padding: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.breadcrumb {
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
}

.breadcrumb li {
    margin: 0;
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 8px;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: "\f105";
    font-size: 12px;
    color: var(--primary-color);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--secondary-color);

}


/*************** table style ***************/
.responsive-table {
    overflow-x: auto;
}

.table-style {
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #ddd;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--primary-color);
    color: var(--white);
}

/**********forms**************/
form {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

.fieldset {
    width: 100%;
    height: 50px;
    padding: 8px 15px;
    background-color: var(--white);
    display: block;
    border: 1px solid #c1c1c1;
    margin: 0 0 10px 0;
    color: #262626;
    font-size: 14px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
}

textarea.fieldset,
textarea {
    height: 140px;
    padding: 15px;
}

.sendbutton {
    width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0 5px 0 0;
    float: left;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    vertical-align: top;
    padding: 16px 25px 16px;
    text-align: center;
    background-color: var(--secondary-color);
    text-transform: uppercase;
    border-radius: 50px;
}

.sendbutton:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

::-webkit-input-placeholder {
    color: #262626 !important;
}

:-moz-placeholder {
    color: #262626 !important;
}

::-moz-placeholder {
    color: #262626 !important;
}

:-ms-input-placeholder {
    color: #262626 !important;
}

/*************HOVER EFFECT*******/
.hover-effect {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rounde-corner {
    border-radius: 15px;
    overflow: hidden;
}

.hover-effect i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 50%;
    top: -100px;
    z-index: 1;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    margin: 0 0 0 -25px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hover-effect:hover i {
    top: 50%;
    margin: -25px 0 0 -25px;
}

.hover-effect i:hover {
    background-color: var(--secondary-color);
}

.hover-effect img {
    display: block;
    width: 100%;
    -webkit-filter: none;
    filter: none;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.hover-effect:hover img {
    /* -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;*/

    /*-webkit-filter: brightness(70%);*/
    /*filter: grayscale(60%);
	-webkit-filter: grayscale(60%);*/
}


.hover-effect:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222529;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.3s
}

.hover-effect:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease, transform 0.5s ease
}

.hover-effect:hover:after,
.hover-effect:hover:before {
    opacity: 0;
    transform: none
}

.hover-effect:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.5;
    transition: transform 0.9s ease, opacity 0.9s ease
}

.hover-effect:before {
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease
}

/*************BACK TO TOP*******/
.progress-wrap {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "\f30c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color: #265B9E;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #BCC2C6;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


/************************************* 1650px *************************************/
@media only screen and (max-width: 1650px) {
    .counter-right-img {
        padding-right: 0px;
    }

    .about-us-wrapper {
        padding: 50px 20px 0 20px;
    }

    .footer {
        max-width: 98%;
        margin: 0 auto 20px auto;
        padding: 80px 60px 45px 60px;
    }
}

/************************************* 1600px *************************************/
@media only screen and (max-width: 1600px) {
    .header-wrap {
        max-width: 95%;
    }
}

/************************************* 1500px *************************************/
@media only screen and (max-width: 1500px) {
    .container {
        max-width: 95%;
    }

    .round-text-logo-anim {
        margin-left: 0;
    }

    .ftr-middle,
    .box-style-wrapper,
    .news-wrapper,
    .major-box-wrapper {
        gap: 0;
        justify-content: space-between;
    }

    .counter-container h6 {
        font-size: 15px;
    }

    .counter-container {
        padding: 0 30px 25px 30px;
        margin: 0 0 25px 0;
    }

    .counter-container:last-child {
        padding: 0 30px 0px 30px;
    }

    .counter-wrapper,
    span.counter {
        margin: 0;
    }
}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {
    .major-box {
        flex: 0 0 48%;
    }

    .testi-rght {
        padding: 100px 50px 30px 50px;
    }

    .msg-box {
        padding: 0 0 70px 70px;
    }
}


/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {}

/************************************* 1300px *************************************/
@media only screen and (max-width: 1300px) {
    .testi-rght {
        padding: 50px 30px;
    }

    .testi-cap {
        padding: 0px 0 35px 35px;
    }

    .testi-wrapper {
        padding: 75px 0 0 0;
    }

}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
    .counter-left {
        flex: 0 0 100%;
        border-top-right-radius: 17px;
        border-bottom-right-radius: 17px;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .counter-right-img .hover-effect {
        border-top-left-radius: 17px;
        border-bottom-left-radius: 17px;
    }

    .counter-right-img {
        flex: 0 0 100%;
    }

    .ftr-col:nth-child(01) {
        flex: 0 0 100%;
        display: flex;
        gap: 3%;
        align-items: center;
    }

    .ftr-col {
        flex: 0 0 40%;
    }

    .footer-top-head {
        padding: 0 0 30px 0;
        margin: 0px 0 35px 0;
        flex-direction: column;
        row-gap: 10px;
    }

    .testi-left .hover-effect.rounded-15 {
        display: none;
    }

    .testi-left {
        background-image: url(../images/testi-img.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 15px;
        overflow: hidden;
    }

    .counter-container:last-child {
        padding: 0 30px 25px 30px;
    }

    .counter-container:first-child {
        padding-top: 25px;
    }

    .counter-container {
        text-align: center;
    }
}

/************************************* 1110px *************************************/
@media only screen and (max-width: 1110px) {
    .header-wrap {
        padding-right: 70px;
    }

    .menu {
        position: absolute;
        right: 15px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
    .slide-right-fixed {
        width: 200px;
        height: 70px;
        padding: 15px;
    }

    .slide-right-fixed img {
        width: 100%;
    }

    .heading {
        font-size: 34px;
        line-height: 48px;
    }

    .counter-left {
        margin: 0 0 30px 0;
    }

    .clients-wrapper li {
        flex: 0 0 18.4%;
    }

    .box-style-wrapper,
    .news-wrapper {
        row-gap: 20px;
    }

    .box-style {
        flex: 0 0 48%;
    }

    .news-item {
        flex: 0 0 48%;
    }

    .footer {
        padding: 50px 45px 35px 40px;
    }

    .ftr-col {
        flex: 0 0 48%;
    }
}

/************************************* 850px *************************************/
@media only screen and (max-width: 880px) {
    .contactstyle {
        flex: 0 0 100%;
    }

    .contact-right {
        flex: 0 0 100%;
    }

    .box-wrap-four .box-style {
        flex: 0 0 48%;
        padding: 20px;
    }
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {

    .pad,
    .how-it-works {
        padding: 50px 0;
    }

    .clients-wrapper li {
        flex: 0 0 23.3333%;
    }

    .news-wrapper {
        padding: 0 0 30px 0;
    }

    .box-style2 {
        flex: 0 0 49%;
    }

    .cap-box h3 {
        font-size: 18px;
    }

    .link {
        width: 35px;
        height: 35px;
    }

    .link::after {
        line-height: 35px;
        font-size: 15px;
    }
}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {
    .major-box {
        flex: 0 0 100%;
        padding: 25px;
    }

    .major-box-wrapper {
        row-gap: 20px;
        margin: 30px 0 0 0;
    }

    .clients-section {
        padding: 50px 0;
    }

    .major-activities {
        padding: 0 0 50px 0;
    }

    .maj-top-head h3 {
        margin: 0;
        font-size: 22px;
    }

    .maj-top-head {
        gap: 20px;
        align-items: center;
    }

    .major-box p {
        margin: 0 0 35px 0;
        min-height: auto;
    }

    .scrollwrapper {
        width: 100%;
    }

    .prj-cap {
        padding: 20px;
        width: 100%;
    }

    .testi-left {
        flex: 0 0 100%;
        margin-bottom: 25px;
    }

    .msg-box {
        padding: 0 0 35px 35px;
    }

    .ftr-col {
        flex: 0 0 100%;
    }

    .ftr-col-mdl {
        margin-bottom: 25px;
    }

    .testi-rght {
        flex: 0 0 100%;
    }

    .testi-left .hover-effect.rounded-15 {
        display: block;
    }

    .testi-left {
        background-image: none;
        border-radius: 0;
    }

    .smd30 {
        width: 100%;
    }

    .smd70 {
        width: 100%;
    }

    .pl-100 {
        padding-left: 0;
    }

    .about-inn-left .round-text-logo-anim {
        display: none;
    }

    .about-inn-left {
        margin: 0 0 25px 0;
    }

    .banner {
        height: 200px;
    }

    .banner h2 {
        font-size: 30px;
    }

    .breadcrumb li {
        font-size: 14px;
    }

    .stickybar {
        position: inherit;
        top: 0;
    }

    .pl-50 {
        padding-left: 0px;
    }

    .cap-box {
        padding: 20px 35px 0 5px;
    }

    .link {
        position: absolute;
        right: 0;
    }
}


/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
    .header-wrap {
        padding-right: 50px;
    }

    .button-style a:after,
    .button-style-span:after {
        line-height: 37px;
        font-size: 14px;
        width: 35px;
        height: 35px;
    }

    .button-style a,
    .button-style-span {
        padding: 15px 55px 15px 15px;
    }

    .logo img {
        width: 200px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: 0px;
    }

    .theme-toggle .sun-icon {
        width: 18px;
        height: 18px;
    }

    .theme-toggle .moon-icon {
        width: 16px;
        height: 16px;
    }

    .slide-right-fixed {
        width: 150px;
        height: 52px;
        padding: 10px;
    }

    .menu {
        right: 5px;
    }

    .smd25 {
        width: 100%;
    }

    .smd75 {
        width: 100%;
    }

    .round-text-logo-anim {
        display: none;
    }

    .about-us-left .title-style {
        margin-bottom: 25px;
    }

    .heading {
        font-size: 28px;
        line-height: 34px;
        margin: 0 0 25px 0;
    }

    .counter-container {
        padding: 25px;
        margin: 0;
    }

    .counter-container:last-child {
        padding: 25px;
        margin: 0;
    }

    .top-cap {
        padding: 20px;
    }

    .prj-cap .heading {
        font-size: 30px;
    }

    .icn {
        margin-bottom: 30px;
    }

    .box-style h4 {
        margin: 0 0 20px 0;
    }

    .news-item {
        flex: 0 0 100%;
    }

    .ftr-col:nth-child(01) {
        display: block;
    }

    .ftr-top-left h1 {
        line-height: 40px;
    }

    .footer-logo {
        margin: 0 0 25px 0;
    }

    .fg-item.fg-type-image.fg-loaded {
        flex: 0 0 49%;
    }
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
    .clients-wrapper li {
        flex: 0 0 32%;
    }

    .clients-wrapper {
        gap: 10px 1.5%;
        margin: 30px 0;
    }

    .box-style {
        flex: 0 0 100%;
    }

    .news-cap {
        padding: 30px 0 0 0;
    }

    .ftr-middle {
        padding: 0 0 35px 0;
        margin: 0px 0 30px 0;
    }

    .footer-btm {
        flex-direction: column;
        row-gap: 10px;
    }

    .top-cap {
        display: none;
    }

    .prj-cap {
        justify-content: flex-end;
        width: 100%;
    }

    .fg-item.fg-type-image.fg-loaded {
        flex: 0 0 100% !important;
    }

    .serv-card {
        flex: 0 0 100%;
        padding: 20px;
    }

    .box-wrap-four .box-style {
        flex: 0 0 100%;
        padding: 20px;
    }

}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
    .footer {
        padding: 40px 30px 30px 30px;
    }

    .box-style2 {
        flex: 0 0 100%;
    }

    .logo img {
        width: 170px;
    }

    header.smaller .logo img {
        width: 150px;
    }

    header .button-style a:after {
        display: none;
    }

    header .button-style a {
        padding: 15px;
    }

    .theme-toggle {

        margin-left: 0;
    }
}

/************************************* 480px *************************************/
@media only screen and (max-width: 420px) {


    .button-style-span {
        font-size: 12px;
        padding: 15px 45px 15px 8px;
    }

}

/************************************* 360px *************************************/
@media only screen and (max-width: 380px) {
    .footer {
        padding: 30px 20px 20px 20px;
    }

    .logo img {
        width: 150px;
    }

    header.smaller .logo img {
        width: 100px;
    }
}


/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
    .logo img {
        width: 120px;
    }
}


/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}