@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Agency';
    src: url(../font/AGENCYB.TTF);
}

@font-face {
    font-family: 'Mouzambik';
    src: url(../font/Mouzambik.otf);
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

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

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

h1 {
    font-family: 'Agency';
    font-size: 94px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'Agency';
    font-size: 100px;
    line-height: 1;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}

h3 {
    font-family: 'Agency';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'Agency';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'Agency';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'Agency';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme-btn {
    background: #27aae1;
    position: relative;
    color: #fff;
    padding: 0px 0px 0px 0px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 3px 10px #00000021;
    font-size: 16px;
    border: 1px solid #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    border: unset;
}

.theme-btn:hover,
.theme-btn:hover {
    background: #211e1e;
    color: #fff;
}

.theme-btn:hover img,
.theme-btn:hover img {
    transform: translateX(2px) scale(1.1);
    color: #fff;
}

.theme-btn img {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 25px;
    clip-path: unset;
    transition: 0.5s all;
    padding: 14px 8px;
    object-fit: none;
    border-radius: 0;
    border: 1px solid #e1e1e1;
}

.theme-btn span {
    padding: 15px 18px;
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 12px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    margin-left: 58px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

header {
    position: relative;
    z-index: 10;
}

header:before {
    background: #26a6db;
    width: 210px;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 250px;
    z-index: -1;
    clip-path: polygon(100% 0, 100% 24%, 100% 80%, 100% 100%, 100% 100%, 15% 0);
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 23px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #26a6db;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}



/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

section.banner-sec {
    background-image: url(../images/banner-min.jpg);
    width: 100%;
    height: 750px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 9;
    align-content: center;
}

section.banner-sec.iner {
    background-image: url(../images/banner-iner.jpg);
    height: 660px;
}

.banner-sec.iner:after {
    height: 580px;
}

.banner-sec.iner .banner-text {
    margin-bottom: 210px;
}

.banner-text {
    margin-bottom: 115px;
}

.banner-sec:after {
    background: #26a6db;
    width: 620px;
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    height: 700px;
    z-index: -1;
    opacity: 95%;
    clip-path: polygon(0 0, 80% 0, 100% 24%, 100% 80%, 100% 100%, 22% 100%, 0 66%, 0% 20%);
}

section.banner-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 130px;
    height: 170px;
    clip-path: polygon(0 0, 0% 100%, 80% 100%);
}

.banner-text p {
    font-size: 15px;
    margin: 10px 0 15px;
    color: #a9daef;
    width: 67%;
}

.baner-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ban-icon-txt p {
    font-size: 14px;
    width: 100%;
    margin: unset;
    margin-bottom: 3px;
}

.ban-icon-txt a {
    font-size: 26px;
    color: #fff;
    font-family: 'Montserrat';
}

.baner-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.baner-call img {
    width: 48px;
    height: 50px;
    object-fit: scale-down;
}

.banner-text h1 span {
    display: block;
}


/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */


/*---------------------------------------------------- About Uss Section Start ------------------------------------------------------------- */

section.about-sec {
    margin-bottom: 100px;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    clip-path: polygon(30% 0%, 83% 0, 100% 22%, 100% 70%, 100% 100%, 18% 100%, 0 76%, 0 0);
    clip-path: polygon(30% 0%, 85% 0, 100% 22%, 100% 70%, 100% 100%, 14% 100%, 0 76%, 0 0);
}

.about-end p {
    margin-bottom: 25px;
    line-height: 27px;
}

.about-end {
    margin-top: 50px;
}

.about-img {
    width: 95%;
}

.about-txt h2 {
    margin-bottom: 70px;
}

.about-txt ul {
    column-count: 2;
}

section.about-sec .row {
    align-items: center;
}

.about-txt ul li {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.about-txt p {
    margin-bottom: 30px;
    color: #000;
    font-weight: 600;
}

.abut-tic-txt p {
    margin: unset;
    font-size: 13px;
    color: #333333;
    font-weight: 500;
}

.about-txt ul li i {
    color: #27aae1;
    font-size: 20px;
    background: #d4eef9;
    width: 45px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abut-tic-txt h5 {
    font-size: 19px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 600;
    margin-bottom: 7px;
}

.about-sec:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0;
    background: #f1f1f1;
    width: 56%;
    height: 130px;
    z-index: -1;
    clip-path: polygon(30% 0%, 85% 0, 100% 0, 100% 70%, 100% 100%, 8% 100%, 0 0);
    clip-path: polygon(0 0, 85% 0, 100% 0, 100% 70%, 100% 100%, 8% 100%, 0 3%);
}

/*---------------------------------------------------- About Uss Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Service Section Start ------------------------------------------------------------- */

section.service-head {
    text-align: center;
    background: #27aae1;
    padding: 5px 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}

section.service-head h2 {
    text-transform: capitalize;
}

.service-head-txt p {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}

section.service-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #fff;
    width: 60%;
    height: 120px;
    z-index: -1;
    clip-path: polygon(14% 0%, 95% 0%, 86% 100%, 0% 120%);
}

.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
    object-position: center;
    clip-path: polygon(30% 0%, 100% 0, 100% 30%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}

section.service-sec {
    margin-bottom: 100px;
}

.service-area-head {
    text-align: center;
}

.service-area-head h2 {
    margin-bottom: 12px;
}

.service-img {
    width: 95%;
    margin: 0 auto;
}

.service-txt {
    padding: 20px 45px;
}

.service-txt h4 {
    font-size: 35px;
    margin-bottom: 15px;
}

.service-txt p {
    font-size: 14px;
    color: #00000096;
    margin-bottom: 20px;
}

.service-txt h4 span {
    display: block;
}

/*---------------------------------------------------- Service Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Service Areas Section Start ------------------------------------------------------------- */

section.service-area-sec {
    margin-bottom: 100px;
}


section.client-sec {
    position: relative;
    padding: 60px 0px 120px;
    z-index: 3;
}

.client-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 27px;
    width: 100%;
    font-family: Roboto;
    font-weight: 400;
}

.client-slider-nav {
    position: relative;
}

.cs-nav-box img {
    border-radius: 100px;
    object-fit: cover;
}

.cs-nav-box h5 {
    font-size: 14px;
    color: #fff;
    background: #ff7200;
    padding: 13px 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin: 15px 0 0;
}

.cs-nav-box h5::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #ff7200;
    left: 0;
    right: 0;
    top: -5px;
    transform: rotate(45deg);
    margin: auto;
    z-index: -2;
}

.center h5 {
    display: none;
}

.img-1 {
    position: absolute;
    top: 240px;
    left: 175px;
    width: auto;
}

.img-2 {
    position: absolute;
    top: 40px;
    left: 280px;
    right: auto;
}

.img-3 {
    position: absolute;
    bottom: -205px;
    left: 965px;
    width: auto;
}

.img-4 {
    right: 340px;
    position: absolute;
    top: 20px;
    width: auto;
}

.img-5 {
    position: absolute;
    top: 205px;
    right: 180px;
    width: auto;
}

.cs-nav-box img {
    height: 80px;
    width: 80px;
    border: 3px solid #fff;
    box-shadow: 0 0 5px 0 #989898;
    margin: auto;
    display: block;
}

.client-details h5 {
    color: #fff;
    font-size: 43px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    margin: 30px 0 10px 0;
}

.center {
    position: absolute;
    top: 140px;
    left: 30px;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center img {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    border: 5px solid rgb(255 255 255);
    box-shadow: 0 0 9px #989898;
    object-fit: cover;
}

.active_testi {
    animation: 1.5s linear 0s infinite normal none running pulse;
}

.client-slider-for .slick-slide {
    margin: 0px !important;
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.client-sec::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 60%;
    left: 0;
    right: 0;
    bottom: 120px;
    background-image: url(../images/testi-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    z-index: -1;
}

.client-sec .sec-head {
    text-align: center;
}

.client-sec .sec-head p {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.client-sec .sec-head h2 {
    margin-bottom: 10px;
}

.client-sec .sec-head {
    margin-bottom: 40px;
}

.client-card.building-text {
    width: 570px;
    background: #27aae1;
    padding: 40px 50px;
    text-align: center;
    position: relative;
    border-radius: unset;
    margin: 30px auto 0;
    z-index: 9;
}

.client-card.building-text::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: #27aae1;
    top: -13px;
    transform: rotate(45deg);
}

.client-details p {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.testimonial-slider-box {
    width: 50%;
    margin: 250px auto 0;
    overflow: hidden;
}

section.testi-sec .row.lo {
    margin-bottom: 40px;
}

.happy-client-box.fg:hover {
    background: #27aae1;
}

.happy-client-box.fg:hover .happy-client-position-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(83deg) brightness(109%) contrast(102%);
}

.happy-client-box.fg:hover h3 {
    color: #fff;
}

.happy-client-box.fg:hover p {
    color: #fff;
}

/*---------------------------------------------------- Service Areas Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

section.contact-sec {
    margin-bottom: 100px;
    background: #27aae1;
    position: relative;
    padding: 80px 0;
}

.contact-form {
    margin-left: 30px;
}

section.contact-sec .row {
    align-items: center;
}

.contact-form h2 {
    color: #fff;
    margin-bottom: 40px;
}

.contact-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 54%;
}

.contact-img img {
    width: 100%;
    height: 730px;
    object-fit: cover;
    clip-path: polygon(0 0, 60% 0, 100% 60%, 100% 70%, 100% 100%, 40% 100%, 0 45%, 0% 30%);
}

section.contact-sec:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    background: #fff;
    width: 59.7%;
    height: 100%;
    clip-path: polygon(0 0, 0 0, 68% 47%, 94% 100%, 0 100%, 0% 70%, 0% 30%);
}

.contact-fields {
    position: relative;
    margin-bottom: 30px;
}

.contact-fields input {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #7bc9e9;
    color: #fff;
}

.contact-fields i {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 17px;
    color: #fff;
}

.contact-fields input::placeholder {
    color: #fff;
}

.contact-fields textarea {
    width: 100%;
    height: 150px;
    padding: 10px 15px;
    background: transparent;
    border: 1px solid #7bc9e9;
    color: #fff;
}

.contact-fields textarea::placeholder {
       color: #fff;
}


/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Work Section Start ------------------------------------------------------------- */

section.work-sec {
    text-align: center;
    margin-bottom: 100px;
}

.work-head p {
    width: 70%;
    margin: 10px auto 80px;
    color: #000;
}

.work-img img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(55%) saturate(3876%) hue-rotate(197deg) brightness(101%) contrast(102%);
    width: auto;
    height: auto;
}

.work-text h4 {
    font-size: 40px;
    margin-bottom: 37px;
    position: relative;
}

.work-text p {
    width: 70%;
    margin: 0 auto;
}

.work-main h4:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    background: #27aae1;
    width: 53px;
    height: 3px;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
}

.work-text {
    margin-bottom: 50px;
}

.work-img {
    position: relative;
    width: 45%;
    height: 200px;
    margin: 0 auto;
    margin-left: 160px;
    align-content: center;
}

.work-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #27aae1;
    width: 100%;
    height: 100%;
    transform: skewX(25deg);
    box-shadow: 0 0 2px 2px #0000002e;
}

.work-main:hover .work-img:before {
    background: #27aae1;
    z-index: -1;
    transition: 1.5s;
}

.work-main:hover .work-img img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%) hue-rotate(318deg) brightness(114%) contrast(88%);
}

/*---------------------------------------------------- Work Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

section.testi-sec {
    margin-bottom: 100px;
}

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

.testi-head p {
    color: #000;
    width: 70%;
    margin: 0 auto;
    margin-top: 13px;
    margin-bottom: 40px;
}

.happy-client-box {
    background: #f6f6f6;
    padding: 30px 30px 20px 55px;
    position: relative;
    transform: skew(-12deg, 0deg);
    transition: 0.5s;
}

ul.client-slider-icon {
    display: flex;
    transform: skew(12deg, 0deg);
    gap: 5px;
    margin-left: 20px;
}

.happy-client-box-img img {
    width: 180px;
    height: 260px;
    object-fit: cover;
    margin: 0 0 0 auto;
}

.happy-client-slider .slick-active {
    opacity: 1;
}

ul.client-slider-icon li i {
    color: #fd8f00;
}

.happy-client-box-text h3 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transform: skew(12deg, 0deg);
}

.happy-client-box-text p {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
    transform: skew(6deg, 0deg);
}

.happy-client-position-img {
    position: absolute;
    top: 0;
    left: -13px;
    transform: rotate(347deg);
}

.happy-client-main-box {
    position: relative;
    z-index: 1;
}

.happy-client-main-box .slide_counterchg h2 {
    display: flex;
    align-items: center;
    gap: 213px;
    margin-bottom: 0;
}

.happy-client-main-box .progress {
    width: 12%;
    height: 3px;
    position: absolute;
    bottom: -15%;
    left: 46%;
    z-index: 999;
}

.happy-client-main-box .slick-next:before {
    content: '';
    position: absolute;
    background-image: url(../images/banner-arrow-right.png);
    width: 61px;
    height: 48px;
    opacity: 5;
    background-size: cover;
}

.happy-client-main-box .progress {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background-image: linear-gradient(to right, #cdcccc, #cdcccc);
    background-repeat: no-repeat;
    transition: background-size 0.4s ease-in-out;
}

.happy-client-main-box .progress {
    background-color: #c2adad;
}

.happy-client-main-box .nike-zoom-silder-numberchg {
    position: absolute;
    width: 100%;
    bottom: -19%;
    z-index: 999;
    left: 38%;
}

.happy-client-main-box span.start_number {
    font-size: 65px;
    color: #fe4504;
    line-height: 30px;
}

.happy-client-main-box span.end_number {
    font-size: 49px;
    color: #000000;
    line-height: 30px;
}

.happy-client-main-box .slick-prev {
    top: inherit;
    bottom: 42px;
    z-index: 999;
}

.happy-client-main-box .slick-next {
    top: inherit;
    bottom: 42px;
    z-index: 999;
}

.happy-client-main-box .slick-next {
    left: auto;
    z-index: 99999;
    top: auto;
    bottom: -12%;
    right: 30%;
}

.happy-client-main-box .slick-prev {
    left: auto;
    top: auto;
    bottom: -12%;
    left: 30%;
}

.happy-client-main-box .slick-prev:before {
    content: '';
    position: absolute;
    background-image: url(../images/banner-arrow-left.png);
    width: 59px;
    height: 47px;
    opacity: 5;
    background-size: cover;
}

.happy-client-main-box .slick-slide {
    margin: 0px 35px;
}

.happy-client-main-box .slick-list {
    margin: 0 -60px;
}

p.sub-line {
    font-style: unset;
    font-size: 15px;
    margin-bottom: 15px;
    transform: skew(12deg, 0deg);
    padding-left: 5px;
}

.happy-client-box-img {
    overflow: hidden;
}

.happy-client-slider .slick-slide.slick-current .happy-client-box {
    background: #27aae1;
}

.happy-client-slider .slick-slide.slick-current .happy-client-box .happy-client-position-img img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(83deg) brightness(109%) contrast(102%);
}

.happy-client-slider .slick-slide.slick-current .happy-client-box h3 {
    color: #fff;
}

.happy-client-slider .slick-slide.slick-current .happy-client-box p {
    color: #fff;
}

/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #231f20;
    padding: 80px 0 40px 0;
    position: relative;
}

.footer_logo img {
    margin-bottom: 20px;
}

.quick-links.rt ul {
    column-count: 2;
}

.quick-links.rt ul li a {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 400;
}

.quick-links.rt {
    width: 82%;
    margin-left: 50px;
}

footer p {
    width: 95%;
    color: #bbbaba;
    margin-bottom: 0;
}

.footer_logo p {
    font-family: 'Roboto';
    font-weight: 400;
    letter-spacing: 1px;
}

footer h3 {
    font-size: 40px;
    margin: 0 0 25px 0;
    color: #fff;
    text-transform: capitalize;
}

.quick-links ul li {
    margin-bottom: 3px;
}

.quick-links ul li a {
    color: #bbbaba;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 13px;
    font-size: 13px;
    transition: ease-in;
    transition-duration: 0.2s;
    font-family: 'Roboto';
    font-weight: 400;
    line-height: 32px;
}

.quick-links ul li a:hover {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.quick-links>div {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 50px;
}

ul.footer-list li a {
    font-size: 17px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 300;
}

ul.ftr-list li a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    font-size: 12px;
    color: #fff;
    padding-top: 10px;
    margin-bottom: 10px;
    transition: ease-in;
    transition-duration: 0.2s;
    opacity: 1;
}

ul.ftr-list li a:hover p {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

ul.ftr-list li a p {
    font-size: 13px;
}

ul.ftr-list li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
    width: 27px;
    object-fit: contain;
}

ul.ftr-list i {
    color: #606e76;
    font-size: 24px;
}

.footer-text {
    width: 90%;
    margin: 0px 0px 0px auto;
}

.quick-links {
    width: 45%;
    margin: 0 auto;
    margin-bottom: 50px;
}

footer .col-md-3:before {
    position: absolute;
    content: "";
    background-color: #8d8d8d3d;
    right: -22px;
    height: 127%;
    width: 1px;
    top: -80px;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 68.5%;
    background: #3d3a3a;
    width: 1px;
    height: 78%;
}

footer .col-md-4,
footer .col-md-3,
footer .col-md-2 {
    position: relative;
}

footer .col-md-3:last-child:before {
    display: none;
}

.ftr-btm {
    background: #231f20;
    padding: 12px 20px;
    border: 1px solid #8d8d8d3d;
    border-radius: 5px;
}

.ftr-btm ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.ftr-btm ul li {
    font-size: 14px;
    color: #fff;
    font-family: 'Roboto';
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.ftr-btm ul li a i:hover {
    background: #27aae1;
    color: #ffffff;
}

.social-icons a i {
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
}

.footer_bottom ul {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.footer_logo h3 {
    font-size: 22px;
    margin: 0 0 25px 0;
    font-weight: 200;
    /* font-family: 'Rajdhani'; */
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer_bottom a {
    color: white;
}

.social-icons a i:hover {
    background-color: #fff;
    border: unset;
    transition: 1s;
    color: #000;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */


/* MISSION + VISION CSS START  */

section.mission-sec {
    margin-bottom: 100px;
}

section.mission-sec .row {
    align-items: center;
}

section.vision-sec {
    margin-bottom: 130px;
}

section.vision-sec .row {
    align-items: center;
}

.vision-img img {
    width: 95%;
    height: 390px;
    object-fit: cover;
}

.vision-img {
    text-align: end;
    position: relative;
}

.vision-text {
    padding-left: 75px;
}

.vision-text h4 {
    font-size: 80px;
    line-height: 1;
}

.vision-text p {
    margin-top: 23px;
    opacity: 85%;
    font-family: 'Roboto';
    font-size: 16px;
}

.vision-img:before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    background: #27aae1;
    width: 75%;
    height: 427px;
    z-index: -1;
}

.mission-img:before {
    content: '';
    position: absolute;
    top: -19px;
    right: 0;
    background: #27aae1;
    width: 75%;
    height: 427px;
    z-index: -1;
}

.mission-img img {
    width: 95%;
    height: 390px;
    object-fit: cover;
}

.mission-img {
    text-align: start;
    position: relative;
}

.mission-text {
    padding-right: 75px;
}

.mission-text h4 {
    font-size: 80px;
    margin-bottom: 0px;
    line-height: 1;
    color: #1d1f2b;
}

.mission-text p {
    margin-top: 23px;
    opacity: 85%;
    font-size: 16px;
    font-family: 'Roboto';
}


/* MISSION + VISION CSS END  */

/*-------------------------------------------------------- Contact Us Page Start --------------------------------------------------------------------*/

section.contact-us {
    margin: 40px 0;
    padding: 100px 0px;
}

.contct-info {
    padding-left: 30px;
}

.cntct-head h2 {
    margin-bottom: 12px;
    font-size: 70px;
    font-family: 'Mouzambik';
}

.contact-input {
    position: relative;
}

.contact-input::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 45px;
    top: 2px;
    left: 55px;
    background: url(../images/contact-line.png) no-repeat;
}

.contact-input input {
    width: 100%;
    height: 57px;
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
    padding: 10px 20px 10px 80px;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.contact-input textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
    padding: 12px 20px 12px 80px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    resize: none;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #909091;
}

.contact-input i {
    position: absolute;
    top: 16px;
    left: 20px;
    color: #27aae1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.send-btn {
    background-color: var(--lblue);
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    text-transform: uppercase;
    width: 22%;
    border: 0;
}

.send-btn .image {
    background: #fffbff;
    padding: 12px 12px;
    border: 2px solid #e1e1e1;
}

.send-btn:hover img {
    transform: translateX(8px);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 34px 30px;
    border: 1px solid #c1c1c1;
    margin: 17px 0;
}

.cntct-info-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #27aae1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cntct-info-icon i {
    font-size: 28px;
    color: var(--lblue);
    transition: 0.5s all;
}

.contact-info-item:hover i {
    transform: rotate(360deg);
    transition: 0.5s all;
}

.contact-info-item-details h5 {
    margin: 0;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
}

.contact-info-item-details a,
.contact-info-item-details p {
    color: #8b8b8b;
    font-size: 15px;
    font-family: 'Montserrat';
    line-height: 25px;
}

.contact-input-btn button {
    border: 0;
}

.login-btn button {
    border: 2px dotted #000;
    padding: 12px 23px;
    background: #ffa200;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
}

.cntct-info-icon i {
    font-size: 28px;
    color: var(--lblue);
    transition: 0.5s all;
}

.cntct-info-icon i {
    color: #27aae1;
}

.contact-info-item-details.tt {
    width: 60%;
}

.contact-info-item-details h5 {
    font-size: 30px;
}

.contact-info-item-details.rt a {
    font-size: 22px;
}

h2.info {
    padding-left: 20px;
}

/*--------------------------------------------------------* Contact Us Page End --------------------------------------------------------------------*/


/*--------------------------------------------------------* Service Inner Page Start --------------------------------------------------------------------*/

.serv-iner-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

section.service-sec-iner {
    margin-bottom: 100px;
}

.serv-iner-img {
    padding: 20px;
    border: 1px solid #27aae1;
    width: 95%;
    position: relative;
}

section.service-sec-iner .row {
    align-items: center;
}

.serv-iner-text h4 {
    font-size: 60px;
    margin-bottom: 8px;
}

.serv-iner-text p {
    font-size: 15px;
    font-family: 'Roboto';
    line-height: 28px;
    width: 88%;
    color: #454545d4;
}

.serv-iner-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.serv-iner-text ul li p {
    font-size: 16px;
}

.serv-iner-text ul {
    margin-top: 20px;
}

.serv-iner-img:before {
    content: '';
    position: absolute;
    top: 40%;
    left: -150px;
    background: #27aae1;
    width: 180px;
    height: 110px;
    z-index: -1;
}

section.service-sec-iner .row.sd {
    margin-bottom: 70px;
}

.serv-iner-img.rt:before {
    right: -190px;
    left: unset;
    width: 230px;
}

/*--------------------------------------------------------* Service Inner Page End --------------------------------------------------------------------*/

p.hf-message.hf-message-success {
    text-align: center;
    background: green;
    color: #fff;
    padding: 10px 0 10px 0;
    border-radius: 6px;
    margin-top: 20px;
}