@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Rubik:ital@0;1&display=swap');


/* Fonts */
:root {
  --font-default: 'Rubik', sans-serif;
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: 'Rubik', sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #de4721;
  --color-secondary: #37373f;

  --bg-theme-color1: #ca1f26;
  --theme-color-light: #ffffff;
  --theme-color-dark: #181818;
  --theme-color1: #ca1f26;
  --theme-color2: #febe42;
  --theme-color3: #ff9205;

  --sec-title-subtitle-color: var(--theme-color1);
  --sec-title-subtitle-font-size: 12px;
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 800;
  --sec-title-subtitle-line-height: 20px;
  --sec-title-color: var(--theme-color-dark);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: 700;

  --text-font: "Manrope", sans-serif;
  --title-font: "Poppins", sans-serif;
  --body-font-size: 14px;
  --body-line-height: 24px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 72px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 26px;
  --h5-font-size: 22px;
  --h6-font-size: 18px;
  --h1-font-weight: 600;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;

  --container-width: 1200px;
  --small-container-width: 1000px;
  --large-container-width: 1310px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #12a9a2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 56px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #12a9a2;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }


  .copyrights {
    margin-bottom: 4em;
  }

  .service-box img {
    height: 140px !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  height: 50px;
  border-bottom: 1px solid #fff;
}

.header.sticked {
  background: #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }

  .header .logo img {
    max-height: 70px !important;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
  box-shadow: 0px 2px 5px rgb(0 0 0 / 20%);
}

.header .logo img {
  max-height: 201px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #000 !important;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 0;
  transition: 0.3s;
  background: #de4721;
}

.thsn-button-box {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.thsn-button-box a {
  color: #fff;
}

.header.sticked * {
  color: #000;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #000;
  background: #fff;
}

section {
  scroll-margin-top: 90px;
}

.heromainimg-1 {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 70%;
  margin: auto;
  bottom: 1%;
  z-index: 1;
}

img.img-fluid.heromainimg-2 {
  max-width: 25%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.heroslider-3 img.img-fluid.heromainimg-2 {
  left: 0;
  right: initial;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #414040;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /* color: #000; */
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary) !important;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #de4721;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  /* min-height: 100vh; */
  padding: 0;
}

.thsn-header-button {
  display: flex;
  align-items: center;
}

.thsn-header-button .header_icon1 {
  width: 40px;
  min-width: 40px;
  margin-right: 10px;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #edf5f5;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #000;
  background: #de4721;
  box-shadow: 0 8px 28px rgb(206 18 18 / 20%);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.col-lg-7.order-2.order-lg-1.d-flex.flex-column.justify-content-center.align-items-center.align-items-lg-start.text-center.text-lg-start {
  position: relative;
  z-index: 10;
}

.hero .btn-book-a-table:hover {
  background: #ffffff;
  box-shadow: 0 8px 28px rgb(0 0 0 / 45%);
}

.herosliderslides {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #00039d, #1d47ee);
}

.heroslider-1 {
  position: relative;
}

.heroslider-1:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/background/1.png);
  background-size: cover;
  background-position: center;

}


.heroslider-2 {
  background: url(../img/background/2.png);

  background-size: cover;
  background-position: center;
}

.heroslider-3 {
  background: url(../img/background/3.png);

  background-size: cover;
  background-position: center;

}

.heroslider-4 {
  background: url(../img/recruit.jpg);
  background-size: cover;
  background-position: center;

}

.heroslider-5 {
  background: url(../img/6.jpeg);
  background-size: cover;
  background-position: center;
}

.heroslider-6 {
  background: url(../img/s6.jpeg);
  background-size: cover;
  background-position: center;
}

.heroslider-7 {
  background: url(../img/s7.jpeg);
  background-size: cover;
  background-position: center;

}

.herosliderslides h2 {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 3.5em;
  line-height: 1;
  text-shadow: 2px 2px 3px rgb(0 0 0 / 55%);
}

.heromainimg-1 {
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    bottom: 1%
  }

  100% {
    bottom: 2%
  }
}

@keyframes mover {
  0% {
    bottom: 1%
  }

  100% {
    bottom: 2%
  }
}

.herosliderslides a.btn-book-a-table {
  border-radius: 0;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

section#hero {
  padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.section {
  padding: 90px 0;
}

.section.section-2 {
  overflow: hidden;
}

.foot-supp h2 {
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.foot-supp h2 span {
  font-weight: 300;
  padding-right: 5px;
}

.foot-count {
  border-top: 1px dashed #352c7c;
  padding: 35px 0px 0px 0px;
  margin-top: 20px;
}

.foot-count ul {
  margin: 0 auto;
  display: table;
}

.foot-count ul li {
  float: left;
  font-size: 14px;
  padding: 0px 15px;
  border-right: 1px dashed #352c7c;
  line-height: 15px;
  text-align: center;
  font-weight: 500;
  color: #7a6a5c;
  line-height: 18px;
}

.wed-hom-footer {
  /* margin-top: 60px; */
  padding: 60px 0px 40px 0px;
  float: left;
  width: 100%;
  color: #fff;
  background: var(--color-primary);
}

.wed-hom-footer h4 {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 25px;
  text-transform: capitalize;
  font-weight: 500;
}

.wed-hom-footer p {
  font-size: 12px;
  color: #fff;
}

.wed-hom-footer ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.wed-hom-footer p a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.wed-foot-link {
  border-top: 1px dashed #364a5a;
  /* border-bottom: 1px dashed #5d5b5b; */
  padding: 35px 0px 5px 0px;
  /* margin-top: 35px;
     */
}

.wed-foot-link ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.wed-foot-link ul li {
  width: 50%;
  float: left;
  margin-bottom: 8px;
  list-style-type: none;
}

.wed-foot-link ul li a {
  color: #fff;
  font-size: 13px;
}

.wed-foot-link div {
  border-right: 1px dashed #352c7c;
}

.wed-foot-link div:last-child {
  border-right: 0px solid #dadada;
  ;
}

.wed-video2 {
  padding: 50px 0px;
  background: #f1f1f1;
}

.wed-foot-link-1 {
  padding-top: 40px;
}

.wed-foot-link-1 ul {
  position: relative;
  overflow: hidden;
  padding: 1px;
}

.wed-foot-link-1 ul li {
  float: left;
  padding-right: 8px;
  list-style-type: none;
}

.wed-foot-link-1 ul li a {}

.wed-foot-link-pop {
  padding: 30px 0px 0px 0px;
}

.wed-foot-link-pop h4 {
  padding-bottom: 15px;
}

.wed-foot-link-pop ul li {
  float: left;
  width: 16%;
  padding: 0px 5px 12px 0px;
  list-style-type: none;
}

.wed-foot-link-pop ul li a {
  color: #fff;
  font-size: 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.wed-foot-link-pop ul li a:hover,
.wed-foot-link ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.fot-app ul li a img {
  width: 157px;
  height: 55px;
  display: inline-block;
  object-fit: contain;
}

.fot-soc ul li a img {
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 50%;
}

.wed-rights {
  background: #01172f;
}

.wed-rights p {
  text-align: center;
  margin-bottom: 0px;
  padding: 8px;
  color: #adadad;
  font-size: 13px;
}

.foot-supp h2 {
  color: #fff;
}

.copyrights {
  float: none;
  clear: both;
  text-align: center;
  background: #a02c1b;
  color: #fff;
  font-size: 14px;
  padding: 13px 10px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1;
  margin: auto;
  margin-bottom: 1em;
  max-width: 700px;
}

h2.thsn-element-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #de4721;
}

.section.section-2 .section-title {
  max-width: 800px;
  margin: auto;
}

.section.section-2 .section-title img {
  max-width: 140px;
}

.section-2-left img {
  height: 100%;
  object-fit: cover;
}

.section-2-middle img {
  max-width: 227px;
  margin-bottom: 3em;
}

.founder-text p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #de4721;
  line-height: 1;
  margin-bottom: 5px !important;
}

.founder-text {
  font-size: 14px;
}

.founder-main img {
  margin-bottom: 0;
}

.founder-main {
  justify-content: space-between;
}

.mission-vision-sec-main {
  background: #f9f9f9;
  padding: 25px;
  max-width: 100%;
}

.mission-vision-sec .swiper-pagination {
  position: relative;
  bottom: 0;
  top: 0;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {}

.mission-vision-sec .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.section-2-right {
  display: flex;
  align-items: center;
}


nav#navbar {
  margin-right: auto;
}


.section.section-3 {
  background: #f9f9f9;
}

.section-3 .thsn-box-contents img {
  height: 70px;
  margin: auto;
  display: block;
}

.section-3 .thsn-ihbox-headingicon {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  height: 100%;
  border-bottom: 7px solid #de4721;
  transition: 0s;
  position: relative;
  background-size: cover;
  color: #fff;
}

.section-3 .thsn-ihbox-headingicon h2.thsn-element-title {
  color: #fff;
  font-size: 28px;
  margin: 1em 0;
  line-height: 1;
}

.section-3 .thsn-heading-desc {
  font-size: 16px;
  margin-bottom: 20px;
}

.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image {
  background: #f9f9f9;
}

.section-3 .thsn-ihbox-style-13 .thsn-ihbox-icon-wrapper img {
  z-index: 1;
  position: relative;
}

.section-3 .thsn-ihbox-style-13:hover .thsn-ihbox-icon-wrapper img {
  position: relative;
  animation: mymove 4s infinite;
}

.thsn-ihbox-headingicon:hover .thsn-ihbox-icon-type-image img {
  position: relative;
  animation: mymove 4s infinite;
}

.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image img {
  margin-top: -15px;
}

.section-3 .thsn-ihbox-headingicon:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 40%);
  z-index: 0;
}

.section-3 .thsn-ihbox-headingicon:hover:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 70%);
  z-index: 0;
}

.section-3 .thsn-ihbox-headingicon * {
  position: relative;
}

@keyframes mymove {
  from {
    top: 0px;
  }

  to {
    top: 10px;
  }
}

.section-3 .thsn-ihbox-headingicon:hover {
  /*background:url(service-06.jpg)*/
  transition: 0s;
  color: #fff;
  background-size: cover;
  background-position: left;
}

.section-3 .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image img {
  margin-top: -15px;
}

.section-3 .thsn-ihbox-headingicon:hover h2.thsn-element-title {
  color: #de4721;
}

.thsn-ihbox-headingicon {}

.section-3 .thsn-ihbox-headingicon:hover .thsn-ihbox-icon-wrapper.thsn-ihbox-icon-type-image {
  background: #de4721;
}

.service-box {
  margin-bottom: 14px;
  text-align: center;
  box-shadow: 1px 1px 8px rgb(0 0 0 / 29%);
}

.service-box div {
  font-weight: bold;
  font-size: 14px;
  padding: 10px;
  text-align: left;
  background: #fff;
}

.section-4 .section-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: var(--font-default);
  margin-top: 10px;
}

.section-4-2 {
  background: #f9f9f9;
}

.section-5-foot-text a {
  text-decoration: underline;
}

.section-5 h4.thsn-fid-inner {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1;
  color: #de4721;
  white-space: nowrap;
}

.section-5 .thsn-fid-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
  padding-right: 22px;
}

.section-5 .thsn-sbox-icon-wrapper img {
  width: 90px;
  margin-bottom: 10px;
}


.section-5-foot-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1em;
  line-height: 1;
  font-weight: 600;
}

.section-5-foot-text img {
  width: 100px;
  margin-right: 10px;
}

.section-5-foot-text {
  display: flex;
  align-items: center;
  margin-top: 2em;
}

.section-6 .section-title {
  margin-bottom: 10px;
}

.section.section-6 {
  background: #f9f9f9;
}

.cont-sec6 {
  display: flex;
  align-items: start;
  margin-bottom: 2em;
}

.cont-sec6 i {
  font-size: 28px;
  margin-right: 15px;
  color: #de4721;
  line-height: 0;
}

p.cont-sec6-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.2em;
  margin-bottom: 10px;
}

p.cont-sec6-text {
  font-size: 14px;
  margin-bottom: 0;
}

.testi-founder-sec {
  display: flex;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
}

.testi-founder-sec img.img-fluid.testimonial-img {
  width: 75px;
  margin: 0;
}

.section.section-7 {
  background: #fff;
}

.testimonials .testimonial-item .testimonial-content {
  border: none;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 14%);
  padding: 15px 30px;
}

.testimonial-item {
  padding: 4px;
}

.testimonial-content .stars {
  margin-bottom: 10px;
}

.testi-founder-sec h4 {
  color: #de4721 !important;
}

.hero-cont-box22 {
  position: relative;
  z-index: 10;
}

.mobile-nav-show {
  color: #fff;
}

.form-box {
  background: #404c4b;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 29%);
}

.form-box .form-control,
.form-box .form-select {
  box-shadow: none !important;
  outline: none;
  border: none !important;
}

.form-box button.btn.btn-primary {
  background: #de4721;
  color: #fff;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: none !important;
}

p.form-head {
  text-align: center;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #fff;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: #fff;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #fff;
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: #fff;
}

.tooltip-inner {
  background: #fff;
  color: #000;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 26%);
  border-radius: 0;
  text-align: left;
  line-height: 1.2;
  font-family: var(--font-default);
}

.tooltip-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.map-dot-img {
  animation: pulse 1s infinite alternate;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.map-section {
  position: relative;
}

.location-img-sec {
  position: absolute;
  bottom: 3%;
  width: 27%;
  left: 28%;
}

p.txt1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 264%;
  line-height: 1;
  margin-bottom: 0;
}


.txtbox-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

p.txt2 {
  line-height: 1;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  width: 77%;
}

.map-dot-img {
  position: absolute;
}

img.map-dot-img.map-dot-img1.img-fluid {
  left: 7%;
  top: 18%;
}

img.map-dot-img.map-dot-img2.img-fluid {
  left: 30%;
  top: 9%;
}

img.map-dot-img.map-dot-img3.img-fluid {
  left: 18%;
  top: 39%;
}

img.map-dot-img.map-dot-img4.img-fluid {
  left: 20%;
  bottom: 26%;
}

img.map-dot-img.map-dot-img5.img-fluid {
  right: 19%;
  top: 15%;
}

img.map-dot-img.map-dot-img6.img-fluid {
  right: 34%;
  top: 19%;
}

img.map-dot-img.map-dot-img7.img-fluid {
  right: 42%;
  top: 46%;
}

img.map-dot-img.map-dot-img8.img-fluid {
  right: 26%;
  top: 45%;
}

img.map-dot-img.map-dot-img9.img-fluid {
  right: 14%;
  bottom: 15%;
}

.countryswiper-sec .thsn-ihbox-headingicon {
  display: flex;
  align-items: start;
  margin-right: 70px;
}

.countryswiper-sec .thsn-ihbox-icon {
  color: transparent;
  -webkit-text-stroke: 1px #01aca3;
  font-size: 48px;
  line-height: 58px;
  margin-right: 60px;
}

.country-navigation {
  position: absolute;
  right: 5px;
  top: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countryswiper-sec {
  position: relative;
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.country-navigation i {
  font-size: 12px;
  color: #000000;
  line-height: 29px;
  margin: 2px 0;
  border-radius: 50%;
  transition: 0.2s;
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #adadad;
  background: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  /* line-height: 1.3; */
}

.country-navigation i:hover {
  color: #fff;
  background: #01aca3;
  transition: 0.2s;
  border: 1px solid #01aca3;
}

.location-img-sec img {
  width: 100%;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.circle-txt text {
  font-size: 20px;
  text-transform: uppercase;
  fill: #000000;
  letter-spacing: 6.3px;
  transform-origin: 50% 50% 0;
  transform: rotate(0deg);
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

svg.circle-txt {
  position: absolute;
  max-width: 140px;
}

.mission-vision-sec .swiper-button-prev:after,
.mission-vision-sec .swiper-button-next:after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  left: initial;
  right: 0;
  position: static;
  height: auto;
  margin: 0;
}


.section.subpage-banner {
  background: url(../img/clibr.jpg);

  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2em;
}

.section.subpage-banner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 50%);
  z-index: 0;
}

.section.subpage-banner .container {
  position: relative;
}

.section.subpage-banner a {
  color: #fff;
}

.section.subpage-banner p {
  font-size: 0.5em;
  font-weight: 600;
}

.section.subpage-banner i {
  font-size: 0.8em;
  margin: 0 10px;
}

.section.about-steps-section {
  background: #000;
  color: #fff;
}

.section.about-steps-section h2.thsn-element-title {
  color: #fff;
}

.section.about-steps-section .thsn-heading-desc {
  color: #ccc;
  font-size: 15px;
}

.section.about-steps-section .left-sec {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
}

.section.about-steps-section .left-sec span {
  color: #01aca3;
}

img.img-fluid {}

.section.about-steps-section .thsn-box-contents img {
  margin: 30px 0;
  max-width: 90px;
  max-height: 90px;
  height: 90px;
  object-fit: contain;
}

.steps-header-section a.btn-book-a-table {
  font-size: 14px;
  color: #000 !important;
  background: var(--color-primary);
  padding: 12px 20px;
  width: 160px;
  display: block;
  text-align: center;
  margin-left: 30px;
  border-radius: 0;
  transition: 0.3s;
  background: #de4721;
  margin-left: auto;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.steps-header-section .row {
  align-items: center;
}

.steps-header-section .right-sec {
  text-align: right;
}

.steps-bottom-section .thsn-box-contents:hover img {
  top: -10px;
  transition: 0.3s;
}

.steps-bottom-section .thsn-box-contents img {
  position: relative;
  top: 0;
  transition: 0.3s;
}

.section.about-steps-section h2.thsn-element-title span {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #01aca3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 5px;
}

.section.about-steps-section h2.thsn-element-title {
  display: flex;
  align-items: center;
}

.steps-bottom-section .thsn-box-contents {
  background-image: url(../img/lineshape.png);
  background-repeat: no-repeat;
  background-position: right 66px;
}

.history-box {
  display: flex;
  align-items: center;
  margin: 4em 0;
}

.history-box .left-sec,
.history-box .right-sec {
  width: 40%;
  min-width: 40%;
}

.history-box .middle-sec {
  width: 20%;
  text-align: center;
  min-width: 20%;
}

.cont22 p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 0.3em;
}

.history-box .left-sec {
  background: #fff;
  box-shadow: 0px 0px 37px rgb(0 0 0 / 13%);
  padding: 20px;
  position: relative;
}

.history-box .middle-sec .year-txt {
  width: 100px;
  margin: auto;
  background: #de4721;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.8em;
  padding: 3px 0;
  transition: 0.3s;
}

.history-box:hover .middle-sec .year-txt {
  background: #000;
  transition: 0.3s;
}

.history-box:nth-child(even) {
  flex-direction: row-reverse;
}

.history-box-main {
  position: relative;
}

.history-box-main:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 0;
  right: 0;
  height: 100%;
  background: #de4721;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.history-box {
  position: relative;
}

.history-box-top-icon,
.history-box-bottom-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  pointer-events: none;
  top: 0;
  width: 15px;
}

.history-box-bottom-icon {
  bottom: 0;
  top: initial;
}

.history-box-main {
  padding: 1em 0;
}

.history-box .left-sec i {
  right: -24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  font-size: 36px;
  color: #fff;
}

.history-box:nth-child(even) .left-sec i {
  right: initial;
  left: -24px;
  transform: rotate(180deg);
}

.history-box .right-sec img {
  width: 100%;
}

.sub-section-3-p {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}

.sub-section-3-p span {
  color: #01aca3;
}

.counter2-box {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

.counter-2-main {
  justify-content: space-between !important;
}

.counter2-box p {
  margin-bottom: 0;
}

.section.sub-section-3 {
  background: #fff;
}

.section.sub-section-2 {
  background: #fdfdfd;
}

.counter-circle-box {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 7px solid #e8e8e8;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 1.6em;
  color: #01aca3;
  position: relative;
}

.counter-circle-box .progress {
  position: absolute;
}

.progress {
  min-width: 100px;
  height: 100px;
  font-size: 30px;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: transparent;
  text-align: center;
  line-height: 100px;
}



.progress .title {
  position: relative;
  z-index: 100;
}

.progress .overlay {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: transparent
}

.progress .left,
.progress .right {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 7px solid #01aca3;
  border-radius: 100px 0px 0px 100px;
  border-right: 0;
  transform-origin: right;
}

.progress .left {
  animation: load1 1s linear forwards;
}

.progress:nth-of-type(2) .right,
.progress:nth-of-type(3) .right {
  animation: load2 .4s linear forwards 1s;
}

.progress1:last-of-type .right,
.progress1:first-of-type .right {
  animation: load3 .8s linear forwards 1s;
}

.progress2:last-of-type .right,
.progress2:first-of-type .right {
  animation: load4 .8s linear forwards 1s;
}

.progress3:last-of-type .right,
.progress3:first-of-type .right {
  animation: load5 .8s linear forwards 1s;
}



@keyframes load1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes load2 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(270deg);
  }
}

@keyframes load3 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(260deg);
  }
}

@keyframes load4 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(300deg);
  }
}

@keyframes load5 {
  0% {
    z-index: 100;
    transform: rotate(180deg);
  }

  100% {
    z-index: 100;
    transform: rotate(333deg);
  }
}

@media screen and (max-width:991px) {
  .steps-bottom-section .thsn-box-contents {
    background-image: none;
  }

  .wed-foot-link ul li {
    width: 100%;
  }

  .wed-foot-link div {
    padding-left: 30px;
    width: 33.333%;
  }

  .foot-supp h2 {
    font-size: 16px;
    line-height: 28px;
  }

  .wed-hom-footer h4 {
    padding-bottom: 5px;
    padding-top: 0px;
  }

  .wed-foot-link-1 {
    text-align: center;
  }

  .fot-app {
    border-top: 1px solid #e9e9e9;
    padding: 30px 0px;
    margin-top: 15px;
  }

  .fot-app ul,
  .wed-foot-link-1 ul {
    margin: 0 auto;
    display: table;
  }

  .foot-count {
    margin-top: 30px;
  }

  .pmenu-cat ul li,
  .wed-foot-link-pop ul li {
    width: 50%;
  }

  .wed-foot-link ul li {
    width: 100%;
  }

  .wed-foot-link div,
  .wed-foot-link-pop div {
    padding-left: 30px;
  }

  .wed-foot-link div {
    width: 50%;
  }

  .wed-foot-link div:nth-child(2) {
    border-right: 0px solid #dadada;
  }

  .wed-foot-link div:last-child {
    border-right: 0px solid #dadada;
    border-top: 1px solid #dadada;
    width: 100%;
    margin-top: 35px;
    padding-top: 35px;
  }

  .wed-foot-link div:last-child ul li {
    width: 50%;
  }

  .wed-foot-link {
    padding: 35px 0px 30px 0px;
  }

  .foot-supp h2 {
    font-size: 18px;
  }
}


@media (max-width: 767px) {

  .section.about-steps-section .left-sec,
  .sub-section-3-p {
    font-size: 30px;
    line-height: 1.1;
  }

  .steps-bottom-section .thsn-box-contents {
    background-image: none;
  }

  .history-box .left-sec i {
    display: none;
  }

  .history-box {
    flex-direction: column !important;
  }

  .history-box .left-sec,
  .history-box .right-sec,
  .history-box .middle-sec {
    width: 100%;
  }

  .history-box .middle-sec {
    margin-top: -25px;
    margin-bottom: -24px;
    position: relative;
  }

  .history-box .left-sec {
    padding-bottom: 36px;
  }

  .steps-header-section a.btn-book-a-table {
    margin-left: 0;
  }

  .thsn-button-box {
    display: none;
  }
}

@media (max-width: 640px) {
  .circle-txt-div {
    margin-bottom: 1em;
  }

  .founder-main {
    margin-bottom: 1em;
  }

  .countryswiper-sec .thsn-ihbox-headingicon {
    display: block;
  }

  .location-img-sec {
    width: 24%;
  }

  .txtbox-1 {
    font-size: 74%;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  

  .heromainimg-1 {
    max-width: 100%;
  }

  .heromainimg-2 {
    max-width: 64% !important;
  }
  
  .herosliderslides{
    background-position: bottom center;
    background-size: cover;
    display:block;    
    min-height: 371px;
  }

  .section.section-2 .section-title {
    flex-wrap: wrap;
    text-align: center;
  }

  .col-lg-4.col-md-6.section-2-left {
    margin-bottom: 2em;
  }

  .section {
    padding: 40px 0;
  }


  .mobile-nav-show {
    color: #fff;
  }

  .section-title {
    font-size: 2em;
  }

  .section-5-foot-text {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .section-5-foot-text a {
    text-decoration: underline;
  }
  .owl-carousel.owl-drag .owl-item{
      width:20% !important;
  }
  .owl-carousel .owl-stage-outer{
      height: 274px !important;
      overflow:hidden !important;
  }
  
  .country-block{
      min-height: 138px !important;
  }
}


.choose-wrap {
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 5%);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #f5f5f5;
  transition: all .4s ease;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


.contactus-box-main1 .choose-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;

  font-size: 15px;

}

.contactus-box-main1 .choose-wrap {
  background-color: transparent;
  background-image: linear-gradient(135deg, #fff 0%, #fff 0%);
  transition: 0.3s;
}

.contactus-box-main1 .choose-wrap:hover,
.contactus-box-main1 .choose-wrap a:hover {
  background-color: transparent;
  background-image: linear-gradient(135deg, #F44336 0%, #E91E63 100%);
  color: #fff;
  transition: 0.3s;
}

.contactus-box-main1 .choose-wrap:hover img {
  -webkit-filter: grayscale(1) brightness(3);
  filter: grayscale(1) brightness(3);
}

.choose-widget-wrap {
  padding: 2em 2em 2em 2em;
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-bottom: 2em;
  min-height: 174px;
}

h6.choose-heading-title {
  color: #01aca3;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 2px;
  text-align: left;
}

h2.choose-heading-title2 {
  /*color: #7cb928;*/
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 1px;
  text-align: left;
}

p.choose_para {
  font-size: 15px;
  font-weight: 400;
  /*letter-spacing: 1px;*/
  text-align: left;
  margin-top: 0;
  margin-bottom: 5%;
  color: #212529;
}

.choose-widget-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.choose-widget-container:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  transform: rotate(0deg);
  position: absolute0;
  content: "";
  z-index: -1;
  pointer-events: none;
}

img.attachment-full.size-full {
  /*width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;*/

  width: 85%;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  line-height: 0;
}

.col-6.choose-column {
  max-width: 40%;
}

.col-6.choose-column2 {
  max-width: 60%;
}





.ps-navigation--footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: white;
  border-top: 1px solid #f0f2f5;
  display: flex;
  padding: 5px 0;
  min-height: 62px;
  box-shadow: 0px -2px 13px 0px #c8c8c8;
}

.ps-navigation--footer .ps-nav__item {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.ps-navigation--footer .ps-nav__item a {
  color: #de4721;
  display: block;
  width: auto;
  height: 25px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ps-navigation--footer .ps-nav__item i {
  font-weight: 600;
}

.ps-navigation--footer .ps-nav__item .badge {
  position: absolute;
  top: 4px;
  right: 2px;
  width: 18px;
  height: 18px;
  font-size: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #103178;
  color: white;
}

.ps-navigation--footer .ps-nav__item #close-menu {
  display: none;
}

.ps-navigation--footer .ps-nav__item.active #close-menu {
  display: inline-flex;
}

.ps-navigation--footer .ps-nav__item.active #open-menu {
  display: none;
}

@media (min-width: 768px) {
  .ps-navigation--footer {
    display: none;
  }
}

.ps-footer {
  padding-bottom: 55px;
}

.ps-footer__middle {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .ps-footer {
    padding-bottom: 0;
  }
}

.ps-footer--block .ps-block__title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
}

.ps-footer--block .ps-block__list {
  margin-bottom: 35px;
}

.ps-footer--block .ps-block__list li {
  padding: 6px 0;
  font-size: 16px;
}

.ps-footer--block .ps-block__list li a {
  display: block;
  color: #5b6c8f;
}

.ps-footer--block .ps-block__list li a:hover {
  color: #FD8D27;
}

.ps-footer--bottom {
  margin-top: 10px;
  padding: 20px 0 40px;
  border-top: 1px solid #f0f2f5;
  margin-bottom: 2em;
}

.ps-footer--bottom p {
  height: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #103178;
}

.ps-footer--bottom .payment-light {
  display: none;
}

@media (min-width: 768px) {
  .ps-footer--bottom p {
    margin: 0;
  }
}

.ps-footer--top {
  margin-bottom: 50px;
}

.ps-footer--top .row {
  border: 1px solid #f0f2f5;
}

.ps-footer--top p {
  margin-bottom: 0;
  padding: 10px 15px;
}

.ps-footer--top .col-12:not(:last-child) {
  border-bottom: 1px solid #f0f2f5;
}

.ps-footer--top .ps-footer__link {
  color: #103178;
  font-weight: 600;
  font-size: 16px;
}

.ps-footer--top .ps-footer__link i {
  margin-right: 10px;
  font-weight: 600;
}

.ps-footer--top .ps-footer__link:hover {
  color: #FD8D27;
}

@media (min-width: 768px) {
  .ps-footer--top .col-12:not(:last-child) {
    border-right: 1px solid #f0f2f5;
    border-bottom: none;
  }
}

.ps-footer--address p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6c8f;
}

.ps-footer--address p a {
  text-decoration: underline;
  font-size: 14px;
}

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

.ps-footer--address .ps-logo img {
  max-width: 144px;
}

.ps-footer--address .ps-logo .logo-white,
.ps-footer--address .ps-logo .logo-black,
.ps-footer--address .ps-logo .logo-white-all,
.ps-footer--address .ps-logo .logo-green {
  display: none;
}

.ps-footer--address .ps-footer__title {
  display: none;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

@media (min-width: 1024px) {
  .ps-footer--address .ps-logo img {
    max-width: 144px;
  }
}

.ps-footer--contact {
  padding-top: 40px;
}

.ps-footer--contact .ps-footer__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #103178;
}

.ps-footer--contact .ps-footer__fax {
  margin-bottom: 5px;
  line-height: 36px;
  font-size: 22px;
  font-weight: 600;
  color: #103178;
}

.ps-footer--contact .ps-footer__fax i {
  color: #FD8D27;
  margin-right: 15px;
  font-size: 20px;
  font-weight: bold;
}

.ps-footer--contact .ps-footer__work {
  margin-bottom: 18px;
  padding-left: 40px;
  font-size: 14px;
  color: #5b6c8f;
}

.ps-footer--contact hr {
  margin-bottom: 18px;
}

.ps-footer--contact .ps-footer__email {
  font-weight: bold;
  color: #103178;
  font-size: 16px;
}

.ps-footer--contact .ps-footer__email i {
  margin-right: 15px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .ps-footer--contact {
    padding-top: 0;
  }
}

@media (min-width: 1280px) {
  .ps-footer--contact .ps-footer__fax {
    font-size: 24px;
  }

  .ps-footer--contact .ps-footer__fax i {
    font-size: 22px;
  }
}

.ps-footer--banner .ps-promo__banner {
  min-height: 200px;
  border-radius: 0;
  -o-object-position: left;
  object-position: left;
}

.ps-footer--banner .ps-promo__name {
  color: white;
  font-size: 40px;
}

.ps-footer--banner .ps-promo__desc {
  color: white;
  font-size: 20px;
}

@media (min-width: 768px) {
  .ps-footer--banner .ps-promo__name {
    font-size: 50px;
  }

  .ps-footer--banner .ps-promo__desc {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .ps-footer--banner .ps-promo__name {
    font-size: 60px;
  }

  .ps-footer--banner .ps-promo__desc {
    font-size: 24px;
  }
}

.ps-footer--1 .ps-footer--top .row {
  background-color: #f0f2f5;
}

.ps-footer--1 .ps-footer--top .col-12 {
  border-color: rgba(16, 49, 120, 0.1);
}

.ps-footer--1 .ps-footer--address {
  border-right: 1px solid #f0f2f5;
}

.ps-footer--1 .ps-footer--contact {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .ps-footer--1 .ps-footer--contact {
    padding-bottom: 0;
  }
}

.ps-footer--2 .ps-logo {
  display: none;
}

.ps-footer--2 .ps-footer__title {
  display: block;
}

.ps-footer--2 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--2 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  margin-bottom: 27px;
}

.ps-footer--2 .ps-footer--contact hr {
  display: none;
}

.ps-footer--2 .ps-footer--contact .ps-footer__email {
  border-radius: 40px;
  min-width: 150px;
  display: inline-block;
  padding: 4px 25px;
  border: 1px solid #f0f2f5;
  background-color: white;
}

.ps-footer--2 .ps-footer--contact .ps-footer__email i {
  display: none;
}

.ps-footer--2 .ps-footer--top {
  border: 1px solid #f0f2f5;
}

.ps-footer--2 .ps-footer--top .row {
  border: none;
}

@media (min-width: 960px) {
  .ps-footer--2 .ps-footer__category {
    padding-bottom: 30px;
  }
}

.ps-footer--newsletter .ps-footer__title {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #103178;
  font-weight: 600;
}

.ps-footer--newsletter p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6c8f;
  margin-bottom: 20px;
}

@media (min-width: 1280) {
  .ps-footer--newsletter .ps-footer__title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ps-footer--3 .ps-footer__middle {
  padding-top: 30px;
}

.ps-footer--3 .ps-footer__box {
  background-color: #f0f2f5;
  border-radius: 4px;
  margin-top: 20px;
  padding: 40px;
  margin-bottom: 45px;
}

.ps-footer--3 .ps-footer--contact {
  padding-top: 0;
}

.ps-footer--3 .ps-footer--contact .ps-footer__title {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  margin-bottom: 30px;
}

.ps-footer--3 .ps-footer--contact hr {
  display: none;
}

.ps-footer--3 .ps-footer--contact .ps-footer__email {
  background-color: white;
  padding: 5px 25px;
  border-radius: 40px;
}

.ps-footer--3 .ps-footer--address {
  padding-top: 30px;
}

.ps-footer--3 .ps-footer--address .ps-logo {
  display: none;
}

.ps-footer--3 .ps-footer--newsletter {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .ps-footer--3 .ps-footer__box {
    padding: 20px 15px;
  }

  .ps-footer--3 .ps-footer--contact .ps-footer__email {
    padding: 5px 10px;
  }

  .ps-footer--3 .ps-footer--address,
  .ps-footer--3 .ps-footer--newsletter {
    padding-top: 0;
  }
}

@media (min-width: 960px) {
  .ps-footer--3 .ps-footer__box {
    padding: 40px;
  }

  .ps-footer--3 .ps-footer--contact .ps-footer__email {
    padding: 5px 25px;
  }
}

.ps-footer--listpage .ps-footer__list {
  margin-bottom: 35px;
}

.ps-footer--listpage .ps-footer__list li {
  padding: 6px 0;
  font-size: 16px;
}

.ps-footer--listpage .ps-footer__list li a {
  display: block;
  color: #5b6c8f;
}

.ps-footer--listpage .ps-footer__list li a:hover {
  color: #FD8D27;
}

.ps-footer--4 {
  background-color: #f0f2f5;
}

.ps-footer--4 .ps-footer--bottom {
  border-color: #d9dee8;
}

.ps-footer--4 .ps-footer--top {
  background-color: white;
}

.ps-footer--5 {
  background-color: #103178;
}

.ps-footer--5 .ps-footer--top {
  background-color: white;
}

.ps-footer--5 .ps-footer--block .ps-block__title,
.ps-footer--5 .ps-footer--block .ps-block__list a {
  color: white;
}

.ps-footer--5 .ps-footer--listpage .ps-footer__list a {
  color: white;
}

.ps-footer--5 .ps-footer--bottom p,
.ps-footer--5 .ps-footer__title,
.ps-footer--5 .ps-footer__email {
  color: white;
}

.ps-footer--5 .ps-footer__box {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 40px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.ps-footer--5 .ps-footer--contact .ps-footer__fax {
  color: white;
}

.ps-footer--5 .ps-footer--contact .ps-footer__fax i {
  display: none;
}

.ps-footer--5 .ps-footer--contact .ps-footer__work {
  padding-left: 0;
  color: #9babcd;
}

.ps-footer--5 .ps-footer--contact hr {
  display: none;
}

.ps-footer--5 .ps-footer--contact .ps-footer__email {
  border: 1px solid #5b6c8f;
  padding: 4px 20px;
  border-radius: 40px;
}

.ps-footer--5 .ps-footer--contact .ps-footer__email:hover {
  background-color: white;
  color: #103178;
}

.ps-footer--5 .ps-footer--address .ps-logo {
  display: none;
}

.ps-footer--5 .ps-footer--address .ps-social__link,
.ps-footer--5 .ps-footer--address p {
  color: #9babcd;
}

.ps-footer--5 .ps-footer--newsletter p {
  color: #9babcd;
}

.ps-footer--5 .ps-footer--bottom {
  border-color: #5b6c8f;
}

.ps-footer--5 .ps-footer--bottom img {
  display: none;
}

.ps-footer--5 .ps-footer--bottom .payment-light {
  display: inline-block;
}

@media (min-width: 768px) {
  .ps-footer--5 .ps-footer__box {
    padding-top: 40px;
  }
}

@media (min-width: 1280px) {
  .ps-footer--5 .ps-footer__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ps-footer--8 {
  background-color: #103178;
  padding-top: 30px;
}

.ps-footer--8 .ps-footer--top .row {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--top .col-12 {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--top .ps-footer__link {
  color: #FD8D27;
}

.ps-footer--8 .ps-footer--bottom {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--bottom img {
  display: none;
}

.ps-footer--8 .ps-footer--bottom .payment-light {
  display: inline-block;
}

.ps-footer--8 .ps-footer--bottom p {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--address p,
.ps-footer--8 .ps-footer--address a {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--8 .ps-footer--address .ps-logo .logo-white {
  display: inline-block;
}

.ps-footer--8 .ps-footer--contact {
  border-left: 1px solid #284686;
  padding-left: 40px;
}

.ps-footer--8 .ps-footer--contact .ps-footer__title,
.ps-footer--8 .ps-footer--contact .ps-footer__fax {
  color: white;
}

.ps-footer--8 .ps-footer--contact .ps-footer__work,
.ps-footer--8 .ps-footer--contact .ps-footer__email {
  color: #9babcd;
}

.ps-footer--8 .ps-footer--contact hr {
  border-color: #284686;
}

.ps-footer--8 .ps-footer--block .ps-block__title {
  color: white;
}

.ps-footer--8 .ps-footer--block .ps-block__list li a {
  color: white;
}

.ps-footer--9 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--9 .ps-footer--address .ps-logo .logo-black {
  display: inline-block;
}

.ps-footer--9 .ps-footer--address .ps-social__link {
  color: #222;
}

.ps-footer--9 .ps-footer--contact .ps-footer__title,
.ps-footer--9 .ps-footer--contact .ps-footer__fax,
.ps-footer--9 .ps-footer--contact .ps-footer__email {
  color: #222;
}

.ps-footer--9 .ps-footer--block .ps-block__title {
  color: #222;
}

.ps-footer--9 .ps-footer--bottom p {
  color: #222;
}

.ps-footer--9 .ps-footer--top .row {
  background-color: #f5f5f5;
}

.ps-footer--9 .ps-footer--top .ps-footer__link {
  color: #222;
}

.ps-footer--9 .ps-footer--top .col-12 {
  border-color: #d9dbde;
}

.ps-footer--12 {
  background-color: #333;
  padding-top: 80px;
}

.ps-footer--12 .ps-footer--address {
  border-right: 1px solid #4B4B4B;
}

.ps-footer--12 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--12 .ps-footer--address .ps-logo .logo-white-all {
  display: inline-block;
}

.ps-footer--12 .ps-footer--address p,
.ps-footer--12 .ps-footer--address a,
.ps-footer--12 .ps-footer--address .ps-social__link {
  color: white;
}

.ps-footer--12 .ps-footer--contact .ps-footer__title,
.ps-footer--12 .ps-footer--contact .ps-footer__fax,
.ps-footer--12 .ps-footer--contact .ps-footer__email,
.ps-footer--12 .ps-footer--contact .ps-footer__work {
  color: white;
}

.ps-footer--12 .ps-footer--contact hr {
  border-color: #4B4B4B;
}

.ps-footer--12 .ps-footer--block .ps-block__title {
  color: white;
}

.ps-footer--12 .ps-footer--block .ps-block__list a {
  color: white;
}

.ps-footer--12 .ps-footer--bottom {
  border-top-color: #4B4B4B;
}

.ps-footer--12 .ps-footer--bottom p {
  color: white;
}

.ps-footer--12 .ps-footer--bottom img {
  display: none;
}

.ps-footer--12 .ps-footer--bottom .payment-light {
  display: inline-block;
}

.ps-footer--12 .ps-footer--top .ps-footer__link {
  color: white;
}

.ps-footer--12 .ps-footer--top .col-12,
.ps-footer--12 .ps-footer--top .row {
  border-color: #4B4B4B;
}

.ps-footer--13 {
  background-color: #F5F5F5;
}

.ps-footer--13 .ps-footer--address .ps-logo img {
  display: none;
}

.ps-footer--13 .ps-footer--address .ps-logo .logo-green {
  display: inline-block;
}

.ps-footer--13 .ps-footer--address .ps-social__link {
  color: #333;
}

.ps-footer--13 .ps-footer--contact .ps-footer__title,
.ps-footer--13 .ps-footer--contact .ps-footer__fax,
.ps-footer--13 .ps-footer--contact .ps-footer__email {
  color: #333;
}

.ps-footer--13 .ps-footer--block .ps-block__title {
  color: #333;
}

.ps-footer--13 .ps-footer--bottom p {
  color: #333;
}

.ps-footer--13 .ps-footer--top .row {
  background-color: transparent;
  border-color: #D9D9D9;
}

.ps-footer--13 .ps-footer--top .ps-footer__link {
  color: #333;
}

.ps-footer--13 .ps-footer--top .col-12 {
  border-color: #D9D9D9;
}

.ps-footer--14 {
  background-color: white;
}

.validation_error {
  color: #f44336;
}

.navbar .dropdown ul a {
  color: #000;
}

.service-box img {
  height: 226px;
}

/***************** Header ******************/
#header {
  width: 100%;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid #ddd;
}

.fixed_header #header {
  position: fixed;
}

/***************** Header Top ******************/
.header_top .header_top_but {
  width: 100%;
  height: 32px;
  position: relative;
  cursor: pointer;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: none;
}

.header_top .header_top_but>span {
  font-size: 14px;
  line-height: 14px;
  width: 1em;
  height: 1em;
  margin: auto !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header_top .header_top_outer {
  height: 100%;
  position: relative;
}

.header_top .header_top_inner {
  height: 100%;
}

.header_top .header_top_inner:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.header_top .header_top_inner:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.header_top .header_top_right {
  height: 100%;
  float: right;
}

.header_top .header_top_left {
  height: 100%;
  padding: 0 20px 0 0;
  overflow: hidden;
}

.header_top .header_top_left:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_top .top_nav_wrap {
  display: block;
  height: 100%;
  text-align: center;
}

.header_top .responsive_top_nav {
  font-size: 14px;
  width: 12px;
  height: 10px;
  position: relative;
  border-top-width: 2px;
  border-top-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  display: none;
}

.header_top .responsive_top_nav:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 2px;
}

.header_top .social_wrap {
  outline: none;
}

.header_top .social_wrap li {
  margin-right: 2px;
}

.header_top .social_wrap li:last-child {
  margin-right: 0;
}

.header_top .social_wrap a {
  font-size: 14px;
  line-height: 14px;
  width: 20px;
  height: 20px;
  opacity: 0.3;
}

.header_top .social_wrap a:hover {
  opacity: 1;
}

.header_top .meta_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.header_top .meta_wrap>* {
  margin: 4px 16px 0 0;
  display: inline-block;
}

.header_top .meta_wrap>*:last-child {
  margin: 0;
}

.header_top .meta_wrap>*[class^="cmsmasters-icon-"]:before,
.header_top .meta_wrap>*[class*=" cmsmasters-icon-"]:before,
.header_top .meta_wrap>*[class^="cmsmasters_theme_icon_"]:before,
.header_top .meta_wrap>*[class*=" cmsmasters_theme_icon_"]:before {
  margin-left: 0;
  margin-right: 0.5em;
  vertical-align: middle;
}

.header_top .meta_wrap>p {
  padding: 0;
}

.header_top .meta_wrap .adr {
  white-space: nowrap;
}

/***************** Header Top Navigation ******************/
.top_line_nav {
  z-index: 205;
}

.top_line_nav>li {
  height: 100%;
}

.top_line_nav>li>a {
  height: 100%;
  padding: 4px 10px 0;
}

.top_line_nav>li>a:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.top_line_nav>li>a .nav_item_wrap {
  display: inline-block;
  vertical-align: middle;
}

.top_line_nav ul {
  left: -5px;
}

.top_line_nav ul li {
  padding: 0;
}

.top_line_nav ul li a {
  padding: 1px 15px;
}

.top_line_nav ul ul {
  left: 100%;
}

/***************** Header Mid ******************/
.header_mid {
  clear: both;
}

.header_mid.header_mid_scroll {
  position: relative;
}

.header_mid .header_mid_outer {
  height: 100%;
  position: relative;
}

.header_mid .header_mid_inner {
  height: 100%;
}

.header_mid .header_mid_inner:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.header_mid .logo_wrap {
  height: 100%;
  position: relative;
  float: left;
}

.enable_header_centered .header_mid .logo_wrap {
  float: none;
  margin: 0 auto;
  text-align: center;
}

.header_mid .logo_wrap:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_mid .logo_wrap .logo_text_wrap {
  display: inline-block;
  vertical-align: middle;
}

.header_mid .logo_wrap .title {
  display: block;
  line-height: 1em;
}

.header_mid .logo_wrap .title_text {
  padding: 0 0 0 2px;
}

.header_mid .logo_wrap .logo {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

.header_mid .logo_wrap .logo img {

  width: 100%;

  margin: auto !important;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
}

.header_mid .logo_wrap .logo .logo_retina {
  display: none;
}

.header_mid .header_mid_but_wrap {
  height: 100%;
  margin-left: 30px;
  position: relative;
  float: right;
}

.header_mid .header_mid_but_wrap .header_mid_but_wrap_inner {
  height: 100%;
}

.header_mid .header_mid_but_wrap .header_mid_but_wrap_inner:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_mid .header_mid_but_wrap .header_mid_but {
  display: inline-block;
  padding: 0 20px;
  vertical-align: middle;
  line-height: 32px;
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 18px;
  border-radius: 18px;
}

.header_mid .header_mid_but_wrap+.resp_mid_nav_wrap+.mid_nav_wrap {
  margin-left: 30px;
}

.header_mid .header_mid_but_wrap+.resp_mid_nav_wrap+.mid_nav_wrap+.search_wrap {
  float: left;
}

.header_mid .search_wrap {
  height: 100%;
  margin-left: 30px;
  position: relative;
  float: right;
}

.header_mid .search_wrap .search_wrap_inner {
  height: 100%;
}

.header_mid .search_wrap .search_wrap_inner:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_mid .search_wrap .search_wrap_in_inner {
  display: inline-block;
  vertical-align: middle;
  height: 36px;
  position: relative;
}

.header_mid .search_wrap .search_bar_wrap {
  width: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 202;
}

.header_mid .search_wrap .search_bar_wrap .search_field {
  width: 0;
  position: relative;
  opacity: 0;
}

.header_mid .search_wrap .search_bar_wrap .search_field input {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 36px;
  height: 36px;
}

.header_mid .search_wrap .search_bar_wrap .search_button {
  width: 0;
  opacity: 0;
}

.header_mid .search_wrap .search_bar_wrap .search_button button {
  background: none;
}

.header_mid .search_wrap .search_toggle {
  display: block;
  width: 20px;
  height: 36px;
  cursor: pointer;
}

.header_mid .search_wrap .search_toggle:before {
  font-size: 16px;
  width: 1em;
  height: 1em;
  margin: auto !important;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
}

.header_mid .search_wrap .search_toggle.cmsmasters_theme_icon_cancel:before {
  font-size: 15px;
}

.header_mid .search_wrap.search_opened .search_bar_wrap .search_field {
  width: 230px;
  opacity: 1;
}

.header_mid .search_wrap.search_opened .search_bar_wrap .search_button {
  width: 36px;
  opacity: 1;
}

.header_mid .social_wrap {
  outline: none;
  float: right;
  overflow: visible;
  margin-left: 7px;
}

.header_mid .social_wrap .social_wrap_inner {
  text-align: right;
}

.header_mid .social_wrap li {
  margin-left: 0;
  margin-right: 2px;
}

.header_mid .social_wrap li:last-child {
  margin-left: 0;
  margin-right: 0;
}

.header_mid .social_wrap a {
  font-size: 14px;
  line-height: 14px;
  width: 20px;
  height: 20px;
}

.header_mid .slogan_wrap {
  height: 100%;
  display: block;
  margin-left: 10px;
  position: relative;
  float: right;
}

.header_mid .slogan_wrap .slogan_wrap_inner {
  height: 100%;
  text-align: right;
}

.header_mid .slogan_wrap .slogan_wrap_inner:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_mid .slogan_wrap .slogan_wrap_text {
  display: inline-block;
  margin: -30px -20px 0;
  vertical-align: middle;
  text-align: left;
}

.header_mid .slogan_wrap .slogan_wrap_text>* {
  margin: 30px 20px 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]:before,
.header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]:before,
.header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]:before,
.header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]:before {
  font-size: 24px;
  line-height: 1em;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: auto;
  vertical-align: middle;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]>span,
.header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]>span,
.header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]>span,
.header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]>span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.header_mid .slogan_wrap .slogan_wrap_text>* * {
  display: block;
  font-size: 12px;
}

.header_mid .slogan_wrap .slogan_wrap_text>p {
  padding: 0;
}

.header_mid .slogan_wrap .slogan_wrap_text i {
  color: var(--color-primary);
  font-size: 16px;
}

.header_mid .slogan_wrap .slogan_wrap_text .adr {
  white-space: nowrap;
}

.header_mid .slogan_wrap.slogan_closed {
  visibility: hidden !important;
  opacity: 0 !important;
}

.header_mid .resp_mid_nav_wrap {
  position: relative;
  margin: 0 -20px;
  display: none;
  overflow: hidden;
  clear: both;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.header_mid .resp_mid_nav_wrap .resp_mid_nav_outer {
  text-align: center;
  padding: 18px 0;
}

.header_mid .resp_mid_nav_wrap .resp_mid_nav {
  display: inline-block;
  width: 16px;
  height: 10px;
  position: relative;
  border-top-width: 2px;
  border-top-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.header_mid .resp_mid_nav_wrap .resp_mid_nav:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 16px;
  height: 2px;
}

.header_mid .resp_mid_nav_wrap .resp_mid_nav:hover,
.header_mid .resp_mid_nav_wrap .resp_mid_nav.active {
  outline: none;
}

.header_mid .mid_nav_wrap {
  height: 100%;
  position: relative;
  float: right;
}

.header_mid .mid_nav_wrap.nav_closed {
  visibility: hidden;
  opacity: 0;
}

/***************** Header Mid Navigation ******************/
.mid_nav_wrap #navigation {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  position: relative;
}

.mid_nav_wrap #navigation>li {
  height: 100%;
  margin: 0;
  border-right-width: 0;
  border-right-style: solid;
}

.mid_nav_wrap #navigation>li>a {
  display: block;
  height: 100%;
  padding: 4px 10px;
}

.mid_nav_wrap #navigation>li>a:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mid_nav_wrap #navigation>li>a .nav_item_wrap {
  display: inline-block;
  vertical-align: middle;
}

.mid_nav_wrap #navigation>li>a .nav_tag {
  display: inline-block;
  padding: 0 10px;
  margin-left: 5px;
}

.mid_nav_wrap #navigation ul li a {
  padding: 6px 0;
}

.mid_nav_wrap #navigation ul .nav_tag {
  display: inline-block;
  margin: 0 5px;
  padding: 0 3px;
}

.mid_nav_wrap #navigation .nav_subtitle {
  display: block;
}

/***************** Header Bot ******************/
.header_bot {
  clear: both;
}

.header_bot .header_bot_outer {
  height: 100%;
  position: relative;
}

.header_bot .header_bot_outer:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top-width: 1px;
  border-top-style: solid;
}

.header_bot .header_bot_outer:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.header_bot .header_bot_inner {
  height: 100%;
}

.header_bot .header_bot_inner:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.enable_header_centered .header_bot .header_bot_inner {
  text-align: center;
}

.header_bot .resp_bot_nav_wrap {
  position: relative;
  display: none;
  overflow: hidden;
}

.header_bot .resp_bot_nav_wrap .resp_bot_nav_outer {
  outline: none;
}

.header_bot .bot_nav_wrap {
  height: 100%;
  position: relative;
  float: left;
}

.header_bot .bot_nav_wrap.nav_closed {
  visibility: hidden !important;
  opacity: 0 !important;
}

.enable_header_right .header_bot .bot_nav_wrap {
  float: right;
}

.enable_header_centered .header_bot .bot_nav_wrap {
  display: inline-block;
  float: none;
}

.header_bot .search_wrap {
  height: 100%;
  margin: 0 0 0 15px;
  position: relative;
  float: right;
}

.enable_header_right .header_bot .search_wrap {
  margin: 0 15px 0 0;
  float: left;
}

.header_bot .search_wrap .search_wrap_inner {
  height: 100%;
}

.header_bot .search_wrap .search_wrap_inner:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.header_bot .search_wrap .search_wrap_in_inner {
  border-color: transparent;
  height: 100%;
  position: relative;
  border-left-width: 1px;
  border-left-style: solid;
}

.header_bot .search_wrap .search_bar_wrap {
  width: auto;
  height: 36px;
  margin: auto !important;
  padding: 0;
  overflow: visible;
  position: absolute;
  right: 30px;
  left: auto;
  top: 0;
  bottom: 0;
  z-index: 202;
}

.header_bot .search_wrap .search_bar_wrap .search_field {
  width: 0;
  position: relative;
  opacity: 0;
}

.header_bot .search_wrap .search_bar_wrap .search_field input[type=search] {
  padding: 3px 0 3px 30px;
  height: 36px;
  border-width: 0;
  border-style: solid;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header_bot .search_wrap .search_bar_wrap .search_button {
  width: 0;
  opacity: 0;
  display: none;
}

.header_bot .search_wrap .search_bar_wrap .search_button button {
  background: none;
}

.header_bot .search_wrap .search_toggle {
  display: block;
  width: 66px;
  height: 100%;
  cursor: pointer;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
}

.header_bot .search_wrap .search_toggle:before {
  font-size: 22px;
  width: 1em;
  height: 1em;
  margin: auto !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header_bot .search_wrap .search_toggle.cmsmasters_theme_icon_cancel:before {
  font-size: 15px;
}

.header_bot .search_wrap.search_opened {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.header_bot .search_wrap.search_opened .search_wrap_inner {
  padding: 0 20px;
}

.header_bot .search_wrap.search_opened .search_wrap_in_inner {
  width: 100%;
}

.header_bot .search_wrap.search_opened .search_bar_wrap {
  width: 100%;
  padding: 0 80px 0 0;
  left: 0;
  right: auto;
}

.header_bot .search_wrap.search_opened .search_bar_wrap form {
  position: relative;
}

.header_bot .search_wrap.search_opened .search_bar_wrap .search_field {
  width: 100%;
  opacity: 1;
}

.header_bot .search_wrap.search_opened .search_bar_wrap .search_button {
  width: 36px;
  opacity: 1;
}

.header_bot .search_wrap.search_opened .search_toggle {
  border-left-color: transparent;
  position: absolute;
  right: 0;
  z-index: 203;
}

/***************** Header Bot Navigation ******************/
.bot_nav {
  position: relative;
}

.bot_nav>li {
  height: 100%;
  margin: 0;
  word-spacing: -2px;
  border-right-width: 1px;
  border-right-style: solid;
}

.bot_nav>li:first-child {
  border-left-width: 1px;
  border-left-style: solid;
}

.bot_nav>li:last-child {
  border-right-width: 1px;
  border-right-style: solid;
}

.bot_nav>li:hover:before,
.bot_nav>li.current-menu-ancestor:before,
.bot_nav>li.current-menu-item:before {
  width: 80%;
}

.bot_nav>li:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  left: -1px;
  top: -2px !important;
}

.bot_nav>li * {
  word-spacing: normal;
}

.bot_nav>li>a {
  display: block;
  height: 100%;
  padding: 13px 40px 13px 20px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.bot_nav>li>a .nav_item_wrap {
  display: block;
}

.bot_nav>li>a .nav_tag {
  display: inline-block;
  padding: 0 10px;
  margin-left: 5px;
}

.bot_nav ul a {
  padding: 7px 0 4px;
}

.bot_nav ul .nav_tag {
  display: inline-block;
  margin: 0 5px;
  padding: 0 3px;
}

.bot_nav .nav_subtitle {
  display: block;
}

.navigation_wrap>.navigation {
  width: auto;
}

.header_mid_inner .logo img.logo_retina {
  width: 200px;
  max-width: 200px;
}

.header_mid .header_mid_inner .logo_wrap {
  width: 116px;
}


.services-section {
  position: relative;
  padding: 50px 0 120px;
  z-index: 2
}

.services-section .float-img {
  position: absolute;
  right: -410px;
  bottom: -55px
}

.services-section .icon-plane-2 {
  right: -320px;
  top: -60px
}

.service-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1
}

.service-block .inner-box {
  position: relative;
  overflow: hidden;
  height: 350px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding-bottom: 20px
}

.service-block .inner-box:hover .icon {
  background-color: var(--color-primary);
  color: var(--color-default)
}

.service-block .inner-box:hover .icon:after {
  border-top: 14px solid #db9f29
}

.service-block .inner-box:hover .content-box .inner {
  height: auto
}

.service-block .image {
  position: relative;
  padding: 30px 20px;
  margin-bottom: 20px
}

@media(max-width: 575.98px) {
  .service-block .image {
    padding: 0
  }
  .header_mid .slogan_wrap .slogan_wrap_text>* *{
    font-size: 8px;
  }
  .header_mid .logo_wrap .logo img{
    width: 76%;
  }
}

.service-block .image:before,
.service-block .faqs-section .image.bg-image:after,
.faqs-section .service-block .image.bg-image:after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 270px;
  background-color: #f8f5f1;
  -webkit-clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
  content: ""
}

.service-block .image img {
  position: relative;
  width: 96%
}

.service-block .content-box {
  position: absolute;
  left: 50px;
  right: 45px;
  bottom: 35px;
  padding: 22px 12px 4px 60px;
  margin-left: 9px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
  box-shadow: 0 5px 30px rgba(0, 0, 0, .08)
}

@media(max-width: 575.98px) {
  .service-block .content-box {
    left: 10px;
    right: 10px
  }
}

.service-block .content-box .inner {
  position: relative;
  display: none;
  overflow: hidden
}

.service-block .content-box .icon .bi {
  position: absolute;
  left: -27px;
  top: 0;
  background-color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 72px;
  width: 70px;
  color: #fff;
  font-size: 42px;
  line-height: 1em;
  z-index: 2;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease
}

.service-block .content-box .icon .bi:after {
  position: absolute;
  left: 0;
  bottom: -14px;
  border-left: 27px solid transparent;
  border-top: 14px solid #a81017;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.service-block .title {
  position: relative;
  font-weight: 800;
  z-index: 2;
  margin-bottom: 0px
}

.service-block .title:hover {
  color: var(--color-primary)
}

.service-block .text {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  z-index: 2;
  margin-bottom: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.service-block .read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 800;
  z-index: 2;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.service-block .read-more:hover {
  color: var(--color-primary)
}

.service-block .read-more::before,
.service-block .faqs-section .read-more.bg-image:after,
.faqs-section .service-block .read-more.bg-image:after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 20px;
  border-bottom: 1px solid var(--color-primary);
  content: ""
}

.service-block .read-more i {
  font-size: 14px;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.services-section-two {
  position: relative;
  padding: 90px 0 120px;
  z-index: 2
}

.services-section-two .icon-plane-4 {
  left: -150px;
  bottom: 200px
}

.services-section-two .sec-title .title-column {
  text-align: right
}

@media(max-width: 991.98px) {
  .services-section-two .sec-title .title-column {
    text-align: center
  }
}

.services-section-two .sec-title .text {
  margin-left: 30px;
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  padding-bottom: 5px;
  max-width: 400px;
  margin-top: 15px;
  line-height: 24px
}

@media(max-width: 991.98px) {
  .services-section-two .sec-title .text {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    margin: 30px auto 0;
    max-width: 500px;
    text-align: center
  }
}

.services-section-two .carousel-outer {
  margin: 0 -15px
}

.services-section-two .carousel-outer .service-block-two {
  padding: 0 15px
}

.service-block-two {
  position: relative;
  margin-bottom: 50px;
  z-index: 1
}

.service-block-two .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

@media(max-width: 1199.98px) {
  .service-block-two .inner-box {
    max-width: 365px;
    margin: 0 auto 45px
  }
}

.service-block-two .inner-box:hover .image::before,
.service-block-two .inner-box:hover .faqs-section .image.bg-image:after,
.faqs-section .service-block-two .inner-box:hover .image.bg-image:after {
  visibility: hidden;
  height: 0
}

.service-block-two .inner-box:hover .icon {
  background-color: var(--color-primary);

  color: var(--color-default)
}

.service-block-two .inner-box:hover .content-box .text,
.service-block-two .inner-box:hover .content-box .title {
  color: #fff
}

.service-block-two .inner-box:hover .content-box .count {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, .2)
}


.service-block-two .content-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0 42px 20px
}

.service-block-two .content-box .count {
  position: absolute;
  right: 50px;
  top: 30px;
  font-size: 90px;
  line-height: 1em;
  font-weight: 700;
  font-family: var(--title-font);
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, .2)
}

@media(max-width: 575.98px) {
  .service-block-two .content-box .count {
    right: 40px;
    font-size: 64px
  }
}

.service-block-two .title {
  position: relative;
  font-weight: 800;
  z-index: 2;
  margin-bottom: 12px
}

.service-block-two .title:hover {
  color: var(--color-primary)
}


.services-section-three {
  position: relative;
  padding: 100px 0 125px;
  z-index: 2
}

.services-section-three .icon-plane-6 {
  top: 130px;
  right: -240px;
  width: 106px;
  background-position: left top
}

.services-section-three .title-column .sec-title {
  padding-top: 20px
}

.services-section-three .title-column .sec-title .text {
  line-height: 24px
}

.services-section-three .title-column .sec-title .link-style-one {
  margin-top: 20px
}

.services-section-three .content-column .inner-column {
  position: relative;
  padding: 35px 60px;
  padding-right: 250px;
  background-color: #f3f1ef
}

@media(max-width: 1199.98px) {
  .services-section-three .content-column .inner-column {
    padding-top: 60px;
    padding-bottom: 60px
  }
}

@media(max-width: 575.98px) {
  .services-section-three .content-column .inner-column {
    padding-right: 0;
    padding: 30px;
    text-align: center
  }
}

.services-section-three .content-column .inner-column:before,
.services-section-three .content-column .faqs-section .inner-column.bg-image:after,
.faqs-section .services-section-three .content-column .inner-column.bg-image:after {
  position: absolute;
  left: 0;
  bottom: 100%;
  height: 185px;
  width: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #f3f1ef;
  content: ""
}

@media(max-width: 1199.98px) {

  .services-section-three .content-column .inner-column:before,
  .services-section-three .content-column .faqs-section .inner-column.bg-image:after,
  .faqs-section .services-section-three .content-column .inner-column.bg-image:after {
    display: none
  }
}

.services-section-three .content-column .inner-column:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 380px;
  background-color: #f3f1ef;
  content: ""
}

.services-section-three .content-column .exp-box {
  position: relative
}

.services-section-three .content-column .exp-box .icon {
  position: relative;
  display: block;
  left: 15px;
  top: 0;
  font-size: 76px;
  color: var(--color-primary);
  margin-bottom: 50px
}

@media(max-width: 575.98px) {
  .services-section-three .content-column .exp-box .icon {
    left: 0;
    margin-bottom: 20px
  }
}

.services-section-three .content-column .exp-box .fade-icon {
  position: absolute;
  left: -5px;
  top: -20px;
  font-size: 130px;
  color: #e9e8e6
}

@media(max-width: 575.98px) {
  .services-section-three .content-column .exp-box .fade-icon {
    display: none
  }
}

.services-section-three .content-column .exp-box .title {
  font-size: 20px;
  line-height: 34px;
  color: #000;
  font-weight: 600
}

.services-section-three .content-column .fact-counter {
  position: absolute;
  top: 0;
  right: 30px;
  max-width: 220px;
  width: 100%;
  padding-top: 25px
}

@media(max-width: 1199.98px) {
  .services-section-three .content-column .fact-counter {
    top: 30px
  }
}

@media(max-width: 575.98px) {
  .services-section-three .content-column .fact-counter {
    position: relative;
    margin: 0 auto;
    top: 0;
    right: 0
  }
}

.services-section-three .content-column .fact-counter .counter-block-two {
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 25px
}

.services-section-three .content-column .fact-counter .counter-block-two:last-child {
  border-bottom: 0
}

.services-section-three .content-column .fact-counter .counter-block-two .inner {
  padding: 0
}

.services-section-three .content-column .fact-counter .counter-block-two .inner:before,
.services-section-three .content-column .fact-counter .counter-block-two .faqs-section .inner.bg-image:after,
.faqs-section .services-section-three .content-column .fact-counter .counter-block-two .inner.bg-image:after {
  display: none
}

.services-section-three .services-outer {
  position: relative;
  margin-right: 30px;
  margin-left: -30px;
  padding: 0 15px;
  background-color: #fff
}

@media(max-width: 1199.98px) {
  .services-section-three .services-outer {
    margin: 0;
    padding: 0
  }
}

.services-section-three .services-outer .row {
  margin: 0
}

.services-section-three .services-outer .row>div {
  padding: 30px 15px;
  background-color: #fff
}

@media(max-width: 575.98px) {
  .services-section-three .services-outer .row>div {
    padding: 15px
  }
}

.service-block-three {
  position: relative;
  z-index: 1
}

.service-block-three .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.service-block-three .inner-box:hover .content-box .inner {
  height: auto
}

.service-block-three .image-box {
  position: relative
}

.service-block-three .image-box .image {
  position: relative;
  background-color: #000;
  margin-bottom: 0
}

.service-block-three .image-box .image:before,
.service-block-three .image-box .faqs-section .image.bg-image:after,
.faqs-section .service-block-three .image-box .image.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(to bottom, transparent, #000);
  content: "";
  opacity: .7
}

.service-block-three .image-box .image img {
  width: 100%;
  min-height: 260px;
  -o-object-fit: cover;
  object-fit: cover
}

.service-block-three .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 50px 20px
}

@media(max-width: 575.98px) {
  .service-block-three .content-box {
    padding: 30px 30px 20px
  }
}

.service-block-three .content-box:before,
.service-block-three .faqs-section .content-box.bg-image:after,
.faqs-section .service-block-three .content-box.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 315px;
  width: 120%;
  margin-top: -10px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: var(--bg-theme-color1);
  opacity: .6;
  content: ""
}

.service-block-three .content-box:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 315px;
  width: 120%;
  margin-top: 20px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: var(--bg-theme-color1);
  content: ""
}

.service-block-three .content-box .inner {
  position: relative;
  display: none;
  overflow: hidden
}

.service-block-three .content-box .icon {
  position: relative;
  color: var(--color-primary);
  background-color: var(--theme-color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 72px;
  width: 70px;
  font-size: 42px;
  line-height: 1em;
  z-index: 2;
  margin-bottom: 15px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease
}

.service-block-three .title {
  position: relative;
  font-weight: 700;
  z-index: 2;
  font-size: 17px;
  color: var(--theme-color-light);
  margin-bottom: 15px
}

.service-block-three .title:hover {
  color: var(--color-primary)
}

.service-block-three .title a {
  color: var(--theme-color-light);
}

.service-block-three .text {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: var(--theme-color-light);
  z-index: 2;
  margin-bottom: 15px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}


.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #fff
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0 15px;
  margin: 0 auto;
  width: 100%
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0 15px;
  margin: 0 auto;
  width: 100%
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0 15px;
  margin: 0 auto;
  width: 100%
}


.services-section {
  position: relative;
  padding: 50px 0 120px;
  z-index: 2;
}


.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff
}

.preloader:after {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 165px;
  margin-left: -75px;
  height: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: zoom-two 1.5s infinite linear;
  animation: zoom-two 1.5s infinite linear;
  background-image: url(../img/logo_header_new.png);
  content: "";
  background-size: contain;
}

.preloader:before,
.faqs-section .preloader.bg-image:after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--color-default);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none
}



.services-section-two .icon-plane-4 {
  left: -150px;
  bottom: 200px
}

.services-section-two .sec-title .title-column {
  text-align: right
}

@media(max-width: 991.98px) {
  .services-section-two .sec-title .title-column {
    text-align: center
  }
}

.services-section-two .sec-title .text {
  margin-left: 30px;
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  padding-bottom: 5px;
  max-width: 400px;
  margin-top: 15px;
  line-height: 24px
}

@media(max-width: 991.98px) {
  .services-section-two .sec-title .text {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    margin: 30px auto 0;
    max-width: 500px;
    text-align: center
  }
}

.services-section-two .carousel-outer {
  margin: 0 -15px
}

.services-section-two .carousel-outer .service-block-two {
  padding: 0 15px
}

.service-block-two {
  position: relative;
  margin-bottom: 3px;
  z-index: 1;
  width: 33%;
  display: inline-block;
}

.service-block-two .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

@media(max-width: 1199.98px) {
  .service-block-two .inner-box {
    max-width: 365px;
    margin: 0 auto 45px
  }
}

.service-block-two .inner-box:hover .image::before,
.service-block-two .inner-box:hover .faqs-section .image.bg-image:after,
.faqs-section .service-block-two .inner-box:hover .image.bg-image:after {
  visibility: hidden;
  height: 0
}

.service-block-two .inner-box:hover .icon {
  background-color: var(--color-primary);
  color: var(--color-default)
}

.service-block-two .inner-box:hover .content-box .text,
.service-block-two .inner-box:hover .content-box .title {
  color: #fff
}

.service-block-two .inner-box:hover .content-box .count {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, .2)
}

.service-block-two .image {
  position: relative;
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  margin-bottom: 0;
  background-image: url(../img/background/service-bg.jpg);
  background-size: cover;
}

/* .service-block-two .image:before,.service-block-two .faqs-section .image.bg-image:after,.faqs-section .service-block-two .image.bg-image:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #fff; 
  border: 1px solid #f0f0f0;
  border-bottom: 4px solid var(--color-primary);
  z-index: 2;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
} */

.service-block-two .image img {
  position: relative;
  width: 100%;
  opacity: .3;
  height: 328px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-block-two .content-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0 42px 20px;
}

.service-block-two .content-box .count {
  position: absolute;
  right: 50px;
  top: 30px;
  font-size: 90px;
  line-height: 1em;
  font-weight: 700;
  font-family: var(--title-font);
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, .2)
}

@media(max-width: 575.98px) {
  .service-block-two .content-box .count {
    right: 40px;
    font-size: 64px
  }
}

.service-block-two .content-box .icon {
  position: relative;
  left: -16px;
  background-color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 88px;
  width: 111px;
  color: #fff;
  font-size: 54px;
  line-height: 1em;
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  z-index: 2;
  margin-bottom: 26px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease
}

.service-block-two .title {
  position: relative;
  font-weight: 800;
  z-index: 2;
  margin-bottom: 12px
}

.service-block-two .title:hover {
  color: var(--color-primary)
}

.service-block-two .text {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #fff;
}

.owl-carousel {

  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-loaded {
  display: block
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block
}

.owl-carousel.owl-hidden {
  opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab
}

.owl-carousel.owl-rtl {
  direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
  float: right
}

.no-js .owl-carousel {
  display: block
}

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
  z-index: 0
}

.owl-carousel .owl-animated-out {
  z-index: 1
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.owl-height {
  transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%
}

.icon-plane-4 {
  width: 1627px;
  height: 272px;
  background-image: url(../assets/img/background/icon-plane-4.png);
}

.anim-icons {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto
}


.anim-icons.full-width {
  max-width: 100%
}

.anim-icons .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%
}


@media (max-width: 640px) {
  .header_mid .slogan_wrap .slogan_wrap_text>* {
    margin: 32px 6px 0 !important;
  }

  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]>span {
    font-size: 8px !important;
  }
}



.icon-plane-4 {
  width: 1627px;
  height: 272px;
  background-image: url(../img/background/icon-plane-4.png);
}

.sec-title {
  position: relative;
  margin-bottom: 60px;
}

.sec-title .sub-title {
  position: relative;
  font-size: var(--sec-title-subtitle-font-size);
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  color: var(--sec-title-subtitle-color);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding-right: 45px;
  margin-bottom: 35px
}

.sec-title .sub-title::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 28px;
  background-image: url(../img/background/title-after.png);
  background-repeat: no-repeat;
  background-position: center;
  content: ""
}


.sec-title.text-center .sub-title::before,
.sec-title.text-center .faqs-section .sub-title.bg-image:after,
.faqs-section .sec-title.text-center .sub-title.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 28px;
  background-image: url(../img/background/title-before.png);
  background-repeat: no-repeat;
  background-position: center;
  content: ""
}

.sec-title .text {
  font-size: 14px;
  line-height: 28px;
  color: #7a7a7a;
  margin-top: 30px
}

.sec-title.text-center .sub-title {
  padding-left: 45px
}

.sec-title h1 {
  position: relative;
  font-size: var(--h1-font-size);
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 0
}

.sec-title h2 {
  position: relative;
  font-size: var(--sec-title-font-size);
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  line-height: 1.2em;
  margin-bottom: 0
}

@media(max-width: 1199.98px) {
  .sec-title h1 {
    font-size: 84px
  }
}

@media(max-width: 991.98px) {
  .sec-title h1 {
    font-size: 72px
  }
}

@media(max-width: 767.98px) {
  .sec-title h1 {
    font-size: 68px
  }
}

@media(max-width: 575.98px) {
  .sec-title h1 {
    font-size: 54px
  }
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(../img/background/pattern-1.jpg);
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #de4721;
}

@media(max-width: 575px) {
  .service-block-two {
    width: 100%;
  }
}

@media screen and (max-width: 868px) and (min-width: 576px) {
  .service-block-two {
    width: 49%;
  }

  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]>span {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 640px) and (min-width: 576px) {

  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]>span {
    font-size: 8px !important;
  }
}

@media screen and (max-width: 868px) and (min-width: 641px) {
  .header_mid .slogan_wrap .slogan_wrap_text>* {
    margin: 32px 6px 0 !important;
  }

  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters-icon-"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class^="cmsmasters_theme_icon_"]>span,
  .header_mid .slogan_wrap .slogan_wrap_text>*[class*=" cmsmasters_theme_icon_"]>span {
    font-size: 8px !important;
  }
}



.main-footer {
  position: relative;
  background-color: #000
}

.main-footer:before,
.faqs-section .main-footer.bg-image:after {
  position: absolute;
  right: 0px;
  top: 65px;
  height: 417px;
  width: 360px;
  background-image: url(../img/footer-map.png);
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 3;
  content: ""
}

.main-footer .bg-image:before,
.main-footer .faqs-section .bg-image:after,
.faqs-section .main-footer .bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: .75;
  content: ""
}

.main-footer.pull-up .widgets-section {
  padding: 0px 0 40px;
}

.main-footer .widgets-section {
  position: relative;
  padding: 100px 0 55px
}

.main-footer .footer-column {
  position: relative;
  margin-bottom: 40px;
  margin-top: 2em;
}

.main-footer .footer-widget {
  position: relative
}

.main-footer .widget-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--theme-color-light);
  line-height: 1.2em;
  font-family: var(--text-font);
  letter-spacing: .01em;
  font-weight: 700;
  margin-top: 27px;
  margin-bottom: 55px
}

.main-footer .widget-title:before,
.main-footer .faqs-section .widget-title.bg-image:after,
.faqs-section .main-footer .widget-title.bg-image:after {
  position: absolute;
  left: 100%;
  top: 15px;
  width: 130px;
  height: 1px;
  margin-left: 20px;
  background-color: var(--theme-color1);
  content: ""
}

.main-footer .logo {
  margin-bottom: 40px
}

.main-footer .contact-info-list {
  position: relative
}

.main-footer .contact-info-list li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding-left: 25px;
  margin-bottom: 20px;
  list-style: none;
}

.main-footer .contact-info-list li a {
  color: inherit
}

.main-footer .contact-info-list li i {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 24px;
  font-size: 14px;
  color: var(--theme-color1)
}

.user-links {
  position: relative
}

.user-links li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, .8);
  font-weight: 400;
  padding-left: 12px;
  margin-bottom: 14px;
  list-style: none;
}

.user-links li:before,
.user-links .faqs-section li.bg-image:after,
.faqs-section .user-links li.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-family: "bootstrap-icons";
  content: "\f135"
}

.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.user-links li a:hover {
  color: var(--theme-color-light)
}

.user-links li a:before,
.user-links li .faqs-section a.bg-image:after,
.faqs-section .user-links li a.bg-image:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.user-links li a:hover:before,
.user-links li .faqs-section a.bg-image:hover:after,
.faqs-section .user-links li a.bg-image:hover:after {
  width: 100%
}

.user-links.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.user-links.two-column li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
  padding-right: 15px
}

.subscribe-form {
  position: relative;
  padding: 30px 30px 45px;
  background-color: rgba(255, 255, 255, .1)
}

.subscribe-form .text {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 20px
}

.subscribe-form .form-group {
  position: relative;
  margin-bottom: 0
}

.subscribe-form .form-group>.icon {
  position: absolute;
  left: 12px;
  top: 0;
  font-size: 16px;
  color: #333;
  line-height: 40px;
  z-index: 2;
  pointer-events: none
}

.subscribe-form .form-group input[type=text],
.subscribe-form .form-group input[type=email] {
  position: relative;
  display: block;
  height: 40px;
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #000;
  padding: 10px 40px;
  padding-right: 60px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.subscribe-form .form-group input[type=text]::-webkit-input-placeholder,
.subscribe-form .form-group input[type=email]::-webkit-input-placeholder {
  color: #707070
}

.subscribe-form .form-group input[type=text]::-moz-placeholder,
.subscribe-form .form-group input[type=email]::-moz-placeholder {
  color: #707070
}

.subscribe-form .form-group input[type=text]:-ms-input-placeholder,
.subscribe-form .form-group input[type=email]:-ms-input-placeholder {
  color: #707070
}

.subscribe-form .form-group input[type=text]::-ms-input-placeholder,
.subscribe-form .form-group input[type=email]::-ms-input-placeholder {
  color: #707070
}

.subscribe-form .form-group input[type=text]::placeholder,
.subscribe-form .form-group input[type=email]::placeholder {
  color: #707070
}

.subscribe-form .form-group .theme-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 48px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  display: block;
  background: var(--bg-theme-color1)
}

.subscribe-form .form-group .theme-btn:hover {
  color: #fff
}

.footer-bottom {
  position: relative;
  width: 100%
}

.footer-bottom .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 30px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media(max-width: 767.98px) {
  .footer-bottom .inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
  }
}

.footer-bottom .copyright-text {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: #c4c5c7;
  font-weight: 400;
  letter-spacing: -.025em;
  margin-bottom: 0
}

@media(max-width: 767.98px) {
  .footer-bottom .copyright-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    line-height: 24px;
    margin-top: 10px
  }
}

.footer-bottom .copyright-text a {
  color: inherit
}

.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-light)
}

.icon-plane-5 {
  width: 242px;
  height: 270px;
  background-image: url(../img/icon-plane-5.png)
}

.why-choose-us-two {
  position: relative;
  padding: 80px 0 35px;
  background-color: #f8f5f1
}

.why-choose-us-two .icon-plane-5 {
  left: -280px;
  bottom: 40px
}

.why-choose-us-two .left-bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%
}

.why-choose-us-two .left-bg-shape:before,
.why-choose-us-two .faqs-section .left-bg-shape.bg-image:after,
.faqs-section .why-choose-us-two .left-bg-shape.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 137px;
  background-color: var(--theme-color-dark);
  -webkit-clip-path: polygon(0 0, 100% 0, 20% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 20% 100%, 0 100%);
  overflow: visible;
  content: ""
}

.why-choose-us-two .left-bg-shape:after {
  position: absolute;
  top: 70px;
  left: 110px;
  margin-left: 30px;
  height: 255px;
  width: 10px;
  background-color: var(--bg-theme-color2);
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  z-index: 99;
  content: ""
}

@media only screen and (max-width: 1699px) {
  .why-choose-us-two .left-bg-shape {
    display: none
  }
}

.why-choose-us-two .right-bg-image {
  position: absolute;
  right: -125px;
  left: 55.4%;
  top: 0;
  height: 100%;
  max-width: 830px
}

@media(max-width: 1199.98px) {
  .why-choose-us-two .right-bg-image {
    display: none
  }
}

.why-choose-us-two .right-bg-image:before,
.why-choose-us-two .faqs-section .right-bg-image.bg-image:after,
.faqs-section .why-choose-us-two .right-bg-image.bg-image:after {
  position: absolute;
  top: 75px;
  bottom: 75px;
  left: 5px;
  width: 100px;
  background-color: var(--bg-theme-color1);
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  content: ""
}

.why-choose-us-two .right-bg-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%)
}

.why-choose-us-two .image-column .image-box {
  position: relative;
  margin-right: -230px;
  padding-left: 75px;
  margin-top: -20px
}

@media(max-width: 1199.98px) {
  .why-choose-us-two .image-column .image-box {
    margin: 0;
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
    width: 100%
  }

  .why-choose-us-two .image-column .image-box .image {
    display: inline-block
  }
}

.why-choose-us-two .image-column .image-box .image {
  margin-bottom: 0
}

.why-choose-us-two .content-column {
  margin-bottom: 50px
}

.why-choose-us-two .content-column .inner-column {
  position: relative
}

.why-choose-us-two .content-column .sec-title {
  margin-bottom: 60px
}

.why-choose-us-two .skills-outer {
  position: relative;
  padding-left: 250px
}

@media(max-width: 767.98px) {
  .why-choose-us-two .skills-outer {
    padding-left: 0
  }
}

.why-choose-us-two .skills-outer .skills .skill-item .skill-bar .bar-inner .skill-percentage {
  background-color: var(--theme-color1);
  color: #fff
}

.why-choose-us-two .skills-outer .skills .skill-item .skill-bar .bar-inner .skill-percentage:before,
.why-choose-us-two .skills-outer .skills .skill-item .skill-bar .bar-inner .faqs-section .skill-percentage.bg-image:after,
.faqs-section .why-choose-us-two .skills-outer .skills .skill-item .skill-bar .bar-inner .skill-percentage.bg-image:after {
  border-top-color: var(--theme-color1)
}

.why-choose-us-two .skills-outer .exp-box {
  position: absolute;
  left: 0;
  top: -20px;
  width: 200px;
  background-color: #fff;
  padding: 35px 20px 20px;
  min-height: 185px
}

@media(max-width: 767.98px) {
  .why-choose-us-two .skills-outer .exp-box {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 50px
  }
}

.why-choose-us-two .skills-outer .exp-box .count {
  position: relative;
  display: inline-block;
  margin-bottom: 5px
}

.why-choose-us-two .skills-outer .exp-box .count:before,
.why-choose-us-two .skills-outer .exp-box .faqs-section .count.bg-image:after,
.faqs-section .why-choose-us-two .skills-outer .exp-box .count.bg-image:after {
  position: absolute;
  left: 0;
  top: -16px;
  font-size: 80px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--theme-color1);
  content: attr(data-text);
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  opacity: .4
}

.why-choose-us-two .skills-outer .exp-box .count .txt {
  font-size: 80px;
  line-height: 1em;
  background-image: url(../img/count-bg.jpg);
  font-family: var(--title-font);
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.why-choose-us-two .skills-outer .exp-box .title {
  font-size: 16px;
  letter-spacing: -.01em
}

.why-choose-us-three {
  position: relative;
  padding: 120px 0 70px;
  background-color: #f8f5f1;
  z-index: 1
}

@media(max-width: 991.98px) {
  .why-choose-us-three {
    padding-bottom: 0
  }
}

.why-choose-us-three .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

@media(max-width: 991.98px) {
  .why-choose-us-three .bg-image {
    display: none
  }
}

.why-choose-us-three .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

@media(max-width: 991.98px) {
  .why-choose-us-three .bg-shape {
    display: none
  }
}

.why-choose-us-three .bg-shape .shape {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  margin-right: -275px
}

.why-choose-us-three .float-image {
  position: absolute;
  left: -360px;
  bottom: -40px;
  z-index: 9
}

@media(max-width: 991.98px) {
  .why-choose-us-three .float-image {
    display: none
  }
}

.why-choose-us-three .content-column {
  position: relative
}

.why-choose-us-three .content-column .sec-title {
  margin-bottom: 40px
}

.why-choose-us-three .content-column .sec-title .sub-title {
  margin-bottom: 10px
}

.why-choose-us-three .content-column .sec-title .text {
  color: #767676;
  font-size: 18px;
  line-height: 34px;
  padding-right: 70px;
  margin-top: 25px
}

.why-choose-us-three .image-column {
  position: relative
}

@media(max-width: 991.98px) {
  .why-choose-us-three .image-column {
    margin-top: 30px
  }
}

.why-choose-us-three .image-column .image-box.hide-desktop {
  display: none;
  position: absolute;
  left: -5px;
  right: -5px;
  top: 0;
  height: 100%
}

@media(max-width: 991.98px) {
  .why-choose-us-three .image-column .image-box.hide-desktop {
    display: block
  }
}

.why-choose-us-three .image-column .image-box.hide-desktop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.why-choose-us-three .image-column .inner-column {
  padding: 160px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media(max-width: 991.98px) {
  .why-choose-us-three .image-column .inner-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 120px 0 50px
  }
}

.why-choose-us-three .image-column .video-box {
  position: relative
}

@media(max-width: 991.98px) {
  .why-choose-us-three .image-column .video-box {
    -webkit-transform: scale(.7);
    transform: scale(.7)
  }
}

.why-choose-us-three .image-column .video-box .arrow {
  position: relative;
  top: 5px;
  right: 140px
}

.why-choose-us-three .image-column .info-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  min-width: 270px;
  left: -20px;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, .07);
  box-shadow: 0 10px 60px rgba(0, 0, 0, .07)
}

@media(max-width: 991.98px) {
  .why-choose-us-three .image-column .info-box {
    left: 0
  }
}

.why-choose-us-three .image-column .info-box:before,
.why-choose-us-three .image-column .faqs-section .info-box.bg-image:after,
.faqs-section .why-choose-us-three .image-column .info-box.bg-image:after {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: -5px;
  border-left: 40px solid transparent;
  border-top: 30px solid #fff;
  content: ""
}

.why-choose-us-three .image-column .info-box .icon {
  position: absolute;
  left: 30px;
  top: 30px;
  color: var(--theme-color1);
  font-size: 62px;
  line-height: 65px
}

.why-choose-us-three .image-column .info-box strong {
  position: relative;
  padding-left: 85px;
  font-size: 18px;
  line-height: 26px;
  color: var(--theme-color-dark);
  font-weight: 700;
  display: block;
  min-height: 65px;
  padding-top: 5px
}



.skills {
  position: relative;
  margin-bottom: 50px
}

.skills .skill-item {
  position: relative;
  margin-bottom: 35px
}

.skills .skill-item:last-child {
  margin-bottom: 0
}

.skills .skill-item .skill-header {
  position: relative;
  margin-bottom: 12px
}

.skills .skill-item .skill-header .skill-title {
  font-size: 14px;
  color: var(--theme-color-dark);
  font-weight: 700;
  font-family: var(--title-font)
}

.skills .skill-item .skill-bar {
  background-color: #fff;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 6px
}

.skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  height: 6px
}

.skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 0;
  -webkit-transition: all 3000ms ease;
  transition: all 3000ms ease;
  background-color: var(--bg-theme-color1)
}

.skills .skill-item .skill-bar .bar-inner .skill-percentage {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 17px;
  font-size: 12px;
  line-height: 16px;
  padding: 5px 7px;
  font-weight: 500;
  color: #212121;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  background-color: var(--theme-color2)
}

.skills .skill-item .skill-bar .bar-inner .skill-percentage:before,
.skills .skill-item .skill-bar .bar-inner .faqs-section .skill-percentage.bg-image:after,
.faqs-section .skills .skill-item .skill-bar .bar-inner .skill-percentage.bg-image:after {
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid var(--theme-color2);
  content: ""
}


.features-section-two {
  position: relative;
  padding: 120px 0 90px
}

.features-section-two .bg-image:before,
.features-section-two .faqs-section .bg-image:after,
.faqs-section .features-section-two .bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #232331;
  opacity: .96;
  content: ""
}

.features-section-two .sec-title {
  margin-bottom: 100px
}

.feature-block-two {
  position: relative;
  margin-bottom: 30px
}

.feature-block-two .inner-box {
  position: relative;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, .6);
  text-align: center;
  -webkit-box-shadow: 0 14px 43px rgba(0, 0, 0, .08);
  box-shadow: 0 14px 43px rgba(0, 0, 0, .08)
}

.feature-block-two .inner-box:hover .icon {
  color: var(--theme-color2);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.feature-block-two .count {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  font-size: 90px;
  line-height: 1em;
  font-weight: 700;
  opacity: .2;
  font-family: var(--title-font);
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.feature-block-two .icon {
  display: block;
  font-size: 78px;
  line-height: 1em;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 26px;
}

.feature-block-two .title {
  position: relative;
  padding: 20px 0;
  color: #fff;
  letter-spacing: -.01em
}

.features-section-three {
  position: relative;
  padding: 120px 0 80px;
  background-color: #f1f1f1
}

.features-section-three.pull-up {
  padding-top: 195px;
  margin-top: -95px
}

.feature-block-three {
  position: relative;
  margin-bottom: 40px
}

.feature-block-three .inner-box {
  position: relative;
  padding-left: 130px
}

@media(max-width: 575.98px) {
  .feature-block-three .inner-box {
    padding-left: 0;
    text-align: center
  }
}

.feature-block-three .inner-box:hover .icon-box .icon {
  background-color: var(--bg-theme-color1);
  color: #fff
}

.feature-block-three .inner-box:hover .icon-box:after {
  background-color: var(--bg-theme-color2);
  right: -8px;
  bottom: -8px
}

.feature-block-three .icon-box {
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 25px
}

@media(max-width: 575.98px) {
  .feature-block-three .icon-box {
    position: relative;
    display: inline-block
  }
}

.feature-block-three .icon-box:after {
  position: absolute;
  left: 20px;
  top: 7px;
  right: -4px;
  bottom: -4px;
  -webkit-clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--bg-theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  content: ""
}

.feature-block-three .icon-box .icon {
  position: relative;
  height: 87px;
  width: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
  font-size: 42px;
  font-weight: 600;
  color: var(--theme-color1);
  line-height: 1em;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 70px rgba(0, 0, 0, .1);
  box-shadow: 0 4px 70px rgba(0, 0, 0, .1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.feature-block-three .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 10px
}

.feature-block-three .text {
  font-size: 14px;
  line-height: 28px
}

.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}



.social-icon-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.social-icon-two li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px
}

.social-icon-two li:first-child {
  margin-left: 0
}

.social-icon-two li a {
  position: relative;
  display: block;
  line-height: 36px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: var(--theme-color-dark);
  border-radius: 50px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.social-icon-two li a img {
  position: relative
}

.social-icon-two li a::before,
.social-icon-two li .faqs-section a.bg-image:after,
.faqs-section .social-icon-two li a.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: var(--theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 50px
}

.social-icon-two li a:hover {
  color: #fff
}

.social-icon-two li a:hover:before,
.social-icon-two li .faqs-section a.bg-image:hover:after,
.faqs-section .social-icon-two li a.bg-image:hover:after {
  -webkit-transform: scale(1);
  transform: scale(1)
}


.icon-plane-2 {
  width: 461px;
  height: 211px;
  background-image: url(../img/icon-plane-2.png)
}

@media (max-width: 392px) {
  .cmsmasters-icon-location-3{
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .header_mid .slogan_wrap .slogan_wrap_text>* *{
    font-size: 9px;
  }
}


.service-block .content-box .icon .bi {
  position: absolute;
  right: 28px;
  bottom: 0;
  height: 65px;
  width: 80px;
  font-size: 17px;
  color: #fff;
  background-color: var(--bg-theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.whatsapp_icon {
  height: 35px;
  border-radius: 8px;
  position: fixed;
  bottom: 50px;
  left: 6px;
  z-index: 8;
  color: #089a0d;
  text-align: center;
  border: none;
  font-size: 22px;
  padding: 6px 5px 5px 5px;
  cursor: pointer;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}



.team-details {
  position: relative;
  display: block
}

.team-details__top {
  padding: 0 0 120px
}

.team-details-shape-1 {
  position: absolute;
  bottom: -270px;
  right: 0;
  opacity: .5;
  z-index: 2
}

.team-details-shape-1 img {
  width: auto
}

.team-details__top-left {
  position: relative;
  display: block;
  margin-right: 20px
}

.team-details__top-img {
  position: relative;
  display: block;
  border-radius: 30px
}

.team-details__top-img img {
  width: 100%;
  border-radius: 30px
}

.team-details__big-text {
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  color: #eef0f6;
  letter-spacing: .35em;
  font-weight: 400;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: 209px;
  left: -325px
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 50px
}

@media only screen and (max-width: 991px) {
  .team-details__top-right {
      margin-top:70px;
      margin-left: 0
  }
}

.team-details__top-content {
  position: relative;
  display: block;
  margin-top: -11px
}

.team-details__top-name {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 3px
}

.team-details__top-title {
  font-size: 16px;
  color: var(--theme-color1)
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 28px
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-color: var(--theme-color2);
  color: var(--text-color-bg-theme-color2);
  font-size: 15px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease
}

.team-details__social a:hover {
  background-color: var(--theme-color1);
  color: var(--text-color-bg-theme-color1)
}

.team-details__social a+a {
  margin-left: 10px
}

.team-details__top-text-1 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 30px
}

.team-details__top-text-2 {
  padding-top: 23px;
  padding-bottom: 35px
}

.team-details__bottom {
  position: relative;
  display: block;
  border-top: 1px solid #e4e5ea;
  padding-top: 110px
}

.team-details__bottom-left {
  position: relative;
  display: block;
  margin-right: 70px
}

.team-details__bottom-left-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px
}

.team-details__bottom-left-text {
  padding-top: 30px
}

.team-details__bottom-right {
  position: relative;
  display: block;
  margin-left: 70px;
  margin-top: 1px
}

@media only screen and (max-width: 991px) {
  .team-details__bottom-right {
      margin-left:0
  }
}


@media screen and (max-width: 768px) {
    .main-footer {
        margin-bottom: 3em;
    }
    
    .whatsapp_icon{
        display:none;
    }
}



.quote-tabs {
    position: relative;
    padding: 45px 40px 70px;
    background-color: var(--bg-theme-color1);
    overflow: hidden
}

@media(max-width: 575.98px) {
    .quote-tabs {
        padding:25px 20px 40px
    }
}

.quote-tabs:before,.faqs-section .quote-tabs.bg-image:after {
    position: absolute;
    left: -220px;
    bottom: -120px;
    height: 370px;
    width: 370px;
    background-color: rgba(255,255,255,.1);
    -webkit-transform: rotate(38deg);
    transform: rotate(38deg);
    content: ""
}

.quote-tabs .tab-btns {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px
}

@media(max-width: 991.98px) {
    .quote-tabs .tab-btns {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.quote-tabs .tab-btns .tab-btn {
    position: relative;
    display: block;
    padding: 20px;
    padding-left: 60px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 30px;
    font-family: var(--title-font);
    width: 100%;
    white-space: nowrap;
    cursor: pointer
}

.quote-tabs .tab-btns .tab-btn .icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--theme-color2);
    font-size: 36px;
    line-height: 40px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.quote-tabs .tab-btns .tab-btn:hover {
    background-color: #b0161c
}

.quote-tabs .tab-btns .tab-btn.active-btn {
    background-color: #b0161c
}

.quote-tabs .tab-btns .tab-btn.active-btn:before,.quote-tabs .tab-btns .faqs-section .tab-btn.active-btn.bg-image:after,.faqs-section .quote-tabs .tab-btns .tab-btn.active-btn.bg-image:after {
    width: 0;
    left: 50%
}

.quote-tabs .tab-btns .tab-btn:before,.quote-tabs .tab-btns .faqs-section .tab-btn.bg-image:after,.faqs-section .quote-tabs .tab-btns .tab-btn.bg-image:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 5px;
    width: 100%;
    background-color: var(--bg-theme-color2);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

@media(max-width: 991.98px) {
    .quote-tabs .tab-btns .tab-btn:before,.quote-tabs .tab-btns .faqs-section .tab-btn.bg-image:after,.faqs-section .quote-tabs .tab-btns .tab-btn.bg-image:after {
        height:1px
    }
}

.quote-form {
    position: relative
}

.quote-form .form-group {
    position: relative;
    margin-bottom: 30px
}

.quote-form .form-group:last-child {
    margin-bottom: 0
}

.quote-form .form-group label {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    display: block;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.quote-form .form-group label.error {
    display: block;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    line-height: 24px;
    color: red;
    margin-bottom: 0
}

.quote-form .form-group .select2-container--default .select2-selection--single,.quote-form .form-group input:not([type=submit]),.quote-form .form-group textarea,.quote-form .form-group select {
    position: relative;
    display: block;
    height: 60px;
    width: 100%;
    padding: 15px 30px;
    font-size: 14px;
    color: #717070;
    line-height: 28px;
    font-weight: 400;
    background-color: #f6f6f6;
    border: 1px solid transparent;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.quote-form .form-group ::-webkit-input-placeholder {
    color: #717070
}

.quote-form .form-group input:focus,.quote-form .form-group select:focus,.quote-form .form-group textarea:focus {
    border-color: var(--theme-color2)
}

.quote-form .form-group textarea {
    height: 170px;
    resize: none
}

.quote-form .form-group input[type=submit],.quote-form .form-group button {
    margin-top: 10px;
    text-transform: uppercase
}

@media(max-width: 991.98px) {
    .quote-form .form-group input[type=submit],.quote-form .form-group button {
        width:100%
    }
}




.btn-style-two {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 35px;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
    color: var(--theme-color-dark);
    background: var(--theme-color2)
}

.btn-style-two::after {
    position: absolute;
    left: 3px;
    bottom: 3px;
    border-right: 41px solid transparent;
    border-bottom: 41px solid var(--theme-color1);
    content: "";
    opacity: .2
}

.btn-style-two:before,.faqs-section .btn-style-two.bg-image:after {
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    background: var(--theme-color1);
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    transition: -webkit-transform 500ms cubic-bezier(.86,0,.07,1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(.86,0,.07,1);
    transition: transform 500ms cubic-bezier(.86,0,.07,1);
    transition: transform 500ms cubic-bezier(.86,0,.07,1),-webkit-transform 500ms cubic-bezier(.86,0,.07,1);
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1)
}

.btn-style-two i {
    position: relative;
    top: 1px;
    display: block;
    margin-left: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.btn-style-two:hover:before,.faqs-section .btn-style-two.bg-image:hover:after {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scale(1,1);
    transform: scale(1,1)
}

.btn-style-two:hover {
    color: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,.1);
    box-shadow: 0 10px 30px rgba(0,0,0,.1)
}

.btn-style-two.light-bg:before,.faqs-section .btn-style-two.light-bg.bg-image:after {
    background-color: #fff
}

.btn-style-two.light-bg:hover {
    color: var(--theme-color1)
}


.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-family: var(--title-font)
}

.theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}




.read_more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 800;
  z-index: 2;
  float:right;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease
}

.service-block .read_more:hover {
  color: var(--color-primary)
}


.read_more i {
    font-size: 14px;
    margin-left: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.d_sm_block{
    display:none;
}

.product_view_img{
    float:left;
    padding-right:10px;
}

@media(max-width: 575.98px) {
    .d_xs_none{
        display:none;
    }
    .d_sm_block{
        display:block;
    }
    
    .product_view_img{
        float:none;
        width:100%;
        padding-right:10px;
    }
}

@media(max-width: 387px) {
    .service-block-two .text{
        font-size:13px;
    }
}

@media(max-width: 992px) {
    .service-block-three{
        margin-bottom: 1em;
    }
}



