@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
  max-width: 100%;
  width: auto;
}

body {
  padding: 0 !important;
  font-family: 'DM Sans', sans-serif;
}

body a,
body button {
  color: #000;
  outline: none !important;
  text-decoration: none !important;
  transition: all ease 0.5s;
}

* {
  padding: 0;
  margin: 0;
}

.m-100 {
  margin-bottom: 70px;
}

.sec-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #E48824;
  color: #fff;
  border-radius: 6px;
  padding-right: 10px;
  position: relative;
  text-transform: capitalize;
  z-index: 33;
  font-size: 18px;
  font-weight: 500;
  transition: .5s;
}

.sec-btn span {
  position: relative;
  z-index: 32;
  color: #fff;
}

.sec-btn::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #273679;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  transition: .5s;
  transform: scale(0, 1);
  content: '';
}

.sec-btn:hover::after {
  width: 100%;
  transform: scale(1);
}

.sec-btn i {
  height: 40px;
  width: 45px;
  background-color: #273679;
  color: #fff;
  display: flex;
  position: relative;
  z-index: 3;
  transition: .5s;
  align-items: center;
  border-radius: 4px;
  margin-left: 25px;
  justify-content: center;
}

.sec-btn:hover i {
  background-color: #E48824;
}

.what {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 9999;
}

.what a {
  color: #fff;
  font-size: 30px;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px 0px #050a3069;
  background: #0cd67b;
}

.what a:last-child {
  font-size: 20px;
  background-color: #E48824;
}

.under {
  padding: 7px 35px;
  position: relative;
  text-transform: capitalize;
  background-color: #E48824;
  font-weight: 600;
  border-radius: 36px;
  color: #fff;
}

.under::after {
  position: absolute;
  top: 12px;
  left: 11px;
  background-color: #273679;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  animation: color 2s alternate infinite;
  content: "";
}

.under::before {
  position: absolute;
  top: 12px;
  right: 11px;
  background-color: #273679;
  animation: color 2s alternate infinite;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  content: "";
}

@keyframes color {
  0% {
    background-color: #273679;
  }

  100% {
    background-color: #fff;
  }
}

h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0px;
  text-transform: capitalize;
}

.sticky {
  background-color: #fff !important;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
}

.sticky .navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}

.sticky .navbar-light .navbar-nav .nav-link:hover,
.sticky .navbar-light .navbar-nav .active {
  color: #E48824 !important;
}

.p-100 {
  padding: 100px 0px;
}

/* -------Globle-css-end------- */

header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 7779;
  background-color: transparent;
}

.menu {
  padding: 0px 40px;
  box-shadow: 0px 10px 20px 0px rgba(255, 64, 57, 0.051);
  background: linear-gradient(to right, #00000000, #000000c2, #000000d7);
}

.menu .navbar-brand img {
  width: 200px;
}

.menu .navbar-nav {
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
  margin-left: 100px;
}

.menu .navbar-light .navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 0px 20px;
}

.menu .navbar-light .navbar-nav li:last-child .nav-link {
  border-right: none;
}

.menu .navbar-light .navbar-nav .nav-link:hover,
.menu .navbar-light .navbar-nav .active {
  color: #E48824;
}

.menu .dropdown .dropdown-menu {
  width: 250px;
  font-weight: 600;
}

.menu .dropdown:hover .dropdown-menu {
  display: block;
}

.book-now .sec-btn {
  margin-top: 0;
}

header .container-fluid {
  padding: 0;
}

.menu .book-now {
  margin-left: 50px;
}

.menu .book {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.menu .book b {
  font-weight: 800;
  text-transform: capitalize;
}

.menu .book a {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.menu .book i {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: #E48824;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin-right: 20px;
}

.menu .book i::after {
  height: 100%;
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  content: '';
  animation: zoom 2s infinite;
}

@keyframes zoom {
  0% {
    box-shadow: 0px 0px 0px 0px transparent;
  }

  50% {
    box-shadow: 0px 0px 0px 0px #E48824;
  }

  100% {
    box-shadow: 0px 0px 0px 30px transparent;
  }
}

.menu .book b {
  color: #E48824;
}


.sticky .book a {
  color: #E48824;
}

.menu .menu-bar {
  padding: 5px 10px;
  border: 1px solid #E48824;
  border-radius: 30px;
  margin-left: 20px;
  display: flex;
  cursor: pointer;
  align-items: center;
  color: #fff;
}

.menu .menu-bar i {
  height: 40px;
  width: 40px;
  background-color: #E48824;
  display: flex;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ----Header-Section-End---- */

/* ===Menu-Section-Start=== */

.menu-section {
  background-color: #273679;
  color: #fff;
  width: 100%;
  position: fixed;
  top: -100%;
  z-index: 9999;
  transition: .6s;
  overflow: hidden;
  height: 100%;
  padding: 80px 0px;
}

.menu-section.show {
  top: 0;
}

.menu-section::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  content: "";
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: linear-gradient(#E4882484, #273679d8), url(../images/about1.png);
}

.menu-section .menu-img {
  height: 75vh;
}

.menu-section .menu-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.menu-section .menu-list {
  margin-left: 60px;
}

.menu-section .menu-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.menu-section .menu-list ul li {
  margin: 10px 0px;
  position: relative;
}

.menu-section .menu-list ul li ul {
  height: 0px;
  overflow: hidden;
  transition: .5s;
  background-color: #eee;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 33;
  left: 0;
  border-radius: 20px;
}

.menu-section .menu-list ul li:hover ul {
  height: auto;
  padding: 10px 20px;
}

.menu-section .menu-list ul li a {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  padding: 10px 0px;
}

.menu-section .menu-list ul li {
  transition: .5s;
}

.menu-section .menu-list ul li:hover i {
  transform: rotate(180deg);
}

.menu-list ul li ul li {
  border-bottom: 1px solid #273679;
}

.menu-section .menu-list ul li ul li a {
  font-size: 18px;
  transition: .5s;
  color: #273679;
  font-weight: 400;
}

.menu-list ul li ul li a:hover {
  color: #E48824;
}

.menu-section .close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 30px;
  transition: .5s;
  border-radius: 50%;
  font-size: 30px;
  right: 40px;
  cursor: pointer;
  z-index: 3;
  background-color: #E48824;
}

.menu-section .close:hover {
  color: #273679;
}

/* ====Menu-Section-End==== */

/* ---Hero-Section-Start--- */

.hero-section {
  padding: 200px 0px 100px;
  position: relative;
  background-image: url(../images/hero-bg.png);
  background-position: center;
}

.hero-section .hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0px;
  line-height: 65px;
}

.hero-section .hero-text h1 span {
  color: #E48824;
}

.hero-section .hero-text .sec-btn {
  margin-top: 20px;
}

/* ---Hero-Section-End--- */

/* ===Booking-Section-Start=== */

.booking-section {
  background-image: url(../images/booking-bg.webp);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bs-form {
  padding: 40px 30px;
  border-radius: 20px;
  margin-right: 30px;
  color: #fff;
  background-color: #E48824;
}

.bs-form .bs-input label {
  font-size: 18px;
  font-weight: 500;
}

.bs-form .bs-input input,
.bs-form .bs-input select,
.bs-form .bs-input textarea {
  padding: 13px 20px;
  border-radius: 7px;
  border: none;
  outline: none;
  background-color: #fff;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
}

.bs-form .sec-btn {
  border: none;
  background-color: #eee;
  margin-top: 20px;
}

.bs-form .sec-btn span {
  color: #E48824;
  font-weight: 500;
}

.booking-section .review h3 {
  font-weight: 700;
  margin-top: 30px;
  text-transform: capitalize;
  font-size: 50px;
}

.booking-section .review h3 span {
  color: #E48824;
}

.review .rs-box {
  padding: 30px;
  margin: 0px 10px;
  margin-top: 60px;
  background-color: #eee;
  color: #273679;
  border-radius: 20px;
}

.review .rs-box .rs-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: -70px;
  justify-content: space-between;
}

.review .rs-box .rs-top img:nth-child(1) {
  width: 80px;
  border-bottom: 4px solid #273679;
  border-radius: 50%;
}

.review .rs-box q {
  font-size: 19px;
}

.review .rs-box .rs-bottom {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}

.review .rs-box .rs-bottom .ratting i {
  color: #E48824;
  letter-spacing: 4px;
}

.review .rs-box .rs-bottom .info h6 {
  font-size: 20px;
  font-weight: 600;
  color: #E48824;
  margin-bottom: 0;
}

.booking-section .bs-box {
  display: flex;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  align-items: center;
  background-color: #E48824;
}

.booking-section .bs-box .icon {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  display: flex;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  background-color: #273679;
}

.booking-section .bs-box .text {
  flex: 1;
}

.booking-section .bs-box .text h4 {
  font-weight: 700;
  color: #273679;
}

.booking-section .bs-box .text a {
  color: #fff;
}

/* ====Booking-Section-End==== */

/* ===Map-Section-Start=== */

.map-section .map {
  height: 500px;
}

/* ===Map-Section-End=== */

/* ---About-Section-Start--- */

.about-section .as-item .as-img2 {
  margin-bottom: 25px
}

.about-section .as-item .as-img img {
  border-top-right-radius: 70px;
  border-bottom-left-radius: 70px;
}

.about-section .as-item .as-img2 img {
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
}

.about-section .as-item .as-img3 {
  border-radius: 70px;
  border-top-left-radius: 0px;
  outline: 2px solid #E48824;
  outline-offset: 8px;
}

.about-section .as-item .as-img3 img {
  border-radius: 70px;
  border-top-left-radius: 0px;
}

.about-section .as-content h2 {
  font-size: 45px;
  margin-top: 20px;
  font-weight: 700;
}

.as-img .as-ex span {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.as-content .cont-box {
  padding: 15px;
  text-align: center;
  background-color: #273679;
  color: #fff;
  transition: .5s;
  border-radius: 5px;
}

.as-content .cont-box h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0;
}

.as-content .cont-box:hover {
  background-color: #E48824;
}

.as-content .cont-box h2::after {
  content: "+";
  font-size: 40px;
}

.as-content .cont-box p {
  margin-bottom: 0;
}

/* ---About-Section-End--- */

/* ---Cta-Section-Start--- */

.cta-section .cta {
  padding: 0px 30px;
  background-color: #E48824;
  border-radius: 30px;
  color: #fff;
}

.cta-section .cta-text h2 {
  font-size: 35px;
  color: #273679;
  text-transform: capitalize;
}

.cta-section .cta-text h5 {
  font-weight: 600;
  background-color: #eee;
  display: inline-block;
  border-radius: 5px;
  margin: 10px 0px;
  padding: 7px 10px;
  color: #E48824;
}

.cta-section .cta-link {
  display: flex;
  flex: 1;
  align-items: center;
  color: #273679;
  justify-content: space-between;
  padding: 10px;
  background-color: #fff;
  padding-right: 20px;
  border-radius: 6px;
}

.cta-section .cta-link .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  justify-content: center;
  border-radius: 5px;
  background-color: #E48824;
}

.cta-section .cta-link .text h6 {
  font-size: 20px;
  font-weight: 600;
}

.cta-section .cta-link .text a {
  color: #E48824;
  font-size: 20px;
  font-weight: 600;
}

.cta-section .cta-link .icon img {
  width: 40px;
}

.cta-link .sec-btn {
  background-color: #273679;
}

.cta-link .sec-btn::after {
  background-color: #fff;
}

.cta-link .sec-btn:hover span {
  color: #E48824;
}

.cta-right {
  display: flex;
  align-items: center;
}

.cta-section .cta-img {
  margin-top: -60px;
}

.cta-section .cta-img {
  width: 57%;
}

.cta-section .cta-img img {
  width: 80%;
}

/* ----Cta-Section-End--- */

/* ---service-section-start---- */
.service-section {
  position: relative;
  overflow: hidden;
}

.service-section::after {
  position: absolute;
  top: 460px;
  width: 100%;
  height: 80%;
  content: "";
  background-color: #273679;
}

.service-section .ser-head {
  margin-bottom: 30px;
}

.service-section .ser-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0px;
}

.service-section .ser-head h2 span {
  color: #E48824;
}

.service-section .ser-slider {
  position: relative;
  z-index: 4;
}

.service-section .ser-box {
  transition: .5s;
  border-radius: 20px;
  margin: 20px 10px;
  background-image: linear-gradient(#000000b2, #000000b2), url(../images/ser1-1.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 4;
  border-bottom: 6px solid #E48824;
  height: 380px;
}

.service-section .ser-box .ser-img {
  height: 100%;
  position: relative;
  width: 100%;
  border-radius: 20px;
}

.service-section .ser-box .ser-img::after {
  background: linear-gradient(#0000003a, #273679);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 20px;
  height: 100%;
  content: "";
}

.service-section .ser-box .ser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.ser-box .ser-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  z-index: 5;
}

.ser-box .ser-text h4 {
  font-weight: 600;
  font-size: 28px;
}

.ser-box .ser-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  z-index: 5;
  transform: rotate(-45deg);
  background-color: #E48824;
}

.faq-section {
  position: relative;
  color: #fff;
  z-index: 4;
  margin-top: 50px;
}

.faq-section .faq-head h2 {
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0px;
}

.faq-section .faq-head h2 span {
  color: #E48824;
}

.faq-box .accordion-item {
  border: none;
  outline: none;
  background-color: transparent;
  margin: 15px 0px;
}

.faq-box .accordion-item h2 {
  margin-top: 0;
}

.faq-box .accordion-item .accordion-button {
  padding: 8px 20px;
  border-radius: 30px !important;
  background-color: #E48824;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.faq-box .accordion-item .accordion-button.collapsed {
  background-color: #eee;
  color: #000;
}

.faq-box .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-box .accordion-item .accordion-button::after {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  background-color: #eee;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  background-image: none;
  color: #E48824;
  content: "\2b";
  font-family: "FontAwesome";
}

.faq-box .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: #fff;
  background-color: #E48824;
}

.faq-box .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-box .accordion-body {
  padding: 10px 20px;
}

/* ===service-section-end=== */

/* ===Work-Section-Start=== */
.work-section {
  position: relative;
}

.work-section .ws-shape {
  position: absolute;
  top: 45%;
  left: 0;
}

.work-section .ws-head {
  margin-bottom: 60px;
}

.work-section .ws-head h2,
.work-section .ws-head h3 {
  margin: 20px 0px 10px;
  font-weight: 700;
}

.work-section .ws-box {
  text-align: center;
  position: relative;
}

.work-section .ws-box .ws-item1 {
  position: absolute;
  bottom: -80px;
  z-index: -1;
  font-size: 70px;
  font-weight: 900;
  text-align: center;
  color: #eee;
  width: 100%;
  margin: auto;
}

.work-section .ws-box .ws-item2 {
  position: absolute;
  top: -70px;
  z-index: -1;
  font-size: 70px;
  font-weight: 900;
  text-align: center;
  color: #eee;
  width: 100%;
  margin: auto;
}

.work-section .ws-box .ws-text {
  padding: 10px;
}

.work-section .ws-box .ws-text h4 {
  font-weight: 700;
  font-size: 25px;
  color: #273679;
}

.work-section .ws-box .ws-icon {
  height: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  box-shadow: 0px 10px 40px 10px #2736790e;
  background-color: #fff;
  border-radius: 50%;
}

/* ===Work-Section-End=== */

/* ===Move-Section-Start=== */

.move-section {
  background-color: #E48824;
}

.move-section .ms-head {
  text-align: center;
  color: #fff;
}

.move-section .ms-head h4 {
  font-size: 30px;
  font-weight: 700;
  color: #273679;
}

.move-section .ms-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.move-section .ms-list ul li {
  display: flex;
  border-radius: 30px;
  background-color: #fff;
  align-items: center;
  margin: 5px;
  padding: 5px 15px 5px 5px;
}

.move-section .ms-list ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  background-color: #273679;
}

/* ===Move-Section-End=== */

/* ===Review-Section-Start=== */


.review-section .rs-item {
  border-bottom: 1px solid #E48824;
}

.review-section .rs-item .rs-text {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}

.review-section .rs-item .rs-text .rs-info {
  display: flex;
  align-items: center;
  margin-right: 20px;
  flex: 1;
}

.rs-item .rs-text .rs-info h3 {
  font-size: 60px;
  font-weight: 800;
  margin-right: 10px;
}

.rs-item .rs-text .rs-info .ratting {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  padding: 8px 10px;
  background-color: #E48824;
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
}

.rs-item .rs-text .rs-info .ratting i {
  letter-spacing: 3px;
}

.review-section .rs-box {
  position: sticky;
  top: 0;
}

.review-section .rs-box h2 {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 30px;
}

.review-section .rs-box h2 span {
  color: #E48824;
}

.review-section .rs-box .rs-img img {
  height: 350px;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.review-section .rs-slide {
  margin-top: 50px;
  border-bottom: 1px solid #eee;
}

.review-section .rs-slide p {
  font-size: 18px;
  font-weight: 500;
}

.review-section .rs-slide .rs-user {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}

.review-section .rs-slide .rs-user img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.review-section .rs-slide .rs-user .text {
  margin-left: 20px;
}

.review-section .rs-slide .rs-user .text h5 {
  font-weight: 700;
  font-size: 23px;
  color: #E48824;
}

.form-box {
  background-color: #E48824;
  padding: 35px 20px;
}

.form-box h2 {
  color: #fff;
  font-size: 30px;
  margin-top: 0;
}

.form-box .f-group input,
.form-box .f-group select,
.form-box .f-group textarea {
  width: 100%;
  padding: 13px 20px;
  border: none;
  margin-bottom: 10px;
  outline: none;
  border-radius: 5px;
  background-color: #fff;
}

.form-box .f-group textarea {
  margin-bottom: 0;
}

.form-box .f-group input::placeholder,
.form-box .f-group textarea::placeholder {
  color: #273679;
}

.form-box .f-group select {
  padding: 18px 20px;
}

.form-box .f-group .sec-btn {
  width: 100%;
  margin-top: 20px;
  border: none;
  font-size: 20px;
  padding: 15px 20px;
  background-color: #273679;
}

.form-box .f-group .sec-btn::after {
  background-color: #fff;
}

.form-box .f-group .sec-btn:hover span {
  color: #E48824;
}

.form-box label {
  color: #273679;
  font-weight: 500;
  margin-bottom: 3px;
}

.form-box .sec-btn {
  margin-top: 5px;
}


/* ===Review-Section-End=== */

/* ===Choose-Section-Start=== */

.choose-section {
  background-color: #273679;
  color: #fff;
}

.choose-section .ch-left h2 {
  margin: 20px 0px;
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
}

.choose-section .ch-left h2 span {
  color: #E48824;
}

.choose-section .ch-box {
  border-right: 1px solid #E48824;
  height: 100%;
  padding: 40px 10px 10px;
  transition: .5s;
}

.choose-section .row .col-lg-3:nth-child(4) .ch-box {
  border: none;
}

.choose-section .ch-box:hover {
  border-radius: 20px;
  background-color: #E48824;
}

.choose-section .ch-box:hover img {
  filter: brightness(34);
}

.choose-section .ch-box h4 {
  margin: 20px 0px 10px;
  font-size: 20px;
  font-weight: 700;
}

/* ====Choose-Section-End==== */

/* ===Counter-Section-Start=== */

.counter-section .counter {
  padding: 35px 30px;
  border-radius: 100px;
  background-color: #E48824;
  background-image: url(../images/process-bg.png);
  margin-top: -90px;
  color: #ffff;
}

.counter-section .cs-box {
  display: flex;
  padding: 10px;
  align-items: center;
}

.counter-section .cs-box .icon {
  height: 90px;
  width: 90px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.counter-section .cs-box .text h2 {
  font-size: 45px;
  margin-bottom: 0;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.counter-section .cs-box .text h2::after {
  content: "+";
  color: #fff;
  padding-left: 5px;
}

.counter-section .cs-box .text span {
  color: #273679;
  font-weight: 500;
  font-size: 20px;
}

/* ====Counter-Section-End==== */

/* ===Area-Section-Start=== */

.area-section .as-head h2 {
  margin: 20px 0px;
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
}

.area-section .as-head h2 span {
  color: #E48824;
}

.area-section .as-list {
  padding: 20px;
  background-color: #eee;
  border-radius: 20px;
}

.area-section .as-list ul {
  padding: 0;
  list-style: none;
  margin: 20px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.area-section .as-list ul li {
  padding: 7px 15px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #273679;
  margin: 8px;
}

.area-section .as-list ul li i {
  color: #E48824;
  padding-right: 15px;
}

.area-section .as-list ul li span {
  font-size: 18px;
}

/* ====Area-Section-End==== */

/* -----Brand-Section-Start----- */

.brand-section {
  text-align: center;
}

.brand-section .brand-box {
  padding: 20px;
  border: 3px double #273679;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.brand-section .brand-box img {
  margin: auto;
  width: 200px;
}

.brand-section h3 {
  font-size: 40px;
  font-weight: 600;
}

/* ---Brand-Section-End---- */

/* ===Footer-Section-Start=== */

.footer-section .container-fluid {
  padding: 0px 40px;
}

.footer-section {
  padding-top: 40px;
  background: linear-gradient(#0b0b0b, #000);
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.footer-section .footer-shape {
  position: absolute;
  bottom: 0;
  right: 20px;
  opacity: .2;
  animation: move 2s alternate infinite;
}

/* .footer-section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/site-footer-two-shape-1.png);
  content: "";
  height: 100%;
  background-repeat: no-repeat;
  opacity: .040;
  width: 100%;
} */

.footer-logo {
  margin-bottom: 20px;
}

.footer-box {
  position: relative;
  margin-top: 20px;
  z-index: 4;
}

.footer-box .social {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-box .social li {
  margin: 0px 4px;
}

.footer-section .footer-text {
  margin: 20px 0px;
  padding: 15px;
  border-radius: 10px;
  background-color: #E48824;
}

.footer-box .social li a {
  height: 50px;
  width: 50px;
  font-weight: 100;
  display: flex;
  transition: .5s;
  color: #fff;
  border-radius: 100%;
  background-color: #ffffff41;
  align-items: center;
  justify-content: center;
}


.footer-box .social li a:hover {
  color: #E48824;
  background-color: #fff;
  border-radius: 100%;
}

.footer-box .footer-title h4,
.footer-section .fs-head-box h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #E48824;
  font-weight: 700;
  position: relative;
}

.footer-box .footer-title h4::after,
.footer-section .fs-head-box h4::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  width: 50px;
  border-radius: 10px;
  height: 3px;
  content: '';
}

.footer-section .fs-head-box {
  margin-top: 20px;
}

.footer-section .fs-head-box h4 {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-link ul li a:hover {
  color: #E48824;
}

.footer-section .footer-box .footer-logo img {
  width: 250px;
}

.footer-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-box ul li {
  margin: 10px 0px;
}

.footer-box ul li a {
  font-size: 18px;
  color: #fff;
}

.footer-link2 ul li {
  display: flex;
  align-items: center;
}

.footer-link2 ul li a:hover {
  color: #E48824;
}

.footer-link2 ul li i {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  transition: .5s;
  margin-right: 10px;
  border-radius: 100%;
  background-color: #ffffff1a;
  font-size: 20px;
}

.footer-link2 ul li:hover i {
  background-color: #fff;
  border-radius: 100%;
  color: #E48824;
}

.footer-link2 ul li span,
.footer-link2 ul li a {
  flex: 1;
  font-size: 16px;
}

.footer-section .copy-right {
  text-align: center;
  padding: 20px 40px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #ffffff47;
  position: relative;
}

.footer-section .copy-right p {
  margin-bottom: 0;
}

.footer-section .copy-right p a {
  color: #E48824;
  font-weight: 600;
}

.footer-section .copy-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .copy-right ul li a {
  padding: 0px 10px;
  color: #E48824;
  transition: .5s;
}

.footer-section .copy-right ul li a:hover {
  color: #E48824;
}

.footer-section .fs-foot {
  padding: 15px 20px;
  border: 1px solid #d8d7ee;
  border-radius: 10px;
  margin-top: 30px;
  color: #fff;
  background-color: #f7f4f43e;
}

.footer-section .fs-foot .fs-item {
  display: flex;
  align-items: center;
}

.fs-foot .fs-item .fs-box {
  display: flex;
  flex: 1;
  margin: 0px 15px;
  align-items: center;
}

.fs-foot .fs-item .fs-box:nth-child(3) {
  flex: 2;
}

.fs-foot .fs-item .fs-box .icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #E48824;
  margin-right: 10px;
}

.fs-foot .fs-item .fs-box .icon img {
  width: 50px;
}

.fs-foot .fs-item .fs-box .text {
  flex: 1;
}

.fs-foot .fs-item .fs-box .text h6 {
  font-size: 20px;
  font-weight: 600;
  color: #E48824;
}

.fs-foot .fs-item .fs-box .text a {
  color: #fff;
}

/* ===Footer-Section-End==== */

/* ===About-Two-Start=== */

.about-two {
  color: #fff;
  padding-top: 100px;
  position: relative;
}

.about-two::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  content: "";
  background-color: #E48824;
  z-index: -1;
}

.about-two .row {
  margin-bottom: 100px;
}

.about-two .as-left {
  padding: 30px 20px;
  background-color: #273679;
  border-radius: 20px;
}

.about-two .as-left h1 {
  font-weight: 700;
  text-transform: capitalize;
  margin: 20px 0px;
  line-height: 60px;
  font-size: 45px;
}

.about-two .as-left h1 span {
  color: #E48824;
}

.about-two .about-img img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* ====About-Two-End==== */

/*===Popup-Section===*/

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  padding: 30px;
  max-width: 340px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.6s ease-in-out;
}
.popup-box .f-group{
  margin: 15px 0px;
  text-align: left;
}
.popup-box .f-group input{
  width: 100%;
  border-radius: 3px;
  padding: 10px 20px;
  border: 1px solid #273679;
  outline: none;
}
.popup-box .f-group .sec-btn{
  margin-top: 20px;
}
.popup-box h2 {
  margin-bottom: 15px;
  color: #E48824;
}

.popup-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.popup-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #273679;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.popup-btn:hover {
  background: #273679;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 27px;
  cursor: pointer;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/*===Popup-Section====*/

/* ---Banner-Section-Start--- */

.banner-section {
  background-image: linear-gradient(to right, #000000ff, #0000004f, #0000000d), url(../images/banner.png);
  position: relative;
  background-position: center;
  background-size: cover;
}

.banner-title {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 70px;
  color: #fff;
}

.banner-section ul {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  z-index: 99;
  background-color: #fff;
  position: relative;
  margin: auto;
  margin-bottom: -1px;
  clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
  width: 300px;
}

.banner-section ul li {
  padding: 5px;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

.banner-section ul li a {
  color: #273679;
}

.banner-section ul li:hover a {
  color: #E48824;
}

/* ---Banner-Section-End--- */

/* ===Service-Two-Start=== */
.service-two .ser-box h1 {
  font-weight: 700;
  color: #273679;
}

.service-two .ser-img {
  height: 100%;
}

.service-two .ser-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

/* ====Service-Two-End==== */

/* ===Other-Section-Start=== */

.other-section .container {
  padding: 40px;
  color: #fff;
  border-radius: 20px;
  background-color: #273679;
  background-image: url(../images/process-bg.png);
}

.other-section .os-head {
  text-align: center;
}

.other-section .os-box {
  padding: 20px;
  background-color: #E48824;
  border-radius: 15px;
  height: 100%;
}

.other-section .os-box .icon {
  height: 60px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 30px;
  color: #E48824;
  background-color: #eee;
}

/* ====Other-Section-End==== */


/* ===Network-Section-Start=== */

.network-section .ns-box {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #0e47c0;
  transition: .5s;
  margin: 10px 0px;
}

.network-section .ns-box:hover {
  border-color: #f5c900;
}

.network-section .ns-box h6 {
  color: #fff;
  font-size: 22px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #161E54;
}

.network-section .ns-box b {
  color: #f5c900;
}

.network-section .ns-box .ns-icon img {
  width: 50px;
}

.network-section h2{
  font-size: 30px;
  font-weight:700;
  color: #161E54;
  margin-top: 20px;
}
.network-section ul{
  padding: 0;
  list-style: none;
  margin: 0;
}

.network-section ul li{
  padding: 8px 20px;
  background-color: #eee;
  border-radius: 5px;
  margin: 10px 0px;
}

/* ====Network-Section-End==== */

/* ===Mission-Section-Start=== */
.mission-section .ms-img {
  height: 100%;
}

.mission-section .ms-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mission-section .ms-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border-radius: 15px;
  background-color: #eee;
  margin: 15px 0px;
}

.mission-section .ms-box h4 {
  color: #E48824;
  font-weight: 700;
  font-size: 25px;
}

.mission-section .ms-box p {
  margin-bottom: 0;
}

.mission-section .ms-box .icon {
  margin: 0px 15px;
}

/* ====Mission-Section-End==== */

/* -----Gallery-Page-start----- */

.gallery-section .gs-head h2 {
  margin: 0;
  text-align: center;
}

.gallery-section .gallery-box {
  position: relative;
  margin-top: 20px;
}

.gallery-box a {
  position: relative;
  border-radius: 10px;
}

.gallery-box a img {
  width: 100%;
  transition: .5s;
  height: 328px;
  object-fit: cover;
}

.gallery-box a:hover img {
  transform: scale(.9);
}

/* ------gallery-Page-end------- */

/* ---------Service-details-start-------- */
.service-two .ser-img img {
  border-radius: 10px;
}

.service-two .ser-box {
  border: none;
}

.service-two p b {
  color: #171718;
}

.ser-slider .ser-list {
  border-radius: 2px;
  margin: 10px;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
  background-color: #eee;
  font-size: 18px;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  transition: .5s;
  width: 180px;
  line-height: 24px;
  cursor: pointer;
  min-height: 170px;
}

.ser-slider .ser-list::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #E48824;
  transition: .4s;
  content: "";
}

.ser-slider .ser-list:hover::after {
  height: 100%;
}

.ser-slider .ser-list::before {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  transform: translate(-50%, -50%);
  height: 3px;
  background-color: #273679;
  z-index: 3;
  transition: .4s;
  content: "";
}

.ser-slider .ser-list:hover:before {
  width: 100%;
}

.ser-slider .ser-list.slick-current::before {
  width: 100%;
}

.ser-slider .ser-list img {
  display: block;
  margin: 10px auto;
  filter: brightness(0);
  position: relative;
  z-index: 9;
  transition: .5s;
}

.ser-slider .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ser-slider .ser-list:hover img,
.ser-slider .ser-list.slick-current img {
  filter: brightness(1);
}

.ser-slider .ser-list.slick-current {
  background-color: #E48824;
  color: #fff;
  cursor: auto;
}

.ser-slider .ser-list:hover span {
  color: #fff;
  position: relative;
  z-index: 4;
}

.service-two .ser-box {
  text-align: left;
  position: static;
  padding: 0;
  box-shadow: none;
}

.service-two .ser-box h2 {
  font-size: 30px;
  font-weight: 700;
}

.service-two .ser-box:hover {
  color: #171718;
}

.service-two .ser-box::before,
.service-two .ser-box::after {
  display: none;
}

.service-two .ser-box h4 {
  margin: 6px 0px;
}

/* ---------Service-details-start-------- */

/* ---Contact-Section-Start--- */
.contact-section {
  background-color: #eee;
}

.contact-section .con-box {
  display: flex;
  border-bottom: 1px solid #E48824;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 20px;
}

.contact-section .con-box address {
  margin: 0px;
}

.contact-section .con-box .contact-img {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  transition: .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #273679;
  margin-right: 20px;
}

.contact-section .con-box:hover .contact-img {
  background-color: #E48824;
}

.con-box .contact-img img {
  width: 50px;
}

.con-box .text {
  flex: 1;
}

.con-box .text h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}

.contact-section .map {
  border: 1px solid #E48824;
  height: 100%;
  border-radius: 20px;
}

.contact-section .map iframe {
  border-radius: 20px;
}

/* ---Contact-Section-End---- */

@media screen and (max-width:1024px) {
  .menu {
    padding: 0px 20px;
  }

  .menu .navbar-nav {
    margin-left: 42px;
  }

  .menu .menu-bar {
    display: none;
  }

  .hero-section .hero-text h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .menu .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    padding: 0px 10px;
    font-weight: 500;
  }

  .hero-slide .hero-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-slide .hero-text p {
    font-size: 17px;
  }

  h2,
  .as-content .cont-box h2 {
    font-size: 29px;
    font-weight: 600;
  }

  .booking-section .review h3 {
    font-size: 40px;
  }

  .review .rs-box {
    margin-top: 40px;
  }

  .about-section .as-content h2 {
    font-size: 35px;
  }

  .cta-right {
    display: block;
  }

  .cta-section .cta-img img {
    width: 100%;
  }

  .cta-section .cta-text {
    padding: 20px 0px;
  }

  .review-section .rs-box h2 {
    font-size: 33px;
  }

  .faq-section .faq-head h2 {
    font-size: 35px;
  }

  .as-content .cont-box p {
    font-size: 13px;
  }

  .as-content .cont-box img {
    width: 50px;
  }

  .as-content .cont-box {
    padding: 10px;
  }

  .p-100 {
    padding: 60px 0px;
  }

  .choose-section {
    padding-bottom: 100px;
  }

  .counter-section .cs-box .text h2 {
    font-size: 40px;
  }

  .cta-section .cta-text img {
    width: 80px;
  }

  .service-section .ser-box {
    margin: 10px 0px;
  }

  .review .rs-box {
    padding: 30px 20px;
  }

  .ser-box h4 {
    font-size: 21px;
    font-weight: 600;
    margin: 10px 0px;
  }

  .m-100 {
    margin-bottom: 60px;
  }

  .contact-section .con-box .contact-img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .contact-section .con-box .contact-img img {
    width: 45px;
  }

  .about-two .as-left h1 {
    font-size: 35px;
  }

  .service-section2 .ser-box {
    height: 450px;
  }
}

@media screen and (max-width:992px) {

  .top-right-bar,
  .menu .navbar-light .navbar-toggler,
  .menu .navbar-nav,
  .menu .book {
    display: none;
  }

  .menu .navbar .container-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .menu .navbar .collapse:not(.show) {
    display: flex;
    justify-content: flex-end;
  }

  .menu .menu-bar {
    display: inline-flex;
  }

  .menu .navbar-light .navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    color: #273679;
    justify-content: center;
  }

  .menu .navbar-light .navbar-toggler {
    border: 3px double #E48824;
  }

  .menu .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }

  .menu .navbar-nav {
    align-items: flex-start;
  }

  .menu .navbar-light .navbar-nav .nav-link {
    padding: 5px 0px;
    border: none;
  }

  .menu .book-now {
    margin: 20px 0px;
    margin-left: 0;
  }

  .hero-section {
    background-image: linear-gradient(#000000da, #0000009c), url(../images/hero-bg.png);
    color: #fff;
    background-position: left;
  }

  .bs-form {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .review .rs-box .rs-bottom {
    flex-direction: column;
    text-align: center;
  }

  .review .rs-box .rs-bottom .info {
    margin-top: 10px;
  }

  .as-content {
    margin-top: 40px;
  }

  .cta-section .cta .row {
    flex-direction: column-reverse;
  }

  .cta-section .cta-link {
    display: inline-flex;
  }

  .cta-section .cta-link .icon {
    margin-right: 30px;
  }

  .cta-section .cta-text h2 {
    font-size: 24px;
  }

  .hero-slide .hero-text h2 {
    font-size: 35px;
  }

  .review-section .rs-item .rs-text {
    flex-wrap: wrap;
  }

  .cta-section .cta {
    padding: 25px 35px;
  }

  .p-100 {
    padding: 50px 0px;
  }

  .tes-slider .tes-box {
    padding: 30px;
    margin: 10px;
    outline-offset: -17px;
  }

  .tes-box .ratting {
    font-size: 14px;
    margin-top: 0;
  }

  .m-100 {
    margin-bottom: 50px;
  }

  .contact-section .map {
    height: 300px;
    margin-top: 30px;
  }

  .service-section .ser-head h2 {
    font-size: 35px;
  }

  .review-section .container>.row {
    flex-direction: column-reverse;
  }

  .review-section .rs-left {
    margin-top: 40px;
  }

  .footer-section .fs-foot .fs-item {
    flex-wrap: wrap;
  }

  .choose-section .col-lg-3:nth-child(2) .ch-box,
  .choose-section .col-lg-3:nth-child(1) .ch-box {
    border-bottom: 1px solid #E48824;
  }

  .choose-section .ch-box {
    border-right: none;
  }

  .counter-section .counter {
    margin-top: 40px;
  }

  .fs-foot .fs-item .fs-box:nth-child(3) {
    margin-top: 20px;
  }
}

@media screen and (max-width:580px) {
  .hero-slide .hero-text h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .hero-section {
    position: relative;
  }

  .hero-section {
    padding: 150px 0px 80px;
  }

  .hero-section .hero-slide {
    position: relative;
    padding-top: 170px;
    padding-bottom: 100px;
    background-position: left;
  }

  .hero-section .hero-slide::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #00000097;
  }

  .hero-section .hero-slide .hero-text {
    position: relative;
    z-index: 33;
  }

  .hero-slide .hero-text p {
    font-size: 16px;
  }

  .hero-section .hero-text h1 {
    font-size: 27px;
    line-height: 35px;
  }

  .about-section .as-item .as-img,
  .about-section .as-item .as-img2 {
    display: none;
  }

  .about-section .as-content h2 {
    font-size: 30px;
  }

  .cta-section .cta-img {
    width: 100%;
  }

  .work-section .col-md-6:nth-child(odd) .ws-box {
    display: flex;
    flex-direction: column-reverse;
  }

  .work-section .ws-box .ws-item1 {
    top: -45px;
  }

  .work-section .ws-box .ws-text {
    margin-bottom: 35px;
  }

  .choose-section .ch-left h2 {
    font-size: 27px;
    line-height: 38px;
  }

  .choose-section .ch-box {
    border-bottom: 1px solid #E48824;
  }

  .counter-section .counter {
    border-radius: 20px;
    padding: 30px 15px;
  }

  .area-section .as-head h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .cta-section .cta {
    padding: 25px 20px;
  }

  .fs-foot .fs-item .fs-box {
    flex-direction: column;
    padding: 10px 0px;
    border-bottom: 1px solid #E48824;
    text-align: center;
  }

  .footer-section .container-fluid {
    padding: 0px 10px;
  }

  .footer-section .fs-foot {
    padding: 20px 10px;
  }

  .fs-foot .fs-item .fs-box .text {
    margin-top: 10px;
  }

  h2,
  .form-box h2 {
    font-size: 25px;
  }

  .about-section .as-img .as-ex {
    position: relative;
    width: 100%;
    outline: none;
    bottom: 0;
  }

  .as-content .cont-box {
    padding: 20px;
    margin-top: 20px;
  }

  .as-content .cont-box h2 {
    font-size: 30px;
  }

  .as-content>p {
    text-align: justify;
  }

  .as-content .cont-box p {
    font-size: 18px;
  }

  .cta-section {
    text-align: center;
  }

  .service-two .ser-box h2 {
    font-size: 20px;
  }

  .review-section .rs-box h2 {
    font-size: 25px;
  }

  .contact-section .con-box address {
    font-size: 14px;
  }

  .cta-section .cta-text {
    flex-direction: column;
  }

  .cta-section .cta-text img {
    width: 60px;
  }

  .cta-section .cta-text h2 {
    margin-left: 0;
  }

  .cta-section .cta-link {
    justify-content: center;
  }

  .p-100 {
    padding: 40px 0px;
  }

  .m-100 {
    margin-bottom: 40px;
  }

  .tes-slider .tes-box {
    margin: 0;
    border: 1px solid #b1b1b3;
  }

  .form-box {
    margin-top: 30px;
  }

  .top-bar .top-right {
    flex-wrap: wrap;
  }

  header .top-bar {
    background-color: #E48824;
  }

  .top-bar .top-right a {
    color: #fff;
  }

  .top-bar .top-right i {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding-right: 0;
    margin-right: 10px;
    background-color: #273679;
  }

  .top-bar .top-right .phone,
  .top-bar .top-right .email {
    display: flex;
    align-items: center;
  }

  .top-bar .top-right .phone {
    margin-bottom: 10px;
  }

  .top-bar .top-right a:hover {
    color: #273679;
  }

  .banner-section {
    background-position: right;
  }

  .banner-title {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .contact-section .con-box:last-child a {
    font-size: 14px;
  }

  .footer-section .copy-right {
    padding: 20px 10px;
    flex-direction: column;
  }

  .banner-section {
    background-image: linear-gradient(to right, #00000024, #0000004f, #0000000d), url(../images/banner.png);
  }

  .about-two {
    padding-top: 50px;
  }

  .about-two .as-left {
    margin-bottom: 20px;
  }

  .about-two .about-img img {
    height: auto;
  }

  .mission-section .ms-box {
    flex-direction: column;
  }

  .about-two .as-left h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .other-section .container {
    padding: 40px 20px;
  }

  .move-section .ms-list ul li {
    padding: 3px 8px 3px 3px;
    font-size: 10px;
  }

  .service-section .ser-head h2 {
    font-size: 26px;
  }

  .banner-title h2 {
    font-size: 33px;
    font-weight: 700;
  }

  .ser-box .ser-text h4 {
    font-size: 26px;
  }

  .menu-section::after {
    display: none;
  }

  .menu-section .menu-list {
    margin-left: 10px;
  }
  .menu{
      background:none;
      box-shadow:none;
  }
  .menu .navbar .collapse:not(.show){
      flex:1;
  }
.hero-section {
    background-image: linear-gradient(#0000006b, #000000ad, #0000009c), url(../images/hero-bg.png);
    color: #fff;
    background-position: left;
}
}



/*---thank-Section-Start----*/

.thank {
  text-align: center;
  height: 100vh;
  width: 100%;
  margin-top: 0px;
}

.thank img {
  width: 50%;
}

.thank ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.thank ul li a {
  height: 45px;
  width: 45px;
  background: #ffb400;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin: 5px;
  border-radius: 5px;
  justify-content: center;
}

@media screen and (max-width:1024px) {
  .thank {
    margin-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .thank {
    margin: 50px 0px;
    height: auto;
  }

  .thank img {
    width: 80%;
  }
}

@media screen and (max-width:580px) {
  .thank {
    margin: 20px 0px;
  }
}

/*---thank-Section-end----*/