@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto+Slab:wght@100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
/***** General CSS *****/

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

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.heading {
    text-align: center;
    margin: 0 auto 50px auto;
    width: 47%;
}

img.star-img {
    position: absolute;
}

img.star-img-color {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7454%) hue-rotate(72deg) brightness(106%) contrast(100%);
}

img.star-img1 {
    top: 7%;
    left: 5%;
}

img.star-img2 {
    bottom: 7%;
    right: 5%;
}

img.star-img3 {
    top: 7%;
    right: 5%;
}

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

a {
    text-decoration: none;
    color: #28b16d;
    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;
}

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;
}

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


/***** Font Files *****/

@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
}


/***** 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;
}

/* Buttons css Starts */

.theme1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #fff;
    position: relative;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme1:hover::before {
    width: 100%;
    clip-path: unset;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme1 span.btn-txt {
    font-size: 18px;
    line-height: 20px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 9;
}

.theme1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 51px;
    width: 80%;
    background: #3d3d9c;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme1 span.btn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 200;
    color: #000;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme1:hover span.btn-icon i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}













.theme2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #ed2d3d;
    border: none;
    position: relative;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme2:hover::before {
    width: 100%;
    clip-path: unset;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme2 span.btn-txt {
    font-size: 18px;
    line-height: 20px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 9;
}

.theme2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 51px;
    width: 80%;
    background: #3d3d9c;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme2 span.btn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme2:hover span.btn-icon i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}









.theme3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #121212;
    position: relative;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme3:hover::before {
    width: 100%;
    clip-path: unset;
    transition: ease-out;
    transition-duration: 0.2s;
}

.theme3 span.btn-txt {
    font-size: 18px;
    line-height: 20px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 9;
}

.theme3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 51px;
    width: 80%;
    background: #3d3d9c;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme3 span.btn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    position: relative;
    z-index: 9;
    transition: ease-in;
    transition-duration: 0.2s;
}

.theme3:hover span.btn-icon i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}




/* Buttons css Ends */


.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: "Barlow", sans-serif;
    font-size: 70px;
    line-height: 75px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 10px 0;
}

h2 {
    font-family: "Barlow", sans-serif;
    font-size: 55px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 10px 0;
    text-transform: uppercase;
}

h3 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 25px;
    line-height: 30px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0;
}

h4 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 10px 0;
}

h5 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 10px 0;
}

h6 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 10px 0;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    margin: 10px 0;
}

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

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

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

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

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


/*header css start */
header {
    padding: 0;
}

.header-top {
    background: linear-gradient(180deg, rgba(73, 100, 156, 1) 0%, rgba(20, 52, 121, 1) 100%);
    padding: 20px 100px;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

.header-top-right-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-top-right-links-txt * {
    color: #fff !important;
}

.header-top-right a {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    line-height: 23px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    color: #fff;
}

.header-top-right-links-txt h6 {
    margin: 0;
    text-transform: uppercase;
}

.header-top-left-phone {
    text-align: center;
}

.header-top-left-phone h5 {
    font-size: 19px;
    line-height: 21px;
    margin: 0;
    color: #fff;
    margin: 0 0 10px 0;
}

.header-top-left-phone a {
    font-family: "Roboto Slab", serif;
    font-size: 28px;
    line-height: 31px;
    font-weight: 500;
    color: #fff;
}

.menuSec {
    background-color: #ed2d3d;
    padding: 20px 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 100px 0 0;
}

.header-top-right-links-incon i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #ed2d3d;
    color: #fff;
    border-radius: 100px;
}

.header-btn {
    text-align: end;
}

.menuSec img {
    margin: 0;
}

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

.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: #ffff;
    padding: 8px 8px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Source Sans 3", sans-serif;
    text-transform: uppercase;
}

.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: #28b16d;
}

.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:hover a {}

.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;
}


/*header css start */

/*banner css start */

section.main_slider {
    background-image: url('../images/banner-shape.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* overflow: hidden; */
    position: relative;
    height: 120vh;
}

section.main_slider .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

section.main_slider img.img-fluid {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: brightness(0.5);
}

section.main_slider img.banner-shape1 {
    position: absolute;
    bottom: -100px;
    right: 0;
    left: 0;
    width: 100%;
    height: 255px;
    margin: 0 auto;
    z-index: 99;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.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 {}

.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;
}

.banner_text {
    position: relative;
    z-index: 999;
    width: 92%;
}

.banner-form-main {
    position: relative;
    z-index: 999;
    background-color: #1f1e1e;
    padding: 40px 40px;
}

.banner-form-main::Before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    height: 99px;
    width: 550px;
    background: #ed2d3d;
    z-index: -1;
}

.banner-form-main::After {
    content: '';
    position: absolute;
    top: 129px;
    left: -24px;
    height: 20px;
    width: 24px;
    background: #ed2d3d;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.banner_text h4 {
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    background-color: #ed2d3d;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 60px;
    font-weight: 400;
    margin: 0;
}

.banner_text.wow.fadeInLeft p {
    color: #fff;
}

.banner-form-phone-txt h5 {
    font-size: 22px;
    line-height: 38px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 200;
    margin: 0;
}

.banner-form-phone-txt a {
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
}

.banner-form-phone {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 0;
    position: relative;
}

.banner-form-txt {
    margin: 30px 0;
}

.banner-form-txt h4 {
    font-size: 43px;
    line-height: 50px;
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    text-transform: uppercase;
}

.banner-form-txt p {
    color: #fff;
    margin: 0;
}

.banner-form-txt h6 {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    margin: 20px 0;
}

.banner-form-input {
    position: relative;
}

.banner-form-input input, .banner-form-input select {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: none;
    margin: 0 0 20px 0;
    cursor: pointer;
}

.banner-form-input i {
    position: absolute;
    top: 22%;
    right: 3%;
    font-size: 25px;
}

.banner-form-btn button {
    height: 60px;
    width: 100%;
    background: #ed2d3d;
    color: #fff;
    font-size: 30px;
    line-height: 35px;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    transition: ease-in;
    transition-duration: 0.2s;
}

.banner-form-btn button:hover {
    background: #3d3d9c;
    transition: ease-out;
    transition-duration: 0.2s;
}

/*banner css Ends*/

/*About Us css Starts*/

section.about-sec {
    background-image: url('../images/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    position: relative;
    padding: 120px 0 80px 0;
}

.about-txt h3 {
    color: #ed2d3d;
    margin: 0;
}

.about-txt h2 {
    color: #143479;
    margin: 0;
}

.about-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 10px 0;
}

.about-card-heading {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    /* width: 87%; */
}

.about-card-heading h5 {
    font-size: 21px;
    line-height: 26px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
}

.about-card-img {
    position: relative;
}

.about-card-img::Before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #ed2d3d;
    z-index: 0;
    border-radius: 10px 10px 40px 10px;
}

.about-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    padding: 15px;
    position: relative;
    z-index: 99;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 525px;
    width: 525px;
    margin: 0 auto;
    padding: 10px;
    border: 15px solid #ed2d3d;
    border-radius: 300px;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 300px;
    object-position: 40%;
    box-shadow: 0 0 20px 20px #00000021;
}

.counter-txt .counter {
    font-size: 44px;
    line-height: 50px;
    color: #fff;
    font-family: 'Barlow';
}

.about-txt-counter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 165px;
    width: 165px;
    background: #ed2d3d;
    border-radius: 300px;
    border: 10px solid #fff;
}

.about-txt-counter h5 {
    font-size: 26px;
    line-height: 30px;
    color: #fff;
}

.about-txt-counter h5 span {
    font-size: 19px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-counter-main {
    position: relative;
}

.about-txt-counter-main {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

/*About Us Sec css Ends*/

/*Services Sec css Starts*/

section.services-sec {
    background-image: url('../images/services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 140px 0;
    z-index: 1;
}

.services-heading * {
    color: #fff;
}

.serviceslider {
    margin: 0 80px;
}

.serviceslider .slick-active {
    opacity: 1;
}

.serviceslider .slick-prev:before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: #ed2d3d;
    border-radius: 100px;
}

.serviceslider .slick-next:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: #ed2d3d;
    border-radius: 100px;
}

.serviceslider .slick-next {
    right: -50px;
}

.serviceslider .slick-prev {
    left: -80px;
}

.services-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.services-card:hover {
    background: #ed2d3d;
    transition: ease-out;
    transition-duration: 0.2s;
}

.services-card-img img {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.services-card-txt {
    padding: 20px;
}

.services-card-txt h4 {
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-family: 'Barlow';
    margin: 0;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.2s;
}

.services-card:hover .services-card-txt * {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.services-card-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.services-card-btn a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: #ed2d3d;
    border-radius: 40px;
    color: #fff;
    border: 1px solid #0000;
    font-size: 20px;
    rotate: -40deg;
    font-weight: 200;
    transition: ease-in;
    transition-duration: 0.2s;
}

.services-card-btn a i:hover {
    border: 1px solid #000;
    border-style: dashed;
    transition: ease-out;
    transition-duration: 0.2s;
}

.services-card:hover .services-card-btn a i {
    background: #fff;
    color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

/*Services Sec css Ends*/

/*Services Sec css Ends*/

section.choose-sec {
    background: #ed2d3d;
    margin: -80px 0 0 0;
    padding: 170px 0 80px 0;
    position: relative;
}

section.choose-sec * {
    color: #fff;
}

.choose-txt h3 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 5px;
    font-weight: 700;
}

.choose-txt p {
    text-align: justify;
}

.choose-card {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    margin: 0 0 30px 0;
}

.choose-txt h5 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    line-height: 45px;
}

.choose-icon {
    position: relative;
}

.choose-icon::Before {
    content: '';
    position: absolute;
    top: -13px;
    right: -14px;
    height: 70px;
    width: 70px;
    background: #3d3d9c;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    z-index: 9;
}

.choose-icon::After {
    content: '';
    position: absolute;
    top: -19px;
    right: -4px;
    height: 70px;
    width: 70px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}


.choose-icon img {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    object-fit: contain;
}

.choose-card .choose-txt p {
    text-align: start;
}

.choose-card-main {
    margin: 40px 0;
}

.choose-txt {
    width: 85%;
}

.choose-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45%;
    border-radius: 380px 0 0 380px;
    overflow: hidden;
    border-left: 10px solid #fff;
}

.choose-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: -90px;
}

/*Services Sec css Ends*/

/*Gallery Sec css Starts*/

section.gallery-sec {
    position: relative;
}

.gallery-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin: 0 0 20px 0;
    border-radius: 10px;
    /* border: 5px solid #fff; */
    box-shadow: 0 0 20px 0 #00000040;
}

.gallery-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

/*Gallery Sec css Ends*/


/* Testmonial Start */



.testi-slider-item {
    background: #fff;
    padding: 50px 50px 40px 50px;
    position: relative;
    /* box-shadow: 0 10px 0px 0 #000; */
    border-radius: 10px;
}

.testi-slider-item img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    object-fit: none;
    background-color: #ed2d3d;
    border-radius: 10px;
    border-top-right-radius: 0;
    margin: -70px 0 30px 0;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-slider-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    object-fit: none;
    background-color: #fff;
    border-radius: 10px;
    border-top-right-radius: 0;
    margin: -70px 0 30px 0;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-slider-quote img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    object-fit: none;
    border-radius: 10px;
    border-top-right-radius: 0;
    margin: 0;
    background-color: unset;
    filter: brightness(0);
}

.testi-slider .slick-track {
    padding: 50px 0;
    display: flex;
    justify-content: start;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
    /* width: 375px !important; */
}

.testi-slider-item p {
    color: #666666;
    font-size: 16px;
}

.testi-user-details {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 0 0;
    border-top: 1px solid #00000040;
    margin: 40px 0 0 0;
}

.testi-user-name h4 {
    font-family: auto;
    /* color: #fff; */
    margin: 0;
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
}

.testi-user-name span {
    font-size: 28px;
    /* color: #fff; */
    /* font-size: 12px;
    color: #fff;
    font-family: 'big-noodle';
    line-height: normal; */
    font-family: "Source Sans 3", sans-serif;
}

.testi-slider-item .rating-star {
    margin-bottom: 22px;
}

.testi-slider .slick-slide.slick-current testi-slider-item {
    background: var(--lmustard);
}

.testi-slider .slick-slide.slick-current .testi-slider-item {
    background-color: #ed2d3d;
    /* box-shadow: 0 10px 0px 0 #fff; */
}

.testi-slider .slick-slide.slick-current {
    /* width: 500px !important; */
    transition: 0.5s all;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-user-details {
    /* margin-top: 55px; */
    /* margin-bottom: 20px; */
}

.testi-slider .slick-slide.slick-current .testi-slider-item i.fas.fa-quote-left {
    background: #f79a48;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li a {
    color: #f79a48;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li .grey-star {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li.grey-star {
    opacity: 1;
}

.testi-slider .slick-list {
    padding-left: 35px;
    padding-right: 30px;
}


.testi-user-details img {
    width: auto;
    border-radius: 100px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    object-fit: cover;
    margin: 0;
}

.rating-star ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.testi-item-single i.fas.fa-quote-left {
    background: #af8d53;
}

.testi-item-single {
    background: #141516;
}

span.desg {
    font-size: 13px;
    font-family: 'Montserrat';
    color: rgba(255, 255, 255, .8);
}

.testi-slider-item p {
    /* color: #fff; */
}


.testimonail-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonail-heading p {
    width: 40%;
}

section.testimonail {
    background-image: url('../images/testi-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section.testimonail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 185px;
    height: 185px;
    background-color: #ed2d3d;
    z-index: 9;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

section.testimonail::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 185px;
    height: 185px;
    background-color: #ed2d3d;
    z-index: 9;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.testimonail-heading * {
    color: #fff;
}

section.testimonail .slick-dots li button:before {
    width: 15px;
    height: 15px;
    content: '';
    opacity: 1;
    background-color: #fff;
    border-radius: 100px;
}

section.testimonail .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    background-color: black;
}

section.testimonail .slick-active {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-slider-item * {
    color: #fff;
}

.testi-slider .slick-prev:before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #fff !important;
}

.testi-slider .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #fff !important;
}

.testi-slider .slick-slide.slick-current .testi-user-details {
    border-top: 1px solid #fff;
}


/* testimonial End */

/* Services Area Sec Starts */

section.services-area-sec {
    position: relative;
}

.services-area-tabs-right-txt ul {
    column-count: 3;
    gap: 40px;
    padding: 0 0 0 30px;
}

.services-area-tabs-right-txt ul li {
    list-style-type: square;
    font-size: 25px;
    color: #3d3d9c;
}

.services-area-tabs-left {
    width: 30%;
}

.services-area-tabs-right {
    width: 70%;
    padding: 35px 40px;
}

.services-area-tabs-main .nav-link {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    position: relative;
    transition: ease-in;
    transition-duration: 0.2s;
}

.services-area-tabs-main .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #525252;
    transition: ease-out;
    transition-duration: 0.2s;
}

.services-area-tabs-main .nav-link:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.2s;
}

.services-area-tabs-left-txt {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.services-area-tabs-main .nav-pills .nav-link.active, .services-area-tabs-main .nav-pills .show > .nav-link {
    color: unset;
    background-color: unset;
    border-bottom: 1px solid #fff;
    border-radius: unset;
}

.services-area-tabs-left-txt i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    border-radius: 100px;
    color: #000;
    background-color: #fff;
    font-weight: 500;
}

.services-area-tabs-left-txt h5 {
    font-size: 17px;
    line-height: 20px;
    color: #fff;
    margin: 0;
    font-family: "Montserrat", serif;
}

.services-area-tabs-left-heading h5 {
    font-size: 23px;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Montserrat", serif;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #525252;
    position: relative;
}

.services-area-tabs-left-heading h5::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 20%;
    background-color: #fff;
    height: 3px;
}

.services-area-tabs-right-heading h5 {
    font-size: 23px;
    line-height: 32px;
    color: #000;
    text-transform: uppercase;
    font-family: "Montserrat", serif;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.services-area-tabs-right-heading h5::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 14%;
    background-color: #ed2d3d;
    height: 3px;
}

.services-area-tabs-left {
    width: 30%;
    background-color: #1e1e1e;
    padding: 50px 20px;
}

.services-area-tabs-right-txt ul li h5 {
    font-size: 17px;
    line-height: 49px;
    color: #000;
    margin: 0;
    font-family: 'Montserrat';
}

.services-area-tabs-main {
    box-shadow: 0 0 20px 0 #0000001f;
}


/* Services Area Sec End */

/* Pricing Sec Starts */

section.pricing-sec {
    background-image: url('../images/pricing-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 130px 0;
    margin: 0 0 -100px 0;
    position: relative;
}

.pricing-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px 0;
}

.pricing-heading * {
    color: #fff;
}

.pricing-heading p {
    width: 40%;
}

.pricing-btn {
    text-align: center;
    margin: 50px 0 0 0;
}

.pricing-card-top h5 {
    font-size: 30px;
    line-height: 45px;
    color: #fff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

.pricing-card-heading {
    text-align: center;
    background-color: #3d3d9c;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.pricing-card-heading h4 {
    font-size: 31px;
    line-height: 40px;
    color: #fff;
    margin: 0;
    font-family: 'Barlow';
}

.pricing-card-heading h5 {
    font-family: 'Montserrat';
    font-size: 21px;
    line-height: 26px;
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
}

.pricing-card-tag h6 {
    font-family: 'Montserrat';
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    height: 30px;
    width: 120px;
    margin: 0;
    position: absolute;
    top: 25px;
    right: -30px;
    rotate: 58deg;
}

.pricing-card-txt ul li {
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    padding: 20px 0 20px 0;
    margin: 0 40px 20px 40px;
    border-bottom: 1px solid #00000038;
}

.pricing-card-btn {
    text-align: center;
}

.pricing-card {
    background-color: #fff;
    box-shadow: 0 0 20px 0 #00000014;
}

.pricing-card-txt {
    padding: 20px 0 40px 0;
}

/* Pricing Sec End */


/* Footer css Starts */

footer {
    padding: 150px 0 0 0;
    background-color: #0d0d0d;
}

.footer-txt-heading h5, .news-letter h5 {
    color: #fff;
    font-size: 30px;
    line-height: 51px;
    margin: -20px 0 40px 0;
    font-family: 'Roboto Slab';
    font-weight: 200;
    text-transform: uppercase;
}

.footer-links1 ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    font-weight: 300;
    font-family: "Montserrat", system-ui;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links1 ul li a:hover {
    color: #bebeff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-links-contact ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin: 0 0 40px 0;
}

.footer-links-contact ul li i {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    color: #fff;
}

.footer-links-contact ul li a {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links-contact ul li a:hover {
    color: #bebeff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a:hover {
    color: #bebeff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.news_in {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background-color: #fff;
    padding: 0 0 0 10px;
    border-radius: 5px;
    margin: 0 0 21px 0;
}

.news_in input {
    width: 100%;
    background-color: #0000;
    border: none;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
}

.news_in input::placeholder {
    font-size: 18px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
}

.news_in i {
    font-weight: 400;
    color: #000;
    font-size: 18px;
}

.footer-txt p {
    color: #fff;
    text-align: center;
    margin: 40px 0;
}

.header-socials-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-socials-links ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #000;
    font-size: 20px;
    background: #fff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.header-socials-links ul li a i:hover {
    background: #3d3d9c;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.bottombar {
    padding: 20px 0;
}

.footer-rights p {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.bottombar {
    background: #3d3d9c;
    margin: 40px 0 0 0;
}

.news-letter button.theme2 {
    width: 100%;
}

.news-letter button.theme2 span.btn-icon {
    width: 30%;
}

.news-letter button.theme2 span.btn-txt {
    width: 100%;
}

.footer-rights-img {
    display: flex;
    align-items: center;
    justify-content: end;
}

/* Footer css Ends */

/* Inner Banner css Starts */

section.inner-banner .container {
    align-items: normal;
}

section.inner-banner {
    height: 75vh;
    background-image: none;
}

section.inner-banner img.img-fluid {
    object-position: 40% 6%;
}

/* Inner Banner css Ends */

/* About Us Page css Starts */

section.inner-about-sec {
    margin: -100px 0 0 0;
    padding: 120px 0 80px 0;
}

.about-txt-extra {
    margin: 50px 0 0 0;
}

section.inner-choose-sec {
    margin: 0;
}

section.inner-about-sec img.star-img2 {
    bottom: 30%;
    right: 2%;
}

section.inner-testimonail::before {
    background-color: #fff;
}

/* About Us Page css Ends */

/* Services Page css Starts */

section.inner-services-sec {
    background-image: url('../images/inner-services-bg.png');
    background-attachment: fixed;
    margin: -130px 0 0 0;
    padding: 240px 0 80px 0;
    background-position: 0 0;
}

section.inner-services-sec img.star-img1 {
    top: 6%;
    left: 3%;
}

section.inner-services-sec img.star-img3 {
    top: 10%;
    right: 3%;
}

section.inner-services-sec .services-card {
    margin: 0 0 30px 0;
    box-shadow: 0 0 20px 0 #0000002e;
}


section.watch-video {
    position: relative;
    background-image: url('../images/services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 230px 0;
    margin: 0 0 -80px 0;
}

/* section.watch-video::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 50%;
    height: 60px;
    background-color: #dc0185;
    clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
}     */

section.watch-video h2:before,
section.video h2:before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(96%) saturate(18%) hue-rotate(265deg) brightness(104%) contrast(107%);
}

.video-slide .slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.5);
}

.video-slide .slick-slide.slick-active img {
    margin: 0 auto;
    width: 250px;
}

.video-slide .slick-slide.slick-current.slick-active.slick-center img {
    width: 90%;
    height: 290px;
    object-fit: cover;
    /* box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px; */
}

.video-slide .slick-track {
    display: flex;
    align-items: center;
}

.vido-img img:not(a img) {
    border: 5px solid #fff;
}

.vido-img {
    position: relative;
}

.vido-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.vido-img a img {
    width: 52px !important;
    height: 56px !important;
    object-fit: cover;
}

.video-slide .slick-slide {
    margin: 50px 20px;
    opacity: 1;
}

section.watch-video h2.big-heading {
    color: #fff;
}

.watch-heading * {
    color: #fff;
}

.video-slide .slick-prev:before {
    content: "\f104";
}

.video-slide .slick-next:before {
    content: "\f105";
}

.video-slide .slick-prev:before,
.video-slide .slick-next:before {
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 39px;
    color: #fff;
}

.video-slide .slick-next {
    right: 0;
}

section.watch-video .top-head p {
    color: #fff;
}

.sec-head.second-sec-head h2 {
    font-size: 55px;
    line-height: 61px;
    color: white;
}

.sec-head.second-sec-head {
    font-size: 15px;
    line-height: 28px;
    font-family: 'Montserrat';
    color: white;
}

.rental-btn-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rental-btn-right a i {
    font-size: 20px;
    color: rgba(3, 173, 239, 1);
}

img.vid-bar {
    position: absolute;
    height: 13px !important;
    width: 45% !important;
    bottom: 10%;
    margin: 0 auto !important;
    right: 0;
    left: 0;
    border: unset !important;
}

.video-slide .slick-slide.slick-current.slick-active.slick-center img.vid-bar {
    height: 23px !important;
    width: 75% !important;
    bottom: 4%;
}

/* Services Page css Ends */

/* Services Detail Page css Starts */

section.service-detail {
    position: relative;
    background-image: url('../images/inner-services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: -130px 0 0 0;
    padding: 240px 0 80px 0;
    background-position: 0 0;
}

section.service-detail img.star-img3 {
    top: 13%;
    right: 3%;
}

.service-detail-txt h2 {
    margin: 0;
}

.service-detail-txt p {
    margin: 35px 0 0 0;
}

.service-detail-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #0000005c;
}

.service-detail-extra {
    margin: 50px 0;
}

.service-detail-extra .service-detail-txt p {
    margin: 0;
}

.service-detail-bottom-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 277px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #00000040;
}

/* Services Detail Page css Ends */


/* Faqs Starts */

section.faqs-sec {
    padding: 80px 0;
    margin: 0 0 -80px 0;
    position: relative;
    background-image: url('../images/services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 940px;
}

/* section.faqs-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    height: 50px;
    margin: -50px 0 0 0;
    background: linear-gradient(0deg, #0784d2 0%, #01bcfa 100%);
    z-index: 9;
    clip-path: polygon(2% 0%, 100% 0, 100% 100%, 0% 100%);
} */

.faqs-hadeing h2 {
    color: #fff;
}

.faqs-hadeing p {
    color: #fff;
    width: 93%;
    margin: 0 auto;
}

.gorilla-content .accordion-item {
    margin-bottom: 30px;
    border: unset;
    border-radius: 10px;
}

.gorilla-content .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: black;
    background: unset;
    border-bottom: unset;
    font-size: 23px;
    font-family: "Roboto";
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    text-transform: uppercase;
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.gorilla-content .accordion-button::after {
    content: '\f078';
    font-weight: 900;
    font-family: "Font Awesome 5 free";
    background-image: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
}

    
.gorilla-content .accordion-button.collapsed {
    padding: 15px 20px;
    color: white;
    background-color: #ed2d3d;
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 0;
    font-family: 'Barlow';
}

.gorilla-content .gorrila-page-txt .color-red {
    color: #a60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.gorrila-page-txt ul {
    list-style: auto;
}

.gorrila-page-txt ul li {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
}

.gorrila-page-txt ul li::marker {
    color: #a60000;
}

.accordion-body.gorrila-page-txt {
    padding: 0px 30px 20px 30px;
    background: #ffffff;
    border-top: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.gorilla-content .accordion-item {
    margin-bottom: 30px;
    border: unset;
    border-radius: 10px;
}

.gorilla-content .accordion-button:not(.collapsed) {
    padding: 20px 20px 0px 20px;
    color: #000;
    font-size: 30px;
    line-height: 45px;
    text-transform: uppercase;
    border-radius: 10px;
    font-family: 'Barlow';
    font-weight: 600;
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.gorilla-content .accordion-button:not(.collapsed)::after {
    content: \f068;
    font-weight: 900;
    font-family: "Font Awesome 5 free";
}
.gorilla-content .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

/* Faqs Ends */

/* Pricing Page Css Starts */

section.inner-pricing-sec {
    position: relative;
    background-image: url('../images/inner-services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: -130px 0 0 0;
    padding: 240px 0 80px 0;
    background-position: 0 0;
}

section.inner-pricing-sec .pricing-card-main {
    margin: 0 0 50px 0;
}

section.inner-pricing-sec img.star-img3 {
    top: 10%;
    right: 3%;
}

section.inner-pricing-sec .pricing-card-top h5 {
    color: #000;
}

/* Pricing Page Css Ends */


/* Contact Page Start */

section.contact_us {
    position: relative;
    background-image: url('../images/inner-services-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: -130px 0 0 0;
    padding: 240px 0 80px 0;
    background-position: 0 0;
}

section.contact_us img.star-img1 {
    top: 7%;
    left: 3%;
}

section.contact_us img.star-img3 {
    top: 10%;
    right: 3%;
}

.contact1 h2,
.contact2 h2 {
    color: #000 !important;
    font-size: 55px;
    text-transform: capitalize;
    font-weight: 100;
    margin-bottom: 10px;
    /* font-family: 'arial'; */
    font-weight: 600;
    text-transform: uppercase;
}

.contact1 p,
.contact2>p {
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 5%;
}

.contact1 input,
.contact1 textarea {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    padding: 20px;
    background: #fff;
    border: 1px solid #000;
}

.contact1 .theme_btn {
    width: 100%;
    border: 0;
    background: #f01414;
    color: #fff;
    padding: 10px;
    font-size: 23.64px;
    font-family: 'Nunito';
    font-weight: 500;
    border-radius: 0;
    height: 60px;
}

.contact2 ul li {
    display: flex;
    align-items: center !important;
    margin-bottom: 50px;
    align-items: flex-start;
}

.contact2 ul li h4 {
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    line-height: 1.3;
    font-size: 35px;
    text-transform: uppercase;
}

.contact2 ul li p a {
    color: #000;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.contact2 ul li p {
    color: #000;
    line-height: 25px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.contact2 .icon {
    height: 85px;
    width: 17%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ed2d3d;
    margin-right: 23px;
}

.contact2 .icon i {
    font-size: 30px;
    color: #fff;
    font-family: 'Font Awesome 5 Pro';
}

.map {
    margin-top: 50px;
}

h1.cnt:after {
    width: 25px;
    height: 25px;
    right: 5.1%;
    bottom: 21%;
}

.contact1 textarea {
    resize: none;
    height: 160px;
}

.contact1 input::placeholder,
.contact1 textarea::placeholder {
    color: #000;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
}

.contact2 .icon_info {
    width: 83%;
}

button.btn1.contact-pag-btn {
    width: 100%;
    border: 0;
    margin-top: 0;
    font-size: 26px;
    height: 60px;
    background-color: #c9a977;
    color: #fff;
}

.contact2 .icon i.fa-regular.fa-phone {
    transform: rotate(90deg);
}

.contact1 input::placeholder {
    font-weight: 600;
    font-size: 16px;
}

.contact1 textarea::placeholder {
    font-weight: 600;
    font-size: 16px;
}

.contact_us_btn button {
    width: 100%;
}

.contact_us_btn .theme2 span.btn-txt {
    width: 100%;
}

.contact_us_btn .theme2::before {
    width: 93%;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}

.contact_us_btn .theme2:hover::before {
    width: 100%;
    clip-path: unset;
}

/* Contact Page End */

/* Contact Page End */


/*Quote Page Css Starts*/

section.onlinebooking {
    position: relative;
    background-image: url('../images/inner-services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: -130px 0 0 0;
    padding: 240px 0 80px 0;
    background-position: 0 0;
}

section.onlinebooking img.star-img3 {
    top: 20%;
    right: 3%;
}

.appintment-input {
    position: relative;
}
.appintment-input input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    font-size: 14px;
    color: #767676;
    border: 1px solid #cecbcb;
    /* border-radius: 10px; */
    margin: 15px 0;
    /* font-family: 'Montserrat-Regular'; */
    background-color: #fff;
}

.appintment-input select#select-type {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    font-size: 14px;
    color: #767676;
    border: 1px solid #cecbcb;
    border-radius: 0;
    margin: 15px 0;
    background-color: #fff;
}
.appintment-input input::placeholder{
    color: #767676;

}

.appintment-input i {
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 20px;
    color: #ed2d3d;
}

.appintment-input textarea {
    width: 100%;
    height: 200px;
    /* border-radius: 10px; */
    margin-bottom: 15px;
    padding: 20px 20px;
    resize: none;
    font-size: 14px;
    color: #767676;
    border: 1px solid #cecbcb;
}
.appt-btn a.btn10 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 23%;
    height: 46px;
    padding: 7px;
    justify-content: end;
}
.form-pic img {
    width: 100%;
}

.border {
    border: 1px solid #dee2e6 !important;
    border-radius: 20px;
    box-shadow: 5px 0px 8px #8080802b;
}

.forms form {
    padding: 0 25px 0 25px;
}


ul.quantity .input-number {
    width: 89%;
    padding: 10px 20px;
    /* vertical-align: top; */
    /* text-align: center; */
    /* outline: none; */
    background: transparent;
    color: #767676;
    height: 50px;
    border: 1px solid #ececec;
    font-size: 15px;
    line-height: 61px;
    border-radius: 10px;
    /* border-top-left-radius: 15px; */
    /* border-bottom-left-radius: 15px; */
}
ul.quantity .input-number::placeholder{
    color: #767676;
}


span.input-number-increment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    position: relative;
    bottom: -11px;
    right: 67px;
    border: solid 1px #ececec;
    height: 28px;
    border-radius: 0;
    color: black;
    border-bottom-right-radius: 9px;
    /* border-left: unset; */
}
 .input-number-increment {
    display: inline-block;
    width: 30px;
    line-height: 38px;
    background: transparent;
    color: #b5b5b5;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

ul.quantity {
    margin-bottom: 0;
    margin-top: 15px;
    width: 112%;
}

span.input-number-decrement {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    position: relative;
    top: -13px;
    left: -34px;
    border: solid 1px #ececec;
    height: 23px;
    border-radius: 0;
    color: black;
    border-top-right-radius: 9px;
}

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

.appintment-input .form-select {
    background-image: unset !important;
}

.appintment-slec-icon i {
    top: 16px;
    right: 16px;
}

/*Quote Page Css Ends*/




