@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&display=swap');

/***** General CSS *****/

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 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** 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
}

@font-face {
  font-family: 'bodera';
  src: url(../fonts/bodera.ttf);
  font-weight: 400;
  font-style: normal
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  line-height: 20px;
  padding: 18px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  text-transform: uppercase;
  background: #2492eb;
  border-radius: unset;
  border: unset;
  font-family: 'Montserrat';
  font-size: 13px;
  font-weight: 300;
}

.theme-btn:hover {
  background-color: #04152c;
  color: #fff;
  border-color: #04152c;
}

.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: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'bodera';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

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 */

.menuSec {
  padding: 15px 0;
}

.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: #000;
    padding: 11px 30px;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.menuSec ul li a:after {
  /* content: ''; */
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}

.menuSec ul li:last-child a {
  padding-right: 46px;
}

.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: #3b94e9;
}

.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;
}
.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;
}
/*header css start */

.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;
}
/*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 {}
.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 css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}

/*Top sec Start*/

.top-cont-info ul li {
    font-family: 'Poppins';
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffffa8;
}

.top-cont-info ul li i {
    font-size: 16px;
}

.top-cont-info ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: unset;
}

ul.top-social li {
    font-size: 12px;
}

ul.top-social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 19px;
    margin-bottom: unset;
}

ul.top-social li a {
    font-size: 16px;
    color: #ffffffa8;
}

.topSec {
    background: #02152d;
    padding: 7px 0px;
}


.top-cont-info ul li a {
    color: #ffffffa8;
}

ul.top-social li p {
    color: #ffffffa8;
    font-family: 'Poppins';
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 0px;
    font-weight: 400;
}
/*Top Sec End*/

.menuSec .row {
    align-items: center;
}



/*Banner Start*/

.text-banner h2 {
    font-size: 64px;
    color: #000;
}

.text-banner h1 {
    font-family: 'bodera';
    font-size: 130px;
    color: #000;
}

.text-banner p {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 23px 0px;
}

.text-banner a.theme-btn {
    background: #02152d;
}

.banner-img {margin-right: 35px;}

.banner-main-sec .row {
    align-items: center;
}

.banner-main-sec {
    padding: 100px 0px;
    position: relative;
}

.banner-main-sec:before {
    position: absolute;
    content: '';
    background: #2492eb;
    width: 30%;
    height: 100%;
    top: 0;
    z-index: -1;
    left: 0;
}

/*banner End*/


/*Section Why This Work Start*/

.why-work-sec {
    background-image: url(../images/why-work-back.jpg);
    width: 100%;
    height: 710px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    background-attachment: fixed;
}

.text-why-work h2 {
    font-family: 'bodera';
    font-size: 103px;
    color: #fff;
    text-align: center;
}

.text-why-work p {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #f6f5f2;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 30px;
}

.why-this-btn {
    text-align: center;
    margin-top: 30px;
}


/*Section Why This Work End*/


/*Section About Start*/

.about-txt h2 {
    font-size: 103px;
    color: #000;
}

.about-txt p {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 29px;
    width: 97%;
}

.about-main-sec .row {
    justify-content: space-between;
}

.about-main-sec {
    padding: 100px 0px;
    position: relative;
}

.about-main-sec .row {
    align-items: center;
}
.about-btn {
    margin-top: 40px;
}

.about-main-sec::before {
    position: absolute;
    content: '';
    background: #02152d;
    width: 23%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.about-img img {
    width: 100%;
}

.about-img {
    position: relative;
    margin-right: 20px;
}

.about-img::before {
    position: absolute;
    content: '';
    border: 2px solid #dddccf;
    width: 76%;
    height: 490px;
    right: -63px;
    top: -40px;
    z-index: -1;
}
/*Section About End*/


/*Section Services Start*/

.services-main-sec {
    background: #eae8e2;
    padding: 100px 0px;
}

.services-heafing h2 {
    font-size: 103px;
    text-align: center;
    color: #000;
    line-height: 90px;
    margin-bottom: 0px;
}

.services-heafing p {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.servi-box-heading h2 {
    font-size: 44px;
    text-align: center;
    line-height: 46px;
    margin-bottom: 15px;
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.services-img img {
    width: 100%;
    padding: 0px 10px;
}

.service-btm-txt p {font-family: 'Montserrat';font-size: 16px;font-weight: 500;text-align: center;color: #000;}

.service-btm-txt a {
    border: 1px solid #3b94e8;
    padding: 20px 20px;
    border-radius: 50%;
    background: #3b94e8;
    color: #fff;
}
.service-arrow {
    text-align: center;
    margin-top: 40px;
    position: relative;
    margin-bottom: -30px;
}

.services-box {
    background: #f6f5f2;
    padding: 30px 30px 0px;
}

.service-btm-txt {
    margin-top: 20px;
}

.service-btm-txt img {
    margin-bottom: -80px;
}

.services-heafing {
    margin-bottom: 20px;
}
.service-btm-txt a:hover {
    background: #04152c;
    border-color: #04152c;
}
/*Section Services End*/


/*Sewction Availiblity Start*/

.availability-sec {
    padding: 120px 0px 100px;
    position: relative;
    background: #f0efeb;
    z-index: 1;
}

.availability-sec::before {position: absolute;content: '';background: #4a96e6;width: 23%;height: 70%;bottom: 0;left: 0;z-index: -1;}

.availability-img img {
    width: 100%;
}

.availability-img {
    padding-left: 30px;
    position: relative;
}

.availability-img:before {
    position: absolute;
    content: '';
    border: 2px solid #dddccf;
    width: 76%;
    height: 490px;
    left: -33px;
    top: -50px;
    z-index: -1;
}

.availiblity-txt h2 {
    font-size: 99px;
    color: #000;
}

.availability-sec .row {
    justify-content: space-between;
    align-items: center;
}


.availability-calendar{display:flex;background:#eee;padding: 20px 0px 20px;gap:40px;width:700px;}

/* Calendar */

.calendar{
width:320px;
}

.calendar-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.calendar-header button{border:none;background:#ddd;padding:5px 10px;cursor:pointer;font-size: 23px;}

.calendar-days{
display:grid;
grid-template-columns:repeat(7,1fr);
text-align:center;
font-size:12px;
margin-bottom:10px;
}

.calendar-dates{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:5px;
}

.calendar-dates div{padding:10px;cursor:pointer;text-align:center;color: #0000007d;}

.calendar-dates div:hover{
background:#ddd;
}

.selected{background:#4285f4;color:white;background: unset;border-bottom: 2px solid #000;}

/* Hours */

.hours{
width:220px;
}

.hours-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:8px;
}

.hours-grid input{
display:none;
}

.hours-grid label{padding:10px;text-align:center;background: #f0efeb;cursor:pointer;border-bottom: 1px solid #ccc;}

/* Selected Hour Style */

.hours-grid input:checked + label{background: unset;color: #000;border-color:#4285f4;border-bottom: 1px solid #000;}

.check-btn{margin-top:20px;background: #5598e4;color:white;border:none;padding: 12px 10px;width: 80%;cursor:pointer;font-family: 'Montserrat';}


/*Section Availiblity End*/


/*Section Contact Start*/

.heading-contactus h2 {
    font-family: 'bodera';
    font-size: 80px;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.heading-contactus p {
    font-family: 'Montserrat';
    font-size: 15px;
    text-align: center;
    color: #fff;
}

.heading-contactus {
    margin-bottom: 40px;
}

.contact-field input {
    width: 100%;
    border: 1px solid #0000005c;
    padding: 10px 20px;
    background: #f7f8fa;
    font-family: 'Montserrat';
}

.contact-field textarea {
    width: 100%;
    border: 1px solid #0000005c;
    padding: 10px 20px;
    background: #f7f8fa;
    height: 200px;
}

.contact-field {
    margin-bottom: 30px;
}

.contact-field textarea::placeholder {
    font-family: 'Roboto';
    font-size: 14px;
}

.contact-field input::placeholder {
    font-family: 'Roboto';
    font-size: 14px;
}

.contact-main-sec .main-for-back {
    padding: 50px 50px;
    background: #f0efeb;
    margin-bottom: -51px;
}


.contact-main-sec {
    position: relative;
    padding: 100px 0px 50px;
    background-image: url(../images/hm-contact-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.contact-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
.contact-btn a.pinBtn {
    border-color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-field input::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
}

.contact-field textarea::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
}
.hm-contact-btn {
    text-align: center;
}
/*Section Contact End*/



/*Section People Say  Start*/

.testimonial_sec {

padding: 100px 0 0px;

position: relative;

background: #f0efeb;
}

.ser-bx::before {

    position: absolute;

    bottom: 0;

    left: 0;

    content: '';

    width: 100%;

    height: 140px;

    background: linear-gradient(172deg,rgba(0, 0, 0, 0.39) 0%, rgba(0, 0, 0, 0.61) 50%, rgba(0, 0, 0, 1) 100%);

}

.testimonial_sec .custom-space {

    margin-top: 50px;

}



.testimonial_top_bar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #e5e5e5;

}



.testimonial_top_bar p {

    text-align: center;

    color: #666666;

    margin: 0 auto;

    width: 50%;

}



.testimonial_top_bar {

    padding: 30px 0 15px 0;

}



.checked {

    color: #fd8f00;

}



.testimonial_boxspan {

    color: #fd8f00;

}



.testimonial_box {

padding: 50px 24px;

height: 320px;

margin: 25px 0px;

position: relative;

background-color: #ffffff;

box-shadow: 0px 11px 43px 0px rgba(0, 0, 0, 0.1);
}



.testimonial_box i {

position: absolute;

color: #fff;

top: -7%;

opacity: 1;

border-radius: 50%;

background-color: #3b94e9;

/* display: none; */

width: 50px;

height: 50px;

display: flex;

align-items: center;

justify-content: center;
}



.testimonial_box p {

padding: 0;

max-height: 100px;

font-weight: 400;

/* overflow-y: scroll; */

font-family: 'Montserrat';

font-size: 14px;

line-height: 25px;

color: #000;
}



.profile {

padding: 27px 0;

display: flex;

align-items: center;

gap: 20px;
}



.profile img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    object-position: top;

}



.profile_text p {

    margin: 0;

    padding: 0;

    overflow-y: visible;

}



.profile_text h6 {

margin: 0;

color: #000;

font-size: 30px;

text-transform: capitalize;

font-family: 'bodera';
}



.profile_text p {

padding: 0;

text-transform: uppercase;

font-family: 'Jersey';

font-family: 'Montserrat';

font-weight: 300;

margin-bottom: unset !important;
}



.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box i {

background-color: #3b94e9;

color: #fff;

opacity: 1;
}



.testimonial_slider .slick-slide.slick-current.slick-active .profile_text p {

    padding: 0 !important;

    color: #fff

}



.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box h6 {

color: #000;
}



.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box p {

padding: 20px 0 16px 0;

color: #000;

margin-bottom: 0;

width: 100%;
}

.testimonial_box:hover p {

/* color: #ffff; */
}



.testimonial_box:hover h6 {

/* color: #fff; */
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {

padding: 50px 69px;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {

border-width: 1px;

/* border-color: rgb(244, 244, 244); */

/* border-style: solid; */

border-radius: 0px;

background-color: #fff;

box-shadow: 0px 11px 43px 0px rgba(0, 0, 0, 0.1);
}



.testimonial_box:hover {

/* background-color: #865546 !important; */

/* box-shadow: 0px 11px 43px 0px rgba(0, 0, 0, 0.1); */
}



.testimonial_box:hover i {

/* opacity: 1; */

/* background-color: #ffffff; */

/* color: #51483f; */
}



.testimonial_slider .slick-slide.slick-current.slick-active {

width: 12% !important;
}



.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active {

    width: 7% !important;

}



.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active {

    width: 7% !important;

}



.testimonial_slider .slick-list.draggable {

    height: 463px;

    padding: 30px 0 0px;

}



.testimonial_slider .slick-active {

    opacity: 1;

}



.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testimonial_box {

/* background-color: #fff; */

/* border-radius: 0px; */

/* color: #fff; */
}



.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {

    background-color: #fff;

}



.profile i {

    position: relative;

    top: 0;

    left: 0;

    background-color: #000000 !important;

    border: 1px solid #fff;

    color: #fff !important;

}



.testimonial_slider .slick-slide.slick-active+.slick-slide.slick-active .testimonial_box p {

    margin: 0 0 10px;

}



.testimonial_slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active+.slick-slide.slick-active .testimonial_box {

    background-color: #fff;

    border-radius: 0px;

}



.testimonial_slider-btn {

    display: flex;

    gap: 15px;

    align-items: center;

    justify-content: flex-end;

}



.testimonial_slider-btn button {

    height: 60px;

    width: 60px;

    display: flex;

    flex-shrink: 0;

    color: #cccccc;

    border-radius: 50%;

    align-items: center;

    transition: ease-out;

    justify-content: center;

    transition-duration: 0.5s;

    border: 1px solid #cccccc;

    background-color: transparent;

}



.testimonial_slider-btn button:hover {

    color: #000;

    transition: ease-in;

    border-color: #5a4140;

    transition-duration: 0.5s;

    background-color: #5a4140;

}



.abouttestimonial_sec {

    overflow-x: hidden;

    padding: 80px 5% 100px;

}



.section-heading {

    text-align: center;

}



.section-heading h2 {

font-size: 110px;

line-height: 1;

color: #0d0c0c;

margin-bottom: 10px;

font-weight: 300;
}



.section-heading p {

font-size: 14px;

color: #000;

width: 52%;

margin: 0 auto;

font-family: 'Montserrat';
}



.testimonial_slider .slick-slide {

margin: 0px 11px;
}

.rate {
    margin-bottom: 7px;
}
span.fa.fa-star.checked.testimonial_boxspan {
    color: #f18e2991;
}
.testimonial_slider .slick-next:before {
    content: '\f061';
    font-family: 'FontAwesome';
    border: 1px solid #0000009c;
    padding: 25px 25px;
    border-radius: 50%;
}

.testimonial_slider button.slick-next.slick-arrow {
    left: 40px;
    bottom: 0;
    right: unset;
    top: unset;
}

.testimonial_slider .slick-prev:before {
    content: '\f060';
    font-family: 'FontAwesome';
    border: 1px solid #0000009c;
    padding: 25px 25px;
    border-radius: 50%;
    z-index: 999;
    position: relative;
}

.testimonial_slider button.slick-prev.slick-arrow {
    top: unset;
    bottom: 0;
}
.testi-btm-img img {
    width: 100%;
    background: #f0efeb;
}
.hours h3 {
    font-family: 'bodera';
    font-size: 38px;
    font-weight: unset;
    text-align: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-family: 'Montserrat';
    font-weight: unset;
    font-size: 20px;
    margin-bottom: unset;
    font-weight: 600;
}

.calendar-days div {
    font-weight: 500;
    color: #000;
}

/*Section People Say End*/


/*Footer css Ends*/



    .left-text ul li {

        margin: 0 0 20px 0;

    }



    .left-text ul li a i {

        color: #fff !important;

        font-size: 23px;

        /* padding-right: 20px; */

        /* margin-bottom: 28px; */

    }



    .left-text ul li a {

display: flex;

/* justify-content: center; */

align-items: center;

gap: 20px;

transition: ease-in;

transition-duration: 0.2s;

}



    .left-text ul li a p:hover {

        color: #a6c3dc;

        transition: ease-out;

        transition-duration: 0.2s;

    }



    .left-text ul li p {

font-size: 13px;

line-height: 25px;

color: #fefefe;

font-weight: 400;

margin: 0;

font-family: 'Montserrat';

}



    footer {

background: #010c19;

padding: 0;

}



    .middle-text p {

color: #ffffff;

font-size: 14px;

line-height: 16px;

text-align: center;

text-transform: lowercase;

width: 90%;

margin: 0 auto;

margin-bottom: 20px;

font-family: 'Montserrat';

}



    .ftr-inp form button:hover {

background: black;

color: #fff;

}



    footer h6 {

font-size: 40px;

color: #ffff;

/* text-align: center; */

font-weight: 600;

margin-bottom: 40px;

font-family: 'bodera';

text-transform: capitalize;

font-weight: unset;
}



    .right-text ul li a {

color: #fefefe;

text-transform: uppercase;

font-size: 13px;

line-height: 33px;

margin: 0;

display: flex;

align-items: center;

justify-content: left;

transition: ease-in;

transition-duration: 0.2s;

font-family: 'Montserrat';
}



    .right-text ul li a:hover {

        color: #a6c3dc;

        transition: ease-out;

        transition-duration: 0.2s;

    }



    .bottom-footer p {

color: #fff;

font-size: 14px;

margin-bottom: 0;

padding: 18px 0;

text-align: center;

line-height: 29px;

font-family: 'Montserrat';

letter-spacing: unset;

border-top: 1px solid #ffffff61;

font-weight: 400;
}



    .bottom-footer {

background: #010c19;

}



    .left-text {

/* text-align: center; */

}



    .right-text {

        text-align: center;

    }



    .middle-text img {

        filter: brightness(0.5);

    }



    .right-text ul li {

        margin-bottom: 3%;

    }



    .ftr-bottom {

        padding: 70px 0 30px;

        position: relative;

    }



    .ftr-inp form input {

width: 100%;

padding: 10px 10px 10px 10px;

border-radius: 10px;

color: #000;

background: #fff;

border: 1px solid #fff;

border-radius: 0px;

background: unset;

text-align: center;

color: #fff;

margin-bottom: 20px;
}



    .ftr-inp {

        position: relative;

        margin-bottom: 20px;

    }



    .ftr-inp form {

width: 85%;

margin: 0 auto;

}



    .ftr-inp form button {

width: 100%;

height: 40px;

transition: 0.5s;

margin-top: 0;

border: 2px solid #fff;

border-radius: unset;

padding: 21px 8px;

display: flex;

align-items: center;

justify-content: center;

font-family: 'Montserrat';

text-transform: uppercase;

gap: 20px;

background: #fff;

color: #000;

font-size: 16px;

font-weight: 400;
}



    .ftr-l img {

        width: 12%;

    }



    .bottom-footer .row {

        align-items: center;

    }



    .bottom-footer img {

        margin: 0 0 0 auto;

        display: block;

    }



    .double-links {

display: flex;

align-items: start;

justify-content: center;

gap: 80px;

text-align: left;

}



    .ftr-inp form input::placeholder {

        color: #000;

    }



    .ftr-bottom:before {

position: absolute;

content: '';

background: #ffffff61;

width: 1px;

height: 100%;

top: 0%;

left: 26%;

}



    .ftr-bottom:after {

position: absolute;

content: '';

background: #ffffff61;

width: 1px;

height: 100%;

top: 0%;

right: 24%;

}



    .footer-socials ul {

display: flex;

align-items: center;

justify-content: center;

gap: 9px;

}



    .footer-socials ul li a i {

display: flex;

align-items: center;

justify-content: center;

height: 40px;

width: 40px;

border-radius: 100px;

background-color: transparent;

color: #fff;

border: 1px solid #ffffff85;

transition: ease-in;

transition-duration: 0.2s;

}



    .footer-socials ul li a i:hover {

background-color: #3b94e9;

transition: ease-out;

transition-duration: 0.2s;

border: 1px solid #3b94e9;

}



   .left-text ul li a img{



    filter: brightness(0) saturate(100%) invert(100%) sepia(34%) saturate(2%) hue-rotate(37deg) brightness(104%) contrast(101%);





    }
.right-text {
    text-align: center;
    margin-left: 100px;
}

.right-text h6 {
    margin-left: 60px;
}

.middle-text h6 {
    text-align: center;
    font-weight: unset;
}

.ftr-inp form input::placeholder {
    color: #fff;
    font-family: 'Montserrat';
    text-transform: capitalize;
    font-size: 13px;
}
/*Footer css Ends*/


/*inner Banner Start*/
.inner-banner {
    background-image: url(../images/inner-banner.jpg);
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.inner-banner-txt {
    text-align: center;
}

.inner-banner-txt h2 {
    font-size: 103px;
    color: #fff;
}

.inner-banner-txt p {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 15px;
    width: 80%;
    margin: 0 auto;
    font-weight: 400;
}

/*inner Banner ENd*/


/*About Page STart*/

.mission-main-sec .row {
    justify-content: space-evenly;
}

.mission-img img {
    width: 100%;
}

.mission-main-sec .row {
    align-items: center;
}

.mission-img {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.mission-img::before {
    position: absolute;
    content: '';
    background: #04152c;
    width: 76%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
.vision-row {
    margin-top: 60px;
}

.vision-row .mission-img::before {
    right: 0;
    left: unset;
}

.mission-main-sec {
    padding: 90px 0px;
    background: #eae8e2;
}
.gallery-img1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-img2 img {
    width: 100%;
    height: 618px;
    object-fit: cover;
}

.gallery-img1 {
    margin-bottom: 18px;
}
.gallery-main-sec {
    padding: 100px 0px;
}
/*About Page End*/


/*Reviews Page Start*/
section.testimonial_sec.reviews-pg-sec {
    padding-bottom: 100px;
}

section.testimonial_sec.reviews-pg-sec .row {
    justify-content: center;
}

.reviews-pg-sec .testimonial_box {
    padding: 50px 58px;
}

/*Reviews Page End*/


/*Services Page Start*/
.serv-iner-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

section.service-sec-iner {
    padding: 100px 0px;
}

.serv-iner-img {
    padding: 20px;
    border: 1px solid #02152d;
    width: 95%;
    position: relative;
}

section.service-sec-iner .row {
    align-items: center;
}

.serv-iner-text h4 {
    font-size: 60px;
    margin-bottom: 8px;
    font-family: 'bodera';
    color: #000;
}

.serv-iner-text p {
    font-size: 15px;
    font-family: 'Montserrat';
    line-height: 28px;
    width: 88%;
    color: #454545d4;
    font-weight: 400;
}

.serv-iner-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.serv-iner-text ul li p {
    font-size: 16px;
    margin-bottom: 0px;
}

.serv-iner-text ul {
    margin-top: 20px;
}

.serv-iner-img:before {
    content: '';
    position: absolute;
    top: 40%;
    left: -190px;
    background: #02152d;
    width: 260px;
    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;
}

/*Services page End*/


/*Contact me Page Start*/
.contact_detail_box figure img {
    margin: auto;
    height: 65px;
    width: 65px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(2014%) hue-rotate(185deg) brightness(97%) contrast(90%);
}

.contact_detail_box h2 {
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 700;
    margin: 30px 0 10px 0;
}

.contact_detail_box p {
    font-size: 14px;
    line-height: 25px;
    color: #636363;
    font-weight: 600;
    display: block;
    width: 80%;
    margin: 0 auto;
}

.contact_detail_box {
    padding: 40px 40px;
    transition: 0.5s;
    border: 2px solid #2492eb;
    border-radius: 0px;
}

.contact_form {
    padding-bottom: 80px;
    position: relative;
    background: #f0efeb;
}

.contact_form label {
    font-size: 16px;
    color: #5d5d5d;
    margin-bottom: 7px;
    font-weight: 600;
    font-family: "Montserrat", serif;
}

.btn_wrap button {
    border: none;
    background: #2492eb;
    color: #fff;
    font-weight: 500;
}

.contact_page {
    padding: 100px 0;
    position: relative;
    background: #f0efeb;
}


.contact_form input {
    height: 55px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 0px;
    padding: 0 25px;
    border: 1px solid #cccccc;
}

/* 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;
}

.contact_form textarea {
    height: 200px;
    margin-bottom: 30px;
    width: 100%;
    border: 1px solid #d1d1d1;
    padding: 25px 25px;
    resize: none;
}

.section_head {
    margin-bottom: 40px;
}

.section_head p {
    width: 70%;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 500;
    color: #636363;
}

.section_head h3 {
    color: #000;
    margin-bottom: 5px;
    line-height: 75px;
    font-weight: 500;
    font-size: 103px;
    font-family: 'bodera';
}

.br_gradient {
    padding: 2px;
    border-radius: 12px;
}

.contact_detail_box p span {
    display: block;
}

section.contact_page.chg2 {
    padding-bottom: 50px;
}

.contact_page h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 20px 0 5px;
    font-family: 'bodera';
    color: #000;
    font-weight: unset;
}

.section_head.chg h3 {
    color: #0883ec;
}

.btn_wrap {
    text-align: center;
}

.contact_detail_box a {
    display: block;
    font-size: 16px !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/*Contact Me Page End*/