@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2'),
    url('../fonts/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('BebasNeue-Regular.woff2') format('woff2'),
    url('BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
    url('../fonts/Poppins-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}



a {
  color: #fff;
}

a:hover {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

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

body {
  font-family: 'Poppins' !important;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu {
  display: none;
}

.mobile-menu .circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #ff9900;
  margin: 0 auto;
  font-size: 16px;
  position: absolute;
  right: 25px;
  top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.mobile-menu .mobile-cross {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #005879;
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 10px;
  top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.mobile-menu .nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateX(-320px);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 40px 20px;
}

.mobile-menu .nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu .overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 280px);
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu .overlay.is-on {
  /* opacity: 1; */
  visibility: visible;
  z-index: 999;
  width: 100%;
  position: relative;
}

.mobile-menu .navlinks li {
  display: block;
  padding: 12px 0;
}

.mobile-menu .navlinks li a {
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
}

.mobile-menu .navlinks li a:hover {
  text-decoration: none;
}

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

/*RESPONSIVE NAVIGATION*/





/* shash kay  */


:root {
  --dark-blue: #00257a;
  --yellow: #f90;
}


/* header start */
.desktop-logo img {
  width: 100px;
}

.desktop-header .destop-menu ul {
  display: flex;
  width: fit-content;
  gap: 30px;
}

.desktop-header .destop-menu ul li a {
  font-size: 15px;
  color: #000;
}

.desktop-header .destop-menu ul li a:hover {
  color: #ff9900;
  transition: 0.5s;
}

.desktop-header .destop-menu .desktop-talk .d-flex {
  gap: 6px;
}

.desktop-header .destop-menu .desktop-talk i {
  color: var(--yellow);
  font-size: 14px;
}

.desktop-header .destop-menu .desktop-talk a {
  color: #585858;
  font-size: 15px;
  font-weight: 600;
}

.desktop-header {
  padding-block: 20px;
}

.desktop-header .destop-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* header end */


/* Banner start */
.heading1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #232f3e;
}

.home-banner-r-c {
  padding: 0% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-banner {
  position: relative;
  padding-block: 40px 100px;
}

.para {
  font-size: 15px;
  color: #555555;
}

.banner-con-text {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background-color: #ffffff63;
  z-index: 99;
}

.btn-padding {
  padding: 10px 30px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-padding:hover {
  border-radius: 0px;
}

.yellow-btn {
  background-color: #f90;
  color: #fff;
  border: 2px solid var(--yellow);
  padding: 10px 20px;
  border-radius: 5px;
}

.blue-btn {
  background-color: #232f3e;
  color: #fff;
  border: 2px solid #232f3e;
  padding: 10px 20px;
  border-radius: 5px;
}

.yellow-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid var(--yellow);
  transition: 0.5s;
}

.blue-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #232f3e;
  transition: 0.5s;
}

.bottom-btn {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: end;
}

.left-absolute {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
  width: 260px;
}

.left-absolute-bottom {
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 2;
  width: 260px;
}

.hero-banner .container {
  position: relative;
  z-index: 999;
}

.banner-form-div {
  padding: 30px;
  border-radius: 20px;
  background-image: url('../images/form-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}

form.banner-form h3 {
  font-size: 20px;
}

form.banner-form h2 {
  font-size: 24px;
  margin-block: 10px;
}

form.banner-form p {
  margin-bottom: 20px;
}

.banner-form-col {
  padding: 0% 6%;
}

.banner-form input,
.banner-form textarea {
  width: 100%;
  border-radius: 50px;
  background-color: #edededf4;
  padding: 8px 14px;
  margin-bottom: 10px;
  font-size: 13px;
  border: none;
}

.banner-form textarea {
  width: 100%;
  border-radius: 20px;
  background-color: #edededf4;
  padding: 8px 14px;
  margin-bottom: 10px;
  font-size: 13px;
  border: none;
}

.banner-form input[type='submit'] {
  width: fit-content;
  padding: 10px 30px;
  background-color: #555555;
  color: #fff;
}

/* Banner end */

/* about page start */
.inner-banner {
  background-image: url("../../assets/images/inner-banner-img.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}

.inner-banner h1 {
  color: #fff;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.about-body-sec {
  background-image: url("../../assets/images/about-img-body.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}

.about-body-sec p {
  color: #fff;
}

.about-body-sec h2 {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.about-body-sec p {
  margin-bottom: 20px;
}

.banner-btn {
  position: relative;
  display: flex;
  margin-top: 10px;
}

.banner-btn .blue-btn {
  margin-right: 10px;
}

.about-body-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-body-col img {
  width: 80%;
  margin: auto;
}

.about-body-sec-row2 {
  margin-top: 100px;
}

.start-sec {
  background-image: url("../../assets/images/start-img.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}

.start-sec h3 {
  text-align: center;
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
}

.start-sec p {
  color: #fff;
  text-align: center;
}

/* about page end */

/* Book Services page start */
.inner-page-con-full-col {
  text-align: center;
  padding: 50px 0px;
}

.inner-page-con-full-col h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.inner-page-con-half-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.inner-page-con-half-col h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.inner-page-con-half-col img {
  margin: auto;
  width: 100%;
}

.half-col-row {
  padding: 50px 0px;
}

section.inner-page-con {
  margin: 30px auto !important;
  max-width: 1150px;
  padding: 0px 10px;
}

/* Book Services page end */


.hero-banner {
  background-image: url("../../assets/images/home-banner.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 130px 0px;
  position: relative;
}


/* sameer css start */

.about {
  padding-block: 70px;
}

.about-img img {
  width: 100%;
}

.about-content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #232f3e;
  padding-bottom: 20px;
  text-align: center;
}

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

/* slider */
.swiper {
  width: 80%;
  height: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.swiper-pagination-bullet {
  background: #fff;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007aff;
}

/* slider */
.slider {
  padding-bottom: 50px;
}

section.slider .row {
  margin: 0 auto;
}

.slider-content {
  background-image: url(../images/image-82-1.png);
  padding: 90px 0px 80px;
}

.slider-content h2 {
  color: #000;
  font-size: 37px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  padding-bottom: 30px;
}

.slider-content p {
  margin: 0 auto;
  width: 70%;
  color: #000;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

/* services */

.services {
  background-color: #FBF9F6;
  padding-top: 100px;
  position: relative;
  z-index: 111;
}

section.services h2 {
  padding-bottom: 15px;
  font-size: 35px;
  font-weight: 700;
  color: #232f3e;
  text-align: center;
}

.bfore {
  padding-top: 50px;
}

.bfore:before {
  content: '';
  width: 100%;
  height: 220px;
  background-color: #232f3e;
  position: absolute;
  bottom: -75px;
  top: auto;
  left: 0;
  z-index: -1;
}

.services p {
  text-align: center;
}

.text-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  padding-inline: 20px;
  padding-block: 35px;
}

.text-box h3 {
  padding-bottom: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  color: #232f3e;
}

.text-box p {
  margin: 0 auto;
  width: 80%;
  text-align: center;
  color: #010101;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

section.services img {
  width: 100%;
}

.service-part-2 {
  background-image: url(../images/bg.png);
  background-size: cover;
  background-position: top;
  margin-top: 5rem;
  padding-top: 90px;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 76% 92%;
}

.text-box2 {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding-inline: 20px;
  padding-bottom: 40px;
  background-image: url(../images/card.png);
  background-size: cover;
}

.text-box2 h3 {
  padding-bottom: 20px;
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  font-style: normal;
  color: #232f3e;
}

.text-box2 h4 {
  padding-bottom: 20px;
  padding-top: 85px;
  text-align: center;
  color: #555;
  font-size: 22px;
  font-weight: 600;
}

.text-box2 p {
  width: 96%;
  margin: 0 auto;
  text-align: center;
  color: #010101;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  height: 140px;
  overflow: overlay;
}

.faqs {
  padding-block: 80px;
}

.faq-container {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f4f4f4;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  background: #f8f8f8;
}

.faq-question:after {
  content: '\25BC';
  /* Down arrow */
  font-size: 14px;
}

.faq-question.active:after {
  content: '\25B2';
  /* Up arrow */
}

section.faqs h2 {
  font-size: 35px;
  font-weight: 600;
  color: #232f3e;
  padding-bottom: 25px;
}

.faqs .row {
  display: flex;
  align-items: center;
}

.faq-img img {
  width: 100%;
}

.form-part {
  background-image: url(../images/footer-form-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 40px;
}

.form-prt {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 50px;
  padding-right: 50px;
}

.form-prt h2 {
  font-size: 36px;
  font-weight: 700;
  color: #232f3e;
  text-align: center;
}

.form-prt p {
  width: 73%;
  padding-top: 20px;
  text-align: center;
  margin: 0 auto;
}

.contact1 {
  padding-top: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact1 input {
  padding: 15px;
  border: 1px solid #CFCFCF;
  margin: 0px 5px;
}

.btn-form {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  padding: 15px 50px;
  border-radius: 5px;
  text-align: center;
  background-color: #f90;
  font-size: 1.1rem;
  transition: all .3s;
  border: 0 solid #c36;
}

.btn-form:hover {
  background-color: rgb(0, 0, 0);
  color: #fff;
  transition: all 0.5s
}

/* sameer css end */

/* footer sec start */
.footer-sec {
  background-image: url("../../assets/images/footer-bg.png");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px 10px;
  position: relative;
}

.footer-sec a {
  color: #000;
}

.footer-bottom {
  border-top: solid 1px gray;
  padding: 20px 0px;
  margin-top: 50px;
}

.footer-logo {
  margin-bottom: 20px;

}

.footer-bottom p {
  text-align: center;
}

.footer-logo-bottom {
  margin-top: 30px;
}

.footer-sec h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}

.footer-sec ul li {
  line-height: 35px;
}

.social-link {
  margin-bottom: 10px;
}

.footer-third-col {
  display: flex;
  align-items: anchor-center;
}

.social-link a i {
  font-size: 20px;
  margin: 5px 10px;
  color: #000;
}

.footer-list li a span i {
  color: #ff9900 !important;
  margin-right: 5px;
}

.footer-list a {
  color: inherit;
  display: flex;
}



/* contact page start */
.contact-main-form {
  padding-block: 100px 70px;
}

.contact-info-banner {
  background-image: url("../../assets/images/about-img-body.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  padding: 100px 0px 0px 0px;
  position: relative;
}

.contact-info-banner p {
  color: #fff;
}

.contact-info-banner h2 {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.contact-info-banner p {
  margin-bottom: 20px;
}

.contact-main-form h1 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  padding-bottom: 25px;
}

.icon-box-main-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.icon-box-main-contact .icon-con-main {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.icon-box-main-contact .icon-con-main i {
  background-color: #232f3e;
  color: #fff;
  padding: 14px;
  font-size: 24px;
  border-radius: 8px;
}

.icon-box-main-contact .icon-con-main h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.icon-box-main-contact .icon-con-main p {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  color: #333;
}

.contact-main-form .contact-form {
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 30px;
  border-radius: 20px;
  width: 86%;
  float: right;
}

.contact-main-form .contact-form h4 {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  color: #232f3e;
}

.contact-main-form .contact-form p {
  text-align: center;
  margin-block: 10px 30px;
}

.contact-main-form .contact-form input,
.contact-main-form .contact-form textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  color: #000;
  border-radius: 24px;
  padding: 10px 20px;
  margin-top: 14px;
}

.contact-main-form .contact-form input[type='submit'] {
  width: fit-content;
  background-color: #232f3e;
  border: 2px solid #232f3e;
  color: #fff;
  padding: 8px 40px;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.contact-main-form .contact-form input[type='submit']:hover {
  width: fit-content;
  background-color: transparent;
  border: 2px solid #232f3e;
  color: #232f3e;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* contact page end */


/* POLICY PAGE START */
.policy-content-container {
  padding-block: 4em;
}

.policy-content-container .policy-content p {
  color: #000;
  margin-block: 10px;
}

.policy-content-container .policy-content p a {
  color: rgb(196, 42, 42);
}

.policy-content-container .policy-content p a:hover {
  color: var(--yellow);
}

.policy-content-container .policy-content h3 {
  color: #000;
  text-align: center;
  margin-block: 30px 20px !important;
  width: 90%;
  font-size: 30px;
  font-weight: 600;
  margin: auto;
}

/* POLICY PAGE END */



/* width */
.text-box2 p::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.text-box2 p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.text-box2 p::-webkit-scrollbar-thumb {
  background: #f90;
  border-radius: 10px;
}

/* Handle on hover */
.text-box2 p::-webkit-scrollbar-thumb:hover {
  background: #f90;
}

.desktop-header .destop-menu .desktop-talk a:hover {
  color: #f90;
  transition: 0.5s;
}

.banner-form input[type='submit']:hover {
  background: #ff9900;
  transition: 0.5s;
}


/* floating start */


.floatbutton.active {
  right: 0;
  z-index: 99999;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.floatbutton {
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  position: fixed;
  right: -371px;
  top: 20%;
  font-size: 0;
  width: 420px;
  z-index: 9999999;
}

.floatbutton .clickbutton {
  width: 50px;
  z-index: 999;
  height: 200px;
  cursor: pointer;
  box-shadow: -20px 7px 18px -7px rgba(87, 184, 151, .09);
  border-radius: 3px 0 0 3px;
  border-radius: 30px 0 0 30px;
  display: inline-block;
  padding-top: 0;
  vertical-align: top;
  margin-top: 125px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  border: 1px solid #fff;
  text-transform: uppercase;
  background: #f90;
  box-shadow: 0 0 40px #00000026;
  -webkit-box-shadow: 0 0 40px #00000026;
  -ms-box-shadow: 0 0 40px #00000026;
  -o-box-shadow: 0 0 40px #00000026
}

.floatbutton .clickbutton .crossplus:before {
  content: "";
  display: none;
  position: absolute;
  width: 20px;
  height: 2px;
  right: 0;
  background: #fbb334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto
}

.floatbutton .clickbutton .crossplus:after {
  content: "";
  display: none;
  position: absolute;
  width: 2px;
  height: 20px;
  right: 0;
  background: #fab334;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto
}

.floatbutton .clickbutton .crossplus {
  position: absolute;
  display: block;
  transform: rotate(-90deg);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  left: -52px;
  white-space: pre;
  bottom: 87px
}

.floatbutton .clickbutton .crossplus.rotate {
  transform: rotate(45deg);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s
}

.floatbutton .clickbutton .crossplus i {
  font-size: 18px;
  color: #fff;
  margin: 17px 0 0 15px
}

.floatbutton .banner-form {
  background: #fff;
  padding: 15px;
  position: relative;
  z-index: 999999999 !important;
  border-radius: 5px;
  margin: 0;
  width: 370px;
  display: inline-block;
  box-shadow: 0 0 30px #0000001f;
}

.ban-form input {
  width: 100%;
  margin: 0;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  height: 50px;
  font-weight: 400;
  outline: 0 !important;
  margin: 0 0 15px 0
}

.banner-form .intl-tel-input {
  width: 100%
}

.banner-form h3 {
  color: #141315;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700
}

.banner-form h3 strong {
  font: 24px/24px Poppins, sans-serif;
  font-weight: 600
}

.ban-form input[type=submit] {
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  text-align: center;
  padding: 10px 15px;
  margin: 20px 0 0;
  border: transparent;
  cursor: pointer;
  background: #000;
}

.ban-form textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 15px;
  color: gray;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 400;
  height: 120px;
  outline: 0 !important;
  margin: 15px 0 0 0;
  resize: none
}

.btns_wrap {
  position: fixed;
  right: -6px
}

.btns_wrap a:hover {
  text-decoration: none !important;
  right: 0
}

.btns_wrap .call_wrap {
  width: 280px;
  border: 1px solid #fff;
  background: #f90;
  position: absolute;
  right: -225px;
  top: 63px;
  border-radius: 3px 0 0 3px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 999999 !important;
  border-radius: 30px 0 0 30px
}

.btns_wrap .call_wrap span {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  padding: 15px 20px 15px 15px
}

.btns_wrap .chat_wrap {
  display: block;
  position: absolute;
  right: -225px;
  width: 280px;
  background: #f90;
  top: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0 0 40px #00000026 !important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 30px 0 0 30px;
  z-index: 9999;
  cursor: pointer;
}

.btns_wrap .call_wrap span.icoo, .btns_wrap .chat_wrap span.icoo {
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 10px 0 0 10px
}

.btns_wrap .chat_wrap span {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  padding: 15px 30px 15px 15px
}

.ban-form .fldset.inpchecbx label {
  display: inline-block;
  margin: 0;
  line-height: 1.4;
  color: #676767;
  font-size: 13px
}

.ban-form .fldset.inpchecbx input {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0
}

.fldset.inpchecbx {
  margin: 10px 0 0 0
}

.fldset p {
  font-size: 13px;
  color: #676767;
  padding: 0;
  margin: 10px 0 0 0
}

.fldset p a {
  display: block;
  padding: 5px 0 0 0;
  color: #141315;
  font-weight: 500;
  font-size: 14px
}

img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.main-left-btns ul {
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.main-left-btns ul li {
  margin-right: 20px;
  list-style: none !important;
  width: auto !important;
}

.main-left h1 span {
  color: #fd5900;
}

.main-left-btns ul li button {
  width: 140px;
  border: 2px solid #f7981b;
  background: #f5971b;
  padding: 9px 0;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  animation-name: pulse-2;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.main-left-btns ul li:nth-child(2) button {
  border: 2px solid #0F2139;
  background: transparent;
  color: #0F2139;
  padding: 9px 0;
}

@keyframes pulse-2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 116, 3, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
  }
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.footer-sec a:hover {
  color: #fd9800;
  transition: 0.5s;
}
.social-link a i:hover {
  color: #fb9700;
  transition: 0.5s;
}


/* modal css */


.modal-content {
  padding: 0px 0 20px;
  position: relative;
  box-shadow: 0px 0px 11px 5px #cfcfcf;
  background-image: url(../images/form-bg.png);
}

.modal-dialog {
  margin: 0 auto;
  max-width: 720px;
  top: 80px;
  margin: 0 auto;
  width: 520px;
  top: 90px;
}

.modal-header {
  display: block;
  text-align: center;
}

.modal-header button {
  opacity: inherit;
  position: absolute;
  right: -6px;
  background: #ef8f00;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid #000;
  color: #fff;
  top: -7px;
  padding: 12px;
  border-radius: 50px;
}

.modal-body form input {
  display: block;
  border-radius: 8px;
  outline: 0;
  padding: 0 40px;
  font-family: rubik, sans-serif;
  font-weight: 300;
  font-size: 14px;
  width: 100%;
  height: 45px;
  border: 1px solid #000;
}

.modal-body form input-div i {
  position: absolute;
  top: 10px;
  color: #0a6688;
  left: 18px;
}

.modal .modal-dialog .modal-content .modal-body i {
  /* position: absolute; */
  top: 36px;
  color: #fa9600;
  font-size: 20px;
  position: relative;
  left: 11px;
}

.input-div span {
  position: absolute;
  left: 14px;
  top: 149px;
}

.input-div textarea {
  width: 100%;
  border-radius: 8px;
  height: 120px;
  padding: 10px 0 0 40px;
  font-family: rubik, sans-serif;
  font-weight: 300;
  font-size: 14px;
  outline: unset;
  resize: none;
  margin: 20px 0 10px;
  position: relative;
}

.modal .modal-dialog .modal-content .modal-body button {
  display: block;
  border-radius: 10px;
  width: 40%;
  outline: 0;
  border: transparent;
  height: 40px;
  background: #fa9600;
  color: #fff;
  font-family: rubik, sans-serif;
  font-weight: 300;
  font-size: 16px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.modal .modal-dialog .modal-content .modal-body button:hover {
  background: #000;
  color: #fff;
  transition: 0.5s;
}

.modal-header h3 {
  font-size: 33px;
  padding: 10px 0;
  font-weight: 600;
}

.modal-header h6 {
  font-size: 20px;
  font-weight: 800;
}



.modal-header .btn-close {
  padding: 0px 4px 10px;
  border-radius: 50px;
  font-size: 30px;
}

.icon-box-main-contact .icon-con-main p:hover {
    color: #fa9600;
    transition: 0.5s;
}