@charset "UTF-8";
/*---------------------------------------
    Theme Name: Viserfly
    Description: Aviation & Flight School Template
    Author Name: Viserlab
    Author URI:  https://viserlab.com
    Theme URI: 
    Version: 1.0
-----------------------------------------
    Table of contents
-----------------------------------------
    1 Base Style
        1.1 Functions
        1.2 Variables
        1.3 Mixins
        1.4 Global
    2 Modules Style
        2.1 Hero
        2.2 Header
        2.3 Logo
        2.4 List
        2.5 Nav
        2.6 Primary Nav
        2.7 Nav Toggler
        2.8 Nice Select
        2.9 Form Control
        2.10 Primary Submenu Toggler
        2.11 Preloader
        2.12 Back To Top
        2.13 Button Style
        2.14 Info List
        2.15 Section 
        2.16 Client Slider
        2.17 Custom Icon
        2.18 Course Card
        2.19 Social Icon
        2.20 Trainer Slider
        2.21 Team Card
        2.22 Accordion
        2.23 Feedback Slider
        2.24 Gallery Photo
        2.25 Odometer
        2.26 Counter List
        2.27 Query Selector
        2.28 Blog Post
        2.29 CTA
        2.30 Footer Logo
        2.31 Newsletter
        2.32 Icon
        2.33 Search Popup
        2.34 Insta Gallery
        2.35 Service Card
        2.36 Blockquote
        2.37 Trainer Card
        2.38 Feedback Card
        2.39 Event Card
        2.40 Contact Icon
        2.41 Profile Pic
        2.42 Blog Card
        2.43 Banner
        2.44 Breadcrumbs
        2.45 Trainer Profile
        2.46 Pagination
        2.47 Blog List
        2.48 Widget
        2.49 Widget Category
        2.50 User
        2.51 GMap
        2.52 Auth Form
    3 Theme Style
        3.1 Color
        3.2 Background
        3.3 Padding
        3.4 Margin
        3.5 Utility Classes
        3.6 Animation
    4. Layouts Style
        4.1 Course Section
        4.2 Feedback Section
        4.3 CTA Section
        4.4 Footer 1
        4.5 Service Section

/*---------------------------------------
    0.1 Base Style
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&amp;family=Roboto:wght@400;500;700&amp;display=swap");

:root {
  --h1: clamp(2.8125rem, 4vw + 1rem, 4.209rem);
  --h2: clamp(2.0625rem, 3vw + 1rem, 3.1575rem);
  --h3: clamp(1.875rem, 2.7vw + 1rem, 2.369rem);
  --h4: 1.777rem;
  --h5: 1.333rem;
  --h6: 1rem;
}

/* @font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.otf') format('opentype');
}
.font-Helvetica{
  font-family: 'Helvetica', 'Arial', sans-serif;
} */

.font-poppins {
  font-family: "Poppins", serif;
}

html {
  font-size: 16px;
}

body {
  background-color: #fdfcfb;
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4e4e4e;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1.25rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 1.5rem 0 1rem;
  font-family: "Poppins", serif;
  font-weight: 400;
  line-height: 1.15;
  color: #212121;
}

h1 {
  margin-top: 0;
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

small,
.sm-text {
  font-size: 14px;
}

.lg-text {
  font-size: 18px;
}

.xl-text {
  font-size: 20px;
}

.xxl-text {
  font-size: 24px;
}

.fw-regular {
  font-weight: 400;
}

.fw-md {
  font-weight: 500;
}

button:focus {
  outline: none !important;
}

.btn:focus,
.btn.focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:focus {
  outline: none;
}

.form-control {
  border-color: rgba(0, 0, 0, 0.1);
}

textarea {
  resize: none;
}

/*---------------------------------------
    0.2 Modules Style
-----------------------------------------*/
/*---------------------------------------
    2.1 Hero
-----------------------------------------*/
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  min-height: 568px;
  position: relative;
  background-image: url(../img/hero-bg.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero__img-anime {
  display: none;
}

@media screen and (min-width: 1920px) {
  .hero__img-anime {
    display: block;
    width: 250px;
    height: 250px;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    left: 50%;
    bottom: -80px;
    -webkit-animation: goTop 10s ease infinite;
    animation: goTop 10s ease infinite;
  }
}

.hero__content {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: auto;
  margin-bottom: auto;
}

@media screen and (min-width: 400px) {
  .hero__content {
    padding-top: 0;
  }
}

.hero-alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 483px;
  height: calc(100vh - 90px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;

  overflow: hidden;



  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .hero-alt {
    height: calc(100vh - 153px);
  }
}

@media screen and (min-width: 992px) {
  .hero-alt {
    height: calc(100vh - 230px);
  }
}

.hero-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(34 39 54 / 41%);
  z-index: -1;
}

/*---------------------------------------
    2.2 Header
-----------------------------------------*/
.header {
  position: relative;
  z-index: 1;
}

.header__top {
  padding: 13px 45px;
  position: relative;
  background: #565757;
}

@media screen and (min-width: 992px) {
  .header__top {
    padding: 12px 25px;
  }
}

@media screen and (min-width: 1200px) {
  .header__top {
    padding: 5px 26px 7px;
  }
}

/*---------------------------------------
    2.3 Logo
-----------------------------------------*/
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 90px;
  height: 90px;
  padding: 15px;
  /* background: #000000; */
}

@media screen and (min-width: 768px) {
  .logo {
    max-width: 155px;
    height: 80px;
    padding-top: 12px;
    /* padding: 30px; */
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 1200px) {
  .logo {
    max-width: 186px;
  }
}

@media screen and (min-width: 1400px) {
  .logo {
    max-width: 215px;
    margin-left: -76px;
  }
}

.logo__is {
  -o-object-fit: contain;
  object-fit: contain;
}

/*---------------------------------------
    2.4 List
-----------------------------------------*/
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list__item {
  position: relative;
}

.list--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list--row__item {
  margin-top: 2px;
  font-size: 11px;
  margin-bottom: 2px;
  margin-right: 1rem;
}

.list--row__item:last-child {
  margin-right: 0;
}

.list--row__item-sm {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 0.5rem;
}

.list--row__item-sm:last-child {
  margin-right: 0;
}

.list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list--column__item {
  margin-bottom: 1rem;
}

.list--column__item:last-child {
  margin-bottom: 0;
}

.list--column__item-xl {
  margin-bottom: 1.5rem;
}

.list--column__item-xl:last-child {
  margin-bottom: 0;
}

.list--column__item-sm {
  margin-bottom: 0.5rem;
}

.list--column__item-sm:last-child {
  margin-bottom: 0;
}

.list--primary .list__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 14px;
  background: RED;
}

/*---------------------------------------
    2.5 Nav
-----------------------------------------*/
.nav-container {
  position: relative;
}

@media screen and (min-width: 992px) {
  .nav-container {
    background: #fff;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.navs {
  min-width: 200px;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  z-index: -9999;
}

@media screen and (min-width: 992px) {
  .navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: auto;
    position: relative;
    top: auto;
    right: auto;
    visibility: visible;
    opacity: 1;
    z-index: 9998;
    background: transparent;
  }

  .navs::after {
    display: none;
  }
}

.navs::after {
  content: "";
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -20px;
  right: 10px;
}

.navs--toggle {
  padding: 3px 5px;
  border-radius: 2px;
  border: 1px solid #fff;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navs--toggle:hover {
  background: #fff;
  color: #222736;
}

/*---------------------------------------
    2.6 Primary Menu
-----------------------------------------*/
.primary-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .primary-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.primary-menu--dark {
  background: #222736;
}

@media screen and (min-width: 992px) {
  .primary-menu--dark .primary-menu__link {
    /* color: #fff; */
  }
}

.primary-menu__list {
  position: relative;
}

@media screen and (min-width: 992px) {
  .primary-menu__list {
    margin-right: 2rem;
  }

  .primary-menu__list:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .primary-menu__list {
    margin-right: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__link {
    color: #000000;
  }
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__link::after {
    content: "";
  }
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__sub {
    top: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    z-index: 9999 !important;
  }
}

.primary-menu__list.has-sub .primary-menu__link::after {
  content: "";
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 15px;
  font-size: 22px;
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub .primary-menu__link::after {
    right: -18px;
    top: 25px;
    font-size: 18px;
    display: none;
  }
}

.primary-menu__link {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: 15px;
  margin-right: 15px;
  border-bottom: 1px solid rgba(34, 39, 54, 0.1);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #222736;
}

@media screen and (min-width: 992px) {
  .primary-menu__link {
    color: #212121;
    margin-left: 0;
    font-size: 16px;
    margin-right: 0;
    font-weight: 600;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 15px;
  }
}

.primary-menu__link:hover {
  color: #000000;
  text-decoration: none;
}

.primary-menu--alt {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .primary-menu--alt {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.primary-menu--alt .primary-menu__list {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 992px) {
  .primary-menu--alt .primary-menu__list {
    margin-bottom: 0;
  }
}

.primary-menu--alt .primary-menu__list:last-child {
  margin-bottom: 0;
}

.primary-menu__sub {
  list-style: none;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  z-index: -9999;
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub {
    min-width: 264px;
    height: auto;
    padding: 15px;
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    background: #fff !important;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 15px rgba(34, 39, 54, 0.4);
    box-shadow: 0 5px 15px rgba(34, 39, 54, 0.4);
  }

  .primary-menu__sub::after {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.primary-menu__sub-list {
  border-bottom: 1px solid rgba(51, 189, 255, 0.9);
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-list {
    border-bottom: 1px solid #d8d7d7;
  }

  .primary-menu__sub-list:hover {
    border-bottom: 1px solid transparent;
  }
}

.primary-menu__sub-list:first-child .primary-menu__sub-link {
  border-radius: 3px 3px 0 0;
}

.primary-menu__sub-list:last-child {
  border-bottom: none;
}

.primary-menu__sub-list:last-child .primary-menu__sub-link {
  border-radius: 0 0 3px 3px;
}

.primary-menu__sub-link {
  display: block;
  padding: 8px 15px;
  background: #000000;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link {
    background: #fff;
    color: #212121;
    border-radius: 3px !important;
    text-align: left;
  }
}

.primary-menu__sub-link:hover {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link:hover {
    color: #fff;
    background: #000000;
  }
}

/*---------------------------------------
    2.7 Nav Toggler
-----------------------------------------*/
.nav-toggler .navs {
  visibility: visible;
  opacity: 1;
  z-index: 9997;
  top: calc(100% + 10px);
}

@media screen and (min-width: 992px) {
  .nav-toggler .navs {
    top: auto;
  }
}

.nav-toggler .navs--toggle {
  background: #fff;
  color: #4e4e4e;
}

/*---------------------------------------
    2.8 Nice Select
-----------------------------------------*/
.custom--nice-select .nice-select {
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
  background: transparent;
  font-size: 16px;
}

.custom--nice-select .nice-select::after {
  height: 8px;
  width: 8px;
  margin-top: -6px;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
}

.custom--nice-select .nice-select .list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #000000;
  right: 0;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.2);
  box-shadow: 0 10px 15px rgba(34, 39, 54, 0.2);
}

.custom--nice-select .nice-select .list .option {
  color: #fff;
}

.custom--nice-select .nice-select .list .option:hover {
  color: #fff;
  background: #1ab5ff;
}

.custom--nice-select .nice-select .list .selected {
  background: #0fb1ff;
}

.custom--nice-select .nice-select .current {
  color: rgba(78, 78, 78, 0.7);
}

.custom--nice-select .nice-select:active,
.custom--nice-select .nice-select.open,
.custom--nice-select .nice-select:focus {
  border-color: #d8d7d7;
}

.custom--nice-select--outline .nice-select {
  border: 1px solid #fff;
}

.custom--nice-select--light .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.custom--nice-select--light .current {
  color: rgba(255, 255, 255, 0.7);
}

/*---------------------------------------
    2.9 Form Control
-----------------------------------------*/
.form-control-custom {
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
  font-size: 16px;
}

.form-control-custom::-webkit-input-placeholder {
  text-transform: capitalize;
}

.form-control-custom::-moz-placeholder {
  text-transform: capitalize;
}

.form-control-custom:-ms-input-placeholder {
  text-transform: capitalize;
}

.form-control-custom::-ms-input-placeholder {
  text-transform: capitalize;
}

.form-control-custom::placeholder {
  text-transform: capitalize;
}

.form-control-custom:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control-custom--outline {
  background: transparent;
}

.form-control-custom--outline:focus {
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control-custom--outline-light {
  border-color: #fff;
  color: #fff;
}

.form-control-custom--outline-light::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-light:focus {
  border-color: #fff;
  color: #fff;
}

.form-control-custom--outline-dark {
  border-color: #d8d7d7;
  color: #4e4e4e;
}

.form-control-custom--outline-dark::-webkit-input-placeholder {
  color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::-moz-placeholder {
  color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark:-ms-input-placeholder {
  color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::-ms-input-placeholder {
  color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark::placeholder {
  color: rgba(78, 78, 78, 0.7);
}

.form-control-custom--outline-dark:focus {
  border-color: #d8d7d7;
  color: #4e4e4e;
}

.form-control-custom--outline-thin {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-control-custom--outline-thin::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control-custom--outline-thin:focus {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/*---------------------------------------
    2.10 Primary Submenu Toggler
-----------------------------------------*/
.primary-submenu-toggler {
  position: relative;
}

.primary-submenu-toggler .primary-menu__list.has-sub.active {
  padding-bottom: 15px;
  background: rgba(51, 189, 255, 0.2);
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler .primary-menu__list.has-sub.active {
    padding-bottom: 0;
    background: transparent;
  }
}

.primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__link {
  color: #000000;
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__link {
    padding-bottom: 0;
    background: transparent;
  }
}

.primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__sub {
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: 9999;
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__sub {
    z-index: -9999;
    visibility: hidden;
    opacity: 0;
  }
}

/*---------------------------------------
    2.11 Preloader
-----------------------------------------*/
.preloader {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100vh;
  background-color: #222736;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.preloader__loader {
  --loader-color: #000000;
  --loader-shadow-color: #000000;
  --loader-part-size: 24px;
  --loader-size: calc(var(--loader-part-size) * 3);
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
}

.preloader__loader.hidden {
  display: none;
}

.preloader__loader span {
  position: absolute;
  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;
  width: var(--loader-part-size);
  height: var(--loader-part-size);
  background-color: var(--loader-color);
  -webkit-box-shadow: 0 0 6px var(--loader-shadow-color);
  box-shadow: 0 0 6px var(--loader-shadow-color);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: main 6s ease infinite, fading 6s ease infinite;
  animation: main 6s ease infinite, fading 6s ease infinite;
}

.preloader__loader span:nth-child(1) {
  --translationValue: calc(var(--loader-part-size) / 4),
    calc(var(--loader-part-size) / 4);
  --translationValueWhenAssebled: var(--loader-part-size), 0px;
  --translationBeforeDisassembling: calc(var(--loader-part-size) / 4),
    calc(var(--loader-part-size) / 4 * -1);
  top: 0;
  left: var(--loader-part-size);
  -webkit-animation-delay: 0s, 0.2s;
  animation-delay: 0s, 0.2s;
}

.preloader__loader span:nth-child(2) {
  --translationValue: calc(var(--loader-part-size) / 4),
    calc(var(--loader-part-size) / 4 * -1);
  --translationValueWhenAssebled: 0px, calc(var(--loader-part-size) * -1);
  --translationBeforeDisassembling: calc(var(--loader-part-size) / 4 * -1),
    calc(var(--loader-part-size) / 4 * -1);
  top: var(--loader-part-size);
  left: 0;
}

.preloader__loader span:nth-child(3) {
  --translationValue: calc(var(--loader-part-size) / 4 * -1),
    calc(var(--loader-part-size) / 4);
  --translationValueWhenAssebled: 0px, var(--loader-part-size);
  --translationBeforeDisassembling: calc(var(--loader-part-size) / 4),
    calc(var(--loader-part-size) / 4);
  top: var(--loader-part-size);
  right: 0;
  -webkit-animation-delay: 0s, 0.4s;
  animation-delay: 0s, 0.4s;
}

.preloader__loader span:nth-child(4) {
  --translationValue: calc(var(--loader-part-size) / 4 * -1),
    calc(var(--loader-part-size) / 4 * -1);
  --translationValueWhenAssebled: calc(var(--loader-part-size) * -1), 0px;
  --translationBeforeDisassembling: calc(var(--loader-part-size) / 4 * -1),
    calc(var(--loader-part-size) / 4);
  bottom: 0;
  left: var(--loader-part-size);
  -webkit-animation-delay: 0s, 0.6s;
  animation-delay: 0s, 0.6s;
}

@-webkit-keyframes fading {
  0% {
    opacity: 1;
  }

  8% {
    opacity: 0.2;
  }

  16.6%,
  33.2% {
    opacity: 1;
  }

  41.6% {
    opacity: 0.2;
  }

  50%,
  66.6% {
    opacity: 1;
  }

  74.9% {
    opacity: 0.2;
  }

  83.2%,
  100% {
    opacity: 1;
  }
}

@keyframes fading {
  0% {
    opacity: 1;
  }

  8% {
    opacity: 0.2;
  }

  16.6%,
  33.2% {
    opacity: 1;
  }

  41.6% {
    opacity: 0.2;
  }

  50%,
  66.6% {
    opacity: 1;
  }

  74.9% {
    opacity: 0.2;
  }

  83.2%,
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes main {

  0%,
  25% {
    -webkit-transform: rotate(0) translate(0, 0);
    transform: rotate(0) translate(0, 0);
  }

  33.3%,
  58.3% {
    -webkit-transform: rotate(45deg) translate(var(--translationValue));
    transform: rotate(45deg) translate(var(--translationValue));
  }

  62.45% {
    -webkit-transform: rotate(90deg) translate(var(--translationValueWhenAssebled));
    transform: rotate(90deg) translate(var(--translationValueWhenAssebled));
  }

  66.6%,
  91.6% {
    -webkit-transform: rotate(135deg) translate(var(--translationBeforeDisassembling));
    transform: rotate(135deg) translate(var(--translationBeforeDisassembling));
  }

  100% {
    -webkit-transform: rotate(180deg) translate(0, 0);
    transform: rotate(180deg) translate(0, 0);
  }
}

@keyframes main {

  0%,
  25% {
    -webkit-transform: rotate(0) translate(0, 0);
    transform: rotate(0) translate(0, 0);
  }

  33.3%,
  58.3% {
    -webkit-transform: rotate(45deg) translate(var(--translationValue));
    transform: rotate(45deg) translate(var(--translationValue));
  }

  62.45% {
    -webkit-transform: rotate(90deg) translate(var(--translationValueWhenAssebled));
    transform: rotate(90deg) translate(var(--translationValueWhenAssebled));
  }

  66.6%,
  91.6% {
    -webkit-transform: rotate(135deg) translate(var(--translationBeforeDisassembling));
    transform: rotate(135deg) translate(var(--translationBeforeDisassembling));
  }

  100% {
    -webkit-transform: rotate(180deg) translate(0, 0);
    transform: rotate(180deg) translate(0, 0);
  }
}

/*---------------------------------------
    2.12 Back To Top
-----------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}

/*---------------------------------------
    2.13 Button Style
-----------------------------------------*/
.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 10px rgba(34, 39, 54, 0.3);
  box-shadow: 0 8px 10px rgba(34, 39, 54, 0.3);
}

.btn--primary {
  background: #1d1f1f;
  color: #fff;
}

.btn--primary:hover {
  color: #fff;
  background: #454545;
}

.btn--secondary {
  background: #adb5bd;
  color: #fff;
}

.btn--secondary:hover {
  color: #fff;
  background: #a5adb6;
}

.btn--success {
  background: #1bc5bd;
  color: #fff;
}

.btn--success:hover {
  color: #fff;
  background: #19b8b0;
}

.btn--danger {
  background: #f75b60;
  color: #fff;
}

.btn--danger:hover {
  color: #fff;
  background: #f64c52;
}

.btn--warning {
  background: #ff9f43;
  color: #fff;
}

.btn--warning:hover {
  color: #fff;
  background: #ff9734;
}

.btn--info {
  background: #09c2de;
  color: #fff;
}

.btn--info:hover {
  color: #fff;
  background: #08b5cf;
}

.btn--dark {
  background: #222736;
  color: #fff;
}

.btn--dark:hover {
  color: #fff;
  background: #1c202d;
}

.btn--light {
  background: #fff;
  color: #000000;
}

.btn--light:hover {
  color: #fff;
  background: #222736;
}

.btn--sqr {
  line-height: 1;
  padding: 0.75rem;
  font-size: 20px;
}

.btn--md {
  padding: 0.5rem 1rem;
}

.btn--lg {
  padding: 0.625rem 1.25rem;
}

.btn--xl {
  padding: 0.75rem 1.5rem;
}

.btn--xxl {
  padding: 1rem 2rem;
}

.btn--outline {
  border: 1px solid #d8d7d7;
  background: transparent;
}

.btn--outline:hover {
  color: #fff;
  background: #000000;
  border-color: #000000;
}

.btn--outline.active {
  color: #fff;
  background: #000000;
  border-color: #000000;
}

/*---------------------------------------
    2.14 Info List
-----------------------------------------*/
.vf-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vf-info-list__item {
  padding: 13px 45px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .vf-info-list__item {
    padding: 12px 25px;
  }
}

@media screen and (min-width: 1200px) {
  .vf-info-list__item {
    padding: 12px 45px;
  }
}

.vf-info-list__item::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vf-info-list__item:last-child::after {
  display: none;
}

.vf-info-list__text {
  letter-spacing: 0.1em;
  font-weight: 400;
}

.vf-info-list--alt .vf-info-list__item::after {
  background: #000000;
}

/*---------------------------------------
    2.15 Section 
-----------------------------------------*/
.section {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.section--sm {
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(30px, 4vw, 60px);
}

.section--top {
  padding-top: clamp(60px, 8vw, 120px);
}

.section--bottom {
  padding-bottom: clamp(60px, 8vw, 120px);
}

.section__head {
  padding-bottom: clamp(30px, 4vw, 36px);
}

/*---------------------------------------
    2.16 Client Slider
-----------------------------------------*/
.client-slider {
  position: relative;
}

.client-slider__item {
  padding-left: 15px;
  padding-right: 15px;
}

.client-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*---------------------------------------
    2.17 Custom Icon
-----------------------------------------*/
.vf-custom-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.vf-custom-icon::after {
  content: "";
  width: 60%;
  height: 100%;
  background: #6665658c;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

/*---------------------------------------
    2.18 Course Card
-----------------------------------------*/
@media screen and (min-width: 568px) {
  .course-card {
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
  }
}

@media screen and (min-width: 568px) {
  .course-card__img {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 16%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 16%);
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 0.8rem;
  }
}

.course-card__img-is {
  width: 100%;
  max-height: 320px;
}

@media screen and (min-width: 568px) {
  .course-card__img-is {
    max-width: 250px;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 1400px) {
  .course-card__img-is {
    max-width: 300px;
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 568px) {
  .course-card__content {
    margin-left: 0.8rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

/*---------------------------------------
    2.19 Social Icon
-----------------------------------------*/
.social-icon,
.social-icon--primary,
.social-icon--alt {
  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;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  /* border: 1px solid #a2a2a3; */
  font-size: 24px;
  line-height: 1;
  color: #fdfcfb;
  /* /* background: rgba(255, 255, 255, 0.1); */
}

.social-icon:hover,
.social-icon--primary:hover,
.social-icon--alt:hover {
  color: #000000;
  background: #fff;
  border-color: #fff;
}

.social-icon--alt {
  border: 1px solid #333535;
  background: #333535;
  color: #fff;
}

.social-icon--alt:hover {
  color: #fff;
  background: #000000;
  border-color: #000000;
}

.social-icon--primary {
  color: #4e4e4e;
}

.social-icon--primary:hover {
  color: #fff;
  background: #000000;
  border-color: #000000;
}

/*---------------------------------------
    2.20 Trainer Slider
-----------------------------------------*/
@media screen and (min-width: 568px) {
  .trainer-slider__item {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

@media screen and (min-width: 1400px) {
  .trainer-slider__item {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
  }
}

.trainer-slider__btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background: #000000;
  font-size: 24px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.trainer-slider__btn:hover {
  background: #fff;
  color: #000000;
  -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
  box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
}

.trainer-slider__btn-prev {
  left: 0;
}

.trainer-slider__btn-next {
  right: 0;
}

.trainer-slider .slick-list {
  margin-bottom: -20px;
}

/*---------------------------------------
    2.21 Team Card
-----------------------------------------*/
.team-card {
  position: relative;
  z-index: 1;
}

.team-card:hover .team-card__overlay {
  opacity: 1;
  z-index: 2;
}

.team-card--alt {
  overflow: hidden;
  border-radius: 0;
}

.team-card__img {
  overflow: hidden;
}

.team-card__img-is {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-card__body {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -90px;
  margin-bottom: 20px;
  padding: 30px 15px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(34, 39, 54, 0.1);
  box-shadow: 0 5px 10px rgba(34, 39, 54, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team-card__body:hover {
  background: #000000;
}

.team-card__body:hover .team-card__title {
  color: #fff;
}

.team-card__body:hover .team-card__sub-title {
  color: #fff;
}

.team-card__body:hover .social-icon,
.team-card__body:hover .social-icon--alt,
.team-card__body:hover .social-icon--primary {
  border-color: #fff;
  color: #fff;
}

.team-card__body:hover .social-icon:hover,
.team-card__body:hover .social-icon--alt:hover,
.team-card__body:hover .social-icon--primary:hover {
  color: #000000;
}

.team-card__title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team-card__sub-title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team-card__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*---------------------------------------
    2.22 Accordion
-----------------------------------------*/
.vf-accordion__header {
  margin-top: 0;
}

.vf-accordion--secondary .vf-accordion__btn {
  background: #adb5bd;
}

.vf-accordion__item {
  border-radius: 0 !important;
  margin-bottom: 15px;
  background: transparent;
  color: #4e4e4e;
  border: 0;
}

.vf-accordion__item:last-child {
  margin-bottom: 0;
}

.vf-accordion__btn {
  padding: 10px 15px;
  border-radius: 0 !important;
  border: 1px solid #d8d7d7;
  color: #212121;
  font-size: 20px;
  font-weight: 500;
}

.vf-accordion__btn:focus {
  border-color: #d8d7d7;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.vf-accordion__btn[aria-expanded="true"]::after {
  content: "−";
}

.vf-accordion__btn[aria-expanded="false"]::after {
  content: "+";
}

.vf-accordion__btn::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  background: #000000;
  text-align: center;
  background-image: initial !important;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.vf-accordion__btn:not(.collapsed) {
  color: #212121;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background-image: initial !important;
  -webkit-box-shadow: inset 0 0 0 transparent !important;
  box-shadow: inset 0 0 0 transparent !important;
}

/*---------------------------------------
    2.23 Feedback Slider
-----------------------------------------*/
@media screen and (min-width: 768px) {
  .feedback-slider__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.feedback-slider-for__img-is {
  max-width: 100%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .feedback-slider-for__img-is {
    width: 324px;
    height: 324px;
  }
}

@media screen and (min-width: 992px) {
  .feedback-slider-for__img-is {
    width: 440px;
    height: 440px;
  }
}

.feedback-slider-nav__quote {
  font-size: 80px;
  line-height: 1;
  display: inline-block;
  color: #000000;
}

.feedback-slider-nav__text {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

.feedback-slider-nav__rating {
  display: inline-block;
}

.feedback-slider-nav__btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: none;
  position: absolute;
  top: calc(100% + 30px);
  background: #000000;
  font-size: 24px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.feedback-slider-nav__btn:hover {
  background: #fff;
  color: #000000;
  -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
  box-shadow: 0 10px 15px rgba(34, 39, 54, 0.4);
}

.feedback-slider-nav__btn-prev {
  left: 50%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media screen and (min-width: 768px) {
  .feedback-slider-nav__btn-prev {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.feedback-slider-nav__btn-next {
  right: 50%;
  -webkit-transform: translateX(calc(100% + 10px));
  transform: translateX(calc(100% + 10px));
}

@media screen and (min-width: 768px) {
  .feedback-slider-nav__btn-next {
    right: 100%;
    -webkit-transform: translateX(calc(100% + 60px));
    transform: translateX(calc(100% + 60px));
  }
}

/*---------------------------------------
    2.24 Gallery Photo
-----------------------------------------*/
.gallery-photo {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.gallery-photo:hover .gallery-photo__img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.gallery-photo:hover .gallery-photo__content {
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  opacity: 1;
}

.gallery-photo__img {
  max-width: 100%;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-photo__content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000000;
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-photo__icon {
  color: #fff;
  border: 1px solid #fff;
}

.gallery-photo__icon:hover {
  color: #000000;
  background: #fff;
}

/*---------------------------------------
    2.25 Odometer
-----------------------------------------*/
.odometer--plus {
  position: relative;
}

.odometer--plus::after {
  content: "";
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
}

.odometer--plus-primary::after {
  color: #000000;
}

.odometer--custom .odometer {
  font-family: "DM Serif Display", serif !important;
}

@media screen and (min-width: 1920px) {
  .odometer--custom .odometer {
    font-size: 80px;
  }
}

/*---------------------------------------
    2.26 Counter List
-----------------------------------------*/
.counter-list {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .counter-list {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .counter-list__item {
    padding: 30px;
  }

  .counter-list__item:first-child {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .counter-list__item:last-child {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .counter-list--dark .counter-list__item {
    padding: 30px;
  }

  .counter-list--dark .counter-list__item:first-child {
    border-right: 1px solid rgba(34, 39, 54, 0.3);
    border-bottom: 1px solid rgba(34, 39, 54, 0.3);
  }

  .counter-list--dark .counter-list__item:last-child {
    border-top: 1px solid rgba(34, 39, 54, 0.3);
    border-left: 1px solid rgba(34, 39, 54, 0.3);
  }
}

/*---------------------------------------
    2.27 Query Selector
-----------------------------------------*/
.query {
  padding: 30px 15px;
  border-radius: 5px;
}

@media screen and (min-width: 992px) {
  .query {
    padding: 30px;
  }
}

@media screen and (min-width: 1366px) {
  .query {
    padding: 50px;
  }
}

/*---------------------------------------
    2.28 Blog Post
-----------------------------------------*/
.blog-post {
  position: relative;
}

.blog-post__img {
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog-post__img:hover .blog-post__img-is {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.blog-post__img-is {
  width: 100%;
  max-width: 100%;
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-post__body {
  padding: 70px 15px 30px;
  background: #fafafa;
  border-radius: 0 0 10px 10px;
  position: relative;
}

@media screen and (min-width: 1366px) {
  .blog-post__body {
    padding: 60px 30px 30px;
  }
}

.blog-post__date {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: #000000;
  text-align: center;
  position: absolute;
  top: -40px;
}

.blog-post__title {
  color: #212121;
}

@media screen and (min-width: 1200px) {
  .blog-post__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
}

.blog-post__title:hover {
  color: #000000;
}

@media screen and (min-width: 1200px) {
  .blog-post__article {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
}

.blog-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-post__meta-icon {
  font-size: 20px;
  line-height: 1;
  color: #000000;
}

.blog-post__meta-text {
  font-size: 14px;
}

.blog-post__share {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-post__share:hover {
  color: #fff;
  -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.5);
  box-shadow: 0 10px 15px rgba(34, 39, 54, 0.5);
}

/*---------------------------------------
    2.29 CTA
-----------------------------------------*/
.cta {
  padding: 30px;
  margin-bottom: clamp(60px, 8vw, 120px);
}

@media screen and (min-width: 992px) {
  .cta {
    -webkit-clip-path: polygon(50% 0%,
        100% 0,
        100% 89%,
        50% 100%,
        50% 100%,
        0 89%,
        0 0);
    clip-path: polygon(50% 0%,
        100% 0,
        100% 89%,
        50% 100%,
        50% 100%,
        0 89%,
        0 0);
    margin-bottom: -125px;
  }
}

/*---------------------------------------
    2.30 Footer Logo
-----------------------------------------*/
@media screen and (min-width: 992px) {
  .footer-logo {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
  }
}

/*---------------------------------------
    2.31 Newsletter
-----------------------------------------*/
.newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  border-radius: 2px;
  max-width: 600px;
}

.newsletter--dark {
  border-color: #d8d7d7;
}

.newsletter--dark .newsletter__input {
  color: #212121;
}

.newsletter--dark .newsletter__input:focus {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-webkit-input-placeholder {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-moz-placeholder {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__input:-ms-input-placeholder {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__input::-ms-input-placeholder {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__input::placeholder {
  color: #4e4e4e;
}

.newsletter--dark .newsletter__btn {
  color: #000000;
}

.newsletter__input {
  height: 50px;
  line-height: 48px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #fff;
}

.newsletter__input:focus {
  outline: none;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}

.newsletter__input::-webkit-input-placeholder {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::-moz-placeholder {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter__input:-ms-input-placeholder {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::-ms-input-placeholder {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter__input::placeholder {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter__btn {
  padding-left: 10px;
  padding-right: 10px;
  border: none;
  font-size: 20px;
  background: transparent;
  color: #fff;
}

/*---------------------------------------
    2.32 Icon
-----------------------------------------*/
.icon {
  position: relative;
  display: inline-block;
}

.icon--circle {
  border-radius: 50%;
  text-align: center;
}

.icon--sqr {
  border-radius: 5px;
  text-align: center;
}

.icon--xs {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
}

.icon--sm {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 22px;
}

.icon--md {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
}

.icon--lg {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
}

.icon--xl {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 35px;
}

.icon--xxl {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
}

/*---------------------------------------
    2.33 Search Popup
-----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

.search--toggler {
  font-size: 23px;
  line-height: 1;
}

.search-popup .search-form {
  min-width: 90%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .search-popup .search-form {
    min-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .search-popup .search-form {
    min-width: 40%;
  }
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 55px;
  padding: 0 100px 0 30px;
  background-color: #fff;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 55px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  text-align: center;
  border: 0;
  color: white;
}

.search-popup .search-form .submit-btn:hover {
  background-color: #f75b60;
  cursor: pointer;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.54);
  z-index: 9999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.8;
}

/*---------------------------------------
    2.34 Insta Gallery
-----------------------------------------*/
.insta-gallery {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  grid-auto-flow: row;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.insta-gallery__img {
  width: 90px;
  max-width: 100%;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
}

/*---------------------------------------
    2.35 Service Card
-----------------------------------------*/
.service-card {
  padding: 30px;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .service-card {
    padding: 30px 15px;
  }
}

@media screen and (min-width: 992px) {
  .service-card {
    padding: 60px 30px;
  }
}

/*---------------------------------------
    2.36 Blockquote
-----------------------------------------*/
.blockquote__text {
  font-style: italic;
}

/*---------------------------------------
    2.37 Trainer Card
-----------------------------------------*/
.trainer-card {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.trainer-card__img {
  position: relative;
}

.trainer-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#000000),
      to(transparent));
  background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}

.trainer-card__img-is {
  max-width: 100%;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

.trainer-card__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

/*---------------------------------------
    2.38 Feedback Card
-----------------------------------------*/
.feedback-card {
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

@media screen and (min-width: 400px) {
  .feedback-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.feedback-card::after {
  content: "";
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  font-size: 38px;
  color: rgba(51, 189, 255, 0.2);
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.feedback-card__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feedback-card__profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feedback-card__profile-info {
  padding-left: 15px;
  padding-right: 15px;
}

.feedback-card__profile-name {
  font-size: 18px;
  font-family: "DM Serif Display", serif;
  color: #212121;
}

.feedback-card__comment {
  font-weight: 500;
  font-style: italic;
}

/*---------------------------------------
    2.39 Event Card
-----------------------------------------*/
.event-card__img {
  max-width: 100%;
  width: 100%;
  height: 400px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-card__body {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  padding: 30px 15px;
  -webkit-box-shadow: 0 10px 15px rgba(34, 39, 54, 0.1);
  box-shadow: 0 10px 15px rgba(34, 39, 54, 0.1);
  border-radius: 5px;
  background: #fff;
  margin-top: -85px;
}

@media screen and (min-width: 768px) {
  .event-card__body {
    padding: 30px 20px;
  }
}

@media screen and (min-width: 1200px) {
  .event-card__body {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/*---------------------------------------
    2.40 Contact Icon
-----------------------------------------*/
.contact-icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact-icon-box {
  position: relative;
}

.contact-icon-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 2px;
  background: #fff;
}

.contact-icon-box--primary {
  position: relative;
}

.contact-icon-box--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 2px;
  background: #000000;
}

/*---------------------------------------
    2.41 Profile Pic
-----------------------------------------*/
.profile-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile-pic__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.profile-pic__img--sm {
  width: 35px;
  height: 35px;
}

.profile-pic__img--md {
  width: 45px;
  height: 45px;
}

.profile-pic__img--lg {
  width: 50px;
  height: 50px;
}

.profile-pic__img--xl {
  width: 70px;
  height: 70px;
}

.profile-pic__img--xxl {
  width: 130px;
  height: 130px;
}

.profile-pic__img-is {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
    2.42 Blog Card
-----------------------------------------*/
.blog-card {
  background: #fafafa;
  border-radius: 5px;
  overflow: hidden;
}

.blog-card__img {
  position: relative;
}

.blog-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#000000),
      to(transparent));
  background-image: linear-gradient(0deg, #000000 0%, transparent 100%);
}

.blog-card__img-is {
  max-width: 100%;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-card__overlay {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 30px;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  .blog-card__overlay {
    left: 30px;
    right: 30px;
  }
}

.blog-card__body {
  padding: 30px 15px;
}

@media screen and (min-width: 1200px) {
  .blog-card__body {
    padding: 30px;
  }
}

.blog-card__footer {
  padding: 30px 15px;
}

@media screen and (min-width: 1200px) {
  .blog-card__footer {
    padding: 30px;
  }
}

.blog-card__hr {
  width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
}

/*---------------------------------------
    2.43 Banner
-----------------------------------------*/
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 50vh;
  min-height: 568px;
  position: relative;
  background-image: url(../img/banner-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .banner {
    -webkit-clip-path: polygon(50% 0%,
        100% 0,
        100% 89%,
        50% 100%,
        50% 100%,
        0 89%,
        0 0);
    clip-path: polygon(50% 0%,
        100% 0,
        100% 89%,
        50% 100%,
        50% 100%,
        0 89%,
        0 0);
  }
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/*---------------------------------------
    2.44 Breadcrumbs
-----------------------------------------*/
.breadcrumbs__item {
  margin-right: 2rem;
  position: relative;
}

.breadcrumbs__item::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1rem;
  height: 16px;
  width: 2px;
  background: #fff;
  -webkit-transform: skew(-25deg);
  transform: skew(-25deg);
}

.breadcrumbs__item:last-child {
  margin-right: 0;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

/*---------------------------------------
    2.45 Trainer Profile
-----------------------------------------*/
.trainer-profile {
  padding: 30px 15px;
  background: #fafafa;
  border-radius: 5px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .trainer-profile {
    padding: 30px;
  }
}

@media screen and (min-width: 992px) {
  .trainer-profile {
    padding: 50px 40px;
  }
}

.trainer-profile__img {
  max-width: 100%;
  width: 100%;
  height: 365px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

.trainer-profile__timeline {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .trainer-profile__timeline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 88%;
    width: 1px;
    background: #d8d7d7;
  }
}

.trainer-profile__history {
  padding: 30px 15px;
  border-radius: 5px;
  background: #fafafa;
  position: relative;
}

@media screen and (min-width: 992px) {
  .trainer-profile__history {
    padding: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .trainer-profile__history-left::before {
    content: "";
    position: absolute;
    top: 44px;
    right: -98px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000000;
    -webkit-box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
    box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
    z-index: 1;
  }

  .trainer-profile__history-left::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 100%;
    width: 90px;
    height: 1px;
    background: #d8d7d7;
  }
}

@media screen and (min-width: 1366px) {
  .trainer-profile__history-left::before {
    right: -101px;
  }

  .trainer-profile__history-left::after {
    width: 95px;
  }
}

@media screen and (min-width: 1200px) {
  .trainer-profile__history-right::before {
    content: "";
    position: absolute;
    bottom: 44px;
    left: -98px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000000;
    -webkit-box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
    box-shadow: 0 0 0 8px rgba(51, 189, 255, 0.5);
    z-index: 1;
  }

  .trainer-profile__history-right::after {
    content: "";
    position: absolute;
    bottom: 50px;
    right: 100%;
    width: 90px;
    height: 1px;
    background: #d8d7d7;
  }
}

@media screen and (min-width: 1366px) {
  .trainer-profile__history-right::before {
    left: -101px;
  }

  .trainer-profile__history-right::after {
    width: 95px;
  }
}

/*---------------------------------------
    2.46 Pagination
-----------------------------------------*/
.paginations {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 1px solid #d8d7d7;
  text-align: center;
  font-size: 20px;
  color: #a2a2a3;
  background: transparent;
}

.paginations:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

/*---------------------------------------
    2.47 Blog List
-----------------------------------------*/
.blog-list__item {
  margin-bottom: 60px;
}

.blog-list__item:last-child {
  margin-bottom: 0;
}

/*---------------------------------------
    2.48 Widget
-----------------------------------------*/
.widget {
  padding: 30px 15px;
  border-radius: 5px;
}

@media screen and (min-width: 1400px) {
  .widget {
    padding: 40px 30px;
  }
}

.widget-alt__head {
  padding: 15px 30px;
  border-radius: 5px 5px 0 0;
  background: #000000;
}

.widget-alt__body {
  background: #fafafa;
  padding: 15px 30px;
}

/*---------------------------------------
    2.49 Widget Category
-----------------------------------------*/
.widget-category__item {
  border-bottom: 1px solid rgba(216, 215, 215, 0.7);
}

.widget-category__item:last-child {
  border-bottom: none;
}

.widget-category__item:last-child .vh-widget-category__link {
  padding-bottom: 0;
}

.widget-category__link {
  display: inline-block;
  padding-bottom: 1rem;
  color: #4e4e4e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-category__link:hover {
  color: #000000;
}

/*---------------------------------------
    2.50 User
-----------------------------------------*/
.user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.user__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.user__img--sm {
  width: 35px;
  height: 35px;
}

.user__img--md {
  width: 45px;
  height: 45px;
}

.user__img--lg {
  width: 50px;
  height: 50px;
}

.user__img--xl {
  width: 70px;
  height: 70px;
}

.user__img--xxl {
  width: 130px;
  height: 130px;
}

.user__img-is {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
    2.51 GMap
-----------------------------------------*/
.gmap {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .gmap {
    position: relative;
    margin-bottom: -130px;
  }
}

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

/*---------------------------------------
    2.52 Auth Form
-----------------------------------------*/
.auth-form {
  position: relative;
}

.auth-form__close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.auth-form__close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.auth-form__bg {
  background-image: url(../img/auth-form-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .auth-form__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .auth-form__content {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.auth-form__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fafafa;
  border-radius: 3px;
}

.auth-form__input {
  display: block;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  border: none;
  background: transparent;
}

.auth-form__input:focus {
  background: transparent;
}

.auth-form__input::-webkit-input-placeholder {
  text-transform: capitalize;
}

.auth-form__input::-moz-placeholder {
  text-transform: capitalize;
}

.auth-form__input:-ms-input-placeholder {
  text-transform: capitalize;
}

.auth-form__input::-ms-input-placeholder {
  text-transform: capitalize;
}

.auth-form__input::placeholder {
  text-transform: capitalize;
}

.auth-form__input-icon {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
}

.auth-form__divider {
  overflow: hidden;
}

.auth-form__divider-text {
  position: relative;
}

.auth-form__divider-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  height: 1px;
  width: 50%;
  background: #d8d7d7;
}

.auth-form__divider-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  height: 1px;
  width: 50%;
  background: #d8d7d7;
}

/*---------------------------------------
    0.3 Theme Style
-----------------------------------------*/
/*---------------------------------------
    3.1 Color
-----------------------------------------*/
.text--primary {
  color: #000000;
}

.text--secondary {
  color: #adb5bd;
}

.text--success {
  color: #1bc5bd;
}

.text--danger {
  color: #f75b60;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #09c2de;
}

.text--dark {
  color: #222736;
}

.t-text-white {
  color: #fff;
}

.t-text {
  color: #4e4e4e;
}

.t-text-heading {
  color: #212121;
  font-size: 13px;
}

/*---------------------------------------
    3.2 Background
-----------------------------------------*/
.bg--primary {
  background: #000000;
}

.bg--secondary {
  background: #adb5bd;
}

.bg--success {
  background: #1bc5bd;
}

.bg--danger {
  background: #f75b60;
}

.bg--warning {
  background: #ff9f43;
}

.bg--info {
  background: #09c2de;
}

.bg--dark {
  background: #222736;
}

.bg--light {
  background: #fff;
}

.bg--light-1 {
  background: #fdfcfb;
}

/*---------------------------------------
    3.3 Padding
-----------------------------------------*/
.t-pt-90 {
  padding-top: 90px;
}

.t-pt-95 {
  padding-top: 95px;
}

.t-pt-100 {
  padding-top: 100px;
}

.t-pt-105 {
  padding-top: 105px;
}

.t-pt-110 {
  padding-top: 110px;
}

.t-pt-115 {
  padding-top: 115px;
}

.t-pt-120 {
  padding-top: 120px;
}

.t-pt-200 {
  padding-top: 200px;
}

.t-pb-50 {
  padding-bottom: 50px;
}

.t-pb-100 {
  padding-bottom: 100px;
}

.t-pb-105 {
  padding-bottom: 105px;
}

.t-pb-120 {
  padding-bottom: 120px;
}

.t-pb-180 {
  padding-bottom: 180px;
}

/*---------------------------------------
    3.4 Margin
-----------------------------------------*/
.t-mt-30 {
  margin-top: 30px;
}

.t-mt-40 {
  margin-top: 40px;
}

.t-mt-60 {
  margin-top: 60px;
}

.t-mt-80 {
  margin-top: 80px;
}

.t-mt-90 {
  margin-top: 90px;
}

.t-mb-30 {
  margin-bottom: 30px;
}

.t-mb-40 {
  margin-bottom: 40px;
}

.t-mb-60 {
  margin-bottom: 60px;
}

/*---------------------------------------
    3.5 Utility Classes
-----------------------------------------*/
.t-heading-font {
  font-family: "DM Serif Display", serif;
}

.t-body-font {
  font-family: "Roboto", sans-serif;
}

.t-lh-1 {
  line-height: 1;
}

.t-link {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.t-link:hover {
  text-decoration: none;
}

.t-link--primary:hover {
  color: #000000;
}

.t-link--danger:hover {
  color: #f75b60;
}

.t-link--info:hover {
  color: #09c2de;
}

.t-link--light:hover {
  color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(34, 39, 54, 0.3);
  box-shadow: 0 5px 10px rgba(34, 39, 54, 0.3);
}

@media screen and (min-width: 992px) {
  .t-short-para {
    color: #000000;
    font-size: 20px;
  }
}

.border-bottom--light {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/*---------------------------------------
    3.6 Animation
-----------------------------------------*/
@-webkit-keyframes about-play {
  0% {
    -webkit-box-shadow: 0 0 0 0 #000000;
    box-shadow: 0 0 0 0 #000000;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
    box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
    box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
  }
}

@keyframes about-play {
  0% {
    -webkit-box-shadow: 0 0 0 0 #000000;
    box-shadow: 0 0 0 0 #000000;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
    box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.7);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
    box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.1);
  }
}

@-webkit-keyframes bttn-video {
  0% {
    -webkit-box-shadow: 0 0 0 0 #000000;
    box-shadow: 0 0 0 0 #000000;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
    box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
    box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
  }
}

@keyframes bttn-video {
  0% {
    -webkit-box-shadow: 0 0 0 0 #000000;
    box-shadow: 0 0 0 0 #000000;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
    box-shadow: 0 0 0 10px rgba(51, 189, 255, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
    box-shadow: 0 0 0 20px rgba(51, 189, 255, 0.04);
  }
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg) translate(-60px) rotate(0deg);
    transform: rotate(0deg) translate(-60px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-60px) rotate(-360deg);
    transform: rotate(360deg) translate(-60px) rotate(-360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg) translate(-60px) rotate(0deg);
    transform: rotate(0deg) translate(-60px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-60px) rotate(-360deg);
    transform: rotate(360deg) translate(-60px) rotate(-360deg);
  }
}

@-webkit-keyframes goright {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes goright {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes goleft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes goleft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes topRight {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  50% {
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes topRight {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  50% {
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes topLeft {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  50% {
    -webkit-transform: translate(80px, 80px);
    transform: translate(80px, 80px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes topLeft {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  50% {
    -webkit-transform: translate(80px, 80px);
    transform: translate(80px, 80px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes circlerotate {
  0% {
    -webkit-transform: rotate(0deg) translate(-60px);
    transform: rotate(0deg) translate(-60px);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-60px);
    transform: rotate(360deg) translate(-60px);
  }
}

@keyframes circlerotate {
  0% {
    -webkit-transform: rotate(0deg) translate(-60px);
    transform: rotate(0deg) translate(-60px);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-60px);
    transform: rotate(360deg) translate(-60px);
  }
}

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

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

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

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

@-webkit-keyframes goTop {
  0% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }

  50% {
    -webkit-transform: translateY(-80px) translateX(-50%);
    transform: translateY(-80px) translateX(-50%);
  }

  100% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
}

@keyframes goTop {
  0% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }

  50% {
    -webkit-transform: translateY(-80px) translateX(-50%);
    transform: translateY(-80px) translateX(-50%);
  }

  100% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
}

/*---------------------------------------
    0.4 Layouts Style
-----------------------------------------*/
/*---------------------------------------
    4.1 Course Section
-----------------------------------------*/
.course-section {
  background-image: url(../img/course-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
}

.course-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(234, 237, 240, 0.92);
  z-index: -1;
}

/*---------------------------------------
    4.2 Feedback Section
-----------------------------------------*/
.feedback-section {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .feedback-section {
    background: -webkit-gradient(linear,
        right top,
        left top,
        color-stop(62%, transparent),
        color-stop(50%, #000000));
    background: linear-gradient(to left, transparent 62%, #000000 50%);
  }
}

/*---------------------------------------
    4.3 CTA Section
-----------------------------------------*/
.cta-section {
  background-image: url(../img/cta-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/*---------------------------------------
    4.4 Footer 1
-----------------------------------------*/
.footer {
  background-color: #363737;
  border-top: 4px solid #ce1126;
}

.footer-top {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

@media screen and (min-width: 992px) {
  .footer-top {
    padding-top: clamp(60px, 16vw, 245px);
  }
}

.footer-copyright {
  padding-top: 12px;
  padding-bottom: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*---------------------------------------
    4.5 Service Section
-----------------------------------------*/
.service-section {
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(30px, 4vw, 60px);
}

@media screen and (min-width: 1920px) {
  .service-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -150px;
    position: relative;
    z-index: 3;
  }
}

/*---------------------------------------
    4.6 Contact Section
-----------------------------------------*/
.contact-section {
  background: #000000;
}

@media screen and (min-width: 768px) {
  .contact-section {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        color-stop(35%, transparent),
        color-stop(35%, #000000));
    background: linear-gradient(to bottom, transparent 35%, #000000 35%);
  }
}

@media screen and (min-width: 992px) {
  .contact-section {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        color-stop(37%, transparent),
        color-stop(37%, #000000));
    background: linear-gradient(to bottom, transparent 37%, #000000 37%);
  }
}

@media screen and (min-width: 1200px) {
  .contact-section {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        color-stop(45%, transparent),
        color-stop(45%, #000000));
    background: linear-gradient(to bottom, transparent 45%, #000000 45%);
  }
}

@media screen and (min-width: 1366px) {
  .contact-section {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        color-stop(38%, transparent),
        color-stop(38%, #000000));
    background: linear-gradient(to bottom, transparent 38%, #000000 38%);
  }
}

.contact-section__title {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .contact-section__title {
    color: #212121;
    padding-bottom: 50px;
  }
}

/*# sourceMappingURL=style.css.map */
/* ---------------new-------------- */
.fs-61 {
  font-size: 61px;
}

.text-justify {
  text-align: justify;
}

.fs-41 {
  font-size: 42px;
}

.capability-hdg {
  font-size: 20px;
  font-weight: 500;
  padding: 15px;
}

.team-card__img p {
  transition: opacity 0.3s ease-in-out;
}

.team-card:hover .team-card__img p {
  opacity: 0;
}

.team-card__overlay {
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-in-out;
}

.team-card:hover .team-card__overlay {
  background: rgb(189 189 188 / 76%);
}

.team-card__overlay p {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.team-card:hover .team-card__overlay p {
  opacity: 1;
  color: #000;
  font-size: 26px;
  font-weight: 600;
}

.fs-35 {
  font-size: 35px;
}

.fs-25 {
  font-size: 12px;
  letter-spacing: 3px;
}

@media screen and (max-width: 991px) {
  .logo {
    max-width: 100%;
    height: 100%;
  }

  .fs-61 {
    font-size: 40px;
  }

  .hero-alt {
    height: calc(20vh - 90px);
    min-height: 147px;
  }

  .fs-41 {
    font-size: 27px;
  }

  .section--sm {
    padding: 15px;
  }

  .section {
    padding: 19px;
  }

  .fs-35 {
    font-size: 28px;
  }

  .our-capability {
    font-size: 26px !important;
    color: #000000 !important;
  }

  .vedio-banner {
    height: 29vh !important;
  }
  .about-new1{
    font-size: 17px  !important;
    text-align: justify !important;
  }
  .btn{
    height: 100% !important;
  }
  form{
    margin: 0 !important;
  }
  .form-control{
    height: 100% !important;
  }
  .industries-title{
    font-size: 1.5rem !important;
  }
  .industries-header{
    padding: 38px 20px !important;
  }
  .search-popup .search-form .form-group .form-control{
    padding: 18px 98px 18px 29px;
  }
  .industries-header{
    /*margin-bottom: 0px !important;*/
  }
}

.about-new1 {
  font-size: 26px;
  color: #000;
}

.our-capability {
  font-size: 40px;
  color: #000000;
}

.footer-li {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0;
  padding: 8px;
  position: relative;
  padding-left: 0;
  font-size: 15px;
}

.footer-copyright {
  border-top: 1px solid #555;
  padding: 15px 0;
  font-size: 14px;
}

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

.footer-bottom {
  font-size: 12px;
  padding: 20px;
  padding-left: 0;
}

.footer-bottom-1 {
  margin-right: 13px;
}

.max-width-1282 {
  max-width: 1282px !important;
}

.supplier-1 {
  padding-top: 8px;
  font-size: 14px;
  color: #212121;
  font-weight: 400;
}

.capability-hdg:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.mission-card,
.vision-card {
  position: relative;
  min-height: 270px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  color: #fff;
}

.mission-card {
  background-image: url('https://img.freepik.com/free-photo/business-strategy-success-target-goals_1421-33.jpg?ga=GA1.1.2143240509.1741159146&semt=ais_hybrid&w=740');
}

.vision-card {
  background-image: url('https://img.freepik.com/free-photo/retinal-biometrics-technology-with-man-s-eye-digital-remix_53876-108518.jpg?ga=GA1.1.2143240509.1741159146&semt=ais_hybrid&w=740');
}

.mission-card:hover,
.vision-card:hover {
  transform: scale(1.02);
}

/* Heading */
.mission-heading,
.vision-heading {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 6px 16px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 12px;
  z-index: 2;
  white-space: nowrap;
}

/* Overlay content */
.mission-overlay,
.vision-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover for desktop only */
@media (hover: hover) and (pointer: fine) {

  .mission-card:hover .mission-overlay,
  .vision-card:hover .vision-overlay {
    opacity: 1;
  }

  .mission-overlay,
  .vision-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .mission-heading,
  .vision-heading {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* On mobile: Always show overlay, avoid absolute positioning */
@media (max-width: 767px) {

  .mission-card:hover .mission-overlay,
  .vision-card:hover .vision-overlay {
    opacity: 1;
    position: static;
    margin-top: 10px;
  }

  .mission-heading,
  .vision-heading {
    position: static;
    transform: none;
    white-space: nowrap;
  }
}


.industries-header {
  position: relative;
  background-image: url('https://img.freepik.com/free-photo/standard-quality-control-concept-m_23-2150041853.jpg?ga=GA1.1.2143240509.1741159146&semt=ais_hybrid&w=740');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  border-radius: 10px;
  color: white;
  text-shadow: 1px 1px 2px #000;
  overflow: hidden;
  z-index: 1;
}

/* Overlay with opacity */
.industries-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* adjust opacity here */
  z-index: -1;
  border-radius: 10px;
}


/* Card Styling */
.industry-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  width: 60px;
  height: 60px;
}

.industries-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://img.freepik.com/free-photo/businessman-interacting-with-futuristic-graphics_23-2151003719.jpg?ga=GA1.1.2143240509.1741159146&semt=ais_hybrid&w=740');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  border-radius: 10px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 50px;
}

.industries-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.industries-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.about-keypointers {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  padding: 13px;
  border-left: 2px solid #f9344d;
  font-size: 15px;
}

body {
  font-family: "Oxygen", sans-serif;
  color: #050505;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.main {
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

.card_image {
  position: relative;
  max-height: 250px;
}

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

.card_price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 0.25rem;
  background-color: #c89b3f;
  font-size: 18px;
  font-weight: 700;
}

.card_price span {
  font-size: 12px;
  margin-top: -2px;
}

.note {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 0.25rem;
  background-color: #c89b3f;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  position: relative;
  padding: 11px 12px 0px 24px;
  margin: 16px 8px 8px 0;
  max-height: 290px;
  overflow-y: scroll;
}

.card_content::-webkit-scrollbar {
  width: 8px;
}

.card_content::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 0;
}

.card_content::-webkit-scrollbar-thumb {
  background: #c89b3f;
  border-radius: 15px;
}

.card_title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.card_title::after {
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #bf1023;
  content: "";
}

hr {
  margin: 24px auto;
  width: 50px;
  border-top: 2px solid #c89b3f;
}

.card_text p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
}

.card_text p:last-child {
  margin: 0;
}

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

html {
  font-family: 'Montserrat', Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
input,
select,
textarea {
  color: #5A5A5A;
  font: inherit;
  margin: 0;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
}

#container {
  border: solid 3px #474544;
  max-width: 768px;
  margin: 60px auto;
  position: relative;
}

form {
  padding: 37.5px;
  margin: 50px 0;
}

h1 {
  color: #474544;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.underline {
  border-bottom: solid 2px #474544;
  margin: -0.512em auto;
  width: 80px;
}

.icon_wrapper {
  margin: 50px auto 0;
  width: 100%;
}

.icon {
  display: block;
  fill: #474544;
  height: 50px;
  margin: 0 auto;
  width: 50px;
}

.email {
  float: right;
  width: 45%;
}

input[type='text'],
[type='email'],
select,
textarea {
  background: none;
  border: none;
  border-bottom: solid 2px #474544;
  color: #474544;
  font-size: 1.000em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0em 0 1.875em 0;
  padding: 0 0 0.875em 0;
  text-transform: uppercase;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type='text']:focus,
[type='email']:focus,
textarea:focus {
  outline: none;
  padding: 0 0 0.875em 0;
}

.message {
  float: none;
}

.name {
  float: left;
  width: 45%;
}

select {
  background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png') no-repeat right;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

.subject {
  width: 100%;
}

.telephone {
  width: 100%;
}

textarea {
  line-height: 150%;
  height: 150px;
  resize: none;
  width: 100%;
}

::-webkit-input-placeholder {
  color: #474544;
}

:-moz-placeholder {
  color: #474544;
  opacity: 1;
}

::-moz-placeholder {
  color: #474544;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #474544;
}

#form_button {
  background: none;
  border: solid 2px #474544;
  color: #474544;
  cursor: pointer;
  display: inline-block;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#form_button:hover {
  background: #474544;
  color: #F2F3EB;
}

@media screen and (max-width: 768px) {
  #container {
    margin: 20px auto;
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 26px;
  }

  .underline {
    width: 68px;
  }

  #form_button {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 18px;
  }

  .icon {
    height: 35px;
    width: 35px;
  }

  .underline {
    width: 53px;
  }

  input[type='text'],
  [type='email'],
  select,
  textarea {
    font-size: 0.875em;
  }
}

.text-black {
  color: #000;
}

.content {
  padding: 7rem 0;
}

.form-control {
  border: none;
  border: 1px solid #d9d9d9;
  border-radius: 0;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.col-form-label {
  color: #000;
}

.btn,
.form-control {
  height: 55px;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

label.error {
  font-size: 12px;
  color: red;
}

#message {
  resize: vertical;
}

#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: #B90B0B;
}

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}

.industries-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.news-date {
  font-size: 0.9rem;
  color: #6c757d;
}

.source {
  font-style: italic;
  color: #6c757d;
  font-size: 0.9rem;
}

.card {
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

.card-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.cap-img {
  height: 230px;
}

.vedio-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}