@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;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: 400;
    line-height: 26px;
    color: #000;
}


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

@font-face {
    font-family: 'font-aurora-side';
    src: url(../font/fonnts.com-Aurora.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;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 12px 28px;
    border: unset;
    border-radius: 6px;
    color: #ffffff;
    z-index: 1;
    background: #082755;
    position: relative;
    font-size: 16px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #fff;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 4px;
    background-color: #000000;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #ffffff;
}

.theme_btn:hover::before {
    width: 100%;
}

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

.slicknav_menu {
    display: none;
}

h1 {
    font-family: 'font-aurora-side';
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: 200;
    margin: 0 0 4px;
    text-transform: uppercase;
}

h2 {
    font-family: 'font-aurora-side';
    font-size: 48px;
    line-height: 50px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 4px;
    text-transform: uppercase;
}

h3 {
    font-family: 'font-aurora-side';
    font-size: 18px;
    line-height: 1.2;
    color: #082755;
    font-weight: 600;
    margin: 0 0 4px;
    text-transform: uppercase;
}

h4 {
    font-family: 'font-aurora-side';
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0px 0 0px;
    text-transform: uppercase;
}

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

h6 {
    font-family: 'font-aurora-side';
    font-size: 18px;
    line-height: 1.2;
    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: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
    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: #ffffff;
    padding: 10px 23px;
    font-size: 16px;
    font-weight: 400;
}



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

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

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #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 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 */


/* Tab slider fix  */

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

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


/* Tab slider fix  */

.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: 8%;
    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;
}


/* Tabs  */

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

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

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


/* Tabs  */
.dis-block{
    display: block;
}
.container {
    padding: 0px 50px;
}

header {
    position: absolute;
    z-index: 2;
    width: 100%;
}

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

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

section.main_slider {
    position: relative;
    z-index: 1;
}

.banner-social-icon {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 100px;
}

.banner-social-icon ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.banner-social-icon ul li i {
    color: #fff;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-social-icon ul li i:hover {
    background: #fff;
    color: #082755;
}
.carousel-indicators {
    position: absolute;
    right: 22px;
    bottom: 0;
    left: unset;
    z-index: 2;
    display: block;
    justify-content: end;
    padding: 0;
    margin-right: unset;
    margin-bottom: 2rem;
    margin-left: unset;
    list-style: none;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 8px;
    height: 25px;
    padding: 0;
    margin: 12px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #082755;
    background-clip: padding-box;
    border: 0;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 60px;
}
.carousel-indicators .active {
    margin: 0;
    background-color: #ffffff;
    border: 1px solid #082755;
    width: 5px;
    height: 25px;
}
.banner_text p {
    color: #fff;
}
.banner_img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
}


/* About Sec Css Start */
section.about-sec-sd {
    margin: 100px 0px;
}
.about-btm-text {
    margin-top: 25px;
}
.about-sec-text-img {
    text-align: end;
}

.about-sec-text-img img {
    width: 80%;
}

.about-sec-text-box {
    box-shadow: 0px 0px 6px 0px #f5f5f5;
    padding: 55px 20px 20px 20px;
    margin-top: -40px;
    margin-left: -60px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
}


/* About Sec Css End */


/* Why Choose Css Start */

ul.why-choose-ul {column-count: 2;}

ul.why-choose-ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
section.why-choose-sec {
    padding: 80px 0px 0px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}
.why-choose-text h2 {
    font-size: 38px;
    line-height: 46px;
}
section.why-choose-sec:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 76%;
    width: 30%;
    background: #efeeee;
    z-index: -1;
    border-radius: 10px 0px 0px 10px;
}

/* Why Choose Css End */




section.need-security-sec {
    margin-bottom: 100px;
    position: relative;
    padding: 70px 0px;
    z-index: 1;
}

section.need-security-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 56%;
    width: 100%;
    background-image: url(../images/contct-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.need-security-top-heading {
    text-align: center;
    margin-bottom: 60px;
}
.need-security-top-heading h2 {
    color: #fff;
}

.need-security-top-heading p {
    color: #fff;
}
 .bg_touch {
    margin: 0 0px;
    background: #ffffff;
    padding: 0px 0px 0px 0px;
    border-radius: 0px;
    box-shadow: 0px 0px 12px 0px #727272;
}
 .bg_touch .get_wrpp .grpp input {
    width: 100%;
    height: 46px;
    padding: 10px 10px;
    background: transparent;
    border: 1px solid #888888;
    color: #000000;
}
.bg_touch .get_wrpp .grpp {
    width: 100%;
    display: inline-block;
    margin: 0 0 20px 0;
}
.bg_touch .get_wrpp .d-flex {
    gap: 20px;
}
.bg_touch .get_wrpp .grpp1 textarea {
    width: 100%;
    height: 150px;
    padding: 10px 10px;
    background: transparent;
    border: 1px solid #888888;
    resize: none;
    color: #000000;
    margin-bottom: 20px;
}
.get_wrpp {
    width: 92%;
}
.get_wrpp h2 {
    margin-bottom: 20px;
}

section.our-services-sec {
    padding-top: 160px;
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}

section.our-services-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 80%;
    width: 100%;
    /* background: #082755; */
    z-index: -1;
    background-image: url(../images/services-bg-img.png);
    background-repeat: repeat;
    background-size: cover;
}

.our-services-text {
    text-align: center;
    margin-bottom: 40px;
}

.our-services-text h3 {
    color: #fff;
}
.our-services-text p {
    font-size: 20px;
    color: #fff;
    width: 70%;
    margin: 0 auto;
}
.our-services-text h2 {
    color: #fff;
}

ul.our-services-silder-box-ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 15px;
    background: #ffffffc7;
    margin: 0px 20px;
    padding: 13px 20px;
    margin-top: 0px;
    width: 90%;
    border-radius: 6px;
}

ul.our-services-silder-box-ul li i {
    background: #082755;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.our-services-silder-box {
    position: relative;
    z-index: 1;
}

ul.our-services-silder-box-ul li h4 {
    font-size: 20px;
}

.our-services-silder-box img {
    /* height: 550px; */
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 30px;
    /* margin-bottom: 30px; */
}

.our-services-silder .slick-active {
    opacity: 1;
}
.our-services-silder .slick-prev, .our-services-silder .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #ffffff;
    border-radius: 50%;
}
.our-services-silder .slick-next:before {
    content: '\f061';
    font-size: 16px;
    position: absolute;
    font-family: 'FontAwesome';
    top: 9px;
    left: 12px;
    color: #082755;
    opacity: 1;
}
.our-services-silder .slick-prev:before {
    content: '\f061';
    font-size: 16px;
    position: absolute;
    font-family: 'FontAwesome';
    top: 9px;
    left: 11px;
    color: #082755;
    opacity: 1;
    transform: rotate(178deg);
}
.service-inner-page-top-heading p {
    font-size: 20px;
    width: 70%;
    margin: 0 auto;
}

/* Testimonail starts  */
.tetsimonial-sec {
 margin-bottom: 80px;
}
.tetsimonial-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.1); */
  inset: 0;
}
.testimonial-heading {
 text-align: center;
 margin-bottom: 30px;
}




.testi-slidder {
  position: relative;
  z-index: 2;
}

.testi-people-img {
  /* background-color: #082755; */
  width: 110px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  border-radius: 50%;
}

.testi-people-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.rating-box-testi {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.testi-head-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.testi-ratting > div {
  display: flex;
  gap: 10px;
}


.testi-comma > img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.testi-ratting > div i {
  color: #ffd234;
}
.test-card {
  background-color: #efeeee;
  border-radius: 20px;
  padding: 30px;
}
.test-card.animate-test {
  animation: SummercardAnim 2s ease 0s 1 normal forwards;
}

.testi-ratting h4 {
  font-size: 24px;
  font-weight: 300 !important;
}
.tetsimonial-sec .slick-current {
  opacity: 1;
}
.tetsimonial-sec .slick-active {
  opacity: 1;
}

/* Dots */
.tetsimonial-sec .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.tetsimonial-sec .slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.tetsimonial-sec .slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tetsimonial-sec .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.tetsimonial-sec .slick-dots li button:hover,
.tetsimonial-sec .slick-dots li button:focus {
  outline: none;
}
.tetsimonial-sec .slick-dots li button:hover:before,
.tetsimonial-sec .slick-dots li button:focus:before {
  opacity: 1;
}
.tetsimonial-sec .slick-dots li button:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: gray;
  border-radius: 0;
  opacity: 0.5;
  border: none;
  border-top: 2px dashed gray;
  position: absolute;
  top: 0;
  left: 0;
}
.tetsimonial-sec .slick-dots li.slick-active button:before {
  background: #082755;
  border: none;
  opacity: 1;
}
.testi-slidder .slick-slide {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

/* Testimonail Ends */



/* footer start */

footer {

background-color: #082755;

padding-top: 5%;
}



.footer-logo-wraper p {

  color: white;

}



.footer-logo > p {

  color: #e9e5e5;

  padding: 10px 0 0 0;

}



.quick-links > p {

  color: white;

  text-transform: uppercase;

  padding-bottom: 20px;

  font-size: 20px;

  font-weight: 500;

}

.footer-services > p {

  color: white;

  text-transform: uppercase;

  padding-bottom: 20px;

  font-size: 20px;

  font-weight: 500;

}



.contanct-info-footer > p {

  color: white;

  text-transform: uppercase;

  padding-bottom: 20px;

  font-size: 20px;

  font-weight: 500;

}



ul.quick-links-list {

  display: flex;

  gap: 100px;

}



ul.quick-links-list div li {

  padding: 4px 0;

}



ul.footer-services-list li {

  padding: 15px 0;

}



ul.contanct-info-footer-list a {

  padding: 30px 0;

  display: flex;

  align-items: center;

  color: #939393;

}

ul.contanct-info-footer-list a i {

  padding-right: 20px;

}



ul.quick-links-list div li a {

  color: #939393;

}

ul.quick-links-list div li a {

  color: #e9e5e5;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  display: inline-flex;

}



ul.quick-links-list div li a:hover {

color: #ffffff;

transform: translateY(-2px) scale(1.05);

transition: all 0.3s ease-in-out;

-webkit-transition: all 0.3s ease-in-out;

-moz-transition: all 0.3s ease-in-out;
}

ul.quick-links-list div li a::after {

content: "";

position: absolute;

width: 0;

height: 1px;

bottom: -2px;

left: 0;

background-color: #ffffff;

transition: width 0.3s ease-in-out;
}

ul.quick-links-list div li a:hover::after {

  width: 100%;

}

.footer-services-list a {

  color: #e9e5e5;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  display: inline-flex;

  position: relative;

  text-decoration: none;

}



.footer-services-list a:hover {

  color: #599bd5;

  transform: translateY(-2px) scale(1.05);

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

}



.footer-services-list a::after {

  content: "";

  position: absolute;

  width: 0;

  height: 2px;

  bottom: -2px;

  left: 0;

  background-color: #599bd5;

  transition: width 0.3s ease-in-out;

}



.footer-services-list a:hover::after {

  width: 100%;

}

ul.contanct-info-footer-list a {

  padding: 10px 0;

  display: flex;

  align-items: center;

  color: #e9e5e5;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  position: relative;

  text-decoration: none;

}



ul.contanct-info-footer-list a:hover {

color: #ffffff;

transform: translateY(-2px) scale(1.05);

transition: all 0.3s ease-in-out;

-webkit-transition: all 0.3s ease-in-out;

-moz-transition: all 0.3s ease-in-out;
}



ul.contanct-info-footer-list a::after {

content: "";

position: absolute;

width: 0;

height: 1px;

bottom: -2px;

left: 0;

background-color: #ffffff;

transition: width 0.3s ease-in-out;
}



ul.contanct-info-footer-list a:hover::after {

  width: 70%;

}



.copy-right-row p {

color: white;

margin-bottom: 0;

font-size: 16px;
}



.copy-right-row {

display: flex;

justify-content: center;

align-items: center;

text-align: center;

padding: 20px 0;

border-top: 1px solid #ffffff66;

margin: 20px 0 0 0;
}

.footer-logo-wraper img {

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

}



.footer-logo-wraper img:hover {

  transform: scale(1.1) translateY(-2px);

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  cursor: pointer;

  filter: brightness(1.1);

}



.footer-logo > h5 {

  color: white;

  text-transform: uppercase;

  padding-bottom: 30px;

}

.newslatter-btn input {

  height: 50px;

  width: 70%;

  background-color: white;

  outline: none;

  padding: 20px;

  border: 1px solid transparent;

  border-radius: 5px 0 0 5px;

}

.newslatter-btn {

  display: flex;

  align-items: center;

}

.newslatter-btn input::placeholder {

  color: #484848;

  font-size: 16px;

  font-family: "Poppins", sans-serif;

  font-weight: 400;

}

footer h6 {

color: white;

text-transform: uppercase;

padding-bottom: 0px;

margin-bottom: 10px;

font-size: 25px;
}

.news-letter p {

  color: white;

  padding: 0 0 15px 0;

}

ul.footer-social-icon {

display: flex;

gap: 15px;

margin-top: 0px;
}



ul.footer-social-icon a {

width: 40px;

height: 40px;

display: inline-flex;

background-color: #00000000;

justify-content: center;

align-items: center;

text-align: center;

border-radius: 5px;

/* transition: all 0.5s ease-in-out; */

border: 1px solid #fff;

border-radius: 50%;
}



ul.footer-social-icon a i {

font-size: 18px;

color: #ffffff;

transition: all 0.5s ease-in-out;

-webkit-transition: all 0.5s ease-in-out;

-moz-transition: all 0.5s ease-in-out;
}



ul.footer-social-icon a:hover,

ul.footer-social-icon a:focus {

background-color: rgb(0 0 0);

box-shadow: 0 2px 8px rgba(41, 126, 205, 0.3);

transform: translateY(-2px);

-webkit-background-clip: border-box !important;

background-clip: border-box !important;
}



ul.footer-social-icon a:hover i,

ul.footer-social-icon a:focus i {

  color: white;

}



.newslatter-btn button {

  height: 50px;

  margin: 0;

  width: fit-content;

  padding: 0 20px;

  background-image: -moz-linear-gradient(

    90deg,

    rgb(19, 73, 124) 0%,

    rgb(41, 126, 205) 100%

  );

  background-image: -webkit-linear-gradient(

    90deg,

    rgb(19, 73, 124) 0%,

    rgb(41, 126, 205) 100%

  );

  background-image: -ms-linear-gradient(

    90deg,

    rgb(19, 73, 124) 0%,

    rgb(41, 126, 205) 100%

  );

  background-image: linear-gradient(

    90deg,

    rgb(19, 73, 124) 0%,

    rgb(41, 126, 205) 100%

  );

  border: 1px solid transparent;

  margin-left: 0;

  color: white;

  text-transform: uppercase;

  font-weight: 500;

  border-radius: 0 5px 5px 0;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  position: relative;

  overflow: hidden;

  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;

  -moz-transition: all 0.5s ease-in-out;

}



.newslatter-btn button:hover,

.newslatter-btn button:focus {

  background-image: linear-gradient(

    90deg,

    rgb(23, 88, 150) 0%,

    rgb(52, 152, 245) 100%

  );

  box-shadow: 0 4px 15px rgba(41, 126, 205, 0.4);

  transform: translateY(-2px);

  color: white !important;

  -webkit-background-clip: border-box !important;

  background-clip: border-box !important;

  -webkit-text-fill-color: white !important;

}



.newslatter-btn button::before {

  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent,

    rgba(255, 255, 255, 0.1),

    transparent

  );

  transition: left 0.5s ease;

}



.newslatter-btn button:hover::before,

.newslatter-btn button:focus::before {

  left: 100%;

}



.newslatter-btn button:active {

  transform: translateY(0);

  box-shadow: 0 2px 10px rgba(41, 126, 205, 0.4);

  color: white !important;

  -webkit-background-clip: border-box !important;

  background-clip: border-box !important;

  -webkit-text-fill-color: white !important;

}

/* footer end */
.banner_img.inner-main img {
    height: auto;
}

.banner-img.inner-banner-img img {
    height: 90vh;
}
section.smooth-skin-sec {
    background-image: url(../images/smooth-skin-bg-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px 40px;
    margin-bottom: 100px;
}
section.smooth-skin-sec h2 {
    margin-bottom: 30px;
}
.our-team-box-text h2 {
    font-size: 28px;
}

.our-team-box-text h3 {
    font-size: 24px;
}

.our-team-box-text {
    text-align: center;
    padding: 10px 0px;
}

.our-team-box {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
}

.our-team-box-img img {
    /* height: 230px; */
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.our-team-top-heading {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

section.our-team {
    margin-bottom: 100px;
}
.service-inner-page-top-heading {
    text-align: center;
    margin-bottom: 30px;
}

section.service-inner-page {
    margin: 100px 0px;
}




/*contact page start*/
/*CONTACT START*/
.contact_page_sidbar h6 {
  font-size: 14px;
  color: #dad7d7;
  line-height: 20px;
  margin: 0;
  font-weight: 400;
}

.fa-color {
  color: #e51921;
  font-size: 80px;
}

.contact_page_sidbar h4 {
    color: #000;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins';
    margin-bottom: 0px;
    font-size: 20px;
}

.contact_page_sidbar i {
  font-size: 35px;
  margin: 0 20px 0 0;
  width: 35px;
}

.contact_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e51921;
  color: #ffffff;
  border-radius: 0;
  margin: 0 10px 0 0;
  font-size: 22px;
}

.contact_social a:hover {
  background-color: #e51921;
  color: #fff;
}

.contact_map iframe {
  width: 100%;
  height: 600px;
}

.contact-left img {
  width: 100%;
}

ul.contact_page_sidbar li i {
    color: #000;
}

ul.contact_page_sidbar a {
  width: 100%;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 18px;
  color: #8b8a8a;
  text-decoration: none;
}

ul.contact_page_sidbar h6 {
  line-height: 26px;
  font-family: 'Poppins';
  font-size: 19px;
  color: #8b8a8a;
}

.contact-form {
    border-radius: 15px;
    padding: 40px 20px 40px 20px;
    border: 2px solid #dcdcdc;
}
.contact-form-title h4 {
  color: #000;
  font-size: 36px;
  line-height: 26px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid #dcdcdc;
    border-radius: 5px;
}

.contact-form input::placeholder {
  color: #000;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 18px 80px;
    border-radius: 5px;
    border: 2px solid #dcdcdc;
    resize: none;
}
.contact-submit button {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 17px;
  background: none;
}

.contact-form input::placeholder {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 0px;
}

.contact-form textarea::placeholder {
  font-size: 14px;
  line-height: 14px;
  border-radius: 5px;
  color:#000;
  margin-bottom: 0px;
}

section.contact_page_main.pt-8.pb-8 {
  padding: 100px 0;
  background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
  margin: 0 !important;
  margin-bottom: 30px !important;
}

.contact_page_sidbar p {
  margin-bottom: 0;
}

.cont-1 h3 {
  color: #000;
}

.cont-1 p {
  color: #8b8a8a;
  font-size: 16px;
  width: 93%;
  line-height: 28px;
  margin-bottom: 30px;
}

.icons i {
    background: #21386c;
    color: #fff;
    padding: 6px;
    margin: 0px 5px;
}
.con-form {
  padding: 20px 50px;
}

section.contact-us {
  padding: 150px 0px 90px 0px;
}

.btn-contact a {
  background: #194376;
  padding: 10px 80px;
  border: none;
  border-radius: 5px;
  color: #fff;
}

section.contact-us.inner h3 {
    font-size: 48px;
    line-height: 37px;
    color: #000;
    font-weight: 700;
    font-family: 'Oswald';
    text-transform: uppercase;
    margin-bottom: 30px;
}
.map-col {
  padding: 0;
}
.btn-contact button {
    width: 29%;
    padding: 0;
    height: 45px;
    background-color: #082755;
    color: #fff;
    border: none;
    border-radius: 8px;
}
section.contact-us .row {
    align-items: baseline;
}
ul.contact_page_sidbar p {
    width: 100%;
    margin-bottom: 0;
}
ul.contact_page_sidbar li i.fas.fa-phone-alt.fa-color.fa-2x {
    transform: rotate(90deg);
}
/*/*contact inner page sec end*/




/*book start*/
section.book form input {
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
    color: #000;
}
section.book form select {
    background: #fff url(../images/arrow.png) no-repeat right;
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    -webkit-appearance: auto;
}
section.book form textarea {
    width: 100%;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 15px 15px;
    outline: none;
    border: 1px solid #cdcdcd;
    resize: none;
    border-radius: 6px;
    height: 200px;
    color: #000;
}

section.book {
    padding: 150px 0px 100px;
}
section.book form input::placeholder {
    color: #000;
}
.text-center button {
    background: #082755;
    width: 53%;
    padding: 12px;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.ankar a:hover {
    background-color: #039199;
}
a.btn-1:hover {
    background-color: #000;
}
section.inn-banner img {
    width: 100%;
}
/*book end*/
.detail-service-image img {
    height: 550px;
    object-fit: cover;
    object-position: bottom;
    margin-bottom: 30px;
}


/*======================================= Responsive Css Starts ========================================*/
  html {
    overflow-x: hidden !important;
  }
@media only screen and (min-width: 300px) and (max-width: 519px) {
    
}
@media only screen and (min-width: 520px) and (max-width: 767px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
}
@media only screen and (min-width: 1291) and (max-width: 1365px) {
}
@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

/*======================================= Responsive Css Ends ========================================*/