@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

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;
}

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;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Jersey';
    src: url(../fonts/Jersey\ M54.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.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;
}

h1 {
    font-family: 'Jersey';
    font-size: 100px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 0px;
}

h2 {
    font-family: 'Jersey';
    font-size: 55px;
    color: #141414;
    font-weight: 400;
    margin: 0 0 5px;
}

h3 {
    font-family: 'Jersey';
    font-size: 40px;
    color: #f2b341;
    font-weight: 400;
    margin: 0 0 5px;
}

h4 {
    font-family: 'Jersey';
    font-size: 35px;
    color: #000;
    font-weight: 400;
    margin: 0 0 5px;
}

h5 {
    font-family: 'Jersey';
    font-size: 20px;
    color: #000;
    font-weight: 400;
    margin: 0 0 5px;
}

h6 {
    font-family: 'Jersey';
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    color: #000000c2;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0 0 20px;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Jersey';
    text-transform: uppercase;
    padding: 30px 10px;
}

.menuSec ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #edb14a;
    transition: all 0.4s ease-in;
    transform: translateX(-50%);
}

.menuSec ul li a:hover::after {
    width: 100%;
}

.menuSec ul li a.active::after {
    width: 100%;
}

.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: #fcfffe;
}

.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;
    display: none;
}

.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;
    right: 7%;
    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 css start */


/*banner css 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: linear-gradient(90deg, rgba(56, 77, 98, 1) 0%, rgba(56, 77, 98, 0.48) 62%, rgba(56, 77, 98, 1) 100%);
}

.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;
}

/*banner css end*/

/* theme setting */

.themebtn {
    font-size: 15px;
    padding: 3px 3px 3px 3px;
    border-radius: 50px;
    color: #ffffff;
    background: #ffffff;
    overflow: hidden;
    display: inline-flex;
    border: 1px solid #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    align-items: center;
    gap: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.themebtn span {
    background: #364c63;
    padding: 15px 35px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Jersey';
}

.themebtn i {
    height: auto;
    width: 40px;
    font-size: 17px;
    color: #000000;
    transition: transform 0.4s ease;
}

.themebtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.themebtn:hover {
    box-shadow: 0 0px 25px rgb(237 177 74);
}

.themebtn:hover::before {
    transform: translateX(100%);
}

.themebtn:hover i {
    transform: translateX(6px);
}

.container-fluid {
    padding: 0 5%;
}

.d_block {
    display: block;
}

.all-section {
    padding: 100px 0;
}

.padding-botto {
    padding-bottom: 100px;
}

.themebtn2 {
    font-size: 15px;
    padding: 3px 3px 3px 3px;
    border-radius: 50px;
    background: #364c63;
    overflow: hidden;
    display: inline-flex;
    border: 1px solid #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    align-items: center;
    gap: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.themebtn2 span {
    background: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    color: #000000;
    font-weight: 400;
    font-family: 'Jersey';
}

.themebtn2 i {
    height: auto;
    width: 40px;
    font-size: 17px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.themebtn2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.themebtn2:hover {
    box-shadow: 0 0px 25px rgb(237 177 74);
}

.themebtn2:hover::before {
    transform: translateX(100%);
}

.themebtn2:hover i {
    transform: translateX(6px);
}

/* theme setting */

/* header */

header {
    position: absolute;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #657585;
}

.headerbtn {
    text-align: end;
}

/* header */

/* banner */

.main_slider {
    position: relative;
}

.img-fluid {
    height: 900px;
    width: 100%;
    object-fit: cover;
}

.banner_text h1 span {
    display: block;
    font-size: 73px;
}

.banner_text h3 {
    letter-spacing: 7px;
    font-size: 25px;
    color: #f2b341;
}

.banner_text p {
    color: #a5b5c5;
    width: 90%;
}

.main_slider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 30px;
    background: url(../images/banner-shape-left.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.main_slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 30px;
    background: url(../images/banner-shape-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* banner */

/* about */

.about_top_right {
    padding: 0 0 0 50px;
}

.about_top_left img {
    width: 100%;
    height: 670px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
}

.about_bottom_right {
    position: relative;
    height: 245px;
    width: 100%;
}

.about_bottom_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #364c63d4;
    border-radius: 10px;
    border-top-left-radius: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.about_bottom_right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border-top-left-radius: 0;
}

.about_bottom_left a {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    background: #f2b341;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 5px solid #fff;
}

.about_bottom_left span {
    color: #3a3b44;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding-right: 245px;
    position: relative;
    display: block;
}

.about_bottom_left span::before {
    content: '';
    position: absolute;
    background: #d8d8da;
    width: 230px;
    height: 1px;
    top: 50%;
    right: -5px;
    z-index: 2;
    transform: translateY(-50%);
}

.about_bottom_left span::after {
    content: '';
    position: absolute;
    background: #f2b341;
    width: 30px;
    height: 1px;
    top: 50%;
    right: 200px;
    transform: translateY(-50%);
}

.about_bottom_left ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    position: absolute;
    top: 50%;
    right: -40px;
    z-index: 99;
    transform: translateY(-50%);
}

.about_bottom_left {
    position: relative;
    height: 245px;
    width: 100%;
}

/* about */

/* service */

.service_heading {
    text-align: center;
    margin-bottom: 30px;
}

.service_heading p {
    width: 60%;
    margin: 0 auto;
}

.service_txt h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service_img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service_img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.service_txt {
    padding: 30px 20px;
    height: 240px;
}

.service_txt a {
    color: #000;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
}

.service_card {
    margin: 20px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 13%);
    border-radius: 10px;
    transition: all .3s ease-in;
}

.service_card:hover {
    background: #364c63;
}

.service_card:hover * {
    color: #ffffff;
}

/* service */

/* why choose us  */

.wcu_img img {
    height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.wcu_img {
    position: relative;
}

.wcu_listing ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 35px;
    color: #000000;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.wcu_listing ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    height: 18px;
    width: 18px;
    z-index: 1;
    background: url(../images/wcu-2.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.wcu_listing {
    padding: 40px 0 0 40px;
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
}

/* why choose us  */

/* Proven Results on Every Project */

.testi_card {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    position: relative;
}

.testi_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(54, 76, 99) 0%, rgba(54, 76, 99, 0) 100%);
    border-radius: 10px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.testi_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: 0% 63%;
}

.testi_card a {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 30px 40px;
    bottom: 0;
    left: 0;
}

.testi_card a h4 {
    font-size: 30px;
    margin-bottom: 0;
    color: #ffffff;
}

.testi_slider {
    position: relative;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 300px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.custom-arrow.prev {
    left: -150px;
}

.custom-arrow.next {
    right: -150px;
}

.custom-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.726);
}

.custom-arrow i {
    position: relative;
    color: #fff;
    font-size: 30px;
    z-index: 2;
}

.custom-arrow {
    transition: background-image 0.3s ease-in-out;
}

/* Proven Results on Every Project */

/* Experts Behind the Safety */

.team_heading p {
    width: 89%;
}

.team_btn {
    text-align: end;
}

.team_card {
    width: 100%;
    height: 330px;
    border-radius: 10px;
    position: relative;
    width: 95%;
}

.team_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(54 76 99) 0%, rgba(54, 76, 99, 0) 65%);
    border-radius: 10px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.team_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: 0% 63%;
}

.team_card a {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 20px;
    bottom: 0;
    left: 0;
    text-align: center;
}

.team_card a h4 {
    font-size: 30px;
    margin-bottom: 0;
    color: #ffffff;
}

/* Experts Behind the Safety */

/* footer start */

.ftr_top {
    padding: 85px 0;
    background: #000;
}

.ftr_top_heading h2 {
    color: #ffffff;
    font-size: 58px;
}

.ftr_email input {
    width: 100%;
    background: #000;
    border: 1px solid #ffffff70;
    border-radius: 30px;
    padding: 15px 160px 15px 25px;
    color: #fff;
}

.ftr_email input::placeholder {
    color: #9f9f9f;
}

.ftr_email form {
    width: 73%;
    position: relative;
}

.ftr_email button {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Jersey';
    font-size: 16px;
    background: #fff;
    color: #000;
    padding: 15px 45px;
    border-radius: 30px;
    border: none;
}

.ftr_mid {
    background: #1f1f1f;
    border-top: 1px solid #4b4b4b;
    border-bottom: 1px solid #4b4b4b;
}

.ftr_mid h5 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
}

.ftr_links ul li a {
    font-family: 'Jersey';
    font-size: 14px;
    color: #ffffff;
    font-weight: 400px;
    margin-bottom: 10px;
}

.ftr_links ul {
    column-count: 2;
}

.contact_links ul li a span {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    display: block;
}

.contact_links ul li a i {
    color: #ffffff;
    font-size: 20px;
}

.contact_links ul li a,
.contact_links ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.contact_links {
    padding: 100px 50px;
    height: 100%;
    border-left: 1px solid #4b4b4b;
}

.contact_links.email {
    padding: 110px 50px;
}

.ftr_btm ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #616161;
    font-weight: 400;
}

.ftr_btm ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer-btm {
    padding: 20px 0;
    background: #1f1f1f;
}

.divider {
    background: #616161;
    height: 15px;
    width: 1px;
}

.copy_right p {
    color: #616161;
    margin-bottom: 0;
    text-align: center;
}

.get-in {
    position: absolute;
    right: 0px;
    background-color: #f2b341;
    padding: 50px;
    width: 15%;
    margin: 0;
    bottom: 0;
    height: 115%;
    border-top-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-in h2 {
    writing-mode: tb-rl;
    transform: rotate(180deg);
    font-size: 68px;
    color: #fff;
    letter-spacing: 10px;
}

.footerSec {
    margin-top: 100px;
    position: relative;
}

/* footer end */