/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700;800&display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;500;600&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: 'Kanit', sans-serif; */
/* body {
  font-family: 'Kanit', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #151515; } */


body {
  --bg: #fff;
  --bg-2: #f8f9fc;
  --bg-light: #f9f9f9;
  --color-headings: #555;
  --color-headings-2: #FFA200;
  --color-headings-3: #000;
  --color-texts: #555;
  --color-texts-2: #FFA200;
  --border-color: rgba(128, 138, 142, 0.2);
  font-family: 'Kanit', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #151515;
}



* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #151515;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  color: #3E3E3F;
  margin: 0px;
}

/* Base styles (Large screens and up) */
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Medium screens (Tablet: 601px  900px) */
@media (max-width: 900px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
}

/* Small screens (Mobile: 600px) */
@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
}

.mmenu ul, .mmenu ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #151515;
}

a {
  color: #FFA200;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 30px;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: #07294D;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-btn {
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main-btn {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}

.main-btn:hover {
  background-color: #F58220;
  color: #fff;
}

.main-btn.main-btn-2 {
  background-color: #F58220;
  color: #fff;
}

.main-btn.main-btn-2:hover {
  background-color: #07294D;
}

.mul-line-ellipsis {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  /* height: 43px; */
  margin: 10px auto;
  font-size: 15px;
  line-height: 24px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*===== All Slick Slide Outline Style =====*/
.slick-slide {
  outline: 0;
}

/*===== All Section Title Style =====*/
.section-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .section-title {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.section-title .title {
  font-size: 47px;
  line-height: 54px;
  position: relative;
  padding-right: 60px;
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 34px;
    line-height: 40px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 36px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 35px;
    padding-bottom: 20px;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0;
    padding-right: 30px;
  }
}

.section-title .title::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 65%;
  background-color: #07294D;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .section-title .title::before {
    height: 2px;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title::before {
    width: 2px;
    height: 75%;
    left: auto;
    top: 50%;
    right: 0px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.section-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #07294D;
  padding-left: 60px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title p {
    font-size: 16px;
    padding-left: 50px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .section-title p {
    padding-left: 0px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title p {
    padding-left: 30px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 0;
  }
}

.section-title-2 .title {
  font-size: 47px;
  line-height: 54px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-2 .title {
    font-size: 38px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .section-title-2 .title {
    font-size: 30px;
    line-height: 30px;
  }
}

.section-title-2 .line {
  width: 150px;
  background: transparent;
  border: 1px solid #07294D;
  margin-top: 25px;
}

.section-title-2 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #07294D;
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-2 p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .section-title-2 p {
    padding-left: 0px;
    font-size: 16px;
    line-height: 28px;
  }
}

/*===== All Pagination Style =====*/
.pagination-items {
  padding-top: 60px;
}

.pagination-items li {
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .pagination-items li {
    margin: 0 5px;
  }
}

.pagination-items li a {
  font-weight: 500;
  font-size: 18px;
  color: #a2a2a2;
}

@media (max-width: 767px) {
  .pagination-items li a {
    font-size: 14px;
  }
}

.pagination-items li a.active {
  color: #151515;
  padding-right: 90px;
  position: relative;
}

@media (max-width: 767px) {
  .pagination-items li a.active {
    padding-right: 50px;
  }
}

.pagination-items li a.active::before {
  position: absolute;
  content: '';
  width: 75px;
  height: 1px;
  background-color: #151515;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .pagination-items li a.active::before {
    width: 40px;
  }
}

/*===== All Form, Radio & Checkbox Style =====*/
.form-radio input[type="radio"] {
  display: none;
}

.form-radio input[type="radio"]+label {
  font-weight: 500;
  font-size: 14px;
  color: #303030;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: block;
}

.form-radio input[type="radio"]+label span {
  width: 14px;
  height: 14px;
  border: 1px solid #707070;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.form-radio input[type="radio"]+label span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-color: #07294D;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.form-radio input[type="radio"]:checked+label span {
  border-color: #07294D;
}

.form-radio input[type="radio"]:checked+label span::before {
  opacity: 1;
  visibility: visible;
}

.checkbox input[type="checkbox"] {
  display: none;
}

.checkbox input[type="checkbox"]+label {
  position: relative;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #151515;
}

@media (max-width: 767px) {
  .checkbox input[type="checkbox"]+label {
    font-size: 14px;
  }
}

.checkbox input[type="checkbox"]+label span {
  width: 16px;
  height: 16px;
  border: 1px solid #151515;
  position: relative;
  border-radius: 3px;
  top: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .checkbox input[type="checkbox"]+label span {
    width: 14px;
    height: 14px;
  }
}

.checkbox input[type="checkbox"]+label span::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 12px;
  color: #222;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  top: -6px;
  left: 1px;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .checkbox input[type="checkbox"]+label span::before {
    top: -5px;
    left: 0;
  }
}

.checkbox input[type="checkbox"]:checked+label span {
  background-color: #07294D;
  border-color: #07294D;
}

.checkbox input[type="checkbox"]:checked+label span::before {
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.single-form {
  margin-top: 30px;
}

.single-form textarea,
.single-form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #DBDBDB;
  font-weight: 500;
  font-size: 16px;
  color: #303030;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-form textarea:focus,
.single-form input:focus {
  border-color: #F58220;
}

@media (max-width: 767px) {

  .single-form textarea,
  .single-form input {
    height: 45px;
  }
}

.single-form textarea {
  height: 230px;
  padding-top: 15px;
  resize: none;
}

.single-form .main-btn {
  height: 36px;
  line-height: 36px;
  padding: 0 22px;
  font-size: 14px;
}

/*===== All select Style =====*/
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
  height: 40px;
  /* border: 0; */
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem !important;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 8px;
  background-color: white;
  padding: 0;
}

.styledSelect::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #07294D;
  border-right: 1px solid #07294D;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  margin-top: -9px;
}

.styledSelect.active::after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #DBDBDB;
  background-color: #fff;
}

.options li {
  padding: 6px 10px;
  margin: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 14px;
  font-weight: 500;
  color: #151515;
}

.options li:hover {
  background-color: #07294D;
  color: #fff;
}

/*===== Tab Animation ======*/
.tab-pane.active {
  -webkit-animation: tabUp 0.5s;
  -moz-animation: tabUp 0.5s;
  -o-animation: tabUp 0.5s;
  animation: tabUp 0.5s;
}

@-webkit-keyframes tabUp {
  from {
    transform: translate3d(0, 30px, 0);
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
  }
}

@keyframes tabUp {
  from {
    transform: translate3d(0, 30px, 0);
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
  }
}

/*===========================
      02.HEADER css 
===========================*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
}

.header-top {
  background: #07294D;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .header-top-wrapper .header-top-left {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top-wrapper .header-top-left {
    width: auto;
  }
}

.header-top-wrapper .header-top-left .header-meta li a {
  font-family: Exo;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-top-wrapper .header-top-left .header-meta li a:hover {
  color: #8D8D8D;
}

@media (max-width: 767px) {
  .header-top-wrapper .header-top-right {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top-wrapper .header-top-right {
    width: auto;
  }
}

.header-top-wrapper .header-top-right .header-link a {
  font-family: Exo;
  font-weight: 400;
  font-size: 13px;
  color: #8D8D8D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}

.header-top-wrapper .header-top-right .header-link a+a {
  margin-left: 45px;
}

.header-top-wrapper .header-top-right .header-link a:hover {
  color: #fff;
}

.header-top-wrapper .header-top-right .header-link a.register::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -22px;
  background-color: #8D8D8D;
}

.navigation {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .navigation {
    padding: 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #07294D;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: .8s;
    transition-timing-function: ease;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper {
    width: 280px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #07294D;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: .8s;
    transition-timing-function: ease;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
  }
}

.navigation .nav-menus-wrapper .nav-menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu {
    display: block;
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu {
    display: block;
    padding-top: 80px;
  }
}

.navigation .nav-menus-wrapper .nav-menu li {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li {
    border-top: 1px solid rgba(219, 219, 219, 0.15);
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li {
    border-top: 1px solid rgba(219, 219, 219, 0.15);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li:last-child {
    border-bottom: 1px solid rgba(219, 219, 219, 0.15);
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li:last-child {
    border-bottom: 1px solid rgba(219, 219, 219, 0.15);
  }
}

.navigation .nav-menus-wrapper .nav-menu li+li {
  margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navigation .nav-menus-wrapper .nav-menu li+li {
    margin-left: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li+li {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li+li {
    margin-left: 0;
  }
}

.navigation .nav-menus-wrapper .nav-menu li a {
  font-weight: 200;
  font-size: 16px;
  padding: 43px 0;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
  position: relative;
}

.navigation .nav-menus-wrapper .nav-menu .nav-submenu-open li a {
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navigation .nav-menus-wrapper .nav-menu li a {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li a {
    color: #fff;
    padding: 12px 15px 12px 26px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li a {
    color: #fff;
    padding: 12px 15px 12px 26px;
    font-size: 14px;
  }
}

.navigation .nav-menus-wrapper .nav-menu li a.active {
  color: #F58220;
}

.navigation .nav-menus-wrapper .nav-menu li:hover>a {
  color: #F58220;
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
  position: absolute;
  width: 215px;
  background-color: #fff;
  border-top: 2px solid #07294D;
  padding: 10px 0px;
  -webkit-box-shadow: 2px 2px 20px rgba(7, 41, 77, 0.1);
  -moz-box-shadow: 2px 2px 20px rgba(7, 41, 77, 0.1);
  box-shadow: 2px 2px 20px rgba(7, 41, 77, 0.1);
  top: 100%;
  left: 0;
  z-index: 99;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 0;
  }
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li {
  margin-left: 0;
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
  line-height: 1.5;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
    padding: 12px 35px;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
    padding: 12px 35px;
  }
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a i {
  display: block;
  font-size: 13px;
  float: right;
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover>a {
  padding-left: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover>a {
    padding: 12px 35px;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover>a {
    padding: 12px 35px;
  }
}

.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
  top: -12px;
  left: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
    top: 0;
    left: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu li a {
    padding-left: 45px;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu li a {
    padding-left: 45px;
  }
}

.navigation .nav-menus-wrapper .submenu-indicator {
  margin-left: 8px;
  margin-top: 8px;
  float: right;
  transition: all .3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .submenu-indicator {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .submenu-indicator {
    margin: 0;
  }
}

.navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #fff #fff transparent;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
    border-color: transparent #DBDBDB #DBDBDB transparent;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
    border-color: transparent #DBDBDB #DBDBDB transparent;
    margin: 0;
  }
}

.navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
  }
}

@media (max-width: 767px) {
  .navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
  }
}

.navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navigation .nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  cursor: pointer;
}

.navigation .nav-toggle::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #07294D;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #07294D, 0 1em 0 0 #07294D;
}

.navigation .nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #DBDBDB;
  font-size: 26px;
  cursor: pointer;
}

.navigation .header-search {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .header-search {
    position: absolute;
    top: 50%;
    right: 70px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
  }
}

@media (max-width: 767px) {
  .navigation .header-search {
    position: absolute;
    top: 50%;
    right: 70px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .navigation .header-search {
    display: block;
  }
}

.navigation .header-search input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #07294D;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #8d8d8d;
  height: 30px;
}

.navigation .header-search input::placeholder {
  opacity: 1;
  color: #8d8d8d;
}

.navigation .header-search input::-moz-placeholder {
  opacity: 1;
  color: #8d8d8d;
}

.navigation .header-search input::-moz-placeholder {
  opacity: 1;
  color: #8d8d8d;
}

.navigation .header-search input::-webkit-input-placeholder {
  opacity: 1;
  color: #8d8d8d;
}

.navigation .header-search button {
  padding: 0;
  background: none;
  border: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-animation: sticky 1s;
  -moz-animation: sticky 1s;
  -o-animation: sticky 1s;
  animation: sticky 1s;
  -webkit-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
  -moz-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
  box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
  background-color: rgb(0, 0, 0);
}

.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}

.navigation-portrait .submenu-indicator {
  width: 45px;
  height: 45px;
  position: absolute;
  text-align: center;
  z-index: 20000;
  top: 0;
  right: 0;
}

.navigation-portrait .submenu-indicator .submenu-indicator-chevron {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
  -moz-transform: translate(-50%, -50%) rotate(45deg) !important;
  -ms-transform: translate(-50%, -50%) rotate(45deg) !important;
  -o-transform: translate(-50%, -50%) rotate(45deg) !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.navigation-portrait .nav-submenu-open>a .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: translate(-50%, -50%) rotate(225deg) !important;
  -moz-transform: translate(-50%, -50%) rotate(225deg) !important;
  -ms-transform: translate(-50%, -50%) rotate(225deg) !important;
  -o-transform: translate(-50%, -50%) rotate(225deg) !important;
  transform: translate(-50%, -50%) rotate(225deg) !important;
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 999;
}

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

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

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

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

/*===========================
      03.Slider css 
===========================*/
.slider-area {
  padding-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .slider-area {
    padding-top: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area {
    padding-top: 0;
  }
}

.single-slider {
  height: 720px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slider {
    height: 420px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .single-slider {
    height: 520px;
  }

  .sticky-div .svg {
    width: 100%;
  }

  .sticky-div {
    height: 40vh;
  }

  .section.hero {
    height: 40vh;
  }
}

/* .slider-content {
  max-width: 640px; } */
.bg-video-wrap .slider-content {
  text-align: left;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content {
    max-width: 520px;
    text-align: left;
  }

  .bg-video-wrap .slider-content {
    text-align: left;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .slider-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.slider-content .title {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-content .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content .title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .slider-content .title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content .title {
    font-size: 36px;
  }
}

.slider-content .slider-btn {
  padding-top: 40px;
}

.slider-content .slider-btn li {
  display: inline-block;
  margin-top: 10px;
  margin-right: 18px;
}

.slider-content .slider-btn li .main-btn {
  width: 165px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content .slider-btn li .main-btn {
    width: 145px;
  }
}

.slider-active .slick-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: rgba(7, 41, 77, 0.7);
  color: #fff;
  font-size: 20px;
  z-index: 9;
  cursor: pointer;
}

.slider-active .slick-arrow.next {
  left: 45px;
}

/*===== Slider 03 =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-02 .single-slider {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .slider-02 .single-slider {
    background-position: center right;
  }
}

.slider-content-2 {
  margin-left: auto;
  max-width: 480px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content-2 {
    max-width: 360px;
  }
}

/*===== Slider 03 =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-03 .single-slider {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .slider-03 .single-slider {
    background-position: center center;
  }
}

.slider-content-3 {
  margin: 0 auto;
  max-width: 835px;
}

@media (max-width: 767px) {
  .slider-content-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/*===========================
      04.Features css 
===========================*/
.features-area {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area {
    padding-top: 95px;
  }
}

@media (max-width: 767px) {
  .features-area {
    padding-top: 75px;
  }
}

.features-wrapper {
  position: relative;
  z-index: 9;
}

.features-title {
  font-weight: 200;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  color: #555;
}

@media (max-width: 767px) {
  .features-title {
    font-size: 22px;
    line-height: 28px;
  }
}

.features-title span {
  color: #F58220;
  display: contents;
  font-weight: 300;
  font-size: 42px;
}

.features-image {
  margin-top: 50px;
}

.features-mask {
  max-width: 346px;
  height: 378px;
  background: #1f343f;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-mask {
    max-width: 306px;
    height: 348px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-mask {
    position: relative;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .features-mask {
    position: relative;
    margin: 50px auto 0;
  }
}

.features-mask::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(7, 41, 77, 0.95);
}

.features-mask::after {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid #fff;
  border-left: 345px solid transparent;
}

.features-mask .features-mask-content {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  padding: 35px;
}

.features-mask .features-mask-content p {
  font-weight: 600;
  font-size: 28px;
  line-height: 50px;
  color: #fff;
  position: relative;
  padding-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-mask .features-mask-content p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .features-mask .features-mask-content p {
    font-size: 20px;
  }
}

.features-mask .features-mask-content p::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*===== Features 2 =====*/
.features-area-2 {
  padding-top: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area-2 {
    padding-top: 95px;
  }
}

@media (max-width: 767px) {
  .features-area-2 {
    padding-top: 75px;
  }
}

.features-image-2 {
  position: relative;
  z-index: 5;
  max-width: 342px;
  width: 100%;
}

.features-image-2 img {
  width: 100%;
}

.features-image-2::before {
  position: absolute;
  content: '';
  background-color: #07294D;
  width: 80%;
  height: 70%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.features-image-2::after {
  position: absolute;
  content: '';
  background-color: #F1F1F1;
  width: 80%;
  height: 70%;
  bottom: 60px;
  right: 0;
  z-index: -1;
}

.features-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

.features-items .features-items-wrapper .single-features-item {
  max-width: 245px;
  padding: 50px 0;
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features-items .features-items-wrapper .single-features-item {
    padding: 35px 0;
  }
}

@media (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item {
    padding: 35px 0;
  }
}

.features-items .features-items-wrapper .single-features-item+.single-features-item {
  border-top: 1px solid #DBDBDB;
}

@media (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-icon img {
    height: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-icon img {
    height: 50px;
  }
}

.features-items .features-items-wrapper .single-features-item .item-content {
  padding-left: 15px;
}

@media (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-content {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-content {
    padding-left: 15px;
  }
}

.features-items .features-items-wrapper .single-features-item .item-content p {
  color: #07294D;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-content p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-items .features-items-wrapper .single-features-item .item-content p {
    font-size: 18px;
    line-height: 26px;
  }
}

/*===========================
     05.Top Courses css 
===========================*/
.top-courses-area {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-courses-area {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .top-courses-area {
    padding-top: 15px;
  }
}

.courses-wrapper {
  padding-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-wrapper {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .courses-wrapper {
    padding-top: 20px;
  }
}

.courses-wrapper.wrapper-2 {
  padding-top: 10px;
}

.courses-wrapper .courses-col:nth-child(8n+1) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+1) .single-courses {
  background-color: #07294D;
}

.courses-wrapper .courses-col:nth-child(8n+1) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+1) .single-courses .courses-content .duration-rating {
  background-color: #07294D;
}

.courses-wrapper .courses-col:nth-child(8n+2) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+2) .single-courses {
  background-color: #F58220;
}

.courses-wrapper .courses-col:nth-child(8n+2) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+2) .single-courses .courses-content .duration-rating {
  background-color: #F58220;
}

.courses-wrapper .courses-col:nth-child(8n+3) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+3) .single-courses {
  background-color: #2F7AD5;
}

.courses-wrapper .courses-col:nth-child(8n+3) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+3) .single-courses .courses-content .duration-rating {
  background-color: #2F7AD5;
}

.courses-wrapper .courses-col:nth-child(8n+4) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+4) .single-courses {
  background-color: #27B8A7;
}

.courses-wrapper .courses-col:nth-child(8n+4) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+4) .single-courses .courses-content .duration-rating {
  background-color: #27B8A7;
}

.courses-wrapper .courses-col:nth-child(8n+5) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+5) .single-courses {
  background-color: #1EC1D9;
}

.courses-wrapper .courses-col:nth-child(8n+5) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+5) .single-courses .courses-content .duration-rating {
  background-color: #1EC1D9;
}

.courses-wrapper .courses-col:nth-child(8n+6) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+6) .single-courses {
  background-color: #D94DA6;
}

.courses-wrapper .courses-col:nth-child(8n+6) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+6) .single-courses .courses-content .duration-rating {
  background-color: #D94DA6;
}

.courses-wrapper .courses-col:nth-child(8n+7) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+7) .single-courses {
  background-color: #EAB830;
}

.courses-wrapper .courses-col:nth-child(8n+7) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+7) .single-courses .courses-content .duration-rating {
  background-color: #EAB830;
}

.courses-wrapper .courses-col:nth-child(8n+8) .single-courses-2,
.courses-wrapper .courses-col:nth-child(8n+8) .single-courses {
  background-color: #753B76;
}

.courses-wrapper .courses-col:nth-child(8n+8) .single-courses-2 .courses-content .duration-rating,
.courses-wrapper .courses-col:nth-child(8n+8) .single-courses .courses-content .duration-rating {
  background-color: #753B76;
}

.single-courses {
  padding: 28px 25px 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses {
    padding: 18px 15px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-courses {
    padding: 50px 40px;
  }
}

.single-courses .category {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #fff;
}

.single-courses .courses-title a {
  font-family: Exo;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .courses-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .single-courses .courses-title a {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .courses-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

.single-courses .duration-fee {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: 5px;
}

.single-courses .duration-fee .duration {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .duration-fee .duration {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .duration-fee .duration {
    font-size: 12px;
  }
}

.single-courses .duration-fee .fee {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
  padding-left: 26px;
  position: relative;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .duration-fee .fee {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .duration-fee .fee {
    font-size: 12px;
  }
}

.single-courses .duration-fee .fee::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 80%;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

.single-courses .rating {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.single-courses .rating span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .rating span {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .rating span {
    font-size: 12px;
  }
}

.single-courses .rating .star {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-courses .rating .star li {
  font-size: 10px;
  color: #fff;
  margin-left: 5px;
}

.single-courses .courses-link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-top: 1px solid #fff;
  margin-top: 15px;
}

.single-courses .courses-link .apply {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #fff;
  margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .courses-link .apply {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .courses-link .apply {
    font-size: 12px;
  }
}

.single-courses .courses-link .more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #fff;
  margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses .courses-link .more {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses .courses-link .more {
    font-size: 12px;
  }
}

/*===== Courses 2 =====*/
.single-courses-2 .courses-image {
  overflow: hidden;
}

.single-courses-2 .courses-image a {
  display: block;
}

.single-courses-2 .courses-image img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-courses-2 .courses-content {
  padding: 25px 25px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content {
    padding: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-courses-2 .courses-content {
    padding: 30px 40px;
  }
}

.single-courses-2 .courses-content .category {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #fff;
}

.single-courses-2 .courses-content .courses-title a {
  font-family: Exo;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .courses-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .single-courses-2 .courses-content .courses-title a {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .courses-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

.single-courses-2 .courses-content .duration-rating {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 0 25px 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .duration-rating {
    padding: 0px 15px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-courses-2 .courses-content .duration-rating {
    padding: 0px 40px 30px;
  }
}

.single-courses-2 .courses-content .duration-rating .duration-fee {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.single-courses-2 .courses-content .duration-rating .duration-fee .duration {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .duration {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .duration {
    font-size: 12px;
  }
}

.single-courses-2 .courses-content .duration-rating .duration-fee .fee {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
  padding-left: 26px;
  position: relative;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .fee {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .fee {
    font-size: 12px;
  }
}

.single-courses-2 .courses-content .duration-rating .duration-fee .fee::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 80%;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

.single-courses-2 .courses-content .duration-rating .duration-fee .credit {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
  padding-left: 26px;
  position: relative;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .credit {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .duration-rating .duration-fee .credit {
    font-size: 12px;
  }
}

.single-courses-2 .courses-content .duration-rating .duration-fee .credit::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 80%;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

.single-courses-2 .courses-content .duration-rating .rating {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.single-courses-2 .courses-content .duration-rating .rating span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .duration-rating .rating span {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .duration-rating .rating span {
    font-size: 12px;
  }
}

.single-courses-2 .courses-content .duration-rating .rating .star {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-courses-2 .courses-content .duration-rating .rating .star li {
  font-size: 10px;
  color: #fff;
  margin-left: 5px;
}

.single-courses-2 .courses-content .courses-link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  border-top: 1px solid #fff;
  margin-top: 15px;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 1;
  visibility: visible;
}

.single-courses-2 .courses-content .courses-link .apply {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .courses-link .apply {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .courses-link .apply {
    font-size: 12px;
  }
}

.single-courses-2 .courses-content .courses-link .more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-courses-2 .courses-content .courses-link .more {
    font-size: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-courses-2 .courses-content .courses-link .more {
    font-size: 12px;
  }
}

.single-courses-2:hover .courses-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.single-courses-2:hover .courses-content .duration-rating {
  opacity: 1;
  visibility: visible;
}

.single-courses-2:hover .courses-link {
  opacity: 1;
  visibility: hidden;
}

.courses-menu .menu-items li {
  display: inline-block;
  width: 125px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #07294D;
  border: 1px solid #DBDBDB;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  margin-top: 10px;
}

.courses-menu .menu-items li+li {
  margin-left: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-menu .menu-items li+li {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-menu .menu-items li+li {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .courses-menu .menu-items li+li {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-menu .menu-items li {
    width: 110px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-menu .menu-items li {
    width: 100px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .courses-menu .menu-items li {
    width: auto;
    font-size: 14px;
    padding: 0 15px;
    height: 40px;
    line-height: 38px;
  }
}

.courses-menu .menu-items li:hover,
.courses-menu .menu-items li.active {
  background-color: #F58220;
  color: #fff;
  border-color: #F58220;
}

/*===== Courses Page =====*/
.courses-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .courses-list {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.courses-list .courses-image {
  overflow: hidden;
}

.courses-list .courses-image a {
  display: block;
}

.courses-list .courses-image img {
  width: 320px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .courses-list .courses-image img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-list .courses-image img {
    width: 260px;
    height: 250px;
  }
}

.courses-list .courses-content {
  padding: 25px 50px;
  position: relative;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-list .courses-content {
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .courses-list .courses-content {
    padding: 20px 25px;
  }
}

.courses-list .courses-content .courses-fee {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 30px;
  right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-list .courses-content .courses-fee {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .courses-list .courses-content .courses-fee {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 10px;
  }
}

.courses-list .courses-content .courses-content-wrapper {
  max-width: 300px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-list .courses-content .courses-content-wrapper {
    max-width: 270px;
  }
}

.courses-list .courses-content .duration-rating {
  position: relative;
  padding: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-list .courses-content .duration-rating {
    padding: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-list .courses-content .duration-rating {
    padding: 0px;
  }
}

.courses-list:hover .courses-content .courses-link {
  opacity: 1;
  visibility: visible;
}

/*===== Courses Page =====*/
.courses-bar {
  padding-top: 20px;
}

.courses-tab {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.courses-tab .nav {
  padding-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-tab .nav {
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .courses-tab .nav {
    padding-right: 20px;
  }
}

.courses-tab .nav li {
  margin-right: 10px;
}

.courses-tab .nav li a {
  font-size: 20px;
  color: #DFDFDF;
}

.courses-tab .nav li a.active {
  color: #07294D;
}

.courses-tab p {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.courses-bar-form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .courses-bar-form {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-bar-form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.courses-select {
  width: 210px;
  position: relative;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-select {
    width: 160px;
  }
}

@media (max-width: 767px) {
  .courses-select {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-select {
    width: 210px;
  }
}

.courses-select i {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}

.courses-select select {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
  height: 35px;
  border: 0;
  border-bottom: 1px solid #ced4da;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.courses-search {
  width: 270px;
  position: relative;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-search {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .courses-search {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-search {
    width: 210px;
  }
}

.courses-search input {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
  height: 35px;
  border: 0;
  border-bottom: 1px solid #ced4da;
  width: 100%;
}

.courses-search input::placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.courses-search input::-moz-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.courses-search input::-moz-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.courses-search input::-webkit-input-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.courses-search i {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}

/*===========================
     06.Specialty css 
===========================*/
.specialty-area {
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .specialty-area {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .specialty-area {
    padding-top: 50px;
  }
}

.single-specialty::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 80%;
}

.single-specialty .specialty-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 290px;
  margin: 0 auto;
  background: #fff;
  padding: 15px 30px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-specialty .specialty-box {
    padding: 15px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-specialty .specialty-box {
    padding: 15px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-specialty .specialty-box .box-icon img {
    width: 45px;
  }
}

@media (max-width: 767px) {
  .single-specialty .specialty-box .box-icon img {
    width: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-specialty .specialty-box .box-icon img {
    width: 35px;
  }
}

.single-specialty .specialty-box .box-content {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.single-specialty .specialty-box .box-content p {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #07294D;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-specialty .specialty-box .box-content p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .single-specialty .specialty-box .box-content p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-specialty .specialty-box .box-content p {
    font-size: 14px;
    line-height: 20px;
  }
}

.single-specialty.active .specialty-box {
  -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.16);
}

/*===========================
     07.Campus Visit css 
===========================*/
.campus-visit-area {
  padding-top: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-area {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .campus-visit-area {
    padding-top: 80px;
  }
}

.campus-visit-wrapper {
  position: relative;
  z-index: 9;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.campus-visit-wrapper::before {
  position: absolute;
  content: '';
  width: 40%;
  height: 100%;
  background-color: #07294D;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-wrapper::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .campus-visit-wrapper::before {
    display: none;
  }
}

.campus-visit-wrapper::after {
  position: absolute;
  content: '';
  width: 60%;
  height: 100%;
  background-color: #F1F1F1;
  top: 0;
  right: 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-wrapper::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .campus-visit-wrapper::after {
    display: none;
  }
}

.campus-visit-wrapper .campus-image-col {
  width: 50%;
  padding-top: 90px;
  padding-bottom: 85px;
  padding-left: 70px;
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-wrapper .campus-image-col {
    background-color: #07294D;
    width: 100%;
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .campus-visit-wrapper .campus-image-col {
    background-color: #07294D;
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .campus-visit-wrapper .campus-image-col {
    padding: 50px;
  }
}

.campus-visit-wrapper .campus-content-col {
  width: 50%;
  padding-top: 90px;
  padding-bottom: 85px;
  padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-wrapper .campus-content-col {
    background-color: #F1F1F1;
    width: 100%;
    padding: 80px;
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .campus-visit-wrapper .campus-content-col {
    background-color: #F1F1F1;
    width: 100%;
    padding: 20px 20px 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .campus-visit-wrapper .campus-content-col {
    padding: 50px;
    padding-top: 45px;
  }
}

.campus-image {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 35px;
}

.campus-image img {
  width: 100%;
}

.campus-image .slick-arrow {
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  text-transform: capitalize;
  cursor: pointer;
}

.campus-image .slick-arrow i {
  font-size: 13px;
  margin-right: 5px;
}

.campus-image .slick-arrow.next {
  left: 70px;
  margin-left: 5px;
  margin-right: auto;
}

.campus-image .slick-arrow.next::before {
  position: absolute;
  content: '/';
  font-size: 16px;
  color: #fff;
  left: -17px;
  top: 0;
}

.campus-content {
  max-width: 480px;
  margin-left: auto;
  padding: 0 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-content {
    margin-left: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .campus-content {
    padding: 0;
  }
}

.campus-content .campus-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 54px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .campus-content .campus-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .campus-content .campus-title {
    font-size: 24px;
    line-height: 30px;
  }
}

.campus-content .line {
  width: 150px;
  background: transparent;
  border: 1px solid #07294d;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .campus-content .line {
    margin-top: 15px;
  }
}

.campus-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #07294D;
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .campus-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .campus-content p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }
}

.campus-content .video-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 54px;
  color: #07294D;
  margin-top: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .campus-content .video-title {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .campus-content .video-title {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px;
  }
}

.campus-content .play {
  font-weight: 600;
  font-size: 24px;
  line-height: 54px;
  color: #07294D;
  margin-top: 15px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .campus-content .play {
    font-size: 20px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .campus-content .play {
    font-size: 20px;
    line-height: 30px;
  }
}

.campus-content .play i {
  margin-right: 8px;
}

.campus-content .play:hover {
  color: #F58220;
}

/*===== Campus 2 =====*/
.campus-visit-area-2 {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-area-2 {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .campus-visit-area-2 {
    padding-top: 15px;
  }
}

.campus-content-2 {
  margin-left: 0;
}

.campus-image-2 {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.campus-image-2 img {
  width: 100%;
}

.campus-image-2 .campus-title-2 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.15em;
  line-height: 24px;
  text-align: left;
  color: #d5d5d5;
  opacity: 0.45;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 130px;
  left: -15%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .campus-image-2 .campus-title-2 {
    font-size: 24px;
    top: 100px;
    left: -17%;
  }
}

@media (max-width: 767px) {
  .campus-image-2 .campus-title-2 {
    font-size: 14px;
    top: 53px;
    left: -19%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .campus-image-2 .campus-title-2 {
    font-size: 22px;
    top: 100px;
    left: -17%;
  }
}

.campus-image-2 .image-1 {
  width: 90%;
  margin-left: auto;
}

.campus-image-2 .image-2 {
  width: 38%;
}

.campus-image-2 .image-3 {
  width: 62%;
}

.campus-image-2 .more {
  position: absolute;
  bottom: 10px;
  right: 65%;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.campus-image-2 .more i {
  margin-left: 8px;
}

@media (max-width: 767px) {
  .campus-image-2 .more i {
    margin-left: 4px;
  }
}

@media (max-width: 767px) {
  .campus-image-2 .more {
    font-size: 14px;
    bottom: 0;
  }
}

.campus-image-2 .more:hover {
  color: #F58220;
}

/*===== Campus 3 =====*/
.campus-visit-area-3 {
  padding-top: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-area-3 {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .campus-visit-area-3 {
    padding-top: 80px;
  }
}

.campus-visit-area-3 .campus-visit-wrapper::before {
  left: auto;
  right: 0;
}

.campus-visit-area-3 .campus-visit-wrapper::after {
  right: auto;
  left: 0;
  display: none;
}

.campus-visit-area-3 .campus-visit-wrapper .campus-image-col {
  padding-left: 0px;
  padding-right: 70px;
  background-image: url(../images/dot.png);
  background-repeat: repeat;
  background-position: 3px -6px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-image-col {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-image-col {
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-image-col {
    padding: 50px;
  }
}

.campus-visit-area-3 .campus-visit-wrapper .campus-content-col {
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-content-col {
    padding: 80px;
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-content-col {
    padding: 20px;
    padding-top: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .campus-visit-area-3 .campus-visit-wrapper .campus-content-col {
    padding: 50px;
    padding-top: 45px;
  }
}

.campus-visit-area-3 .campus-content {
  margin-left: 0;
  padding: 0px;
  max-width: 450px;
}

.campus-visit-area-3 .campus-image {
  padding-bottom: 0;
  position: relative;
  height: auto;
}

.campus-visit-area-3 .campus-image::before {
  position: absolute;
  content: '';
  bottom: 2px;
  right: 2px;
  background-color: #07294D;
  width: 150px;
  height: 40px;
  z-index: 5;
}

.campus-visit-area-3 .campus-image .slick-arrow {
  left: auto;
  right: 90px;
  bottom: 10px;
}

.campus-visit-area-3 .campus-image .slick-arrow.next {
  left: auto;
  right: 15px;
}

/*===========================
        08.Event css 
===========================*/
.event-area {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-area {
    padding-top: 55px;
  }
}

@media (max-width: 767px) {
  .event-area {
    padding-top: 35px;
  }
}

.event-title-tab-menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .event-title-tab-menu {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-title-tab-menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.event-title-tab-menu .event-title {
  display: inline-block;
}

.event-title-tab-menu .event-title .title {
  font-size: 47px;
  line-height: 54px;
  position: relative;
  padding-right: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-title-tab-menu .event-title .title {
    font-size: 34px;
    line-height: 40px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-title-tab-menu .event-title .title {
    font-size: 36px;
    line-height: 45px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .event-title-tab-menu .event-title .title {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 20px;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-title-tab-menu .event-title .title {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0;
    padding-right: 30px;
  }
}

.event-title-tab-menu .event-title .title::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 65%;
  background-color: #07294D;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .event-title-tab-menu .event-title .title::before {
    height: 2px;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-title-tab-menu .event-title .title::before {
    width: 2px;
    height: 75%;
    left: auto;
    top: 50%;
    right: 0px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.event-tab-menu {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.event-tab-menu .nav {
  padding-left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-tab-menu .nav {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-tab-menu .nav {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .event-tab-menu .nav {
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event-tab-menu .nav {
    padding-left: 30px;
  }
}

.event-tab-menu .nav li+li {
  margin-left: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-tab-menu .nav li+li {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .event-tab-menu .nav li+li {
    margin-left: 10px;
  }
}

.event-tab-menu .nav li a {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  color: #07294D;
  border: 1px solid #DBDBDB;
  padding: 0 30px;
  height: 45px;
  line-height: 43px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-tab-menu .nav li a {
    font-size: 16px;
    padding: 0 20px;
    height: 40px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .event-tab-menu .nav li a {
    font-size: 14px;
    padding: 0 10px;
    height: 40px;
    line-height: 38px;
  }
}

.event-tab-menu .nav li a.active {
  background-color: #F58220;
  border-color: #F58220;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.event-tab-items {
  padding-top: 40px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-tab-items {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .event-tab-items {
    padding-top: 20px;
  }
}

.event-tab-items .view-btn {
  position: absolute;
  top: 25px;
  right: 0;
}

@media (max-width: 767px) {
  .event-tab-items .view-btn {
    position: relative;
  }
}

.event-tab-items .view-btn .view-more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #808080;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.event-tab-items .view-btn .view-more:hover {
  color: #07294D;
}

.single-event {
  background-color: #F1F1F1;
  padding: 50px 25px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event {
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-event {
    padding: 30px 25px;
  }
}

.single-event .time {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  display: block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event .time {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .single-event .time {
    font-size: 14px;
  }
}

.single-event .date {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #F58220;
  display: block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event .date {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .single-event .date {
    font-size: 18px;
    line-height: 30px;
  }
}

.single-event .event-title a {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #07294D;
  margin-top: 11px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event .event-title a {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .single-event .event-title a {
    font-size: 18px;
    line-height: 25px;
  }
}

.single-event .place {
  font-weight: 500;
  font-size: 16px;
  margin-top: 11px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event .place {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .single-event .place {
    font-size: 14px;
  }
}

.single-event .more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: 15px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event .more {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .single-event .more {
    font-size: 13px;
  }
}

.single-event .more i {
  font-size: 11px;
  margin-left: 3px;
}

.single-event:hover {
  background-color: #07294D;
}

.single-event:hover .time {
  color: #fff;
}

.single-event:hover .event-title a {
  color: #fff;
}

.single-event:hover .place {
  color: #fff;
}

.single-event:hover .more {
  color: #fff;
}

/*===== Event 2 =====*/
.event-image img {
  width: 100%;
}

.event-title {
  max-width: 490px;
  margin-left: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-title {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .event-title {
    margin-left: 0;
  }
}

.event-wrapper-2 {
  max-width: 490px;
}

.single-event-2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.single-event-2 .event-date {
  width: 125px;
  height: 125px;
  background-color: #F1F1F1;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .single-event-2 .event-date {
    width: 80px;
    height: 80px;
  }
}

.single-event-2 .event-date .date {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event-2 .event-date .date {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-event-2 .event-date .date {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-event-2 .event-content {
  padding-left: 30px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .single-event-2 .event-content {
    padding-left: 15px;
  }
}

.single-event-2 .event-content .event-title-2 a {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-event-2 .event-content .event-title-2 a {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .single-event-2 .event-content .event-title-2 a {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-event-2 .event-content .event-title-2 a:hover {
  color: #F58220;
}

.single-event-2 .event-content .place {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
}

@media (max-width: 767px) {
  .single-event-2 .event-content .place {
    font-size: 13px;
    line-height: 24px;
  }
}

.single-event-2 .event-content .time {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  display: block;
}

@media (max-width: 767px) {
  .single-event-2 .event-content .time {
    font-size: 13px;
    line-height: 24px;
  }
}

.single-event-2 .event-content .more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .single-event-2 .event-content .more {
    font-size: 12px;
    line-height: 22px;
  }
}

.single-event-2 .event-content .more:hover {
  color: #F58220;
}

.single-event-2:hover .event-date {
  background-color: #F58220;
}

.single-event-2:hover .event-date .date {
  color: #fff;
}

/*===== Event Page =====*/
.event-page {
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-page {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .event-page {
    padding-top: 50px;
  }
}

.event-menu .menu-items li {
  display: inline-block;
  width: 125px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #07294D;
  border: 1px solid #DBDBDB;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  margin-top: 10px;
}

.event-menu .menu-items li+li {
  margin-left: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-menu .menu-items li+li {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-menu .menu-items li+li {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .event-menu .menu-items li+li {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-menu .menu-items li {
    width: 110px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-menu .menu-items li {
    width: 100px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .event-menu .menu-items li {
    width: auto;
    font-size: 14px;
    padding: 0 15px;
    height: 40px;
    line-height: 38px;
  }
}

.event-menu .menu-items li:hover,
.event-menu .menu-items li.active {
  background-color: #F58220;
  color: #fff;
  border-color: #F58220;
}

.event-wrapper {
  padding-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-wrapper {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .event-wrapper {
    padding-top: 20px;
  }
}

/*===========================
     09.Testimonials css 
===========================*/
.testimonials-area {
  overflow: hidden;
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-area {
    padding-top: 55px;
  }
}

@media (max-width: 767px) {
  .testimonials-area {
    padding-top: 35px;
  }
}

.testimonials-title {
  padding-top: 40px;
}

.testimonials-title .title {
  font-weight: bold;
  font-size: 46px;
  line-height: 54px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-title .title {
    font-size: 38px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .testimonials-title .title {
    font-size: 30px;
    line-height: 30px;
  }
}

.testimonials-title .line {
  width: 150px;
  background: transparent;
  border: 1px solid #07294D;
  margin-top: 25px;
}

.testimonials-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #07294D;
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-title p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .testimonials-title p {
    padding-left: 0px;
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-wrapper .testimonials-shape {
  position: absolute;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.testimonials-wrapper .testimonials-shape.shape-1 {
  width: 185px;
  height: 185px;
  left: 0;
  top: 100px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-1 {
    left: 70px;
  }
}

.testimonials-wrapper .testimonials-shape.shape-2 {
  width: 133px;
  height: 133px;
  bottom: -10px;
  left: 0;
}

@media (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-2 {
    bottom: 290px;
  }
}

@media (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-2 {
    bottom: 210px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-2 {
    left: 35px;
    bottom: 190px;
  }
}

.testimonials-wrapper .testimonials-shape.shape-3 {
  width: 45px;
  height: 45px;
  bottom: -5px;
  left: 310px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-wrapper .testimonials-shape.shape-3 {
    left: 265px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-wrapper .testimonials-shape.shape-3 {
    left: 255px;
  }
}

@media (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-3 {
    bottom: 215px;
    left: 235px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonials-wrapper .testimonials-shape.shape-3 {
    left: 375px;
    bottom: 190px;
  }
}

.testimonials-image {
  margin-top: 50px;
}

.testimonials-image .single-testimonial-image {
  text-align: center;
}

.testimonials-image .single-testimonial-image img {
  display: inline-block;
}

.testimonials-image .slick-arrow {
  position: absolute;
  bottom: 100px;
  left: -400px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 24px;
  cursor: pointer;
  z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonials-image .slick-arrow {
    left: -320px;
    bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-image .slick-arrow {
    left: auto;
    right: -57px;
    bottom: auto;
    top: 0;
  }
}

@media (max-width: 767px) {
  .testimonials-image .slick-arrow {
    left: 0;
    bottom: auto;
    top: -30px;
  }
}

.testimonials-image .slick-arrow i {
  margin-left: 3px;
}

.testimonials-content {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .testimonials-content {
    margin-top: 0px;
  }
}

.single-testimonial-content {
  padding: 45px 35px;
  background-color: #F1F1F1;
  border-top: 3px solid #F58220;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-testimonial-content {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .single-testimonial-content {
    padding: 30px 25px;
  }
}

.single-testimonial-content .content-text {
  padding-left: 50px;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .single-testimonial-content .content-text {
    padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-testimonial-content .content-text {
    padding-left: 50px;
  }
}

.single-testimonial-content .content-text i {
  position: absolute;
  top: 4px;
  left: 0;
  color: #F58220;
  font-size: 30px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .single-testimonial-content .content-text i {
    opacity: 0.3;
    z-index: -1;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-testimonial-content .content-text i {
    opacity: 1;
    z-index: auto;
  }
}

.single-testimonial-content .content-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}

@media (max-width: 767px) {
  .single-testimonial-content .content-text p {
    font-size: 14px;
    line-height: 26px;
  }
}

.single-testimonial-content .content-meta {
  margin-top: 20px;
}

.single-testimonial-content .content-meta .name,
.single-testimonial-content .content-meta .designation {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #07294D;
  position: relative;
  display: inline-block;
  margin-right: 13px;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .single-testimonial-content .content-meta .name,
  .single-testimonial-content .content-meta .designation {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  .single-testimonial-content .content-meta .name,
  .single-testimonial-content .content-meta .designation {
    font-size: 13px;
    line-height: 22px;
  }
}

.single-testimonial-content .content-meta .designation {
  padding-left: 15px;
  margin-right: 0;
}

.single-testimonial-content .content-meta .designation::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 70%;
  left: 0;
  background-color: #707070;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*===== Testimonial 2 =====*/
.testimonials-area-2 {
  padding-top: 100px;
}

.testimonial-wrapper-2 {
  position: relative;
}

.testimonial-wrapper-2 .testimonials-shape {
  position: absolute;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.testimonial-wrapper-2 .testimonials-shape.shape-1 {
  width: 185px;
  height: 185px;
  right: 210px;
  top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-1 {
    left: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-1 {
    left: 180px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-1 {
    left: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-1 {
    left: 220px;
  }
}

.testimonial-wrapper-2 .testimonials-shape.shape-2 {
  width: 133px;
  height: 133px;
  bottom: 110px;
  right: 230px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-2 {
    left: 165px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-2 {
    left: 180px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-2 {
    bottom: 70px;
    left: 155px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-shape.shape-2 {
    left: 275px;
  }
}

.testimonial-wrapper-2 .testimonials-content {
  margin-top: 70px;
  padding-left: 90px;
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

.testimonial-wrapper-2 .testimonials-content .single-testimonial-content {
  padding: 45px 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonials-content .single-testimonial-content {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-content .single-testimonial-content {
    padding: 30px 25px;
  }
}

.testimonial-wrapper-2 .testimonials-image {
  margin-top: 50px;
  position: relative;
  margin-left: -190px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonials-image {
    margin-left: -180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonials-image {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-image {
    margin-left: 0;
  }
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image {
  text-align: center;
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image img {
  display: inline-block;
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta {
  background-color: rgba(255, 255, 255, 0.82);
  padding: 0px 30px 6px;
  position: absolute;
  left: 0;
  bottom: 85px;
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .name,
.testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .designation {
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: #07294D;
  position: relative;
  display: inline-block;
  margin-right: 13px;
  margin-top: 6px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .name,
  .testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .designation {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  .testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .name,
  .testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .designation {
    font-size: 13px;
    line-height: 22px;
  }
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .designation {
  padding-left: 15px;
  margin-right: 0;
}

.testimonial-wrapper-2 .testimonials-image .single-testimonial-image .content-meta .designation::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 70%;
  left: 0;
  background-color: #707070;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.testimonial-wrapper-2 .testimonials-image .slick-arrow {
  bottom: auto;
  top: 70%;
  left: auto;
  right: 87px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonials-image .slick-arrow {
    left: auto;
    bottom: 80px;
    right: 67px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-image .slick-arrow {
    left: auto;
    right: 20px;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-2 .testimonials-image .slick-arrow {
    left: auto;
    right: 20px;
    top: 70%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.testimonial-wrapper-2 .testimonials-image .slick-arrow i {
  margin-left: 3px;
}

/*===========================
      10.Counter css 
===========================*/
@media (max-width: 767px) {
  .counter-area {
    padding-top: 75px;
  }
}

.counter-wrapper {
  position: relative;
  z-index: 5;
  padding: 45px 70px 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-wrapper {
    padding: 10px 40px 40px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper {
    padding: 1px 0px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper {
    padding: 1px 15px 30px;
  }
}

.counter-wrapper::before {
  position: absolute;
  content: '';
  background-color: rgba(7, 41, 77, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.counter-wrapper .counter-col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.counter-wrapper .counter-col:first-child {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

.counter-wrapper .counter-col:last-child {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .counter-wrapper .counter-col:nth-child(2n+1) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .counter-col:nth-child(2n+1) {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .counter-wrapper .counter-col:nth-child(2n+2) {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
  }
}

.single-counter .counter-count {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 36px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter .counter-count {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .single-counter .counter-count {
    font-size: 24px;
  }
}

.single-counter p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 33px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-counter p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .single-counter p {
    font-size: 16px;
  }
}

/*===== Counter 2 =====*/
.counter-area-2 {
  padding-top: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area-2 {
    padding-top: 95px;
  }
}

@media (max-width: 767px) {
  .counter-area-2 {
    padding-top: 75px;
  }
}

.counter-wrapper-2 {
  position: relative;
  z-index: 5;
  padding: 55px 60px 85px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-wrapper-2 {
    padding: 10px 40px 40px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 {
    padding: 1px 15px 30px;
  }
}

.counter-wrapper-2::before {
  position: absolute;
  content: '';
  background-color: rgba(7, 41, 77, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.counter-wrapper-2 .counter-col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-col {
    display: block;
    text-align: center;
  }
}

.counter-wrapper-2 .counter-col::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 70%;
  background-color: #DBDBDB;
  bottom: 0;
  left: 0;
  opacity: 0.65;
}

.counter-wrapper-2 .counter-col:first-child {
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

.counter-wrapper-2 .counter-col:first-child::before {
  opacity: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper-2 .counter-col:first-child::before {
    opacity: 0 !important;
  }
}

.counter-wrapper-2 .counter-col:last-child {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-col:nth-child(2n+1)::before {
    opacity: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper-2 .counter-col:nth-child(2n+1)::before {
    opacity: 0.65;
  }
}

/*===========================
      11.Blog css 
===========================*/
.blog-area {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .blog-area {
    padding-top: 70px;
  }
}

.blog-area-2 {
  position: relative;
  padding-top: 112px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area-2 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .blog-area-2 {
    padding-top: 70px;
  }
}

.blog-area-2::before {
  position: absolute;
  content: '';
  max-width: 1300px;
  width: 100%;
  height: 60%;
  background-color: #F1F1F1;
  top: 0;
  left: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-area-2::before {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area-2::before {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area-2::before {
    left: 0;
  }
}

@media (max-width: 767px) {
  .blog-area-2::before {
    left: 0;
  }
}

.blog-area-2 .trending-title {
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 0.1em;
  line-height: 24px;
  color: #d5d5d5;
  opacity: 0.46;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: inline-block;
  position: absolute;
  top: 283px;
  left: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-area-2 .trending-title {
    top: 30px;
    left: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area-2 .trending-title {
    top: 30px;
    left: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area-2 .trending-title {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-area-2 .trending-title {
    display: none;
  }
}

.blog-wrapper {
  padding-top: 35px;
  position: relative;
}

.blog-wrapper .more-post {
  position: absolute;
  top: -35px;
  right: 170px;
  font-weight: 600;
  font-size: 18px;
  color: #07294D;
  border-bottom: 1px solid #707070;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper .more-post {
    right: 0;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .more-post {
    right: 0;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .more-post {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 30px;
    text-align: center;
  }
}

.single-blog {
  background-color: #F1F1F1;
}

.single-blog .blog-image {
  overflow: hidden;
}

.single-blog .blog-image a {
  display: block;
}

.single-blog .blog-image img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
}

.single-blog .blog-content {
  padding: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content {
    padding: 15px;
  }
}

.single-blog .blog-content .meta li {
  display: inline-block;
  position: relative;
}

.single-blog .blog-content .meta li+li {
  margin-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content .meta li+li {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-content .meta li+li {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content .meta li+li {
    margin-left: 20px;
  }
}

.single-blog .blog-content .meta li+li::before {
  position: absolute;
  content: '-';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -18px;
  font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content .meta li+li::before {
    left: -13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-content .meta li+li::before {
    left: -13px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content .meta li+li::before {
    left: -13px;
  }
}

.single-blog .blog-content .meta li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content .meta li a {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content .meta li a {
    font-size: 12px;
  }
}

.single-blog .blog-content .meta li a:hover {
  color: #F58220;
}

.single-blog .blog-content .blog-title a {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: left;
  color: #07294D;
  margin-top: 10px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content .blog-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-content .blog-title a {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content .blog-title a {
    font-size: 18px;
    line-height: 28px;
  }
}

.single-blog .blog-content .blog-title a:hover {
  color: #F58220;
}

.single-blog .blog-content .more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #151515;
  margin-top: 15px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-blog .blog-content .more {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .single-blog .blog-content .more {
    font-size: 14px;
  }
}

.single-blog .blog-content .more i {
  margin-left: 3px;
  font-size: 12px;
}

.single-blog .blog-content .more:hover {
  color: #F58220;
}

.single-blog:hover .blog-image {
  overflow: hidden;
}

.single-blog:hover .blog-image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/*===== Blog Page Style =====*/
.blog-page {
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-page {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .blog-page {
    padding-top: 50px;
  }
}

/*===========================
      12.Newsletter css 
===========================*/
.newsletter-area {
  padding-top: 160px;
  position: relative;
  z-index: 8;
  margin-bottom: -150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-area {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .newsletter-area {
    padding-top: 80px;
  }
}

.newsletter-area .section-title-2 {
  max-width: 355px;
}

.newsletter-area-2 {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  z-index: 8;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-area-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .newsletter-area-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.newsletter-area-2 .section-title-2 {
  max-width: 355px;
}

.newsletter-area-3 {
  padding-bottom: 160px;
  position: relative;
  z-index: 8;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-area-3 {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .newsletter-area-3 {
    padding-bottom: 80px;
  }
}

.newsletter-area-3 .section-title-2 {
  max-width: 355px;
}

.newsletter-wrapper {
  padding: 20px 70px 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter-wrapper {
    padding: 20px 50px 45px;
  }
}

@media (max-width: 767px) {
  .newsletter-wrapper {
    padding: 5px 30px 30px;
  }
}

.newsletter-wrapper .section-title-2 {
  max-width: 355px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  padding-right: 173px;
  border: 0;
  background-color: #E2E2E2;
}

@media (max-width: 767px) {
  .newsletter-form input {
    padding: 0 15px;
    height: 50px;
  }
}

.newsletter-form .main-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  line-height: 70px;
}

@media (max-width: 767px) {
  .newsletter-form .main-btn {
    height: 50px;
    line-height: 50px;
    position: relative;
    margin-top: 10px;
    width: 100%;
  }
}

/*===========================
      13.Footer css 
===========================*/
.footer-area {
  position: relative;
  z-index: 5;
  padding-top: 150px;
}

.footer-area::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(7, 41, 77, 0.95);
  z-index: -1;
}

.footer-area.footer-02 {
  padding-top: 0;
}

.footer-widget {
  padding-top: 110px;
  padding-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget {
    padding-bottom: 95px;
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding-bottom: 75px;
    padding-top: 30px;
  }
}

.footer-widget .footer-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget .footer-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .footer-widget .footer-title {
    font-size: 20px;
  }
}

.footer-link .link-list {
  padding-top: 10px;
}

.footer-link .link-list li {
  margin-top: 25px;
}

.footer-link .link-list li p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-link .link-list li p {
    font-size: 14px;
  }
}

.footer-link .link-list li a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-link .link-list li a {
    font-size: 14px;
  }
}

.footer-link .link-list li a:hover {
  color: #F58220;
}

.footer-widget-wrapper {
  border-top: 1px solid #fff;
  padding-top: 0px;
  margin-top: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-widget-wrapper .footer-social {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .footer-social {
    text-align: center;
    width: 100%;
  }
}

.footer-widget-wrapper .footer-social li {
  display: inline-block;
}

.footer-widget-wrapper .footer-social li+li {
  margin-left: 20px;
}

.footer-widget-wrapper .footer-social li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-widget-wrapper .footer-social li a:hover {
  background-color: #fff;
  color: #F58220;
}

.footer-widget-wrapper .footer-menu {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .footer-menu {
    text-align: center;
    width: 100%;
  }
}

.footer-widget-wrapper .footer-menu .menu li {
  display: inline-block;
}

.footer-widget-wrapper .footer-menu .menu li+li {
  margin-left: 25px;
}

.footer-widget-wrapper .footer-menu .menu li a {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-widget-wrapper .footer-menu .menu li a:hover {
  color: #F58220;
}

.footer-copyright {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.footer-copyright .copyright {
  padding: 13px 0;
}

.footer-copyright .copyright p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .footer-copyright .copyright p {
    font-size: 14px;
  }
}

.footer-copyright .copyright p a {
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-copyright .copyright p a:hover {
  color: #07294D;
}

/*===== Back To Top =====*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  text-align: center;
  display: none;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -moz-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  color: #fff;
  background-color: #07294D;
}

.back-to-top:hover {
  color: #fff;
  background-color: #F58220;
}

/*===========================
      14.About css 
===========================*/
.about-area {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .about-area {
    padding-top: 15px;
  }
}

.about-content {
  max-width: 380px;
}

.about-content .about-title {
  font-weight: bold;
  font-size: 46px;
  line-height: 54px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content .about-title {
    font-size: 38px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .about-content .about-title {
    font-size: 30px;
    line-height: 30px;
  }
}

.about-content .about-title span {
  color: #F58220;
}

.about-content .line {
  width: 150px;
  background: transparent;
  border: 1px solid #07294D;
  margin-top: 25px;
}

.about-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #07294D;
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .about-content p {
    padding-left: 0px;
    font-size: 16px;
    line-height: 28px;
  }
}

.about-content .main-btn {
  width: 160px;
  margin-top: 45px;
}

.about-image {
  position: relative;
  max-width: 665px;
  height: 635px;
  margin-left: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .about-image {
    height: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image {
    height: 550px;
  }
}

.about-image .single-image {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .single-image {
    -webkit-transform: rotate(45deg) scale(0.6);
    -moz-transform: rotate(45deg) scale(0.6);
    -ms-transform: rotate(45deg) scale(0.6);
    -o-transform: rotate(45deg) scale(0.6);
    transform: rotate(45deg) scale(0.6);
  }
}

@media (max-width: 767px) {
  .about-image .single-image {
    position: relative;
    -webkit-transform: rotate(45deg) scale(0.6);
    -moz-transform: rotate(45deg) scale(0.6);
    -ms-transform: rotate(45deg) scale(0.6);
    -o-transform: rotate(45deg) scale(0.6);
    transform: rotate(45deg) scale(0.6);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .single-image {
    position: absolute;
    -webkit-transform: rotate(45deg) scale(0.8);
    -moz-transform: rotate(45deg) scale(0.8);
    -ms-transform: rotate(45deg) scale(0.8);
    -o-transform: rotate(45deg) scale(0.8);
    transform: rotate(45deg) scale(0.8);
  }
}

.about-image .single-image img {
  border-radius: 30px;
}

@media (max-width: 767px) {
  .about-image .single-image img {
    width: 100%;
  }
}

.about-image .single-image::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
}

.about-image .single-image.image-1 {
  top: 72px;
  right: 63px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .single-image.image-1 {
    top: 45px;
  }
}

@media (max-width: 767px) {
  .about-image .single-image.image-1 {
    top: 0;
    right: 0;
    margin: 30px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .single-image.image-1 {
    top: 10px;
    right: 26px;
    margin: 0;
  }
}

.about-image .single-image.image-1::before {
  right: -14px;
  top: -14px;
  background-color: #07294D;
}

.about-image .single-image.image-2 {
  top: 56%;
  left: 29%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .single-image.image-2 {
    top: 53%;
    left: 23%;
  }
}

@media (max-width: 767px) {
  .about-image .single-image.image-2 {
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .single-image.image-2 {
    top: 54%;
    left: 29%;
  }
}

.about-image .single-image.image-2::before {
  right: -12px;
  bottom: -12px;
  background-color: #27B8A7;
}

.about-image .single-image.image-3 {
  top: 31%;
  left: 49px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .single-image.image-3 {
    top: 32%;
  }
}

@media (max-width: 767px) {
  .about-image .single-image.image-3 {
    top: 34%;
    left: -14px;
    position: absolute;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .single-image.image-3 {
    top: 31%;
    left: 49px;
  }
}

.about-image .single-image.image-3::before {
  bottom: -10px;
  left: -10px;
  background-color: #F58220;
}

.about-image .single-image.image-4 {
  top: 38px;
  left: 24%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image .single-image.image-4 {
    top: 47px;
    left: 22%;
  }
}

@media (max-width: 767px) {
  .about-image .single-image.image-4 {
    top: 34%;
    left: auto;
    right: -14px;
    position: absolute;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .single-image.image-4 {
    top: 15px;
    left: 14%;
    right: auto;
  }
}

.about-image .single-image.image-4::before {
  top: -10px;
  left: -10px;
  background-color: #2F7AD5;
}

.about-image .about-icon {
  position: absolute;
}

.about-image .about-icon.icon-1 {
  left: 75px;
  top: 105px;
}

@media (max-width: 767px) {
  .about-image .about-icon.icon-1 {
    left: 30px;
    top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .about-icon.icon-1 {
    left: 40px;
    top: 115px;
  }
}

.about-image .about-icon.icon-2 {
  top: 18px;
  left: 53%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .about-image .about-icon.icon-2 {
    top: 25px;
    left: 80%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .about-icon.icon-2 {
    left: 47%;
    top: 18px;
  }
}

.about-image .about-icon.icon-3 {
  left: 50px;
  bottom: 28%;
}

@media (max-width: 767px) {
  .about-image .about-icon.icon-3 {
    left: 0;
    bottom: 32%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .about-icon.icon-3 {
    left: 50px;
    bottom: 28%;
  }
}

.about-image .about-icon.icon-4 {
  right: 140px;
  bottom: 25%;
}

@media (max-width: 767px) {
  .about-image .about-icon.icon-4 {
    right: 25px;
    bottom: 33%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image .about-icon.icon-4 {
    right: 100px;
  }
}

/*===========================
    15.Inline Library css 
===========================*/
.online-library-area {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .online-library-area {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .online-library-area {
    padding-top: 70px;
  }
}

.online-library-wrapper {
  padding-top: 40px;
}

.single-library {
  background-color: #F1F1F1;
}

.single-library .library-image {
  position: relative;
}

.single-library .library-image a {
  display: block;
}

.single-library .library-image img {
  width: 100%;
}

.single-library .library-image .discount {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  position: absolute;
  top: 28px;
  left: 28px;
}

.single-library .library-content {
  padding: 15px;
}

.single-library .library-content .library-title a {
  font-weight: 600;
  font-size: 18px;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-library .library-content .library-title a:hover {
  color: #F58220;
}

.single-library .library-content .price {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  margin-top: 10px;
}

/*===== Shop Page =====*/
.shop-area {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-area {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .shop-area {
    padding-top: 15px;
  }
}

.shop-bar {
  padding-top: 20px;
}

.shop-showing {
  margin-top: 30px;
}

.shop-showing p {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
}

.shop-bar-form {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .shop-bar-form {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-bar-form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.shop-search {
  width: 270px;
  position: relative;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-search {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .shop-search {
    width: 100%;
  }
}

.shop-search input {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #9c9c9c;
  height: 35px;
  border: 0;
  border-bottom: 1px solid #ced4da;
  width: 100%;
}

.shop-search input::placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.shop-search input::-moz-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.shop-search input::-moz-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.shop-search input::-webkit-input-placeholder {
  opacity: 1;
  color: #9c9c9c;
}

.shop-search i {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}

.shop-wrapper {
  padding-top: 10px;
}

/*===========================
    16.Page Banner css 
===========================*/
.page-banner {
  padding-top: 155px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-banner {
    padding-top: 155px;
  }
}

@media (max-width: 767px) {
  .page-banner {
    padding-top: 190px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-banner {
    padding-top: 155px;
  }
}

.banner-content {
  padding-top: 150px;
  padding-bottom: 140px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .banner-content {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.banner-content .title {
  color: #fff;
  font-weight: 700;
  font-size: 76px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content .title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .banner-content .title {
    font-size: 32px;
  }
}

/*===========================
    17.Teachers css 
===========================*/
.teachers-area {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .teachers-area {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .teachers-area {
    padding-top: 15px;
  }
}

@media only screen and (min-width: 1400px) {
  .teachers-row {
    margin-left: -40px;
    margin-right: -40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .teachers-row {
    margin-left: -40px;
    margin-right: -40px;
  }
}

@media only screen and (min-width: 1400px) {
  .teachers-row .teachers-col {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .teachers-row .teachers-col {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.teachers-wrapper {
  padding-top: 35px;
  position: relative;
}

.single-teacher {
  position: relative;
  z-index: 5;
  padding-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher {
    padding-left: 40px;
  }
}

.single-teacher::before {
  position: absolute;
  content: '';
  width: 60%;
  height: 85%;
  background-color: #F1F1F1;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.single-teacher .teacher-social {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher .teacher-social {
    left: 10px;
  }
}

.single-teacher .teacher-social .social li+li {
  margin-top: 25px;
}

.single-teacher .teacher-social .social li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher .teacher-social .social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
}

.single-teacher .teacher-social .social li a:hover {
  background-color: #F58220;
  border-color: #F58220;
  color: #fff;
}

.single-teacher .teacher-image a {
  display: block;
}

.single-teacher .teacher-image img {
  width: 100%;
}

.single-teacher .teacher-content {
  padding: 20px 15px;
}

.single-teacher .teacher-content .name a {
  font-size: 18px;
  font-weight: 600;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher .teacher-content .name a {
    font-size: 16px;
  }
}

.single-teacher .teacher-content .name a:hover {
  color: #F58220;
}

.single-teacher .teacher-content .designation {
  font-size: 14px;
  color: #151515;
  font-weight: 500;
}

/*===== Teachers Page =====*/
.teachers-page {
  padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .teachers-page {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .teachers-page {
    padding-top: 0px;
  }
}

/*===========================
    18.Courses Sidebar css 
===========================*/
.courses-sidebar .sidebar-title .title {
  font-weight: 500;
  font-size: 24px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .courses-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

.courses-sidebar ul {
  padding-top: 15px;
}

.courses-sidebar ul li {
  padding: 14px 0;
  border-bottom: 1px solid #DBDBDB;
  font-weight: 500;
  font-size: 14px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-sidebar ul li {
    font-size: 12px;
  }
}

.courses-sidebar ul li:last-child {
  border-bottom: 0;
}

.courses-sidebar ul li strong {
  display: block;
  float: right;
  font-weight: 500;
}

.courses-sidebar-category {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-sidebar-category {
    padding: 25px 20px;
  }
}

.courses-sidebar-category .category-items {
  padding-top: 15px;
}

.courses-sidebar-fee {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-sidebar-fee {
    padding: 25px 20px;
  }
}

.courses-sidebar-fee .category-items {
  padding-top: 15px;
}

.courses-sidebar-banner a {
  display: block;
}

.courses-sidebar-banner a img {
  width: 100%;
}

.courses-sidebar-type {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-sidebar-type {
    padding: 25px 20px;
  }
}

.courses-sidebar-type .category-items {
  padding-top: 15px;
}

.courses-features {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-features {
    padding: 25px 20px;
  }
}

.courses-features .sidebar-btn {
  margin-top: 20px;
}

.courses-features .sidebar-btn .main-btn {
  height: 36px;
  line-height: 36px;
  padding: 0 22px;
  font-size: 14px;
}

/*===========================
    19.Courses Details css 
===========================*/
.courses-details {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-details {
    padding-top: 35px;
  }
}

@media (max-width: 767px) {
  .courses-details {
    padding-top: 15px;
  }
}

.courses-details-content .title {
  font-weight: 700;
  font-size: 46px;
  color: #07294D;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-details-content .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .courses-details-content .title {
    font-size: 24px;
  }
}

.courses-details-content p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-content p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-details-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .courses-details-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.courses-details-content .sub-title {
  font-weight: 700;
  font-size: 24px;
  color: #07294D;
  position: relative;
  padding-bottom: 10px;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-details-content .sub-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .courses-details-content .sub-title {
    font-size: 18px;
  }
}

.courses-details-content .sub-title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background-color: #07294D;
  left: 0;
  bottom: 0;
}

.courses-details-content .courses-details-list li {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.courses-details-content .courses-details-list li i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 10px;
}

.courses-details-content .courses-details-list li p {
  margin-top: 0;
}

.courses-details-tab {
  margin-top: 70px;
}

.courses-details-tab .nav li {
  border-left: 1px solid #DBDBDB;
}

@media (max-width: 767px) {
  .courses-details-tab .nav li {
    width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-details-tab .nav li {
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.courses-details-tab .nav li a {
  display: block;
  background-color: #07294D;
  color: #fff;
  text-align: center;
  height: 70px;
  line-height: 70px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .courses-details-tab .nav li a {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-details-tab .nav li a {
    height: 55px;
    line-height: 55px;
  }
}

.courses-details-tab .nav li a.active {
  color: #F58220;
}

.courses-details-tab .benefit-content {
  padding-top: 20px;
}

.courses-details-tab .benefit-content p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-tab .benefit-content p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-details-tab .benefit-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .courses-details-tab .benefit-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.courses-details-tab .benefit-content .courses-details-list li {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.courses-details-tab .benefit-content .courses-details-list li i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 10px;
}

.courses-details-tab .benefit-content .courses-details-list li p {
  margin-top: 0;
}

.courses-details-tab .curriculum-content .single-curriculum {
  padding-top: 45px;
}

.courses-details-tab .curriculum-content .single-curriculum .title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #07294D;
}

.courses-details-tab .curriculum-content .single-curriculum .curriculum-list {
  padding-left: 10px;
}

.courses-details-tab .curriculum-content .single-curriculum .curriculum-list li {
  margin-top: 20px;
}

.courses-details-tab .curriculum-content .single-curriculum .curriculum-list li a {
  font-weight: 500;
  font-size: 16px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-tab .curriculum-content .single-curriculum .curriculum-list li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .courses-details-tab .curriculum-content .single-curriculum .curriculum-list li a {
    font-size: 14px;
  }
}

.courses-details-tab .curriculum-content .single-curriculum .curriculum-list li a i {
  color: #686868;
  margin-right: 5px;
}

.courses-details-tab .curriculum-content .single-curriculum .curriculum-list li a:hover {
  color: #F58220;
}

.courses-details-tab .courses-teachers {
  padding-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-tab .courses-teachers .single-teacher {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-tab .courses-teachers .single-teacher .teacher-social {
    left: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .courses-details-tab .courses-teachers .single-teacher .teacher-social .social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
}

.courses-details-tab .courses-teachers .single-teacher .teacher-social .social li a:hover {
  background-color: #F58220;
  border-color: #F58220;
  color: #fff;
}

.courses-details-tab .courses-reviews .review-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .courses-details-tab .courses-reviews .review-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.courses-details-tab .courses-reviews .review-wrapper .review-star {
  padding-top: 30px;
}

.courses-details-tab .courses-reviews .review-wrapper .review-star .single-review {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .label {
  font-weight: 500;
  font-size: 18px;
  color: #151515;
  width: 85px;
}

@media (max-width: 767px) {
  .courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .label {
    font-size: 14px;
    width: 60px;
  }
}

.courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .review-bar {
  width: 170px;
  height: 14px;
  background-color: #F1F1F1;
  position: relative;
}

@media (max-width: 767px) {
  .courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .review-bar {
    width: 140px;
    height: 10px;
  }
}

.courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .review-bar .bar-inner {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  background-color: #F58220;
}

.courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .value {
  font-weight: 500;
  font-size: 18px;
  color: #151515;
  width: 50px;
  text-align: right;
}

@media (max-width: 767px) {
  .courses-details-tab .courses-reviews .review-wrapper .review-star .single-review .value {
    font-size: 14px;
    width: 40px;
  }
}

.courses-details-tab .courses-reviews .review-wrapper .review-point {
  padding-top: 30px;
}

@media (max-width: 767px) {
  .courses-details-tab .courses-reviews .review-wrapper .review-point {
    margin: 0 50px;
  }
}

.courses-details-tab .courses-reviews .review-wrapper .review-point span {
  font-weight: bold;
  font-size: 70px;
  line-height: 80px;
  color: #07294D;
}

.courses-details-tab .courses-reviews .review-form {
  margin-top: 50px;
}

.courses-details-tab .courses-reviews .review-form .review-rating .title {
  font-weight: 700;
  font-size: 18px;
  color: #07294D;
}

.courses-details-tab .courses-reviews .review-form .review-rating ul {
  margin-top: 20px;
}

.courses-details-tab .courses-reviews .review-form .review-rating ul li {
  display: inline-block;
  color: #E1E1E1;
  cursor: pointer;
}

.courses-details-tab .courses-reviews .review-form .review-rating ul li.selected,
.courses-details-tab .courses-reviews .review-form .review-rating ul li.hover {
  color: #EAB830;
}

/*===========================
    20.Event Details css 
===========================*/
.event-details {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .event-details {
    padding-top: 30px;
  }
}

.event-details-content .title {
  font-weight: 700;
  font-size: 46px;
  color: #07294D;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-content .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .event-details-content .title {
    font-size: 24px;
  }
}

.event-details-content p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-content p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .event-details-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.event-details-content .sub-title {
  font-weight: 700;
  font-size: 24px;
  color: #07294D;
  position: relative;
  padding-bottom: 10px;
  margin-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-content .sub-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .event-details-content .sub-title {
    font-size: 18px;
  }
}

.event-details-content .sub-title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background-color: #07294D;
  left: 0;
  bottom: 0;
}

.event-details-content .event-list li {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.event-details-content .event-list li i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 10px;
}

.event-details-content .event-list li p {
  margin-top: 0;
}

.event-details-content .event-teachers {
  padding-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-content .event-teachers .single-teacher {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-content .event-teachers .single-teacher .teacher-social {
    left: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-content .event-teachers .single-teacher .teacher-social .social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
}

.event-details-content .event-teachers .single-teacher .teacher-social .social li a:hover {
  background-color: #F58220;
  border-color: #F58220;
  color: #fff;
}

.event-details-content .event-schedule-table {
  margin-top: 50px;
}

.event-details-content .event-schedule-table .table thead tr th {
  background-color: #F58220;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
}

.event-details-content .event-schedule-table .table thead tr th.time {
  min-width: 190px;
}

.event-details-content .event-schedule-table .table thead tr th.topics {
  width: 100%;
  min-width: 300px;
}

.event-details-content .event-schedule-table .table thead tr th.speakers {
  min-width: 200px;
}

.event-details-content .event-schedule-table .table tbody tr td {
  background-color: #F1F1F1;
  border: 2px solid #fff;
  font-size: 14px;
  padding: 15px 20px;
  font-weight: 500;
}

.event-details-content .event-schedule-table .table tbody tr td.time {
  text-align: center;
}

.event-details-content .event-schedule-table .table tbody tr td.speakers {
  text-align: center;
}

.event-details-content .event-message p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-details-content .event-message p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-details-content .event-message p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .event-details-content .event-message p {
    font-size: 14px;
    line-height: 24px;
  }
}

.event-details-content .event-message .event-message-form {
  padding-top: 15px;
}

.event-sidebar .sidebar-title .title {
  font-weight: 500;
  font-size: 24px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .event-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

.event-sidebar ul {
  padding-top: 15px;
}

.event-sidebar ul li {
  padding: 14px 0;
  border-bottom: 1px solid #DBDBDB;
  font-weight: 500;
  font-size: 14px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-sidebar ul li {
    font-size: 12px;
  }
}

.event-sidebar ul li:last-child {
  border-bottom: 0;
}

.event-sidebar ul li strong {
  display: block;
  float: right;
  font-weight: 500;
}

.event-features {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .event-features {
    padding: 25px 20px;
  }
}

.event-features .sidebar-btn {
  margin-top: 20px;
}

.event-features .sidebar-btn .main-btn {
  height: 36px;
  line-height: 36px;
  padding: 0 22px;
  font-size: 14px;
}

.event-sidebar-banner a {
  display: block;
}

.event-sidebar-banner a img {
  width: 100%;
}

/*===========================
        21.Gallery css 
===========================*/
.gallery-page {
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-page {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .gallery-page {
    padding-top: 50px;
  }
}

/*===========================
    22.Teachers Details css 
===========================*/
.teacher-details {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .teacher-details {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .teacher-details {
    padding-top: 30px;
  }
}

.single-teacher-details {
  position: relative;
  z-index: 5;
  padding-left: 70px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher-details {
    padding-left: 40px;
    padding-bottom: 40px;
  }
}

.single-teacher-details::before {
  position: absolute;
  content: '';
  width: 60%;
  height: 85%;
  background-color: #F1F1F1;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.single-teacher-details .teacher-social {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher-details .teacher-social {
    left: 10px;
  }
}

.single-teacher-details .teacher-social .social li+li {
  margin-top: 25px;
}

.single-teacher-details .teacher-social .social li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-teacher-details .teacher-social .social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
  }
}

.single-teacher-details .teacher-social .social li a:hover {
  background-color: #F58220;
  border-color: #F58220;
  color: #fff;
}

.single-teacher-details .teacher-image a {
  display: block;
}

.single-teacher-details .teacher-image img {
  width: 100%;
}

.teacher-details-content .teacher-name {
  font-weight: 700;
  font-size: 46px;
  color: #07294D;
  position: relative;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .teacher-details-content .teacher-name {
    font-size: 28px;
  }
}

.teacher-details-content .teacher-name::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background-color: #07294D;
  bottom: 0;
  left: 0;
}

@media (max-width: 767px) {
  .teacher-details-content .teacher-name::before {
    width: 100px;
  }
}

.teacher-details-content .designation {
  font-weight: 600;
  font-size: 24px;
  color: #07294D;
  margin-top: 14px;
}

@media (max-width: 767px) {
  .teacher-details-content .designation {
    font-size: 18px;
  }
}

.teacher-details-content .department {
  font-weight: 500;
  font-size: 18px;
  color: #151515;
}

@media (max-width: 767px) {
  .teacher-details-content .department {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher-details-content .department {
    font-size: 16px;
  }
}

.teacher-details-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #303030;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .teacher-details-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.teacher-details-content .teacher-contact {
  padding-top: 15px;
}

.teacher-details-content .teacher-contact li {
  font-weight: 500;
  font-size: 18px;
  color: #303030;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .teacher-details-content .teacher-contact li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher-details-content .teacher-contact li {
    font-size: 16px;
  }
}

.teacher-details-content .teacher-contact li a {
  color: #303030;
}

.teacher-details-tab {
  padding-top: 70px;
}

.teacher-details-tab .nav li {
  border-left: 1px solid #DBDBDB;
}

@media (max-width: 767px) {
  .teacher-details-tab .nav li {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher-details-tab .nav li {
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.teacher-details-tab .nav li a {
  display: block;
  background-color: #07294D;
  color: #fff;
  text-align: center;
  height: 70px;
  line-height: 70px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .teacher-details-tab .nav li a {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .teacher-details-tab .nav li a {
    height: 55px;
    line-height: 55px;
  }
}

.teacher-details-tab .nav li a.active {
  color: #F58220;
}

.teacher-details-tab .tab-content {
  padding-top: 10px;
}

.teacher-details-tab .single-content-tab {
  margin-top: 40px;
}

.teacher-details-tab .single-content-tab .title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #07294D;
  padding-bottom: 10px;
}

.teacher-details-tab .single-content-tab p {
  font-weight: 500;
  font-size: 16px;
  color: #151515;
}

/*===========================
    23.Shop Sidebar css 
===========================*/
.shop-sidebar .sidebar-title .title {
  font-weight: 500;
  font-size: 24px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .shop-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

.shop-sidebar ul {
  padding-top: 15px;
}

.shop-sidebar ul li {
  padding: 14px 0;
  border-bottom: 1px solid #DBDBDB;
  font-weight: 500;
  font-size: 14px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-sidebar ul li {
    font-size: 12px;
  }
}

.shop-sidebar ul li:last-child {
  border-bottom: 0;
}

.shop-sidebar ul li strong {
  display: block;
  float: right;
  font-weight: 500;
}

.shop-sidebar-category {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-sidebar-category {
    padding: 25px 20px;
  }
}

.shop-sidebar-category .category-items {
  padding-top: 15px;
}

.shop-sidebar-price {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-sidebar-price {
    padding: 25px 20px;
  }
}

.shop-sidebar-price .price-items {
  padding-top: 15px;
}

.shop-sidebar-banner a {
  display: block;
}

.shop-sidebar-banner a img {
  width: 100%;
}

.shop-sidebar-tags {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shop-sidebar-tags {
    padding: 25px 20px;
  }
}

.shop-sidebar-tags .tags-items {
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 20px;
}

.shop-sidebar-tags .tags-items li {
  border-bottom: 0;
  display: inline-block;
  padding: 3px 10px;
}

.shop-sidebar-tags .tags-items li a {
  font-weight: 500;
  font-size: 14px;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-sidebar-tags .tags-items li a:hover {
  color: #F58220;
}

/*===========================
    24.Product Details css 
===========================*/
.product-details-page {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-page {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .product-details-page {
    padding-top: 30px;
  }
}

.product-details-wrapper {
  padding-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-wrapper {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .product-details-wrapper {
    padding-right: 0px;
  }
}

.product-details-content .details-image img {
  width: 100%;
}

.product-details-content .details-content .product-title {
  font-weight: 700;
  font-size: 46px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .product-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .product-details-content .details-content .product-title {
    font-size: 24px;
  }
}

.product-details-content .details-content .price-rating {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.product-details-content .details-content .price-rating .price {
  font-weight: 600;
  font-size: 24px;
  color: #F58220;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .price-rating .price {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .product-details-content .details-content .price-rating .price {
    font-size: 18px;
  }
}

.product-details-content .details-content .price-rating .rating li {
  display: inline-block;
  font-size: 12px;
}

.product-details-content .details-content .price-rating .rating li.rating-on {
  color: #FABB20;
}

.product-details-content .details-content .product-content-wrapper {
  border-top: 1px solid #DBDBDB;
  margin-top: 30px;
}

.product-details-content .details-content .product-content-wrapper p,
.product-details-content .details-content .product-content-wrapper span {
  font-weight: 500;
  font-size: 18px;
  color: #07294D;
}

@media (max-width: 767px) {

  .product-details-content .details-content .product-content-wrapper p,
  .product-details-content .details-content .product-content-wrapper span {
    font-size: 16px;
  }
}

.product-details-content .details-content .product-content-wrapper .stock {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .product-content-wrapper .stock {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .product-details-content .details-content .product-content-wrapper .stock {
    padding: 10px 0;
  }
}

.product-details-content .details-content .product-content-wrapper .colors {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .product-content-wrapper .colors {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .product-details-content .details-content .product-content-wrapper .colors {
    padding: 10px 0;
  }
}

.product-details-content .details-content .product-content-wrapper .colors .product-color {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.product-details-content .details-content .product-content-wrapper .colors .product-color li {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
}

.product-details-content .details-content .product-content-wrapper .colors .product-color li.active::before {
  position: absolute;
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  top: -1px;
  left: 2px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-details-content .details-content .product-content-wrapper .size {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .product-content-wrapper .size {
    padding: 10px 0;
  }
}

.product-details-content .details-content .product-content-wrapper .size .product-size {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.product-details-content .details-content .product-content-wrapper .size .product-size li {
  margin-left: 15px;
}

.product-details-content .details-content .product-content-wrapper .size .product-size li span {
  color: #07294D;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.product-details-content .details-content .product-content-wrapper .size .product-size li.active span {
  color: #F58220;
}

.product-details-content .details-content .product-content-wrapper .quantity {
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-content .details-content .product-content-wrapper .quantity {
    padding: 10px 0;
  }
}

.product-details-content .details-content .product-content-wrapper .quantity .product-quantity {
  border-radius: 50px;
  overflow: hidden;
  margin-left: 20px;
}

.product-details-content .details-content .product-content-wrapper .quantity .product-quantity input {
  width: 40px;
  height: 26px;
  font-weight: 500;
  font-size: 14px;
  color: #07294D;
  border: 0;
  background-color: #F1F1F1;
  text-align: center;
}

.product-details-content .details-content .product-content-wrapper .quantity .product-quantity button {
  width: 26px;
  height: 26px;
  padding: 0;
  background-color: #DBD8D8;
  border: 0;
  font-weight: 500;
  font-size: 12px;
  color: #262626;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-details-content .details-content .product-content-wrapper .quantity .product-quantity button:hover {
  background-color: #F58220;
  color: #fff;
}

.product-details-content .details-content .product-btn {
  padding-top: 40px;
}

.product-details-content .details-content .product-btn .add-cart {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .product-details-content .details-content .product-btn .add-cart {
    height: 40px;
    line-height: 38px;
  }
}

.product-details-content .details-content .product-btn .compare,
.product-details-content .details-content .product-btn .wishlist {
  height: 45px;
  line-height: 43px;
  border: 1px solid #DBDBDB;
  color: #959494;
  font-size: 20px;
  padding: 0 20px;
  vertical-align: middle;
  margin-left: 15px;
  margin-top: 10px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {

  .product-details-content .details-content .product-btn .compare,
  .product-details-content .details-content .product-btn .wishlist {
    padding: 0 15px;
    font-size: 18px;
    height: 40px;
    line-height: 38px;
  }
}

.product-details-content .details-content .product-btn .compare:hover,
.product-details-content .details-content .product-btn .wishlist:hover {
  background-color: #07294D;
  border-color: #07294D;
  color: #fff;
}

.product-details-tab {
  padding-top: 70px;
}

.product-details-tab .nav li {
  border-left: 1px solid #DBDBDB;
}

@media (max-width: 767px) {
  .product-details-tab .nav li {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-tab .nav li {
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.product-details-tab .nav li a {
  display: block;
  background-color: #07294D;
  color: #fff;
  text-align: center;
  height: 70px;
  line-height: 70px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .product-details-tab .nav li a {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-tab .nav li a {
    height: 55px;
    line-height: 55px;
  }
}

.product-details-tab .nav li a.active {
  color: #F58220;
}

.product-details-tab .product-description {
  padding-top: 20px;
}

.product-details-tab .product-description p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-tab .product-description p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-tab .product-description p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .product-details-tab .product-description p {
    font-size: 14px;
    line-height: 24px;
  }
}

.product-details-tab .product-description .product-list li {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.product-details-tab .product-description .product-list li i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}

.product-details-tab .product-description .product-list li p {
  margin-top: 0;
}

.product-details-tab .product-information {
  padding-top: 40px;
}

.product-details-tab .product-information .table tbody tr td {
  border: 0;
  padding: 0;
  vertical-align: middle;
  padding: 2px;
}

.product-details-tab .product-information .table tbody tr td.table-title {
  width: 180px;
  min-width: 180px;
}

.product-details-tab .product-information .table tbody tr td.table-title .title {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  border: 1px solid #DBDBDB;
  padding: 0 20px;
  height: 50px;
  line-height: 48px;
}

.product-details-tab .product-information .table tbody tr td.table-content p {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  padding: 0 20px;
  border: 1px solid #DBDBDB;
  height: 50px;
  line-height: 48px;
  white-space: nowrap;
}

.product-details-tab .product-reviews .review-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product-details-tab .product-reviews .review-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product-details-tab .product-reviews .review-wrapper .review-star {
  padding-top: 30px;
}

.product-details-tab .product-reviews .review-wrapper .review-star .single-review {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.product-details-tab .product-reviews .review-wrapper .review-star .single-review .label {
  font-weight: 500;
  font-size: 18px;
  color: #151515;
  width: 85px;
}

@media (max-width: 767px) {
  .product-details-tab .product-reviews .review-wrapper .review-star .single-review .label {
    font-size: 14px;
    width: 60px;
  }
}

.product-details-tab .product-reviews .review-wrapper .review-star .single-review .review-bar {
  width: 170px;
  height: 14px;
  background-color: #F1F1F1;
  position: relative;
}

@media (max-width: 767px) {
  .product-details-tab .product-reviews .review-wrapper .review-star .single-review .review-bar {
    width: 140px;
    height: 10px;
  }
}

.product-details-tab .product-reviews .review-wrapper .review-star .single-review .review-bar .bar-inner {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  background-color: #F58220;
}

.product-details-tab .product-reviews .review-wrapper .review-star .single-review .value {
  font-weight: 500;
  font-size: 18px;
  color: #151515;
  width: 50px;
  text-align: right;
}

@media (max-width: 767px) {
  .product-details-tab .product-reviews .review-wrapper .review-star .single-review .value {
    font-size: 14px;
    width: 40px;
  }
}

.product-details-tab .product-reviews .review-wrapper .review-point {
  padding-top: 30px;
}

@media (max-width: 767px) {
  .product-details-tab .product-reviews .review-wrapper .review-point {
    margin: 0 50px;
  }
}

.product-details-tab .product-reviews .review-wrapper .review-point span {
  font-weight: bold;
  font-size: 70px;
  line-height: 80px;
  color: #07294D;
}

.product-details-tab .product-reviews .review-form {
  margin-top: 50px;
}

.product-details-tab .product-reviews .review-form .review-rating .title {
  font-weight: 700;
  font-size: 18px;
  color: #07294D;
}

.product-details-tab .product-reviews .review-form .review-rating ul {
  margin-top: 20px;
}

.product-details-tab .product-reviews .review-form .review-rating ul li {
  display: inline-block;
  color: #E1E1E1;
  cursor: pointer;
}

.product-details-tab .product-reviews .review-form .review-rating ul li.selected,
.product-details-tab .product-reviews .review-form .review-rating ul li.hover {
  color: #EAB830;
}

/*===========================
    25.Blog Sidebar css 
===========================*/
.blog-sidebar {
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    padding-right: 0;
  }
}

.blog-sidebar.right-sidebar {
  padding-right: 0;
  padding-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar.right-sidebar {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar.right-sidebar {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar.right-sidebar {
    padding-left: 0;
  }
}

.blog-sidebar .sidebar-title .title {
  font-weight: 500;
  font-size: 24px;
  color: #07294D;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .sidebar-title .title {
    font-size: 20px;
  }
}

.blog-sidebar ul {
  padding-top: 15px;
}

.blog-sidebar ul li {
  padding: 14px 0;
  border-bottom: 1px solid #DBDBDB;
  font-weight: 500;
  font-size: 14px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar ul li {
    font-size: 12px;
  }
}

.blog-sidebar ul li:last-child {
  border-bottom: 0;
}

.blog-sidebar ul li strong {
  display: block;
  float: right;
  font-weight: 500;
}

.blog-sidebar-category {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar-category {
    padding: 25px 20px;
  }
}

.blog-sidebar-category .category-items {
  padding-top: 15px;
}

.blog-sidebar-post {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar-post {
    padding: 25px 20px;
  }
}

.blog-sidebar-post .post-items {
  padding-top: 15px;
}

.blog-sidebar-post .post-items li+li {
  border-top: 1px solid #DBDBDB;
}

.blog-sidebar-post .post-items li .single-post {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.blog-sidebar-post .post-items li .single-post .post-content {
  padding-left: 15px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-sidebar-post .post-items li .single-post .post-content .post-title a {
  font-weight: 600;
  font-size: 16px;
  color: #07294D;
}

.blog-sidebar-post .post-items li .single-post .post-content .more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #151515;
  margin-top: 10px;
}

.blog-sidebar-post .post-items li .single-post .post-content .more i {
  font-size: 11px;
}

.blog-sidebar-banner a {
  display: block;
}

.blog-sidebar-banner a img {
  width: 100%;
}

.blog-sidebar-tags {
  background-color: #F1F1F1;
  padding: 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar-tags {
    padding: 25px 20px;
  }
}

.blog-sidebar-tags .tags-items {
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 20px;
}

.blog-sidebar-tags .tags-items li {
  border-bottom: 0;
  display: inline-block;
  padding: 3px 10px;
}

.blog-sidebar-tags .tags-items li a {
  font-weight: 500;
  font-size: 14px;
  color: #07294D;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.blog-sidebar-tags .tags-items li a:hover {
  color: #F58220;
}

/*===========================
    26.Blog Details css 
===========================*/
.blog-details-page {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-page {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .blog-details-page {
    padding-top: 30px;
  }
}

.blog-details-content .details-content .meta {
  padding-top: 30px;
}

.blog-details-content .details-content .meta li {
  display: inline-block;
  position: relative;
}

.blog-details-content .details-content .meta li+li {
  margin-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .meta li+li {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .details-content .meta li+li {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content .meta li+li {
    margin-left: 20px;
  }
}

.blog-details-content .details-content .meta li+li::before {
  position: absolute;
  content: '-';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -18px;
  font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .meta li+li::before {
    left: -13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .details-content .meta li+li::before {
    left: -13px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content .meta li+li::before {
    left: -13px;
  }
}

.blog-details-content .details-content .meta li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .meta li a {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content .meta li a {
    font-size: 12px;
  }
}

.blog-details-content .details-content .meta li a:hover {
  color: #F58220;
}

.blog-details-content .details-content .title {
  font-weight: 700;
  font-size: 46px;
  color: #07294D;
  margin-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content .title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .details-content .title {
    font-size: 26px;
  }
}

.blog-details-content .details-content p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .details-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.blog-details-content .details-content .blog-list li {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.blog-details-content .details-content .blog-list li i {
  color: #151515;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .blog-list li i {
    font-size: 16px;
  }
}

.blog-details-content .details-content .blog-list li p {
  margin-top: 0;
}

.blog-details-content .details-content .blog-tags {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 45px;
}

.blog-details-content .details-content .blog-tags span {
  font-weight: 700;
  font-size: 18px;
  color: #303030;
}

.blog-details-content .details-content .blog-tags .tags li {
  display: inline-block;
  margin-left: 5px;
}

.blog-details-content .details-content .blog-tags .tags li a {
  font-weight: 500;
  font-size: 18px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .details-content .blog-tags .tags li a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .details-content .blog-tags .tags li a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .details-content .blog-tags .tags li a {
    font-size: 14px;
  }
}

.blog-details-content .blog-comment {
  padding-top: 70px;
}

.blog-details-content .blog-comment .comment-title {
  font-weight: 700;
  font-size: 24px;
  color: #07294D;
  position: relative;
  padding-bottom: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .blog-comment .comment-title {
    font-size: 20px;
  }
}

.blog-details-content .blog-comment .comment-title::before {
  width: 100px;
  height: 2px;
  background-color: #07294D;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
}

.blog-details-content .blog-comment>p {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .blog-comment>p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .blog-comment>p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .blog-comment>p {
    font-size: 14px;
    line-height: 24px;
  }
}

.blog-details-content .blog-comment .comment-items li .single-comment {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .single-comment {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .single-comment {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-author img {
  border-radius: 50%;
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content {
  padding-left: 30px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .single-comment .comment-content {
    padding-left: 0;
    padding-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .single-comment .comment-content {
    padding-left: 25px;
    padding-top: 0;
  }
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content .meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content .meta .name {
  font-weight: 600;
  font-size: 18px;
  color: #151515;
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content .meta .time {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  margin-left: 10px;
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #151515;
  margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .blog-comment .comment-items li .single-comment .comment-content p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .blog-comment .comment-items li .single-comment .comment-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .single-comment .comment-content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content .reply {
  font-weight: 500;
  font-size: 14px;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.blog-details-content .blog-comment .comment-items li .single-comment .comment-content .reply:hover {
  color: #F58220;
}

.blog-details-content .blog-comment .comment-items li .comment-reply {
  padding-left: 130px;
}

@media (max-width: 767px) {
  .blog-details-content .blog-comment .comment-items li .comment-reply {
    padding-left: 0;
  }
}

/*===========================
        27.Contact css 
===========================*/
.contact-area {
  padding-top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-area {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .contact-area {
    padding-top: 50px;
  }
}

.single-contact-info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-contact-info .info-icon i {
  font-size: 24px;
  color: #07294D;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
}

.single-contact-info .info-content {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}

.single-contact-info .info-content .title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #F58220;
  padding-bottom: 15px;
}

.single-contact-info .info-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #151515;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-contact-info .info-content p {
    font-size: 14px;
  }
}

.single-contact-info .info-content p a {
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-contact-info .info-content p a:hover {
  color: #F58220;
}

.contact-form {
  padding-top: 150px;
}

.form-message.success,
.form-message.error {
  font-size: 16px;
  color: #07294D;
  background: #ddd;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px;
}

.form-message.error {
  color: #f00;
}

.contact-title .title {
  font-weight: 700;
  font-size: 24px;
  color: #07294D;
  position: relative;
  padding-bottom: 21px;
}

@media (max-width: 767px) {
  .contact-title .title {
    font-size: 20px;
  }
}

.contact-title .title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background-color: #07294D;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.contact-title p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #151515;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-title p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-title p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .contact-title p {
    font-size: 14px;
    line-height: 24px;
  }
}

.contact-form-wrapper {
  padding-top: 30px;
}

/*===========================
        28.FAQ's css 
===========================*/
.faq-area {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-area {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .faq-area {
    padding-top: 70px;
  }
}

.faq-wrapper {
  padding-top: 42px;
}

.faq-wrapper .accordion .card {
  position: relative;
  padding-left: 40px;
  border: 0;
  margin-top: 50px;
}

.faq-wrapper .accordion .card .question {
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  color: #07294D;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .accordion .card .question {
    font-size: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-wrapper .accordion .card .question {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .accordion .card .question {
    font-size: 24px;
    line-height: 36px;
  }
}

.faq-wrapper .accordion .card .card-header {
  padding: 5px 0;
  border-bottom: 0;
  margin-bottom: 0;
  background: none;
}

.faq-wrapper .accordion .card .card-header a {
  font-weight: 600;
  font-size: 18px;
  color: #F58220;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .accordion .card .card-header a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-wrapper .accordion .card .card-header a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .accordion .card .card-header a {
    font-size: 16px;
  }
}

.faq-wrapper .accordion .card .card-header a.collapsed {
  color: #303030;
}

.faq-wrapper .accordion .card .card-body {
  padding: 0;
  padding-left: 35px;
  position: relative;
  margin-top: 30px;
}

.faq-wrapper .accordion .card .card-body .answer {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #07294D;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .accordion .card .card-body .answer {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-wrapper .accordion .card .card-body .answer {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .accordion .card .card-body .answer {
    font-size: 20px;
  }
}

.faq-wrapper .accordion .card .card-body p {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .accordion .card .card-body p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-wrapper .accordion .card .card-body p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .accordion .card .card-body p {
    font-size: 14px;
    line-height: 26px;
  }

  .faq-wrapper .accordion .card .card-body p br {
    display: none;
  }
}

/*===========================
   29.Login & Register css 
===========================*/
.login-register {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login-register {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .login-register {
    padding-top: 70px;
  }
}

.login-register-content .title {
  font-weight: 700;
  font-size: 24px;
  color: #07294D;
  position: relative;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .login-register-content .title {
    font-size: 20px;
  }
}

.login-register-content .title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 2px;
  background-color: #07294D;
  bottom: 0;
  left: 0;
}

.login-register-form .single-form .forget a {
  font-size: 16px;
  font-weight: 400;
  color: #151515;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 767px) {
  .login-register-form .single-form .forget a {
    font-size: 14px;
  }
}

.login-register-form .single-form .forget a:hover {
  color: #07294D;
}

.login-register-form .single-form .main-btn {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .login-register-form .single-form .main-btn {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}

/*===========================
        30.Notice css 
===========================*/
.notice-area {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .notice-area {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .notice-area {
    padding-top: 70px;
  }
}

.notice-content {
  padding-top: 10px;
}

.single-notice {
  margin-top: 45px;
  position: relative;
  padding-left: 45px;
}

@media (max-width: 767px) {
  .single-notice {
    padding-left: 35px;
  }
}

.single-notice .number {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #07294D;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-notice .number {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-notice .number {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-notice .number {
    font-size: 18px;
    line-height: 26px;
  }
}

.single-notice .notice-title {
  font-weight: 600;
  font-size: 24px;
  color: #303030;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-notice .notice-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-notice .notice-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-notice .notice-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.single-notice p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #303030;
  margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-notice p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-notice p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .single-notice p {
    font-size: 14px;
    line-height: 26px;
  }
}

/*# sourceMappingURL=style.css.map */

/* .header-logo img {
  width: 150px;
} */

.slider-content h3 {
  color: #fff;
  font-weight: 300;
}

.slider-content .title {
  font-weight: 300;
}

.slider-content .title span {
  color: #F58220;
}

.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 770px;
  background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.png) no-repeat center center/cover;
}

.bg-video-wrap video {
  min-width: 1920px;
  min-height: 770px;
  z-index: 1;

}

.bg-video-wrap .overlay {
  width: 100%;
  height: 770px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .3) 50%);
  background-size: 1px 1px;
  z-index: 2;
}

/* .bg-video-wrap h1 {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  max-width: 400px;
  width: 100%;
  height: 50px;
} */
.bg-video-wrap .slider-content {
  z-index: 999;
  padding: 5px;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 37%;
  transform: translate(-50%, -50%);
  align-items: start;
  flex-direction: column;
}

.slider-content .title span {
  color: #F58220;
}

.abt-content {
  /* background-color: #aa21ff; */
  width: 360px;
  padding: 15px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  min-height: 300px;
  background: rgba(0, 0, 0, 0.8);
}

.abt-content h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.abt-content h2 {
  color: #F58220;
  font-size: 20px;
  margin-top: 10px;
}

.abt-content p {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  margin: 15px 0 0;
}

/* .sticky-div .svg {
  background: url(../images/banner-slider-1.jpg) no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
} */

@media (max-width: 1440px) {

  .sticky-div .svg {
    width: 40%;
  }

  .abt-content {
    width: 320px;
  }

  /* .bg-video-wrap .slider-content{
    right: 40%;
  } */
  .single-slider {
    height: 520px;
  }

}



/*footer navigation*/
.menu-footer__nav {
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}

.menu-footer__nav li:not(:last-child)::after {
  color: #fff;
  content: "/";
  font-size: 12px;
  font-weight: bold;
  padding: 0 30px;
  position: relative;
}

.menu-footer__nav li a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2.8px;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
}

.menu-footer__nav li a:hover {
  color: #F58220;
}

@media (max-width: 992px) {
  .menu-footer__nav li:not(:last-child)::after {
    padding: 0 15px;
  }
}

@media (max-width: 478px) {
  .menu-footer__nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
  }

  .menu-footer__nav li::after {
    content: none !important;
  }
}


/*footer social buttons that hidden on half of their height*/
.page_footer {
  background-color: #3E3E3F;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.page_footer::before {
  content: '';
  background: url(../images/about-bg-1.png);
  width: 28%;
  position: absolute;
  height: 100%;
  right: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  z-index: 0;
  top: 0;
}

.page_footer h4.back {
  color: rgba(0, 0, 0, 0.3);
  font-size: 160px;
  font-weight: 900;
  left: 50%;
  line-height: 160px;
  opacity: 0.3;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 0;
}

.page_footer p.spec {
  color: #fff;
  font-size: 50px;
  font-weight: 100;
  line-height: 100px;
}

.page_footer p.spec a {
  color: #fff;
}

.page_footer p.spec span:first-child {
  color: #F58220;
  position: relative;
  top: -3px;
}

.page_footer p.spec .light {
  font-weight: 400;
}

.page_footer__wrap {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .page_footer p.spec {
    font-size: 80px;
  }

  .page_footer h4.back {
    font-size: 150px;
  }
}

@media (max-width: 1200px) {
  .page_footer .page_footer__wrap {
    margin-bottom: 100px;
    margin-top: 100px;
  }

  .page_footer p.spec {
    font-size: 60px;
  }

  .page_footer h4.back {
    font-size: 100px;
    line-height: 100px;
  }

  /* .bg-video-wrap .slider-content{
    right: 40%;
  } */
}

@media (max-width: 500px) {
  .page_footer .page_footer__wrap {
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .page_footer p.spec {
    font-size: 26px;
    line-height: 40px;
  }

  .page_footer h4.back {
    font-size: 120px;
    line-height: 120px;
  }
}

.page_footer.s-parallax {
  background-image: url("../images/parallax/video_section_background.jpg");
}

@media (min-width: 576px) {

  .page_footer a.border-icon:before,
  .page_footer a.bg-icon:before,
  .page_footer a.color-bg-icon:before {
    height: 4.2em;
    line-height: 4.2em;
    width: 4.2em;
  }
}

.page_footer .side-icon-box {
  margin: 0 0 20px;
}

.page_footer .side-icon-box>.icon-styled:first-child {
  margin-right: 0;
  position: relative;
  top: 0.5em;
}

.page_footer .side-icon-box .icon-styled+.media-body {
  margin-left: 20px;
}

.page_footer .col-md-12 .widget_social_buttons {
  margin-bottom: 0;
}

.page_footer .col-md-12 .widget_social_buttons a {
  margin: 0 4px 70px;
}

@media (min-width: 1200px) {
  .page_footer .col-md-12 .widget_social_buttons a {
    margin-bottom: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }

  .page_footer .col-md-12 .widget_social_buttons a:hover {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.page_copyright {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 30px;
  text-transform: uppercase;
}

.page_copyright.cover-background,
.page_copyright.s-parallax {
  background-image: url("../images/parallax/video_section_background.jpg");
}

.item-hover-content {
  overflow: hidden;
  position: relative;
}

.item-hover-content .item-media {
  z-index: 2;
}

.item-hover-content .item-content {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  left: 0;
  position: absolute;
  right: 0;
}

.item-hover-content .item-content h4 {
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 1.4em;
}

.item-hover-content .item-content h4 span {
  font-weight: 900;
}

@media (min-width: 1200px) {
  .item-hover-content.content-padding .item-content {
    padding: 54px 40px;
  }
}

.item-hover-content:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  overflow: visible;
  z-index: 3;
}

.content-show-hover {
  overflow: hidden;
}

.content-show-hover .item-content {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  display: flex;
  display: -webkit-box;
  flex-direction: column;
  justify-content: space-around;
  opacity: 0;
  top: 0;
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.content-show-hover .item-content h4 {
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 1.4em;
}

.content-show-hover .item-content h4 span {
  display: block;
  font-weight: 900;
}

.content-show-hover:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.content-show-hover:hover .item-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.item-gallery {
  background: transparent;
  overflow: hidden;
  position: relative;
}

.item-gallery .item-content h4 {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 5;
}

.item-gallery:hover .item-content h4 {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* .slider-content{ text-align: right;} */

.foot-question {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #F58220;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: -35%;
}

.foot-question h2 {
  font-size: 20px;
  width: 100%;
  color: #fff;
}

.foot-question img {
  width: 70px;
}

.footerPhone {
  font-size: 26px;
  color: #3E3E3F;
}

.footerPhone span {
  font-size: 20px;
  font-weight: 300;
  width: 50px;
}

.footerPri-link {
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 50px 0;
  border-left: 1px solid #E5E5E5;
}

.footerPri-link li a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  text-transform: uppercase;
  color: #555555;
}

.foot-quick-link {
  -webkit-box-pack: start;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  list-style: none;
  padding: 10px 0;
}

.foot-quick-link li:first-child a {
  padding-left: 0;
  border-left: 0
}

.foot-quick-link li a {
  font-size: 15px;
  font-weight: 300;
  padding: 0 20px;
  color: #606060;
  border-left: 1px solid #E5E5E5;
}

.footer-bottom {
  background: #212529;
  padding: 30px 0;
}

.footer-bottom p {
  color: #606060;
  font-weight: 300;
}

.footer-bottom p span {
  color: #F58220;
}

.footer-bottom-link {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  list-style: none;
}

.footer-bottom-link li:first-child a {
  padding-left: 0;
  border-left: 0
}

.footer-bottom-link li a {
  font-size: 14px;
  font-weight: 400;
  padding: 0 20px;
  color: #555555;
  border-left: 1px solid #555555;
}

.foot-quick-link li a:hover,
.footerPri-link li a:hover,
.footer-bottom-link li a:hover {
  color: #F58220;
}

.main-title h1 {
  font-size: 30px;
  font-weight: 300;
  color: #F58220;
}

.main-title h2 {
  font-size: 20px;
  font-weight: 300;
}

.abt-chocko {
  padding: 150px 0;
  background: #F9F9F9;
}

@media (max-width: 984px) {
  .foot-question {
    margin: 0 auto;
  }

  .footerPhone {
    text-align: center;
  }

  .footerPri-link {
    border: 0;
  }

  .page_footer {
    padding: 50px 0;
  }

  .slider-content {
    text-align: center;
  }

  .page_footer p.spec span:first-child {
    top: -2px;
    padding: 3px;
  }

  .foot-quick-link li:first-child a {
    padding-left: 0;
  }
}

.width-auto {
  width: auto;
}


.carousel-indicators li {
  border: none;
  background: #ccc;
}

.carousel-indicators li.active {
  background: #F58220;
}

/* YOUTUBE VIDEO CSS START */
.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 5px;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
  -moz-filter: brightness(75%);
  filter: brightness(75%);
}

.youtube-player .play {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("../images/YT-play-button.png") no-repeat;
  cursor: pointer;
}

/* YOUTUBE VIDEO CSS END */




.main_banner {
  width: 100%;
  aspect-ratio: 32 / 15;
  /* height: 95vh; */
  position: relative;
  overflow: hidden;
  font-family: 'Kanit', sans-serif;
  background: #151515;
}

.main_banner ul {
  list-style: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* background: red; */
  overflow: hidden;
}

.main_banner ul li {
  width: 100%;
  text-align: center;
  padding: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  border: 1px solid rgb(52 49 49 / 50%);
  /* height: 96vh; */
  height: 100%;
}

.main_banner ul li:hover {
  background: rgba(0, 0, 0, 0.5);
}

.main_banner ul li a {
  text-decoration: none;
  color: #fff;
  font-family: sans-serif;
  font-size: 18px;
}

.main_banner .bg_image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image .5s ease;
}

/* .main_banner ul li:first-child{
  background: url("../images/banner-slider-1.jpg");
} */
/* Common style */
.grid {
  font-family: 'Kanit', sans-serif;
  font-weight: normal;
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  /* background: #3085a3; */
  text-align: center;
  cursor: pointer;
  /* height: 92vh; */
  height: 100%;
}

/* .grid figure h1 {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: auto;
  height: 90%;
  font-weight: 100;
  font-family: 'Kanit', sans-serif;
  color: #fff;
  -webkit-transform: translate3d(0,10px,0);
  transform: translate3d(0,10px,0);
} */


.grid figure figcaption {
  padding: 0 20px;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, 50% 0);
  transform: translate3d(0, 50%, 0);
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 5%;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}



figure.effect-sadie figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}

/* figure.effect-sadie h2 {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  font-weight: 300;
  color: #fff;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
} */

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
  opacity: 0;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  height: 120px;
  /* position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 2em 2em;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  font-weight: 300;
  font-family: 'Kanit', sans-serif;
  color: #fff;
  text-transform: initial;
  font-size: 13px;
  line-height: 20px; */
}

figure.effect-sadie:hover figcaption {
  color: #fff;
  -webkit-transform: translate3d(0, -65%, 0) translate3d(0, 100px, 0);
  transform: translate3d(0, -65%, 0) translate3d(0, 100px, 0);
}

figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p{
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  font-size: 13px;
  line-height: 20px;
  height: auto;
}
figure.effect-sadie:hover a{
  opacity: 1;
}




.wrap {
  overflow: hidden;
}

.carousel-services {
  display: flex;
  left: -100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transform: translateX(100%);
  height: 100%;
}

@media (min-width: 30em) {
  .carousel-services {
    left: -50%;
    transform: translateX(50%);
  }
}

@media (min-width: 40em) {
  .carousel-services {
    left: -33.33333%;
    transform: translateX(33.33333%);
  }
}

.carousel-services.is-reversing {
  transform: translateX(-100%);
}

@media (min-width: 30em) {
  .carousel-services.is-reversing {
    transform: translateX(-50%);
  }
}

@media (min-width: 40em) {
  .carousel-services.is-reversing {
    transform: translateX(-33.33333%);
  }
}

.carousel-services.is-set {
  transform: none;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-seat {
  flex: 1 0 100%;
  order: 2;
}

@media (min-width: 30em) {
  .carousel-seat {
    flex-basis: 50%;
  }
}

@media (min-width: 40em) {
  .carousel-seat {
    flex-basis: 33.33333%;
  }
}

.carousel-seat.is-ref {
  order: 1;
}

.carousel-seat h2 {
  color: #aaa;
  font-size: 3em;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: center;
}

.controls {
  /* padding: 2em;
  text-align: center;
  position: absolute; */
  width: 300px;
  min-height: 300px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.controls button {
  background: #aaa;
  border: 0;
  border-radius: 0.25em;
  color: #eee;
  padding: 0.5em 1em;
}

.controls button:hover,
.controls button:focus {
  background: magenta;
}




.testimonial-item.equal-height.style-6 {
  background-color: #eee;
  border-radius: 10px;
  margin: 10px;
}

.cell-right {
  text-align: center;
  margin-right: 80px;
  padding-top: 35px;
  padding-bottom: 20px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-content.quote {
  padding: 17px 55px;
}

.et_right_sidebar #main-content .container:before {
  display: none;
}

#main-content .container {
  padding-top: 10px;
}

i.fa.fa-quote-left {
  padding: 0px 10px;
  color: #999;
}



.testimonial {
  /* background-color: white;
  text-align: center;
  padding: 30px 30px 50px;
  margin: 100px 15px 160px; */
  position: relative;
}

/* .testimonial::before,
.testimonial::after {
  content: "";
  border-top: 40px solid white;
  border-right: 125px solid transparent;
  position: absolute;
  bottom: -40px;
  left: 0;
}

.testimonial::after {
  border-right: none;
  border-left: 125px solid transparent;
  left: auto;
  right: 0;
} */

.testimonial .icon {
  display: inline-block;
  font-size: 80px;
  color: #016d9b;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial .description {
  font-size: 14px;
  color: #777;
  text-align: justify;
  margin-bottom: 30px;
  opacity: 0.9;
}

.testimonial .testimonial-content {
  width: 100%;
  left: 0;
  position: absolute;
}

.testimonial .pic {
  display: inline-block;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 4px 4px #016d9b;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
}

.testimonial .name {
  font-size: 15px;
  font-weight: bold;
  color: white;
  text-transform: capitalize;
  margin: 10px 0 5px 0;
}

.testimonial .title {
  display: block;
  font-size: 14px;
  color: #ffd9b8;
}

.owl-controls {
  margin-top: 20px;
}

.owl-pagination {
  display: flex;
  justify-content: center;
}

.owl-page {
  height: 10px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
  margin-left: 10px;
}

.why-chooseus {
  padding: 80px 0;
}


/* 
.main_div
  {
  text-align:center;
  background: #00C492;
  padding:20px; width: 400px;
  }
.inner_div
  {
  background: #fff;
  margin-top:20px;
  height: 100px;
  }
.buttons a
  {
  font-size: 16px;
  }
.buttons a:hover
  {
  cursor:pointer;
  font-size: 16px;
  } */
/* Android 2.3 :checked fix */
@-webkit-keyframes fake {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes fake {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}


.tabs ul {
  margin: 0;
  padding: 0 0 1em 0;
  font-weight: bold;
}

.tabs ul li {
  background: #eee;
}

.tabs ul li a {
  padding: 0.5em 1em;
}

.tabs ul li a:hover,
.tabs ul li a.active {
  background: #444;
  color: #eee;
}

.item {
  margin-bottom: 2px;
}

.item::before {
  cursor: pointer;
  font-weight: bold;
  background: #eee;
  padding: 0.5em;
  display: block;
}

.item.active::before {
  background: #444;
  color: #eee;
}

.item.active .item-content {
  padding: 1em;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media all and (min-width: 800px) {
  .item.active .item-content {
    padding-top: 0;
  }

  .tabs-side .tabs li {
    margin-bottom: 2px;
  }
}

/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/
.tabbed-content .tabs {
  display: none;
}

.tabbed-content .item {
  min-height: 2em;
}

.tabbed-content .item::before {
  content: attr(data-title);
}

.tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media all and (min-width: 800px) {
  .tabbed-content .tabs {
    display: block;
  }

  .tabbed-content .tabs li {
    display: inline-block;
  }

  .tabbed-content .tabs li a {
    display: block;
  }

  .tabbed-content .item {
    min-height: 0;
  }

  .tabbed-content .item::before {
    display: none;
  }

  .tabbed-content.tabs-side .tabs {
    width: 150px;
    float: left;
  }

  .tabbed-content.tabs-side .tabs li {
    display: block;
  }

  .tabbed-content.tabs-side .item {
    margin-left: 150px;
  }
}


@media (max-width: 1920px) {
  figure.effect-sadie h2 {
    font-size: 25px;
    color: #fff;
    font-weight: 300;
  }
}

@media (max-width: 1440px) {
  figure.effect-sadie h2 {
    font-size: 20px;
    bottom: 10%;   color: #fff;
    margin: 0 0 10px;
    FONT-WEIGHT: 300;
  }
}

@media (max-width: 768px) {
  figure.effect-sadie h2 {
    bottom: 6%;
  }

  .abt-chocko,
  .why-chooseus {
    padding: 80px 0;
  }

  .footer-bottom,
  footer h3 {
    text-align: center;
  }

  .footer-bottom-link,
  .foot-quick-link {
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
  }
}

.container-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topText {
  font-size: 18px;
  font-weight: bold;
}

/* .selectSection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  text-align: center;
  margin-top: 0;
} */

.selectSection button {
  font-size: 18px;
  background: #fff;
  margin-left: 0;
  border: 0;
  padding: 0 10px;
  margin-bottom: 0;
  min-height: 80px;
  color: #9B9B9B;
  width: 100%;
  border-bottom: 1px solid #DDDDDD; 
  text-align: left;
  position: relative;
  font-weight: 300;
  /* -webkit-transition: 1s ease-in-out;
 -moz-transition: 1s ease-in-out;
 -o-transition: 1s ease-in-out;
 transition: 1s ease-in-out; */
}

/* .selectSection button:nth-child(1n) { background: #F9F9F9; }
.selectSection button:nth-child(2n) { background: #F2F2F2; }
.selectSection button:nth-child(3n) { background: #F2F2F2; }
.selectSection button:nth-child(4n) { background: #F9F9F9; }
.selectSection button:nth-child(5n) { background: #F9F9F9; }
.selectSection button:nth-child(6n) { background: #F2F2F2; } */

.selectSection button.activeTab {
  background-color: #FFF8F3 !important;
  color: #F58220;
  font-weight: 300;
  margin-bottom: 0;
  min-height: 80px;
  width: 100%;
  border-bottom: 2px solid #F58220;
  /* -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); */
}

.selectSection button:hover {
  cursor: pointer;
  /* -webkit-transform: scale(1.1);
 -moz-transform: scale(1.1);
 -o-transform: scale(1.1);
 -ms-transform: scale(1.1);
 transform: scale(1.1); */
}
.selectSection button::after {
  content: '\f054';
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 18px;
    position: absolute;
    right: 5%;
    top: 38%;
}

.content:not(:first-child) {
  display: none;
}

.contentSection {
  margin: 0;
  display: block;
  color: #666;
  display: grid;
}
.contentSection h4{ font-weight: 300; padding-bottom: 20px;}
.abt-content-mob {
  width: 100%;
  padding: 50px 15px;
  display: flex;
  background: #3E3E3F;
}

.abt-content-mob h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}

.abt-content-mob h2 {
  color: #F58220;
  font-size: 20px;
  margin-top: 10px;
}

.abt-content-mob p {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  margin: 15px 0 0;
}

@media (max-width: 1440px) {

  .bg-video-wrap .slider-content {
    transform: translate(-100%, -50%);
    left: 40%;
  }

}




video.fullscreen {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

video.fullscreen::-webkit-media-controls {
  display: none !important;
}

.videoscontainer {
  position: relative;
  display: grid;
  place-items: center;
  height: 720px;
  width: 100%;
  margin: 0 auto;
  background: #ccc;
}

.videoscontainer .contenthead {
  z-index: 1;
  position: absolute;
  left: 5%;
}

@media (max-width: 1440px) {
  .videoscontainer {
    height: 520px;
  }
}


@media (max-width: 640px) {
  .video.fullscreen {
    width: auto;
  }

  .videoscontainer .contenthead {
    z-index: 1;
    position: relative;
    left: 6%;
    width: 100%;
  }
}






.glass {
  position: absolute;
  background: inherit;
  overflow: hidden;
  width: 60%;
  height: 45%;
  /* border-radius: 16px; */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
              0 6px 20px rgba(0, 0, 0, 0.15); */
  z-index: 1;
  bottom: -30px;
}

.glass:before {
  content: '';
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  box-shadow: inset 0 0 500px rgba(255, 255, 255, .4);
  filter: blur(10px);
  z-index: -1;
}

.innerBanner-heading {
  /* -webkit-backdrop-filter: blur(10px); */
  backdrop-filter: blur(10px);
  background: rgb(0 0 0 / 10%);
  padding: 30px;
  clip-path: polygon(85% 0, 100% 30%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.innerBanner-heading h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  color: #fff; line-height: 45px;
}
@media screen and (max-width: 1200px) {
  .innberBanner-bg {
    height: 400px !important;
  }
}
.innerBanner-heading h2 span {
  color: var(--color-texts-2); display: block;
}

.innerBanner-heading a {
  color: white;
  font-size: 20px;
  font-family: Kanit;
  font-weight: 300;
  line-height: 30px;
  word-wrap: break-word;
  margin: 20px 0 0;
}

.innerBanner-heading a:hover {
  color: var(--color-texts-2);
}

.thumbnail {
  /* position: relative; */
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  overflow: hidden
}

.thumbnail > img {
  max-width: 100%;
  /* height: 100%; */
  width: 100%;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1;
}

.thumbnail:hover > img {
  transform: scale(1.1)
}



.card .infos {
  width: auto;
  height: 350px;
  position: relative;
  padding: 14px 24px;
  background: #fff;
  transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}

.card .infos .title {
  position: relative;
  margin: 10px 0;
  letter-spacing: 3px;
  color: #152536;
  font-size: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 0px #32577f;
}





article {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 350px;
  transform: translate(-50%, -50%) translateZ(0);
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  height: 100px;
}

article .infos {
  width: auto;
  position: relative;
  padding: 15px;
  background: #fff;
  transition: 0.4s ease-in-out;
  height: 100px;
  overflow: hidden;
  border-bottom: 2px solid #F58220;
  text-align: center;
}

article .infos .title {
  position: relative;
  margin: 10px 0;
  letter-spacing: 3px;
  color: #152536;
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  text-shadow: 0 0 0px #32577f;
}

article .infos .txt {
  font-size: 0.95rem;
  color: rgba(21, 37, 54, 0.7);
  opacity: 0;
  transition: 0.2s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  text-align: center;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

article .infos .details {
  /* position: absolute; */
  /* bottom: 0; */
  width: fit-content;
  white-space: nowrap;
  padding: 10px 24px;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  /* transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03); */
  /* width: 50%; */
  border: 1px solid #fff;
  border-radius: 50px;
  /* margin: 0 auto 20px; */
  margin-left: auto;
  margin-right: auto;
  /* left: 0; */
  /* right: 0; */
  text-align: center;
  font-family: 'Kanit', sans-serif;
}

article:hover .infos {
  /* transform: translateY(-160px); */
  /* height: 260px; */
  background: #F58220;
}

article:hover .infos .seats,
article:hover .infos .txt,
article:hover .infos .details {
  opacity: 1;
  color: #fff;
  font-weight: 300;
}




.thumbnail:hover>article .infos {
  transform: translateY(-136px);
  height: 237px;
  /* height: auto; */
  background: #F58220;
  color: #fff;
}
.thumbnail:hover > article .infos:not(:has(.txt)) {
    transform: translateY(-60px);
    height: 160px;
    transform: translateY(-40px);
    height: 140px;
}


.thumbnail:hover>article .infos .txt,
.thumbnail:hover>article .infos h3.date,
.thumbnail:hover>article .infos .details {
  color: #fff;
  opacity: 1;
}

article:hover .infos h3.date {
  color: #fff;
}

.thumbnail:hover>article .infos .details:hover {
  background: #000;
}

article .infos h3.date {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 14px;
  transition: 0.5s cubic-bezier(0.17, 0.67, 0.5, 1.03);
}


/* ABOUT US START */

/* ABOUT US END */

/* EVENTS START */
.events-sec {
  padding: 80px 0;
}


ul.tabs * {
  margin: 0px;
  padding: 0px;
}

ul.tabs {
  margin: 0;
  padding: 0 0 0 23px;
  float: left;
  list-style: none;
  height: 39px;
  border-bottom: 1px solid #F58220;
  width: 100%;
}

ul.tabs li {
  display: block;
  float: left;
  padding: 10px 24px 8px;
  background-color: #F5f5f5;
  margin-right: 46px;
  z-index: 2;
  position: relative;
  cursor: pointer;
  color: #777;

  text-transform: uppercase;
  font: 600 13px/20px roboto, "Open Sans", Helvetica, sans-serif;

  transition: all 250ms ease;
}

.tab_last {
  border-right: 1px solid #333;
}

ul.tabs li:hover {
  background-color: #ccc;
  color: #333;
}

ul.tabs li.active {
  background-color: #F5f5f5;
  color: #333;
  border-bottom: 1px solid #F5f5f5;
  display: block;
}

.tab_container {
  /* border: 1px solid #333; */
  border-top: none;
  clear: both;
  /* float: left; */
  width: 100%;
  background: #fff;
  overflow: auto;
}

.tab_content {
  padding: 20px;
  display: none;
}

.tab_content a {
  color: #F58220;
}

.tab_content a:hover {
  color: #F58220;
}

.tab_drawer_heading {
  display: none;
}

ul.tabs li:before,
ul.tabs li:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 44px;
  background-color: #F5f5f5;
  transition: all 250ms ease;
}

ul.tabs li:before {
  right: -24px;
  transform: skew(30deg, 0deg);
  box-shadow: rgba(0, 0, 0, .1) 3px 2px 5px, inset rgba(255, 255, 255, .09) -1px 0;
}

ul.tabs li:after {
  left: -24px;
  transform: skew(30deg, 0deg);
  box-shadow: rgba(0, 0, 0, .1) -3px 2px 5px, inset rgba(255, 255, 255, .09) 1px 0;
}

ul.tabs li:first-child:after {
  left: -24px;
  transform: skew(0deg, 0deg);
  box-shadow: rgba(0, 0, 0, .1) -3px 2px 5px, inset rgba(255, 255, 255, .09) 1px 0;
}

ul.tabs li:hover,
ul.tabs li:hover:before,
ul.tabs li:hover:after {
  background-color: #F4F7F9;
  color: #444;
}

ul.tabs li.active {
  z-index: 3;
}

ul.tabs li.active,
ul.tabs li.active:before,
ul.tabs li.active:after {
  background-color: #F58220;
  color: #fff;
}


.event-date,
.event-address {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  display: flex;
  margin: 0 0 10px;
  font-weight: 300;
  color: #3E3E3F;
}

.event-date i,
.event-address i {
  color: #ccc;
  padding: 4px 8px 0;
}

.event-date a,
.event-address a {
  color: #F58220;
  padding: 4px 0;
}

.event-date a:hover,
.event-address a:hover {
  color: #000;
}

.event-head-ellipsis {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 10px auto 0;
  line-height: 36px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 26px;
  font-weight: 300;
}
.event-head-ellipsis span{color: #F58220; font-size: 42px;line-height: 50px;}

/* EVENTS END */


/* NEWSROOM START */
.newsroom-sec {
  padding: 60px 0;
}
.newsroom-sec .title{
  margin-bottom: 0.4em;
}

.newsroom .tab_content a:hover {
  color: #FFA200 !important;
}

.events-sec {
  padding: 80px 0;
}



.newsroom-inner-bg::after {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 0 500px rgba(255, 255, 255, .4);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
}

.subHeading-title {
  color: #F58220;
  display: contents;
  font-weight: 300;
  font-size: 28px;
  margin: 20px 0 10px;
  display: block;
}

/* NEWSROOM END */

/* LEADERSHIP TEAM START */
.leadership-team{
  overflow: hidden;
    border: 1px solid #E1E1E1;
    text-align: center;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.leadership-team img{
 width: 150px;
 height: 150px;
 border-radius: 50%;
 /* transition: all 0.3s ease; */
 -webkit-transition: all 0.25s ease;
  transition: all 0.50s ease;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  margin: 0 0 30px;
}
.leadership-team:hover>img {
  transform: scale(1.2);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.leadership-team h3{    color: #F58220;
  font-weight: 300;
  font-size: 20px;
}
.leadership-team:hover
{
  background: #f4f4f4;
}
.leadership-container1{
  margin-top: -200px;
}
.leadership-profile-title p{
  color: #fff;
}
/* LEADERSHIP TEAM END */


.breadcrumb-collapse {
  position: absolute;
    top: 20%;
    left: 19%;
    border-bottom: 1px solid #A3A3A3;
}
.breadcrumb-collapse li{
  
   display:inline-block;    overflow: hidden;     color: var(--color-texts-2); font-weight: 300;padding-right: 10px;
}
.breadcrumb-collapse li:hover{
 text-overflow:inherit; 
}
.breadcrumb-collapse li a{ position: relative;color: #A5A5A5;}
.breadcrumb-collapse li a:hover{ color: var(--color-texts-2);}
.breadcrumb-collapse li a::after{
 content: '';
   height: 16px;
   width: 16px;
   background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
   vertical-align: middle;
   top: -5px;
   margin: 0;
}

.breadcrumb-collapse li:last-child{
   /* white-space: nowrap; */
   /* overflow: hidden; */
   /* text-overflow: ellipsis; */
   /* width:150px; */
   /* display:inline-block */
}

.glass-md {
  position: absolute;
  background: inherit;
  overflow: hidden;
  width: 50%;
  /* height: 45%; */
  z-index: 1;
  bottom: -30px;
}

.glass-md:before {
  content: '';
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  box-shadow: inset 0 0 500px rgba(255, 255, 255, .4);
  filter: blur(10px);
  z-index: -1;
}



.glass-without {
  position: absolute;
  background: inherit;
  overflow: hidden;
  width: 80%;
  height: 45%;
  /* border-radius: 16px; */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 
              0 6px 20px rgba(0, 0, 0, 0.15); */
  z-index: 1;
  bottom: 0;
  clip-path: none;
    backdrop-filter: none;
    padding: 20px 0;
}

.glass-without:before {
  /* content: ''; */
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -20px;
  box-shadow: inset 0 0 500px rgba(255, 255, 255, .4);
  filter: blur(10px);
  z-index: -1;
}

.leadershop-sec {
  padding: 100px 0;
}

.leadershop-box {
  position: absolute;
  background: inherit;
  overflow: hidden;
  /* width: 100%; */
  height: 45%;
  backdrop-filter:none;
  z-index: 1;
  bottom: 0;
}
.leadershop-box h2 {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  color: var(--color-texts-2);
}
.leadershop-box p{ color: #fff;}
.leadershop-box-profile {
  right: 10%;
  position: absolute;
  width: 300px;
  bottom: -30%;
}
.leadershop-box-profile ul{ text-align: center;
  margin: 10px;}
.leadershop-box-profile li{
  display: inline-block;
  padding: 0 8px;
}
.leadershop-box-profile li a{
  color: #B1B1B1;
}
.leadershop-box-profile li a:hover{
  color: #F58220;
}
.border-radius-50{ border-radius: 50px;}


.leadershop-sec a.downloadBtn{
  color: #fff;
    font-weight: 300;
    border-radius: 50px;    font-size: 13px;
}
.leadershop-sec .tab_content a:hover {
  color: #F58220;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed, .embed-responsive iframe,
.embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube, .youtubelink { position:relative; display: block; }
.youtube:hover, .youtubelink:hover { cursor:pointer; }
.youtube img.thumb {
  width: 100%;
}

.play {
    position:absolute;
    top: 40%;
    left: 40%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}


.services-sec {
  padding: 100px 0 ;
}
.services-sec-list-right{
  position: relative; padding: 100px 0;
  overflow: hidden;
}
.services-sec-list-right img.serviceList-view {
  margin-left: 45px;
  width: 100%;
}

.services-sec-list-left{
  position: relative; padding: 100px 0;
  /* overflow: hidden; */
}
.services-sec-list-left img.serviceList-view {
  margin-left: -60px;
  width: 100%;
}

.services-sec-list-left h4,
.services-sec-list-right h4  {
  font-size: 26px;
  color: #F58220;
  font-weight: 300;
  margin: 0 0 20px;
}


.img-right-margin {
  margin-right: -190px;
}

.services-img-bg {
  background: #fff;
  padding: 30px 50px 30px 30px;
  clip-path: polygon(85% 0, 100% 30%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  position: absolute;
    top: -250px;
    border: 1px solid #ccc;width: 100%;
}
.services-block-shadow {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
}
.block-shadow {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
}

ul.list-view {
  padding: 0 0 0 20px;
}
.list-view li{
  list-style: circle;
  font-weight: 300;
  line-height: 30px;
}

.InsightsBanner{
  background: url(../../public/images/healthcare/healthcare-img-5.jpg);
    width: 100%;
    height: 461px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    /* margin: 100px 0px 0px; */
}
.section-banner-title h4{
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 20px;
}
.section-banner-title h4 span{
  color: #F58220;
}

.head-speaking {
   width: 100%;
  position: relative; overflow: hidden;    padding: 30px 0;color: #fff; font-weight: 300;
}
.head-speaking::after{
  content: '';
  position: absolute;
  width: 100%;
  background: #606060;    height: 270px;
  margin-left: 150px;top: 20%;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%, 0 70%);
}

.head-speaking h4{ color: #fff; margin: 0 0 20px; font-weight: 300;}
.head-speaking p{ color: #fff;}

.gray-light-bg {
  background: #f4f4f4;
}

.overlay-color {
  position: relative;
  display: block;
  width: 100%;
}
.overlay-color:before {
  position: absolute;
  content: '';
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.background-image-holder {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: 50% 50% !important;
  z-index: 0;
  /* background: url('https://hiremee.co.in/assets/hiremee-revamp/images/products/hiremeepro-img-1.jpg')no-repeat center center / cover; */
  opacity: 1;
  width: 100%;
}
.counter-new-wrap {
  /* position: relative;
  z-index: 3;
  width: 630px;
  margin: 0 auto;
  padding: 15px; */
  position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}



.counter-new-wrap .background-image-medical {
  background-color: #d2c2b5;
  /* background-image: url("../images/services-img-2.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}

.counter-new-wrap .background-image-Claims {
  background-color: #d62752;
  background-image: url("../images/services-img-8.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}
.counter-new-wrap .background-image-Member {
  background-color: #56826b;
  background-image: url("../images/services-img-4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}
.counter-new-wrap .background-image-network {
  background-color: #56826b;
  background-image: url("../images/services-img-6.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}
.counter-new-wrap .background-image-value {
  background-color: #56826b;
  background-image: url("../images/services-img-7.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}
.counter-new-wrap .background-image-medical::after,
.counter-new-wrap .background-image-Claims::after,
.counter-new-wrap .background-image-Member::after,
.counter-new-wrap .background-image-network::after,
.counter-new-wrap .background-image-seed::after
{
  position: absolute;
    content: '';
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.counter-new-wrap .background-image-medical .coount-content,
.counter-new-wrap .background-image-Claims .coount-content,
.counter-new-wrap .background-image-Member .coount-content,
.counter-new-wrap .background-image-network .coount-content,
.counter-new-wrap .background-image-value .coount-content
{
  position: relative;
    z-index: 9;
    width: 60%;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.counter-new-wrap [id^="tab-"] a:focus,
.counter-new-wrap [id^="tab-"] a:active{
  color: #fff;
}


.imageblock-section .imageblock-section-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 2;
  padding: 0;
  right: 0;
  left: auto;
}
.imageblock-section {
  position: relative;
  padding: 60px 0;
  background: #606060;
}


.service-health-tab section p{
  color: #fff;
}

.service-health-tab section {
  padding: 1.5rem 2.5rem;
  display: none; color: #fff;
}
.service-health-tab section.active {
  display: block; color: #fff;     height: 100%; padding: 0;
}
.service-health-tab #tab-links{
  position: relative;
    z-index: 9;
    left: 30px;
}
.service-health-tab #tab-links li{
 font-weight: 300; list-style: none;
}
.service-health-tab #tab-links li a{
  color: #fff;
  font-weight: 300;
  display: block;
  text-wrap: wrap;
  width: 320px;
  padding: 10px 50px 10px 10px;
}
.service-health-tab #tab-links li a.active{
  background: #F58220;
}
.service-health-tab a:hover{
  color: #fff;
}
.service-health-tab h3{
  padding: 0 0 0 30px;
}
.healthTabs{ padding: 0px 0 0 100px;}
@media screen and (max-width: 1000px) {
  .healthTabs{
    padding: 20px 0px 0xp 10px;
  }
}

.health-code-img{ margin: 0 0 0 50px;position: absolute;
  right: 0;bottom: 0;}



/* CONTACT US START */
.contact-us-sec {
  padding: 80px 0;
  font-weight: 300;
}
.contact-us-sec label{
  font-size: 14px;
  font-weight: 400;
}
.contact-us-sec h4{ font-weight: 300;}
.contact-us-sec .titleHead{
  font-size: 26px;
    color: #F58220;
    font-weight: 300;
    margin: 0 0 20px;
}
.contact-us-sec  a{ color: #151515;}
.contact-us-sec  a:hover{ color: #FFA200;}
/* CONTACT US END */

/* BLOG START */
.blog-sec {
  padding: 80px 0;
}

.blog-list{
  margin: 0;
  padding: 0;
}
.blog-list li{display: inline-block;}
.blog-list li a{background: #606060; padding: 5px 20px; border-radius: 50px; font-size: 14px; font-weight: 300; color: #fff;}
.blog-list li a:hover{
  background: #FFA200;
}
.blog-list li a.active{
  background: #FFA200;
}
/* BLOG END */

.font-weight-300{
  font-weight: 300;
}





/* BANNER STYLE START */
.innerBanner {
  /* background: #212529; */
  position: relative;
}
.innberBanner-bg{
  width: 100%;
  height: 461px;
  background-position: center center;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  background-size: cover;
  background-color: #2b2b2b;
}
.industries-bg {
  background: url(../../public/images/industries.jpg);
}
.about-us-bg {
  background: url(../../public/images/about-us.jpg);
}

.events-bg {
  background: url(../../public/images/event.jpg);
}
.newsroom-inner-bg {
  background: url(https://www.veetechnologies.com/images/banners/inner-page-banner/veetechnologies-newroom.jpg);

}
.leadership-team-bg {
  background: url(../../public/images/leadership-team.jpg);
}
.healthcare-payer-bg {
  background: url(../../public/images/healthcare-payer.png);
}
.services-subpage-bg{
  width: 100%;
  height: 242px;
  background-position: center center;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  background-size:  cover;
}

.healthcare-payer-bg-2 {
  background: url(../images/inner-banner/services-subpage.jpg);
}

/* BANNER STYLE END */

@media (max-width: 1440px) {

  .industries-bg,
  .about-us-bg,
  .events-bg,
  .leadership-team-bg,
  .healthcare-payer-bg,
  .healthcare-payer-bg-2,
  .history-bg,
  .our-roots-bg,
  .healthcare-bg {
    background-size:  contain;
  }
  

  .breadcrumb-collapse {
      left: 4%;
  }
  .innerBanner-heading h2{
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .industries-bg, 
  .leadership-team-bg,
  .events-bg,
  .about-us-bg  {
    background-size: cover;
  }

  .glass,
  .glass-md,
  .glass-without {
    width: 90% !important;
  }

  .innerBanner-heading h2,
  .innerBanner-heading a{
    font-size: 17px !important;
    line-height: 35px;
  }
  .event-head-ellipsis span {
    font-size: 32px;
    line-height: 1.4;
  }
  .services-without-bg h2 {
    font-size: 18px;
  }

  ul.tabs li {
    margin-right: 0;
  }

  ul.tabs li:before,
  ul.tabs li:after {
    content: none;
  }
.head-speaking::after {
  content: '';
  position: absolute;
  width: 100%;
  background: #606060;
  height: 100%;
  margin-left: 0;
  top: 30%;
  z-index: -1;
}
.head-speaking h4 {
  color: #fff;
  margin: 20px 0;
  font-weight: 300;
}
.counter-new-wrap{ width: 100%;}
/* .imageblock-section .imageblock-section-img{ position: inherit; padding: 50px 0;} */
.imageblock-section .imageblock-section-img{ position: inherit; padding: 0px 0px;}
.imageblock-section{ padding: 0;}
.service-health-tab h3 {
  padding: 30px 0 0;
}
.service-health-tab #tab-links{
  left: 0;
  padding: 30px 0;width: 100%;
}
.InsightsBanner{
  height: 100%;padding: 20px;
}
.healthTabs {
  padding: 20px 0 0 10px;
}
.health-code-img {
  margin: 0 0 0 20px;
}


.services-without-bg{
  display: block;
}
.services-subpage-bg{
  height: 100px;
}
}

@media screen and (max-width: 992px) {
  .services-sec-list-right {
    position: relative;
    padding: 30px 0;
    overflow: inherit;
  }
  .services-img-bg {
    background: #fff;
    padding: 30px 50px 30px 30px;
    clip-path: none;
    position: inherit;
    top: 0;
    border: 1px solid #ccc;
  }
  .services-sec-list-left{
    padding: 20px 0;
  }
  .services-sec-list-right img.serviceList-view {
    margin-left: 0;
    width: 100%;
  }
  .services-sec-list-left img.serviceList-view {
    margin-left: 0;
    width: 100%;
  }
}





/* MMENU CSS START */
.mmenu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  white-space: normal;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1860px) {
  .mmenu {
    margin: 0;
  }
}
@media (max-width: 1199px) {
  .mmenu {
    margin: 0 -8px;
  }
}
.mmenu > li {
  display: inline-block;
  white-space: normal;
  flex: 0 1 auto;
  flex: 1 auto;    overflow: hidden;
  border-bottom: 2px solid transparent;
}
.mmenu > li > a {
  font-size: 15px;
    font-weight: 300;
    line-height: 50px;
    position: relative;
    display: block;
    transition: 0.2s;
    text-decoration: none;
    letter-spacing: 0.1px;
    color: #f5f5f5;border-bottom: 2px solid #000000;
}
@media (max-width: 1860px) {
  .mmenu > li > a {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .mmenu > li > a {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.mmenu > li > a:not(:only-child):after {
  font-family: "icon-m2e";
  position: relative;
  top: 3px;
  left: 6px;
  content: "\e949";
}
.mmenu > li:hover {
  color: #fff;
  /* background: var(--color-texts-2); */
  border-bottom: 2px solid var(--color-texts-2);
}
.mmenu > li > a.active {
  color: #fff;
  background: var(--color-texts-2);
}
.mmenu > li.hovered > a:not(:only-child):after {
  content: "\e94a";
}
/* .mmenu > li.hovered > a:not(:only-child):before {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  padding-bottom: 250px;
  content: "";
} */
.mmenu.mmenu--link-lined > li > a > span {
  position: relative;
}
.mmenu.mmenu--link-lined > li > a > span:after {
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  transition: 0.2s;
  transform: translateX(-52%);
  background-color: #282828;
}
.mmenu.mmenu--link-lined > li.active > a > span:after,
.mmenu.mmenu--link-lined > li:hover > a > span:after {
  width: 96%;
}
.mmenu.mmenu--compact > li > a {
  padding: 20px 10px;
}
@media (max-width: 1860px) {
  .mmenu.mmenu--compact > li > a {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 1199px) {
  .mmenu.mmenu--compact > li > a {
    padding-right: 6px;
    padding-left: 6px;
  }
}
/* .mmenu > li.mmenu-item--mega.hovered > a:not(:only-child):before {
  top: -40px;
  left: -50%;
  width: 200%;
  padding-bottom: 150px;
  -webkit-clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
  clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
} */
.menu-label {
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
  display: -ms-flexbox;
  display: flex;
  min-height: 14px;
  padding: 1px 4px 0;
  white-space: nowrap;
  text-transform: none;
  color: #fff;
  border-top-color: var(--color-texts-2);
  border-radius: 2px;
  background-color: var(--color-texts-2);
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
}
.mmenu .menu-label {
  position: absolute;
  right: 31px;
  margin-top: -38px;
  transform: translateX(50%);
}
.mmenu .menu-label:after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -4px;
  content: " ";
  pointer-events: none;
  border: solid transparent;
  border-width: 4px;
  border-top-color: inherit;
}
.mobilemenu .menu-label,
.mmenu .submenu-list .menu-label {
  position: relative;
  top: -1px;
  right: auto;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0 !important;
  margin-left: 10px;
  transform: translate3d(0, 0, 0);
}
.mobilemenu .menu-label:after,
.mmenu .submenu-list .menu-label:after {
  display: none;
}
.menu-label.menu-label--color1 {
  border-top-color: #282828;
  background-color: #282828;
}
.menu-label.menu-label--color2 {
  border-top-color: #ffc427;
  background-color: #ffc427;
}
.menu-label.menu-label--color3 {
  border-top-color: #fb317d;
  background-color: #fb317d;
}
.hdr.m2e-onerow-menu .mmenu {
  white-space: nowrap;
}
.hdr.m2e-onerow-menu .mmenu > li {
  white-space: normal;
}
.mmenu .mmenu-item--mega:hover > a:after,
.mmenu .mmenu-item--simple:hover > a:after {
  padding-bottom: 200px;
}
.mmenu-item--mega .mmenu-submenu-inside {
  overflow-x: hidden;
  overflow-y: hidden;
  /* border-bottom: 1px solid #ccc; */
}
.mmenu-item--mega .mmenu-submenu {
  left: 0;
  width: 100%;
  text-align: left;
  white-space: normal;
}
.mmenu-item--mega .mmenu-submenu .mmenu-submenu-inside > .container {
  padding: 46px 0;
}
.mmenu-item--mega.mmenu-submenu.mmenu-submenu--has-top.mmenu-submenu-inside
  > .container {
  padding-top: 0;
}
.mmenu-item--mega.mmenu-submenu.mmenu-submenu--has-bottom.mmenu-submenu-inside
  > .container {
  padding-bottom: 0;
}
.mmenu-item--mega .mmenu-submenu .submenu-list {
  padding: 0;
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a {
  padding-right: 0;
  padding-left: 0;
  background-color: transparent;
  font-weight: 300;
  color: #bbbbbb;
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a:hover {
  /* padding-left: 1.25em; */
  color: var(--color-texts-2);
  /* background-color: #f4f4f4; */
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a:hover:before {
  transform: translate3d(0, 0, 0) translateZ(0);
  opacity: 1;
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a:not(:only-child) {
  padding-right: 25px;
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a:not(:only-child):hover {
  padding-left: 0.6em;
}
.mmenu-item--mega .mmenu-submenu .submenu-list > li > a:not(:only-child):after {
  right: 5px;
}
.mmenu-submenu {
  position: absolute;
  top: -1000vh;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}
.mmenu-submenu .submenu-list ul {
  background-color: #fff;
}
.mmenu li.hovered .mmenu-submenu {
  z-index: 2;
  top: 100%;
  pointer-events: auto;
  box-shadow: 5px 7px 6px rgb(0 0 0 / 15%) inset;
  /* background: #f9f9f9; */
  backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 75%);
}
.mmenu-submenu .mmenu-submenu-inside > .container {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .hdr.mmenu-multirow .mmenu li.hovered .mmenu-submenu {
    top: auto;
  }
  .hdr.mmenu-multirow-s .mmenu li.hovered .mmenu-submenu {
    top: auto;
  }
  .mmenu > li > a {
    padding: 30px 20px;
  }
}
.hdr .mmenu-submenu .custom-text {
  font-size: 12px;
}
.submenu-view-more {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  display: block;
  margin: 7px 0 0 0;
  text-transform: uppercase;
  color: #282828;
}
.submenu-view-more:hover {
  color: var(--color-texts-2);
}
.submenu-title {
  font-size: 15px;
  font-weight: 300;
  line-height: 27px;
  position: relative;
  margin-bottom: 0;
  text-decoration: none;
  /* text-transform: uppercase; */
  color: #fff;
  cursor: pointer;
}
.submenu-title:first-child {
  margin-top: 10px;
}
.submenu-title:not(:first-child) {
  margin-top: 20px;
}
/* .submenu-title,
.submenu-title a {
  color: var(--color-texts-2);
} */
.submenu-title a {
  color: #abaaaa;
    display: block;
    width: 100%;    font-size: 13px;
}
.navigation__list .submenu-title a{
    width: calc(100% - 65px);
    line-height: 1.6;
}
.submenu-title + .submenu-title {
  margin-top: 10px;
}
.submenu-link-txt {
  font-size: 13px;
  line-height: 18px;
  display: block;
  color: #7e7e7e;
}
.submenu-list {
  margin: 0;
  margin-top: 0;
  padding: 10px 20px;
  list-style: none;
}
.submenu-list:first-child {
  margin-top: 0;
}
.submenu-list .submenu-list .submenu-link-image {
  display: none;
}
.submenu-list .submenu-list img[data-src] {
  transition: opacity 0.15s;
}
.submenu-list .submenu-list li.active > a + .submenu-link-image,
.submenu-list .submenu-list li.hovered > a + .submenu-link-image {
  display: block;
  opacity: 1;
}
.submenu-list .submenu-link-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 100%;
  transition: opacity 0s;
  pointer-events: none;
  opacity: 0;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.submenu-list .submenu-link-image img {
  max-width: 500px;
}
.submenu-list .submenu-link-image.to-right {
  right: 100%;
  left: auto;
}
.submenu-list li.hovered > .submenu-link-image {
  transition: opacity 0.3s;
  opacity: 1;
}
.submenu-list li.active > a,
.submenu-list li.hovered > a {
  color: #282828;
  background-color: #f4f4f4;
}
.submenu-list a {
  font-size: 15px;
  line-height: 18px;
  position: relative;
  display: block;
  padding: 5px 10px;
  transition: 0.2s ease;
  color: #fff;
}
.submenu-list a:before {
  font-family: "icon-m2e";
  font-size: 8px;
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  content: "\e919";
  transition: transform 0.15s ease, opacity 0.1s ease 0.1s;
  transform: translate3d(-15px, 0, 0);
  pointer-events: none;
  opacity: 0;
}
.submenu-list a:hover,
.submenu-list a.active {
  padding-left: 25px;
  text-decoration: none;
  color: #282828;
  background-color: #f4f4f4;
}
.submenu-list a:hover:before,
.submenu-list a.active:before {
  transform: translate3d(10px, 0, 0);
  opacity: 1;
}
.submenu-list a:not(:only-child):not(:last-child) {
  padding-right: 25px;
}
.submenu-list a:not(:only-child):not(:last-child):after {
  font-family: "icon-m2e";
  font-size: 11px;
  position: absolute;
  top: 6px;
  right: 10px;
  content: "\e919";
  transition: 0.15s;
}
.submenu-list a:not(:only-child):not(:last-child):before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -15px;
  left: -15px;
  height: 100%;
  content: "";
}
.mmenu-item--mega .submenu-list > li > a:before {
  left: -14px;
  transition: transform 0.15s ease;
}
.mmenu-item--simple .mmenu-submenu {
  overflow: inherit;
  text-align: left;
  border-top: 0;
}
.mmenu-item--simple .mmenu-submenu li {
  width: 270px;
  white-space: normal;
}
.mmenu-item--simple .mmenu-submenu .submenu-list li {
  position: relative;
}
.mmenu-item--simple .mmenu-submenu .submenu-list li ul {
  top: 0;
}
.mmenu-item--simple .mmenu-submenu li:not(.to-right) > ul {
  left: 100%;
}
.mmenu-item--simple .mmenu-submenu li.to-right > ul {
  right: 99.9%;
  left: auto;
}
.mmenu-submenu .submenu-list li {
  position: static;
  overflow: inherit;
  padding: 0;
  text-align: left;
}
.mmenu-submenu .submenu-list li ul {
  position: absolute;
  z-index: 2;
  visibility: hidden;
  min-width: 270px;
  margin-top: -10px;
  padding: 10px 20px;
  list-style: none;
  transition: all 0s ease 0s;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.07);
}
.mmenu-submenu .submenu-list li ul:before {
  position: absolute;
  left: -1px;
  width: 1px;
  height: 100%;
  content: "";
}
.mmenu-submenu .submenu-list li li.to-right > ul {
  right: 100%;
  left: auto !important;
}
.mmenu-submenu .submenu-list li ul ul {
  z-index: 2;
}
.mmenu-submenu .submenu-list li:hover > ul,
.mmenu-submenu .submenu-list li li:hover > ul {
  visibility: visible;
  transition: visibility 0.2s ease 0.1s, opacity 0.2s ease 0.1s,
    min-width 0.3s ease 0.1s;
  pointer-events: auto;
  opacity: 1;
}
.mmenu-bnr-wrap {
  overflow: hidden;
}
.mmenu-bnr-wrap:not(:last-child) {
  margin-bottom: 20px;
}
.mmenu-bnr-wrap img {
  width: 100%;
}
.mmenu-cols {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 0 20px;
  padding: 0;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.mmenu-cols:first-child {
  max-width: 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.mmenu-col {
  position: static;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  -ms-flex-direction: column;
}
.mmenu-left {
  padding: 0 15px 30px;
  -ms-flex-order: 0;
  order: 0;
}
.mmenu-right {
  padding: 0 15px 30px;
  text-align: right;
  -ms-flex-order: 2;
  order: 2;
}
.mmenu-top {
  display: -ms-flexbox;
  display: flex;
  clear: both;
  width: 100%;
  margin-bottom: 30px;
  padding: 25px 0;
  border-color: #f4f4f4;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.mmenu-bottom {
  display: -ms-flexbox;
  display: flex;
  clear: both;
  width: 100%;
  min-height: 100px;
  margin-top: 30px;
  padding: 20px 0;
  border-color: #f4f4f4;
  border-top-width: 1px;
  border-top-style: solid;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-order: 10;
  order: 10;
}
.m2e-wrap .mmenu-bottom {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.m2e-wrap .mmenu-bottom b,
.m2e-wrap .mmenu-bottom strong {
  font-weight: 600;
}
.m2e-wrap .mmenu-bottom [class*="icon"] {
  font-size: 0.8em;
  display: inline-block;
  padding: 0 8px;
  transition: 0.2s;
  vertical-align: middle;
  color: var(--color-texts-2);
}
.m2e-wrap .mmenu-bottom [class*="icon"].icon--lg {
  font-size: 1.4em;
  position: relative;
  top: -0.15em;
}
.m2e-wrap .mmenu-bottom,
.m2e-wrap .mmenu-bottom a {
  color: #282828;
}
.m2e-wrap .mmenu-bottom a:hover {
  text-decoration: none;
  color: var(--color-texts-2);
}
.m2e-wrap .mmenu-bottom a:hover [class*="icon"] {
  color: var(--color-texts-2);
}
.m2e-wrap .mmenu-bottom a:hover [class*="icon-arrow"] {
  transform: translateX(10px);
}
.mmenu-right:nth-last-child(2),
.mmenu-left:nth-last-child(2) {
  margin-bottom: 0;
}
.column-6 .mmenu-col {
  max-width: 16.666%;
  -ms-flex: 0 0 16.666%;
  flex: 0 0 16.666%;
}
.column-6 .mmenu-col.mmenu-col--double {
  max-width: 33.333%;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
}
.column-6 .mmenu-col:nth-child(n + 7) {
  margin-top: 40px;
}
.column-5 .mmenu-col {
  max-width: 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.column-5 .mmenu-col.mmenu-col--double {
  max-width: 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
.column-5 .mmenu-col:nth-child(n + 6) {
  margin-top: 40px;
}
.column-4 .mmenu-col {
  max-width: 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}
.column-4 .mmenu-col.mmenu-col--double {
  max-width: 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.column-4 .mmenu-col:nth-child(n + 5) {
  margin-top: 40px;
}
.column-3 .mmenu-col {
  max-width: 33.333%;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
}
.column-3 .mmenu-col.mmenu-col--double {
  max-width: 66.667%;
  -ms-flex: 0 0 66.667%;
  flex: 0 0 66.667%;
}
.column-3 .mmenu-col:nth-child(n + 4) {
  margin-top: 40px;
}
.column-2 .mmenu-col {
  max-width: 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.column-2 .mmenu-col:nth-child(n + 3) {
  margin-top: 40px;
}
.width-16 {
  max-width: 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
}
.width-20 {
  max-width: 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.width-25 {
  max-width: 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}
.width-33 {
  max-width: 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}
.width-40 {
  max-width: 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
@media (min-width: 1024px) {
  .mobilemenu {
    display: none;
  }
}
@media (max-width: 1200px) {
  .mmenu {
    display: none;
  }
}
.mobilemenu {
  position: fixed;
  z-index: 1009;
  top: 0 !important;
  right: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding: 15px;
  transition: visibility 0s ease 0.6s;
}
.mobilemenu .container {
  width: 100%;
  padding: 0;
}
.mobilemenu-bottom {
  position: relative;
}
.mobilemenu-bottom > * {
  margin: 0;
}
.mobilemenu-currency,
.mobilemenu-language {
  position: static;
  display: block;
}
.mobilemenu-settings {
  display: none;
}
.mobilemenu .dropdn {
  position: static;
  display: block;
}
.mobilemenu .dropdn.is-hovered .dropdn-link [class*="icon"] {
  transform: rotate(0deg);
}
.mobilemenu .dropdn-link {
  font-size: 17px;
  line-height: 20px;
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding: 0;
  text-decoration: none;
  color: #282828;
}
.mobilemenu .dropdn-link [class*="icon"] {
  font-size: 11px;
  position: absolute;
  top: 6px;
  right: 11px;
  transition: 0.2s;
  transform: rotate(-90deg);
}
.mobilemenu .dropdn:not(.dropdn_fullheight) .dropdn-content {
  position: relative;
  z-index: 101;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 0;
  padding: 0 0 0 10px;
  transform: translate3d(0, 0, 0);
  color: #282828;
}
.mobilemenu .dropdn.is-hovered .dropdn-content {
  height: auto;
}
.mobilemenu .dropdn .dropdn-content ul {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}
.mobilemenu .dropdn .dropdn-content ul > li > a:hover {
  color: #282828;
}
.mobilemenu .dropdn .dropdn-content ul > li.active > a,
.mobilemenu .dropdn .dropdn-content ul > li.active > a span:first-child {
  color: var(--color-texts-2);
}
.mobilemenu .dropdn .dropdn-content ul > li > a {
  font-size: 14px;
  line-height: 18px;
  transition: 0.2s;
  text-decoration: none;
  text-transform: none;
  color: #868686;
}
.mobilemenu .dropdn .dropdn-content ul > li > a img {
  display: inline-block;
  padding-right: 10px;
}
.mobilemenu .dropdn .dropdn-content ul > li > a span,
.mobilemenu .dropdn .dropdn-content ul > li > a [class*="icon-"] {
  display: inline-block;
  vertical-align: middle;
}
.mobilemenu .dropdn .dropdn-content ul > li > a span:first-child {
  padding-right: 4px;
  text-transform: uppercase;
  color: #282828;
}
.mobilemenu .dropdn .dropdn-content ul > li > a [class*="icon-"] {
  font-size: 30px;
  padding-right: 10px;
  color: var(--color-texts-2);
}
.mobilemenu-content {
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 15px;
  transition: transform 0.35s ease 0.1s;
  transform: translate3d(-110%, 0, 0);
  background: #fff;
}
.mobilemenu-content .dropdn .dropdn-content ul {
  flex-direction: column;
  margin: 0 0 20px;
  padding: 0;
  -ms-flex-direction: column;
}
.mobilemenu-content .dropdn .dropdn-content ul li {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}
.mobilemenu-content .mobilemenu-currency .dropdn .dropdn-content ul li {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mobilemenu-scroll {
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  padding-bottom: 45px;
}
.mobilemenu-scroll.ps .ps__scrollbar-x-rail,
.mobilemenu-scroll.ps ps__scrollbar-y-rail {
  z-index: 1;
}
.mobilemenu.active {
  visibility: visible;
  transition: visibility 0s ease 0s;
}
.mobilemenu.active .mobilemenu-content {
  transition: transform 0.35s ease 0s;
  transform: translate3d(0, 0, 0);
}
@media (min-width: 1025px) {
  .mobilemenu.active {
    pointer-events: none;
  }
  .mobilemenu.active .mobilemenu-content {
    pointer-events: all;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  }
}
.mobilemenu ul.nav {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 0 0 20px;
  list-style: none;
  transition: all 0.35s;
  opacity: 1 !important;
  background-color: #fff;
}
.mobilemenu ul.nav li {
  position: static !important;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  transition: 0.2s;
}
.mobilemenu ul.nav li a {
  font-size: 17px;
  line-height: 25px;
  display: block;
  padding: 5px 0;
  cursor: pointer;
  text-decoration: none;
  color: #282828;
  background: transparent;
  -ms-flex: 1;
  flex: 1;
}
.mobilemenu ul.nav li a:last-child .arrow {
  display: none;
}
.mobilemenu ul.nav li.active,
.mobilemenu ul.nav li:hover,
.mobilemenu ul.nav li.mmenu-submenu-open {
  background-color: transparent;
}
.mobilemenu ul.nav li.active > a,
.mobilemenu ul.nav li:hover > a,
.mobilemenu ul.nav li.mmenu-submenu-open > a {
  text-decoration: none;
  color: var(--color-texts-2);
  background: transparent;
}
.mobilemenu ul.nav li.active > .arrow,
.mobilemenu ul.nav li:hover > .arrow,
.mobilemenu ul.nav li.mmenu-submenu-open > .arrow {
  color: var(--color-texts-2);
}
.mobilemenu ul.nav li .arrow {
  font-size: 11px;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  float: right;
  width: 30px;
  height: 25px;
  transition: 0.2s;
  pointer-events: none;
  color: #282828;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mobilemenu ul.nav li ul {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  padding: 45px 0 20px 0;
  list-style: none;
  transition: opacity 0.1s ease;
  opacity: 1;
}
.mobilemenu ul.nav li ul a {
  color: #282828;
}
.mobilemenu ul.nav li.mmenu-submenu-open > ul {
  display: block;
  opacity: 1;
}
.mobilemenu-close.mobilemenu-toggle {
  font-size: 17px;
  font-weight: 700;
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  top: 0;
  margin: 0 -15px 10px;
  padding: 20px 15px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: #282828;
  background-color: #fff;
}
@media (max-width: 575px) {
  .mobilemenu-close.mobilemenu-toggle {
    font-size: 14px;
    margin: 0 -15px 10px;
    padding: 20px 15px;
  }
}
.mobilemenu-close.mobilemenu-toggle:hover {
  text-decoration: underline;
}
.mobilemenu-toggle {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-align: center;
  align-items: center;
}
.mobilemenu-toggle [class*="icon"] {
  font-size: 26px;
}
.mobilemenu-toggle span {
  font-size: 11px;
  line-height: 20px;
  padding-left: 7px;
  text-decoration: none;
  text-transform: uppercase;
}
.mobilemenu-toggle:hover,
.mobilemenu-toggle:focus {
  text-decoration: none;
}
@media (min-width: 1025px) {
  .mobilemenu-toggle {
    height: 40px;
  }
  .mobilemenu-close.mobilemenu-toggle {
    height: 40px;
  }
}
@media (max-width: 1024px) {
  .mobilemenu-toggle {
    min-width: 26px;
    height: 30px;
  }
  .mobilemenu-close.mobilemenu-toggle {
    width: calc(100% - 10px);
    height: 30px;
  }
}
.dropdn {
  display: inline-block;
}
.nav-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 15px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.3, 1);
  transform: translate3d(-100%, 0, 0);
  border-color: #e2e2e2;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.nav-wrapper.show-menu {
  transform: none;
}
.nav-wrapper .nav-toggle {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  width: 100%;
  padding: 0 0 10px;
  cursor: pointer;
  color: #282828;
  border-bottom: 1px solid #e2e2e2;
  background-color: #fff;
}
.nav-wrapper .nav-toggle.back-visible {
  visibility: visible;
}
.nav-wrapper .nav-toggle.back-visible .nav-back {
  opacity: 1;
}
.nav-wrapper .nav-toggle.back-visible .nav-title .arrow {
  display: none;
}
.nav-wrapper .nav-title {
  font-size: 17px;
  line-height: 20px;
}
.nav-wrapper .nav-viewall {
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  margin-left: auto;
  white-space: nowrap;
}
.nav-wrapper .nav-back {
  font-size: 15px;
  position: relative;
  top: 1px;
  padding: 0 10px 0 0;
}
.mobilemenu .nav-wrapper ul.nav li.mmenu-submenu-open > .arrow {
  transform: rotate(0deg);
}
@media (max-width: 1024px) {
  .mobilemenu:after,
  .row:not(.prd-block) .fixed-col:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    content: "";
    cursor: pointer;
    transition: background 0.3s ease 0.1s;
    background: transparent;
  }
  .mobilemenu.active:after,
  .row:not(.prd-block) .fixed-col.active:after {
    transition: background 0.3s ease 0s;
    background: rgba(0, 0, 0, 0.6);
  }
}


.m2e-wrap {
  position: relative;
  z-index: 9;
  margin: 0;
  padding: 0;
}
.is-filters-opened .m2e-wrap {
  z-index: 160;
}
.hdr {
  background-color: #000;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}
@media (max-width: 1024px) {
  .hdr {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    /* background: #2b6e58; */
    -ms-flex-direction: column;
  }
}

.m2e-transparent .hdr {
  transition: background-color 0.5s;
}
.has-sticky .m2e-transparent .hdr {
  transition: 0s;
  background-color: #fff;
}
@media (min-width: 1025px) {
  .show-mobile,
  .show-mobile-user {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .hide-mobile {
    display: none !important;
  }
 
  .show-mobile {
    display: block !important;
    position: absolute;
    right: 10%;
    top: 30%;
  }
  .hdr_container_mobile.show-mobile {
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.m2e-content > .container-fluid > .row {
  -ms-flex-align: center;
  align-items: center;
}
.m2e-content > .container-fluid > .row > * {
  position: static;
  transition: 0s;
}
@media (max-width: 1024px) {
  .m2e-content > .container-fluid > .row {
    margin-right: -5px;
    margin-left: -5px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .m2e-content > .container-fluid > .row > * {
    padding: 0 5px;
  }
}

.m2e-content .m2e-nav {
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* -ms-flex: 1;
  flex: 1; */
}

.m2e-content {
  position: relative;
  z-index: 1;
  color: #282828;
}
.m2e-content .mobilemenu-toggle,
.m2e-content .minicart-link,
.m2e-content .mobilemenu-toggle,
.m2e-content .custom-text a,
.m2e-content .search-button {
  color: #282828;
}


.m2e-content .mobilemenu-toggle [class*="icon"],
.m2e-content .minicart-link [class*="icon"],
.m2e-content .mobilemenu-toggle [class*="icon"],
.m2e-content .custom-text a [class*="icon"],
.m2e-content .search-button [class*="icon"] {
  transition: 0.2s;
}

.m2e-content .custom-text span {
  color: var(--color-texts-2);
}
.hdr_container_desktop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hdr_container_mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

.dropdn {
  display: block;
}
.dropdn-link {
  white-space: nowrap;
}
.dropdn-link.only-icon .dropdn-link-txt {
  display: none;
}
@media (max-width: 1024px) {
  .m2e-content .dropdn-link .dropdn-link-txt {
    display: none;
  }
}

.hdr .mmenu-submenu-inside {
  max-height: none !important;
}

.vertical-tabs a {
  width: 100%;
  display: inline-block;
  text-align: left;
  padding: 6px 30px 6px 15px;
  margin: 1px 0;
  color: #fff;
    position: relative;
    font-size: 15px;
    font-weight: 300;
}
.vertical-tabs a::before {
  font-family: "icon-m2e";
  position: absolute;
    top: 8px;
    right: 6px;
    content: "\e94b";
 
}
.vertical-tabs a.active {
  color: var(--color-texts-2) !important;
  border-radius: 0 !important;
  backdrop-filter: blur(10px);
  background: rgb(0 0 0 / 10%) !important
}
.vertical-tabs a.active::before {
  font-family: "icon-m2e";
  position: absolute;
    top: 8px;
    right: 6px;
    content: "\e94b";
  /* content: "";
  display: block;
  border-top: 8px solid transparent;
  border-left: 10px solid #2b6e58;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 99; */
}
.vertical-tabs ul {
  background: #f0f0f0;
  height: 100%;
  padding: 15px 0px;
  box-shadow: 5px 7px 6px rgb(0 0 0 / 15%) inset;
  backdrop-filter: blur(10px);
  background: rgb(255 255 255 / 10%);
  min-height: 400px;
}
@media (min-width: 1580px){
  .vertical-tabs ul {
      padding: 25px 0;
  }
}
.insights-vertical-tab{
  height: 410px;
}
.menuBtn-more {
  background: none;
  padding: 5px 20px;
  border: 1px solid #FFA200;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 300;
  color: #FFA200;
}
.menuBtn-more:hover {
  background: #FFA200;
  border: 1px solid #FFA200;

  color: #fff;
}
.mmenu-cols h2{     font-size: 26px;
  font-weight: 200;
  margin: 0 0 10px;}

  .explore-more-link{
    font-size: 18px; margin: 5px 0 0;    
    color: var(--color-texts-2) !important; 

    text-decoration: underline;
  }
  .mm-listview h3{ font-size: 15px;
    font-weight: 300;
    color: #FFA200;
    padding: 8px 0 0;}
  .mm-listview h2 a{ 
    font-size: 18px !important;
    margin: 0;
    padding-top: 20px;
    color: #FFA200;
    font-weight: 200;
    background: #333;
    padding-bottom: 20px;
    border-bottom: 1px solid #464646;
  }


  .mmenu-item--mega .mmenu-submenu-2 {
    left: inherit;
    width:auto;
    text-align: left;
    white-space: normal;    width: 20%;
  }
  .mmenu-item--mega .mmenu-submenu-2 a{
    padding: 5px 10px 5px 10px;
    background-color: transparent;
    font-weight: 300;
    color: #fff;
    display: block;
    font-size: 15px;
}
.mmenu-item--mega .mmenu-submenu-2 a:hover{color: #FFA200;}

/* MMENU CSS END */

.veetech-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	/* height: 100vh; */
	width: 100vw;
}

.veetech-slider h1 {
	color: #fff;
	font-size: 100px;
	letter-spacing: 5px;
	position: relative;
	z-index: 100;
	text-align: center;
}

.veetech-slider::after {
	/* background-color: #000; */
	content: '';
	position: absolute;
	opacity: 0.3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}
/* 
.vt-slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	transform: scale(1.15);
	transition: opacity .6s ease;
}

.vt-slide.active {
	animation: grow 4s linear forwards;
	opacity: 1;
}

@keyframes grow {
	0%, 20% {
		transform: scale(1);
	}
	
	75%, 100% {
		transform: scale(1.15);
	}
}
.vt-slide .slider-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding-left: 0;
    align-items: center;
} */
.veetech-slider .controls-container {
	position: absolute;
	top: 50%;
	right: 50px;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
	z-index: 2;
}

.veetech-slider .control {
	background-color: #fff;
	cursor: pointer;
	opacity: 0.5;
	margin: 6px;
	height: 40px;
	width: 5px;
	transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.veetech-slider .control.active, .veetech-slider .control:hover {
	background-color: #fff;
	opacity: 1;
	transform: scale(1.2);
}

@media (max-width: 768px) {
.vt-slide .slider-content{
  padding-left: 0;
}
}

/* Mega Menu Hover speed contrl start */
.fade {
  transition: opacity -500ms linear !important;
}
/* Mega Menu Hover speed contrl end */

.services-without-bg {
  position: absolute;
  background: none;
  width: 50%;
  z-index: 1;
  bottom: 0;
  padding: 20px 0;
  top: 0;backdrop-filter: none;
}

.form-control, .custom-select{ font-weight: 300;}
.grid figure a{
  font-size: 12px !important;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 3px 20px;
}
.grid figure a:hover{
  background: #151515;
}
.menu-extral{
  position: relative;
}
.menu-extral::after {
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 14px;
  position: absolute;
  right: 4%;
  top: 40%;
  color: #fff;
  transform: rotate(311deg);
}


.mmenu > li:hover > a:before {
  position: absolute;
    content: '';
    left: 20px;
    border: 0;
    width: 60%;
    height: 30px;
    background: -webkit-radial-gradient(center, ellipse, rgba(255, 162, 0, 0.45) 0%, rgba(255, 162, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(255, 162, 0, 0.45) 0%, rgba(255, 162, 0, 0) 80%);
    bottom: -15px;
}


/* Chocko Valliappa Testimonial in Home Page start */
.box-video{
  position: relative;
  width: 100%;
  margin:0 auto 20px auto;
  cursor: pointer;
  overflow: hidden;
}

.box-video .bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

.bg-video::after{ 
	content:'';
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba(0,0,0,0.1);
  	z-index: 3;
  	}
.box-video .bt-play {
  position: absolute;
  top:50%;
  left:50%;
  margin:-30px 0 0 -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  z-index:2;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -12px 0 0 -6px;
  border: solid transparent;
  border-left-color: #000;
  border-width: 12px 20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.box-video:hover .bt-play {
  transform: scale(1.1);
}
.box-video.open .bg-video{
  visibility: hidden;
  opacity: 0;

  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;  
}
.box-video.open .video-container{
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
.box-video .video-container {
	position: relative;
	width: 100%;
	height: 0;
  margin: 0;
  z-index: 1;
	padding-bottom: 56.27198%;
}
.box-video .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Chocko Valliappa Testimonial in Home Page end */



.other-services-list{
    width: 100%;
    padding: 100px 0;
    background: #f5f5f5;
}

.other-services-list .section-banner-title h4{
  font-size: 36px;
  font-weight: 300;
  margin: 0 0 20px;color: #3E3E3F;
}
.other-services-list .section-banner-title h4 span{
  color: #F58220;
}
.other-services-list li a{ font-weight: 300; color: #3E3E3F;    padding: 5px 0;}
.other-services-list li a:hover{ color: #F58220;}

@media (max-width: 1020px) {
  .veetech-slider .controls-container{
    top: inherit;
    right: inherit;
    bottom: 0;transform: rotate(90deg);
  }
  .main_banner, .main_banner ul li{
    height: 140vh;
  }
  .grid figure figcaption{
    bottom: 5%
  }
  .main_banner ul{
    flex-direction: column;
  }
  .grid figure{
    height: 15vh;
  }
  figure.effect-sadie:hover figcaption {
    -webkit-transform: translate3d(0, -110%, 0) translate3d(0, 100px, 0);
    transform: translate3d(0, -110%, 0) translate3d(0, 100px, 0);
  }
  figure.effect-sadie p{ margin: 0;}
  .main_banner .bg_image{
    background-size: cover;
  }
  .slider-content h3{
    font-size: 15px;
  }
  .veetech-slider{
    height: 60vh;
  }
  .veetech-slider .control{
    height: 20px;
  }
  .main_banner ul li:hover .grid figure {
    height: 25vh;
}
}





  /* WHY CHOOSE TABS IN HOME START */
  

.whychoose-tabs {
  position: relative;
  min-height: 0;
  /* -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; */
}
.whychoose-tabs .whychoose-tab {
  margin-bottom: 1px;
}
@media screen and (min-width: 993px) {
  .whychoose-tabs .whychoose-tab {
    width: 30%;
  }
}
.whychoose-tabs .whychoose-tab .whychoose-tab-toggle {
  padding: 1rem 4rem 1rem 2rem;
  position: relative;
  outline: none;
  width: 100%;
}

.whychoose-tabs .whychoose-tab .whychoose-tab-toggle.active {
  background-color: #FFF8F3 !important;
  color: #F58220;
  font-weight: 300;
  margin-bottom: 0;
  min-height: 80px;
  width: 100%;
  border-bottom: 2px solid #F58220;
}
.whychoose-tabs .whychoose-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  /* -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s; */
}
@media screen and (min-width: 993px) {
  .whychoose-tabs .whychoose-content {
    max-height: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    /* opacity: 0; */
    display: none;
    padding: 0rem 2rem 2rem 2rem;

  }
  .whychoose-tabs .whychoose-content{
    padding: 2rem 0;
  }
}
.whychoose-tabs .whychoose-content.active {
  max-height: 1000px;padding: 0 1rem;
}
@media screen and (min-width: 55rem) {
  .whychoose-tabs .whychoose-content.active {
    max-height: none;
    /* opacity: 1; */
    display: block;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  
}
@media (max-width: 768px) {
  /* .whychoose-tabs .whychoose-content{
    padding: 2rem 1rem !important;
  } */
  .whychoose-tabs .contentSection .content, .whychoose-tabs .whychoose-content {
    padding: 0;
}
.whychoose-tabs .whychoose-tab .whychoose-tab-toggle{
  padding: 0 1rem !important;
    min-height: 60px !important;
  }
}
  /* WHY CHOOSE TABS IN HOME END */




/* NEW MOBILE MENU END */

.headermobmenu-mobile {
  height: 5rem;
  min-height: 3.75rem;
  background-color: #000;
  z-index: 1030; }
  .headermobmenu-mobile .logo {
    margin: 0 auto; }
  .headermobmenu-mobile .logo__image {
    max-height: 4.5rem; }
  @media (min-width: 1200px) {
    .headermobmenu-mobile {
      display: none; } }

.headermobmenu-mobile_sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 8px 25px 0 rgba(140, 152, 164, 0.15); }

.headermobmenu-mobile__navigation {
  display: flex;
  flex-direction: column;
  height: 0;
  max-height: 0;
  transition: max-height .35s, height .35s;
  z-index: 1030; }
  .headermobmenu-mobile__navigation .search-field__input {
    padding: 0.625rem 0.875rem 0.375rem; }
  .headermobmenu-mobile__navigation .search-result {
    max-height: 30rem;
    overflow: auto;
    background-color: #ffffff;
    z-index: 1; }
    .headermobmenu-mobile__navigation .search-result .product-card {
      display: flex;
      margin: 0.625rem 0; }
    .headermobmenu-mobile__navigation .search-result .pc__img-wrapper {
      width: 40%;
      margin-right: 0.875rem; }
  .headermobmenu-mobile__navigation .navigation__link {
    padding: 10px 20px 0;
    font-size: 1rem; 
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    color: #fff;}
    /* {
      background: #000;
    margin-right: 10px;
    right: 0;
    position: absolute;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 300;
    border-radius: 50px;
    z-index: 9;
    } */

    .headermobmenu-mobile__navigation .js-nav-left{
      padding: 5px 20px;
      font-family: 'Kanit', sans-serif;
      font-weight: 300;
      color: #fff;
      position: absolute;
      right: 10px;
      z-index: 9;
      background: #000;
      font-size: 12px;
      top: 10px;
      border-radius: 50px;
  }


    .headermobmenu-mobile__navigation .navigation__item .sub-menu .submenu-title{
      background: #353535;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    margin: 0;
    }
    .headermobmenu-mobile__navigation .navigation__item .sub-menu .sub-menu__item a{
      background: none;
    }
    .headermobmenu-mobile__navigation .navigation__link .flaticon {
      font-size: 0.75rem; }
    .headermobmenu-mobile__navigation .navigation__link:after {
      top: auto;
      bottom: 0.5rem;
      left: 0; }
      /* .headermobmenu-mobile__navigation .navigation__link span{
        background: #000;
        margin-right: 10px;
        right: 0;
        position: absolute;
        padding: 2px 10px;
        font-size: 12px;
        font-weight: 300;
        border-radius: 50px;
      } */
  .headermobmenu-mobile__navigation .form-select-sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }

.mobile-nav-activator .nav-icon,
.mobile-nav-activator .btn-close-lg {
  transition: all .24s;    fill: #fff; }
.mobile-nav-activator .btn-close-lg {
  transform: rotate(-90deg);
  opacity: 0;
  visibility: hidden; }

.mobile-menu-opened {
  overflow: hidden; }
  .mobile-menu-opened .headermobmenu-mobile {
    z-index: 1050; }
  .mobile-menu-opened .headermobmenu-mobile__navigation {
    height: calc(120vh - 100%);
    max-height: calc(100vh - 100%);
    transition: max-height .35s, height .35s;
    border-top: 1px solid #595959; }
  .mobile-menu-opened .navigation__list {
    left: 0;
    transition: all .18s ease-in; }
  .mobile-menu-opened .mobile-nav-activator .nav-icon {
    opacity: 0;
    visibility: hidden; }
  .mobile-menu-opened .mobile-nav-activator .btn-close-lg {
    transform: rotate(0);
    opacity: 1;
    visibility: visible; }

.headermobmenu_sticky {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9;
  transition: all .3s ease; }

.headermobmenu_sticky-active {
  position: fixed;
  animation: moveDown .5s;
  background-color: #000;
  box-shadow: 0 8px 25px 0 rgba(140, 152, 164, 0.15);
  z-index: 1020; }
  .headermobmenu_sticky-active.headermobmenu_sticky-bg_dark {
    background-color: #222222; }
  .headermobmenu_sticky-active .headermobmenu-desk_type_3 {
    padding-top: 1.5rem; }
    .top-100 {
      top: 100% !important;
  }

  .start-100 {
    left: 100% !important;
}
  .bg-body {
    /* background-color: #ffffff !important; */
    backdrop-filter: blur(10px);
    background: rgb(0 0 0 / 10%);
}
.top-0 {
  top: 0 !important;
}
.ms-auto {
  margin-left: auto !important;
}
.btn-close,
.btn-close-lg,
.btn-close-xs {
  padding: 0;
  border: 0;
  box-sizing: content-box;
  color: #fff;
  border-radius: 0;
  opacity: 1; }
  .btn-close:hover,
  .btn-close-lg:hover,
  .btn-close-xs:hover {
    color: #FFA200;
    text-decoration: none;
    opacity: 0.75; }
  .btn-close:focus,
  .btn-close-lg:focus,
  .btn-close-xs:focus {
    outline: none;
    box-shadow: none;
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled,
  .btn-close-lg:disabled,
  .btn-close-lg.disabled,
  .btn-close-xs:disabled,
  .btn-close-xs.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25; }

.btn-close {
  width: 1.375rem;
  height: 1.375rem;
  padding: 0.25em 0.25em;
  background: transparent url("../images/close-icon.svg") center/1.375rem auto no-repeat; }

.btn-close-lg {
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 6px !important;
  background: transparent url("../images/close-icon.svg") center/1rem auto no-repeat; }

.btn-close-xs {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  background: transparent url("../images/close-icon.svg") center/0.625rem auto no-repeat; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

  .sub-menu__item a {
    padding: 5px 20px;
    font-size: 1rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    color: #fff;
}
.menu__wrapper{
  height: 100vh;
}


.sub-menu__list .submenu-innter-title {
  font-size: 13px;
  font-weight: 300;
  line-height: 27px;
  position: relative;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: #212020;
}
.sub-menu__list .submenu-innter-title a{color: #FFA200; font-size: 14px;}

   /* NEW MOBILE MENU END */



   
.video-home {
  position: relative;
  max-width: 100%;
  background-color: #000;
}
.video-home:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video__poster {
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  right: 0;
  z-index: 10;
  transition: opacity 0.3s, visibility 0s 0.3s;
  cursor: pointer;
}
.video__poster:before {
  width: 75px;
  height: 75px;
  max-height: 75vw;
  max-width: 75vh;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.video__poster:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.video__poster--hide {
  opacity: 0;
  visibility: hidden;
}
.video__image {
  display: block;
  width: 100%;
}
.video__iframe, .video__video,
.video-home iframe {
  left: 0;
  position: absolute;
  top: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

#menu{ display: none;}







.timeline {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.timeline .swiper-container {
  width: 100%;
  position: relative;
  height: 100vh;
}
.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
  position: relative;
  /* overflow: hidden; */
  background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  height: 100% !important;
  overflow: auto;
  /* overflow-y: auto; */
}
.timeline .swiper-slide::after {
  /* content: ""; */
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
}
.timeline .swiper-slide-content {
  /* position: absolute; */
    /* text-align: center; */
    /* width: 80%; */
    right: 40%;
    /* top: 13%; */
    font-size: 12px;
    /* z-index: 2; */
    padding: 20px 0;
    padding-left: 25px;
    transform: translate(150px);
    width: calc( 100% - 156px);
    padding-top: 60px;
}
.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 50px;
  -color: #F58220;
  font-weight: 300;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}
.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  -transition: 0.2s ease 0.5s;
}
.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  /* -transition: 0.2s ease 0.6s; */
}
.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  /* transition: 0.4s ease 1.6s; */
}
.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  /* transition: 0.4s ease 1.7s; */
}
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  /* transition: 0.4s ease 1.8s; */
  text-align: left;
  margin: 0 0 20px;
  font-size: 16px;
}
.timeline .swiper-slide-active .timeline-text a {
  color: #fff;
}
.timeline .swiper-pagination {
  left: 0;
  height: 64%;
  display: grid;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;    width: 156px;
  
}
.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: 0 0;
  color: #606060;
  margin: 10px 0 !important;
  position: relative;     width: 67px;
}
.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -37px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #F58220;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: 0.2s;
}
.timeline .swiper-pagination-bullet-active {
  color: #F58220;    font-size: 30px;
}
.timeline .swiper-pagination-bullet-active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}
.timeline .swiper-button-prev {
  top: 15%;
  left: 7%;
  right: 15%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
}
.timeline .swiper-button-prev:hover {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.timeline .swiper-button-next {
  top: auto;
  bottom: 15%;
  right: 15%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
}
.timeline .swiper-button-next:hover {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
  -webkit-transform: rotate(90deg) translate(0, 10px);
  transform: rotate(90deg) translate(0, 10px);
}
@media screen and (min-width: 768px) {
  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
  }
  .timeline .swiper-slide-content {
    /* right: 30%;  */
    top: 50%;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    /* width: 85%; */
    font-size: 16px;
    text-align: left;
  }
  .timeline .swiper-slide .timeline-year {
    margin-bottom: 0;
    font-size: 32px;
  }
  .timeline .swiper-slide .timeline-title {
    font-size: 46px;
    margin: 0;
  }
  .timeline .swiper-button-prev {
    top: 15%;
    /* left: auto;
    right:17%; */
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    -webkit-transform: rotate(90deg) translate(-3px, 10px);
    transform: rotate(90deg) translate(-3px, 10px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    left: 7%;
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    -webkit-transform: rotate(90deg) translate(3px, 10px);
    transform: rotate(90deg) translate(3px, 10px);
  }
}
@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
  }
  /* .timeline .swiper-slide-content {
    left: 0;
  } */
}
.timeline__img {
  max-width: 100%;
}
.timeline-item--active .timeline__content-title {
  margin: 0;
}
.timeline__content-title {
  font-weight: 600;
  font-size: 26px;
  margin: 10px 0;
  transition: 0.4s;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  text-align: left;
}
.background-overlay {
  /* background: rgba(0, 0, 0, 0.7); */
  width: 100%;
  height: 100%;
  position: absolute;
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -moz-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    -o-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -o-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    -ms-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -ms-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.swiper-pagination {
  overflow: auto;
}
.swiper-pagination {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.swiper-pagination::-webkit-scrollbar {
  display: none;
}
.timeline .swiper-container::after {
  content: "";
  position: absolute;
  left: 139px !important;
  top: 0;
  height: 100%;
  width: 3px;
  /* background-color: #3b3c38; */
  background: linear-gradient(180deg, rgba(245, 130, 32, 0) 0%, #FFA200 50%, rgba(245, 130, 32, 0) 100%);
  z-index: 0;
}
.swiper-container,
.swiper-wrapper {
  z-index: inherit !important;
}

@media screen and (max-width: 360px) {
  /* .timeline .swiper-pagination {
    right: -4%;
  }
  .timeline .swiper-button-prev {
    right: 3%;
  } */
}

@media screen and (max-width: 480px) {
  .timeline .swiper-pagination {
    right: 0;
     width: 100px;
  }

  .timeline__content-title {
    font-size: 20px;
    text-align: left;
  }
  .timeline .swiper-slide-active .timeline-text {
    text-align: left;
    font-size: 13px;
    padding:  15px;
  }
  .timeline__img {
    max-width: 60%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  }
  .timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 6%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 6%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-container::after{
    left: 22%;
  }
}
@media screen and (max-width: 640px) {
  .timeline__content-title {
    font-size: 20px;
    text-align: left;
  }
  .timeline .swiper-slide-active .timeline-text {
    text-align: left;
    font-size: 13px;
    padding: 0 !important;
  }
  .timeline .swiper-pagination {
    right: 0;
  }
  .timeline__img {
    max-width: 60%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
  }
  .timeline .swiper-button-prev {
    top: 5%;
    left: 10%;
    right: auto;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 22%;
    left: 10%;
    right: auto;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transform: rotate(90deg) translate(0, 10px);
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-slide-content{
    /* right: 38%;    
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%); */
    /* -webkit-transform: translate(156px, 4%); */
    /* transform: translate(156px, 4%); */
    transform: translateX(110px) !important;
    padding: 60px 0 10px 10px !important;
    width: calc(100% - 110px) !important;
  }
  .timeline .swiper-pagination{
    font-size: 15px !important;
    top: 10% !important;
    left: 0px !important;
  }
  .timeline .swiper-pagination-bullet-active{
    font-size: 22px;
  }
  .timeline .swiper-pagination-bullet::before{
    right: -16px !important;
    top: 12px !important;
  }
  .timeline .swiper-container::after{
    left: 90px !important;
  }
}



@media screen and (min-width: 1920px) {
  .timeline .swiper-button-next,
  .timeline .swiper-button-prev{
    right: 16%;
  }
  .timeline .swiper-pagination-bullet::before{
    right: -29px;
  }
}

  .timeline__img {
    max-width: 100%;
  }
  .timeline-item--active .timeline__content-title {
    margin: 0;
  }
  .timeline__content-title {
    font-weight: 600;
    font-size: 26px;
    margin: 10px 0;
    transition: 0.4s;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pathway Gothic One", sans-serif;
    text-align: left;
  }
  .background-overlay {
    /* background: rgba(0, 0, 0, 0.7); */
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  @-webkit-keyframes imageAnimation {
    0% {
      opacity: 0;
      -webkit-animation-timing-function: ease-in;
    }
    8% {
      opacity: 1;
      -webkit-animation-timing-function: ease-out;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-moz-keyframes imageAnimation {
    0% {
      opacity: 0;
      -moz-animation-timing-function: ease-in;
    }
    8% {
      opacity: 1;
      -moz-animation-timing-function: ease-out;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-o-keyframes imageAnimation {
    0% {
      opacity: 0;
      -o-animation-timing-function: ease-in;
    }
    8% {
      opacity: 1;
      -o-animation-timing-function: ease-out;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @-ms-keyframes imageAnimation {
    0% {
      opacity: 0;
      -ms-animation-timing-function: ease-in;
    }
    8% {
      opacity: 1;
      -ms-animation-timing-function: ease-out;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes imageAnimation {
    0% {
      opacity: 0;
      animation-timing-function: ease-in;
    }
    8% {
      opacity: 1;
      animation-timing-function: ease-out;
    }
    17% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .swiper-pagination {
    overflow: auto;
  }
  .swiper-pagination {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .swiper-pagination::-webkit-scrollbar {
    display: none;
  }
  .timeline .swiper-container::after {
    content: "";
    position: absolute;
    left:12%;
    top: 0;
    height: 100%;
    width: 3px;
    /* background-color: #3b3c38; */
    background: linear-gradient(180deg, rgba(245, 130, 32, 0) 0%, #FFA200 50%, rgba(245, 130, 32, 0) 100%);
    z-index: 0;
  }
  .swiper-container,
  .swiper-wrapper {
    z-index: inherit !important;
  }
  
  @media screen and (max-width: 360px) {
    .timeline .swiper-pagination {
      right: -4%;
    }
    .timeline .swiper-button-prev {
      right: 3%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .timeline .swiper-pagination {
      right: 0;
    }
  
    .timeline__content-title {
      font-size: 20px;
      text-align: left;
    }
    .timeline .swiper-slide-active .timeline-text {
      text-align: left;
      font-size: 13px;
      padding:  15px;
    }
    .timeline__img {
      max-width: 60%;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }
    .timeline .swiper-button-prev {
      top: 15%;
      left: auto;
      right: 6%;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-prev:hover {
      -webkit-transform: translateX(-3px);
      transform: translateX(-3px);
    }
    .timeline .swiper-button-next {
      top: auto;
      bottom: 15%;
      right: 6%;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-next:hover {
      -webkit-transform: translateX(3px);
      transform: translateX(3px);
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-container::after{
      left: 22%;
    }
  }
  
  @media screen and (max-width: 640px) {
    .timeline__content-title {
      font-size: 20px;
      text-align: left;
    }
    .timeline .swiper-slide-active .timeline-text {
      text-align: left;
      font-size: 13px;
      padding: 0 15px;
    }
    .timeline .swiper-pagination {
      right: 0;
      width: 100px;
    }
    .timeline__img {
      max-width: 60%;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }
    .timeline .swiper-button-prev {
      top: 5%;
      left: 10%;
      right: auto;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-prev:hover {
      -webkit-transform: translateX(-3px);
      transform: translateX(-3px);
    }
    .timeline .swiper-button-next {
      top: auto;
      bottom: 22%;
      left: 10%;
      right: auto;
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-next:hover {
      -webkit-transform: translateX(3px);
      transform: translateX(3px);
      -webkit-transform: rotate(90deg) translate(0, 10px);
      transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-slide-content{
      right: 38%;    -webkit-transform: translate(50%, 50%);
      transform: translate(50%, 50%);
    }
    .timeline .swiper-pagination{
      left: -12%;    font-size: 15px;top: 10%;
    }
    .timeline .swiper-pagination-bullet-active{
      font-size: 22px;
    }
    .timeline .swiper-pagination-bullet::before{
      right: -20px;top: 12px;
    }
  }
  
  
  
  @media screen and (min-width: 1920px) {
    .timeline .swiper-button-next,
    .timeline .swiper-button-prev{
      right: 16%;
    }
    .timeline .swiper-pagination-bullet::before{
      right: -29px;
    }
  }

  
.banner-slider-1 {
  /* height: 100%; */
  background-image: url(../images/banner/slider-banner-1.png);
  background-size: 125%;
  background-repeat: repeat-x;
  animation: animatedBackground 30s linear infinite;
 overflow: hidden;    width: 100%;
}

.banner-slider-2 {
  /* height: 100%; */
  background-image: url(../images/banner/slider-banner-2.png);
  background-size: 125%;
  background-repeat: repeat-x;
  animation: animatedBackground 30s linear infinite;
 overflow: hidden;    width: 100%;
 padding-left: 50px;
}
.banner-slider-3 {
  height: 600px;
  background-image: url(../images/banner/slider-banner-3.png);
  background-size: 90%;
  background-repeat: repeat-x;
  animation: animatedBackground 20s linear infinite;
 overflow: hidden;    width: 100%;
}
.banner-slider-3 img{
  position: absolute;
    right: 0;
    bottom: -100px;
}

.banner-slider-4 {
  height: 600px;
  background-image: url(../images/banner/slider-banner-4.png);
  background-size: 90%;
  background-repeat: repeat-x;
  animation: animatedBackground 20s linear infinite;
 overflow: hidden;    width: 100%;
}

.banner-slider-4 .lineOne {
  transition-delay:.2s; 
  transition:.4s ease in;
  animation: txtFlyIn .3s linear;
    
  }
  .banner-slider-4 .lineTwo {
    transition-delay:.4s; 
    transition:.6s ease in;
    animation: txtFlyIn .6s linear;
      
  }
  .banner-slider-4 .lineThree {
    transition-delay:.6s; 
    transition:.8s ease in;
    animation: txtFlyIn .9s linear;
  }
  .banner-slider-4  .banner-hand{ margin-bottom: 20px;}


  .banner-slider-5 {
    height: 600px;
    /* position: absolute;
  background:radial-gradient(circle, rgba(255,101,5,1) 0%, rgba(0,0,0,1) 100%);
    background-size: -500% 100%;
    animation: gradient 16s linear infinite;
    animation-direction: alternate; */

    background: radial-gradient(farthest-corner at bottom, #ff6505 0%, #ff6205 4%, #e95404 12.25%, #792503 31.25%, #2c0903 50%) bottom right/200% 200%;
    animation: colorChange 5s infinite alternate;
    /* background-size: 90%; */
    /* background-repeat: repeat-x; */
    /* animation: animatedBackground 20s linear infinite; */
   overflow: hidden;    
   width: 100%;
   height: 600px;
  }
  @keyframes colorChange {
    to {
      background-position:top left;
    }
   }
  .banner-slider-5 .lineOne {
    transition-delay:.2s; 
    transition:.4s ease in;
    animation: txtFlyIn .3s linear;
      
    }
    .banner-slider-5 .lineTwo {
      transition-delay:.4s; 
      transition:.6s ease in;
      animation: txtFlyIn .6s linear;
      font-size: 32px; padding-bottom: 20px;
    }
    .banner-slider-5 .lineThree {
      transition-delay:.6s; 
      transition:.8s ease in;
      animation: txtFlyIn .9s linear;
      font-size: 26px; font-weight: 300;
    }
    .banner-slider-5  .banner-hand{ margin-bottom: 30px;}






.flyinTxtCont {
  height: 100%;
}
.flyIn {
  color:#fff;
  line-height:1em;
  position:relative;
text-shadow: 2px 2px 40px rgba(0,0,0,0.7);
  font-family: 'Kanit', sans-serif; 
 
}
.lineOne {
transition-delay:.2s; 
transition:.4s ease in;
animation: txtFlyIn .3s linear;
  
}
.lineTwo {
  transition-delay:.4s; 
  transition:.6s ease in;
  animation: txtFlyIn .6s linear;
    
}
.lineThree {
  transition-delay:.6s; 
  transition:.8s ease in;
  animation: txtFlyIn .9s linear;
}
.lineOne, .lineTwo, .lineThree {
  font-size: 50px;
  font-weight: 500;
  /* line-height: 55px; */
}

.txtHe{
font-weight: 300 !important;font-size:42px; color: #F58220;    padding: 0 0 20px;
}

@media screen and (min-width: 1680px) {
  .banner-slider-3{
    background-size: 65%;
  }
  }

@media screen and (max-width: 640px) {
  .banner-slider-1{
    background-size: 260%;
  }
  .banner-slider-2 {
    padding: 0;
    height: 450px;
    background-size: 230%;
  }
  .banner-slider-2 img{
    padding: 0 !important;
    width: 200px;
    text-align: center;
  }
  .banner-slider-3{
    background-size: 200%;
    height: 350px;
  }
  .banner-slider-1 .lineOne img{
    padding: 30px 80px 0;
  }
  .banner-slider-1 .txtHe{
    padding: 0;
  } 
  .banner-slider-3 .flyinTxtCont,   .banner-slider-2 .flyinTxtCont{ text-align: center;}
  .banner-slider-3 .flyinTxtCont .lineOne,   .banner-slider-2 .flyinTxtCont .lineOne{ 
    padding: 0;
    font-size: 22px;
  }
.banner-hand{
  display: none;
}
.lineOne, .lineTwo, .lineThree {
  font-size: 20px;
  top: 32%;
  line-height: 30px;
}
.flyinTxtCont {
  height: 400px;
}
.lineOne img{
  padding: 0 30px;
}

.banner-slider-4{
  background-size: 200%;
  height: 350px;
}
.banner-slider-4 img{
  width: 40px;
}
.banner-slider-4  .banner-hand,
.banner-slider-5 .banner-hand{
  display: block; width: 200px; margin-bottom: 0;
}
.banner-slider-4  .lineTwo,
.banner-slider-5  .lineTwo{
  top: 12%;
}
.banner-slider-5 .lineTwo{
  font-size: 17px;
    text-align: center;
    padding: 10px 20px 0;
    line-height: 24px;
}
.banner-slider-5 .lineThree{
  font-size: 20px !important;
  top: 14%;
  line-height: 24px;
  text-align: center;
}
.slide-magazine{
  width: 50px;
}
}


@keyframes animatedBackground {
  0% { background-position: 0 0; }
  50% { background-position: 50% 0; }
  100% { background-position: 100% 0; }
}

@keyframes txtFlyIn{
  0% { transform:translateY(-100%); }
  100% { transform:translateY(0%); }
}

/* ----------------------------------------------
 * Generated by Animista on 2024-1-19 15:46:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-left-to-right
 * ----------------------------------------
 */
 @-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

.slide-left-right {
	-webkit-animation: slide-right 8000ms cubic-bezier(0.550, 0.085, 0.680, 0.530) forwards;
	        animation: slide-right 8000ms cubic-bezier(0.550, 0.085, 0.680, 0.530) forwards;
}

/**
 * ----------------------------------------
 * animation slide-top-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
/**
 * ----------------------------------------
 * animation slide-right-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
.slide-right-left {
	-webkit-animation: slide-left 8000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-left 8000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-top-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
.slide-top-bottom {
	-webkit-animation: slide-top 2000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 2000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-bottom-1 {
	-webkit-animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-bottom-2 {
	-webkit-animation: slide-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-bottom-3 {
	-webkit-animation: slide-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-bottom-4 {
	-webkit-animation: slide-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/**
 * ----------------------------------------
 * animation slide-bottom-to-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
            opacity: 1;
  }
}

.slide-top-thumb-1 {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-thumb-2 {
	-webkit-animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-thumb-3 {
	-webkit-animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-thumb-4 {
	-webkit-animation: slide-top 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.slide-top-thumb-5 {
	-webkit-animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



/**
 * ----------------------------------------
 * animation slide-magazine
 * ----------------------------------------
 */
 @-webkit-keyframes slide-magazine {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes slide-magazine {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.slide-magazine {
	-webkit-animation: slide-magazine 2000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-magazine 2000ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
          padding: 0 5px;
}





/* Banner slider new 19Jan2024 */

.carousel-indicators {
	bottom: 0;
}
.carousel-control.right,
.carousel-control.left {
	background-image: none;
}
.carousel-item {
	min-height: 350px; 
	height: 100%;
	width:100%; 
}
.carousel-caption h3 {
	padding: .5em;
}
.carousel .icon-container {
	display: inline-block;
	font-size: 25px;
	line-height: 25px;
	padding: 1em;
	text-align: center;
	border-radius: 50%;
}

.carousel-caption .btn,
.carousel-caption button {
  background: #F7941E;
	border-color: #F7941E;
	margin-top: 1em; 
  cursor: pointer;
}

.carousel-caption .btn:hover,
.carousel-caption button:hover {
  background-color: #AED139 !important;
  border-color: #AED139;
}

.carousel-caption h3:first-child {
  -webkit-animation: fadeInUp 300ms linear 300ms both;
  -moz-animation: fadeInUp 300ms linear 300ms both;
  -o-animation: fadeInUp 300ms linear 300ms both;
  -ms-animation: fadeInUp 300ms linear 300ms both;
  animation: fadeInUp 300ms linear 300ms both;
}
.carousel-caption h3:nth-child(2) {
  -webkit-animation: fadeInUp 300ms linear 600ms both;
  -moz-animation: fadeInUp 300ms linear 600ms both;
  -o-animation: fadeInUp 300ms linear 600ms both;
  -ms-animation: fadeInUp 300ms linear 600ms both;
  animation: fadeInUp 300ms linear 600ms both;
}
.carousel-caption button {
  -webkit-animation: fadeInUp 300ms linear 900ms both;
  -moz-animation: fadeInUp 300ms linear 900ms both;
  -o-animation: fadeInUp 300ms linear 900ms both;
  -ms-animation: fadeInUp 300ms linear 900ms both;
  animation: fadeInUp 300ms linear 900ms both;
}

.carousel-caption{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


.contact-btn{
  border: 1px solid #F58220; color: #606060;
  border-radius: 50px; background: none; padding:5px 20px;
}
.contact-btn:hover{
  color: #F58220;
}
.contact-resetbtn{
  border: 1px solid #CDCDCD; color: #CDCDCD;
  border-radius: 50px; background: none; padding:5px 20px; font-weight: 500;
}
.ques-text{
  font-size: 72px !important;
  color: #F58220 !important;
  opacity: 0.3;
  font-weight: 800;
}
.healthcare-img img{
  /* transition: all 0.3s ease; */
  -webkit-transition: all 0.25s ease;
   transition: all 0.50s ease;
   position: relative;
 }
.healthcare-img:hover>img {
  transform: scale(1.05);
}
/* .services-sec-list-left:hover>::before{
  content: '';
  background: rgb(0 0 0 / 35%);
    position: absolute;
    width: 98%;
    height: 69%;
    top: 88px;
    left: 0;
}
.services-sec-list-right:hover>::before{
  content: '';
  background: rgb(0 0 0 / 35%);
    position: absolute;
    width: 100%;
    height: 66%;
    top: 99px;
    left: 44px;
} */


.event-head-ellipsis .head-reflect-text{
  position: relative;
  color: #f1f1f1;
  z-index: -1;
  font-size: 90px;
  top: 10px;
  font-weight: 600;
}
.position-none, .left-0, .right-0{ position: inherit !important; top: 0; left: 0;}
@media (min-width: 1920px) {
  .healthTabs {
    padding: 50px 0 0 300px;
  }
  }
@media (max-width: 768px) {
  .health-code-img {
   position: inherit;
  }
  }

  
  .ser-fourth-level .breadcrumb-collapse li:last-child{
    width: auto;
  }

  @media (max-width: 768px) {
    .innberBanner-bg  {
      background-size: cover !important;
    }
    .glass{
      bottom: 75px;
    }
    .breadcrumb-collapse li:last-child{
      padding-top: 0;
      width: auto;
    }
    .breadcrumb-collapse {
      left: 4%;
      width: 92%;
  }
  .counter-new-wrap .background-image-medical .coount-content, .counter-new-wrap .background-image-Claims .coount-content, .counter-new-wrap .background-image-Member .coount-content, .counter-new-wrap .background-image-network .coount-content, .counter-new-wrap .background-image-value .coount-content
  {
    width: 80%;    padding: 20px 0;
  }
    }





/* Button style */
.search-btn{
  color: #FFA200 !important;
}
.search-btn .fa.fa-search{
  padding-left: 10px;
}
.search-btn-wrapper{
  border: 1px solid #FFA200;
  border-radius: 5px;
  padding-right: 20px;
  padding-left: 20px;
  line-height: 40px;
}
.search-btn:hover{ 
  color: #fff !important; 
}
.search-btn:hover .search-btn-wrapper{
  border: 1px solid #FFA200;
  border-radius: 6px;
  padding-right: 20px;
  padding-left: 20px;
  line-height: 40px;
  background-color: #FFA200 ;
}

/* Search box style  */
.small-12.columns{
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px
}
.search-box.search-elem {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(31, 31, 31, 0.9);
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.search-box.search-elem.search-open {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* Close btn style  */
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  border: 0;
  font-size: 25px;
  font-weight: 300;
  display: block;
  cursor: pointer;
  color: #fff;
  padding: 0;
  background-color: red !important;
  border-radius: 50%;
  outline: none;
  width: 50px;
  height: 50px;
  opacity: 1;
  padding-bottom: 7px !important;
  line-height: unset;
 }
 .search-box.search-elem .inner {
  width: 70%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.search-box.search-elem label.placeholder.move-up {
  top: -40px;
  color: white;
  font-size: 22px;
  left: 2rem;
  opacity: .5;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 10px;
    left: 50px;
    font-size: 32px;
    font-weight: 200;
    color: #999;
    transition: all 0.3s;
    background-color: inherit;
}
.search-box.search-elem input[type=text] {
  padding: 20px;
  height: 72px;
  font-size: 32px;
  font-weight: 300;
  border: none;
  border-bottom: solid 2px #F58220;
  transition: border 0.3s;
  border-radius: 0;
  width: 100%;
}
.search-box.search-elem button.submit[disabled] {
  background: #F58220;
  color: #fff;
  font-size: 18px;
  font-weight: 300;

}
.search-box.search-elem button.submit {
  outline: none;
  position: absolute;
  top: 0;
  right: 15px;
  height: 70px;
  padding: 10px 2rem;
  background: #1F1F1F;
  font-size: 18px;
  color: white;
   font-weight: 300;
  /* border: 1px solid #F58220; */
}

/* Search Bar Mobile Compatibility UI 12-7-24 Start */
@media screen and (max-width: 665px){
  .close-btn{
    font-size: 17px;
    width: 30px;
    height: 30px;
  }
  .search-box.search-elem input[type=text] {
    padding: 5px 10px;
    height: 40px;
    font-size: 16px;
  }
  .search-box.search-elem label.placeholder{
    font-size: 16px;
    top: 7px;
    left: 25px;
  }
  .search-box.search-elem button.submit[disabled],.search-box.search-elem button.submit{
    font-size: 14px;
    padding: 10px 10px;
    line-height: 20px;
    height: 40px;
    box-shadow: 0 .125rem .25rem #f582204a !important;
  }

  .search-box.search-elem label.placeholder.move-up{
    top: -26px;
    font-size: 14px;
  }
  .search-box.search-elem .inner{
    width: 90%;
  }
  }
  @media screen and (max-width:1220px) {
    .search-btn .fa.fa-search{
      font-weight: 500;
      padding-right: 5px;
      font-size: 20px;
      padding-top: 5px;
    }
  }

/* Search Bar Mobile Compatibility UI End */


/* Banmer service UI 10-6-24 start */
.banner-service-1, .banner-service-2,.banner-service-3,.banner-service-4,.banner-service-5,.banner-service-6{
  height: 600px;
  background-image: url(../images/banner/slider-banner-3.png);
  background-size: 90%;
  background-repeat: repeat-x ;
  animation: animatedBackground 20s linear infinite;
  overflow: hidden;
  width: 100%;
  /* background-size: cover; */
}
/* .banner-service-2 .lineTwo{
  width: 70%;
} */
@media screen and (max-width:1200px){
  .banner-service-1, .banner-service-2,.banner-service-3,.banner-service-4,.banner-service-5,.banner-service-6{
  background-size: cover;  
  }
  .banner-service-2 .lineTwo,.banner-service-3 .lineTwo{
    width: 100% !important;
    
}

}
@media screen and (max-width:1400px) and (min-width:640px){
.carouselExampleIndicators .lineTwo
{
  font-size: 45px;
}
}
.banner-service-1 img{
  position: absolute;
  right: 0;
  bottom: -100px;
}

.banner-service-3 img,.banner-service-4 img,.banner-service-6 img{
  position: absolute;
  right: 0;
  bottom: -50px;
}
.banner-service-3 img{
  height: 550px;
}
.banner-service-4 img,.banner-service-6 img{
  height: 420px;
}

.banner-service-2 img{
  position: absolute;
  height: 500px;
  right:0;
  bottom: -80px;
}
.banner-service-5 img{
  height: 500px;
  position: absolute;
  right:0;
  height: 400px;
  bottom: -50px;
}

.flyinTxtCont .lineTwo{
  margin-top: 90px;
  font-weight: 300;
  width: 95%;
  line-height: 120%;
}

  @media screen and (max-width: 1200px) and (min-width: 640px) {
    .banner-service-1 img,
    .banner-service-2 img,
    .banner-service-3 img,
    .banner-service-4 img,
    .banner-service-5 img,
    .banner-service-6 img{
      height: auto;
      width: 40%;
    }
    .flyinTxtCont{
      padding-top: 90px !important;
    }
  }

@media screen and (min-width: 1680px) {
  .banner-service-1, .banner-service-2,.banner-service-3,.banner-service-4,.banner-service-6,.banner-service-5{
    background-size: 65%;
  }
}
@media screen and (max-width: 640px) {
  .banner-service-1, .banner-service-2,.banner-service-3,.banner-service-4,.banner-service-6,.banner-service-5{
    background-size: 200%;
    height: 350px;
  }
  .banner-service-1 img,
  .banner-service-2 img,
  .banner-service-3 img,
  .banner-service-4 img,
  .banner-service-5 img,
  .banner-service-6 img{
    display: none;
  }

  .banner-service-3 .flyinTxtCont,
  .banner-service-1 .flyinTxtCont,
  .banner-service-6 .flyinTxtCont{ text-align: center;}
  .banner-service-3 .flyinTxtCont .lineOne,
  .banner-service-6 .flyinTxtCont .lineOne,
  .banner-service-1 .flyinTxtCont .lineOne{ 
    padding: 0;
    font-size: 22px;
  }
  .banner-service-2 .lineTwo,
  .banner-service-3 .lineTwo,
  .banner-service-4 .lineTwo,
  .banner-service-5 .lineTwo,
  .banner-service-6 .lineTwo{
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }


}
@media screen and (max-width: 640px) {
   
      .banner-service-4{
        text-align: center;
      }
      .flyinTxtCont{
        width: 80% !important;
        margin: 0 auto;
      }
}
/* Banmer service UI 10-6-24 start */


.color-r{
  color: #F58220;
}



/* R&D Page Style Start */
.veth-h1{
	font-size: 42px;
	line-height: 1.2;
}
.rnd-sec{
  padding-top: 60px;
  /* padding-bottom: 80px; */
}
@media (max-width: 986px){
	.veth-h1{
		font-size: 36px;
	}
}
@media (max-width: 786px){
	.veth-h1{
		font-size: 24px;
	}
  .rnd-thumbnail img {
    height: 170px
  }
}
.rnd-sec .subHeading-title{
  margin-top: 30px;
}
.rnd-sec .subHeading-title:first-child{
  margin-top: 0px;
}
.rnd-thumbnail h4 {
  font-weight: 300;
  padding-bottom: 18px;
}
.rnd-thumbnail{
  row-gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;

}
.rnd-thumbnail img{
  object-fit: cover;
  transform: scale(1) translateZ(0.1px);
  width: 100%;
  height: 275px;
  border-radius: 10px;
}
.rnd-thumbnail .btn-outline-primary{
  color: #FFA200;
  border-color: #FFA200;
  border-radius: 50rem;
  font-weight: 400;
  padding: 5px 14px;
  box-shadow: none !important;
  font-weight: 400px;
}
.rnd-thumbnail .btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active{
  color: #fff;
  background-color: #FFA200;
  border-color: #FFA200;
}
/* R&D Page Style End  */
/* R&D Page Style Start 15/05/25 */

.f-w-100{
    font-weight: 100 !important;
  }
.f-w-200{
    font-weight: 200 !important;
  }
.f-w-300{
    font-weight: 300 !important;
  }
.f-w-400{
    font-weight: 400 !important;
  }
.f-w-500{
    font-weight: 500 !important;
  }
.f-w-600{
    font-weight: 600 !important;
  }
.f-w-700{
    font-weight: 700 !important;
  }
.f-w-800{
    font-weight: 800 !important;
  }
.f-w-900{
    font-weight: 900 !important;
  }

.f-s-13{
  font-size: 13px;
  line-height: 1.6;
}
.f-s-16{
  font-size: 13px;
  line-height: 1.6;
}
.veth-border-otline-box{
  padding: 32px;
  border: 1px solid #D9D9D9;
  border-radius: 24px;
}
.veth-rounded-14{
  border-radius: 14px;
}
.veth-primay-text{
  color: #F58220;
}
.veth-heading-title{
  display: contents;
  font-weight: 300;
  font-size: 36px;
  margin: 0.5em 0 0.5em;
  display: block;
}
.veth-rnd-bg-grey{
  background-color: #F5F3F4;
}
.veth-sec-p-50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.veth-sec-pt-50{
  padding-top: 50px;
}
.veth-sec-p-60{
  padding-top: 60px;
  padding-bottom: 60px;
}
.veth-sec-pb-60{
  padding-bottom: 60px;
}
.veth-sec-pb-40{
  padding-bottom: 40px;
}
.veth-list-simple{
  margin-bottom: 0px;
  padding-left: 20px;
}
.veth-list-simple li{
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.6;
}
.veth-list-simple li::marker{
  font-size: 13px;
}
.veth-heading-4{
  font-size: 24px;
}
.veth-border-bottom {
  border-bottom: 1px solid #CBCBCB;
}
.veth-flex-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.veth-rnd-tech-card{
  background-color: #fff;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  height: 100%;
}
.veth-rnd-tech-card img{
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.veth-tech-row{
  padding-block: 48px;
  border-bottom: 1px solid #CBCBCB; 
  row-gap: 20px;
}
.veth-tech-row-30{
  padding-block: 30px;
  border-bottom: 1px solid #CBCBCB; 
}

.veth-tech-row:last-child,
.veth-tech-row-30:last-child{
  border-bottom: 0px;
  padding-bottom: 0px;
}
.veth-rnd-bg-dark{
  background-color: #3E3E3F;
  position: relative;
  overflow: hidden;
}
.veth-rnd-bg-dark-vect-right,
.veth-rnd-bg-dark-vect-left{
  position: absolute;
  width: 40%;
}
.veth-rnd-bg-dark-vect-left{
  top: -35%;
  transform: translateX(-45%);
}
.veth-rnd-bg-dark-vect-right{
  bottom: -35%;
  right: 0px;
  transform: translateX(45%);
}
.veth-rnd-dark-card{
  padding: 30px;
  background-color: rgb(101 101 101 / 58%);
  backdrop-filter: blur(2px);
  border-radius: 14px;
  margin-bottom: 24px;
}
.veth-border-light-org-box{
  padding: 32px;
  background-color: #FCEDE6;
  border: 1px solid #FCEDE6;
  border-radius: 24px;
}
.veth-border-light-grey-box{
  padding: 32px;
  background-color: #F5F3F4;
  border: 1px solid #F5F3F4;
  border-radius: 24px;
}
.veth-rnd-dard-step{
  background-color: #FF720B;
  color: rgb(73 73 73);
  padding: 7px 0px;
  font-size: 34px;
  border-radius: 8px;
  line-height: 1;
  margin-right: 20px;
  width: 48px;
  flex-shrink: 0;
  text-align: center;
}
.veth-rnd-dark-card h5{
  color: #fff;
  font-weight: 300;
  font-size: 22px;
}
.veth-rnd-dark-card p{
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .veth-border-light-org-box .vth-border-left{
    border-left: 1px solid #898989 !important;
  }
}

.vetk-rnd-pd-card{
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  padding:  18px;
  gap: 20px;
}
.vetk-rnd-pd-card img{
  background-color: rgb(255 114 11 / 5%);
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  padding: 16px;
  border-radius: 50%;
  object-fit: contain;
  overflow: visible;
}
.veth-rnd-ob-card{
  background-color: #F5F3F4;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.veth-rnd-ob-card img.w-30{
  width: 30%;
  margin-bottom: 12px;
}
.veth-rnd-ob-card h4{
  color: #6c757d;
  margin-bottom: 34px;
  font-size: 20px;
}
.veth-rnd-ob-card h6{
  font-size: 18px;
}
.veth-rnd-tf-card{
  background-color: #F5F3F4;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}
.veth-rnd-ob-card span.step{
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 4px #00000012;
  font-size: 28px;
  display: flex;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  color: #F58220;
  margin-bottom: 16px;
  margin-inline: auto;
}
.row-gap-1r{
  row-gap: 1rem;
}
@media screen and (max-width: 786px) {
  .veth-border-otline-box,
  .veth-border-light-org-box,
  .veth-border-light-grey-box{
    padding: 18px 16px;
    border-radius: 12px;
  }
  .rnd-sec .subHeading-title{
    font-size: 20px;
  }
  .veth-heading-title{
    font-size: 28px;
  }
  .veth-heading-4{
    font-size: 18px;
  }
  .veth-sec-p-50,
  .veth-sec-p-60{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .veth-sec-pb-60{
    padding-bottom: 40px;
  }
  .veth-sec-pt-50{
    padding-top: 40px;
  }
  .veth-tech-row{
    padding-block: 24px;
  }
  .veth-rnd-dark-card h5{
    font-size: 18px;
  }
  .veth-rnd-dark-card{
    padding: 18px;
    margin-bottom: 12px;
  }
  .event-head-ellipsis{
    font-size: 18px;
    line-height: 1.4;
  }
}
.veth-rnd-gal-image h4{
  text-align: center;
  padding: 6px 14px;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: #F5F3F4;
  font-size: 22px;

}
.veth-rnd-gal-image img{
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 60 / 45;
  object-fit: cover;
}
a.veth-rnd-thumbnail{
  padding: 14px;
  /* border: 1px solid #D9D9D9; */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #F5F3F4;
}
a.veth-rnd-thumbnail:hover{
  /* background-color: #F5F3F4; */
  background-color:  #FCEDE6;
  border-color: #F5F3F4;
}
.veth-rnd-thumbnail img{
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
  width: auto;
  margin-bottom: 14px;
}
.veth-rnd-thumbnail h4{
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
}
.veth-rnd-thumbnail .btn-outline-primary{
  color: #FF720B;
  border-color: #FF720B;
  border-radius: 6px;
  font-weight: 400;
  padding: 8px 14px;
  box-shadow: none !important;
  font-weight: 400px;
  align-self: baseline;
  margin-top: auto;
  line-height: 1;
}
.veth-rnd-thumbnail:hover .btn-outline-primary{
  color: #FFf;
  border-color: #FF720B;
  background-color:  #FF720B !important;
}

.veth-rnd-center-wrap{
  padding: 28px 0px;
  border-bottom: 1px solid #e7e7e7;
}
.veth-rnd-center-wrap:last-child{
  border-bottom: 0px;
}
.veth-rnd-center-wrap .veth-rnd-center-wrap-item{
  display: flex;
  /* align-items: center; */
  height: 100%;
  border-radius: 8px 0px 0px 8px;
  overflow: hidden;
  background-color:  #F5F3F4;
  min-height: 100px;
  border-radius: 8px;
}

.veth-rnd-center-wrap .veth-rnd-center-wrap-item img{
  height: auto;
  width: 100px;
  object-fit: cover;
  border-radius: 8px;

}
.veth-rnd-center-wrap .veth-rnd-center-wrap-item h5{
  font-size: 16px;
  letter-spacing: 0.2px;

}
.veth-rnd-center-wrap .veth-rnd-center-wrap-item div:has(h5){
  padding: 12px 16px 12px 18px;
  align-self: center;
}
.veth-rnd-center-wrap span:has(i){
  width: 24px;
  height: 24px;
  color: #FF720B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #FF720B;
  font-size: 12px;
  margin-top: 8px;
}
.veth-rnd-center-wrap-item:hover{
  background-color: #FCEDE6;
}
.veth-rnd-center-wrap-item:hover span:has(i){
  background-color:  #FF720B;
  color: #FFf;
}
.service-right-side-img {
    background-image: url(../images/research-and-development/vee-technologies-whitepapaers-transition.png) !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 10% 5%;
}
@media screen and (max-width: 1200px) {
  .service-health-tab #tab-links li a{
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
   .glass.glass-resp{
        width: 95% !important;
        bottom: -30px;
        transform: translateX(-50%);
        left: 50%;
    }
    ul.tabs {
      margin-bottom: 14px;
    }
    .newsroom-sec .title{
      font-size: 32px;
      line-height: 1.2;
    }
}

/* R&D Page Style End 15/05/25 */
.list-item-services ul{
  margin-bottom: 0px;
  padding-left: 20px !important;
  padding-bottom: 16px !important;
}
.awards_sec_img img{
    max-width: 340px;
    max-height: 271px;
}
.awards_sec_img{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 786px) {
  .awards_sec_img{
    margin-bottom: 15px;
  }
}
.benefits-list, .industries-list{
  list-style-type: none !important;
  padding-left: 0 !important;
}
.benefits-list li strong {
  font-weight: 500 !important;
}
p:empty {
  display: none;
}


.vt-wp-card .card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    border: 1px solid #e9e9e9;
    transition: background-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
    transform: translateY(0px);
    height: 100%;
}

.vt-wp-card .card:hover {
    background-color: #fff;
    box-shadow: 0 0 17px rgba(33, 33, 33, 0.13);
    transform: translateY(-5px);
}

.vt-wp-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.vt-wp-card .card-img-top {
    background-color: transparent;
    aspect-ratio: 48 / 23;
    object-fit: cover;
    object-position: center;
}

.vt-wp-card .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 32px;
}
.vt-wp-card .card-title{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vt-wp-card .card-body small {
    color: #5c5c5c;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    font-weight: 300;
}

.vt-wp-card .vt-link-arrow {
    color: #f58220;
    font-weight: 300;
    margin-top: auto;
}

.vt-wp-card .vt-link-arrow::after {
    content: '\f061';
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 14px;
    margin-left: 12px;
    transform: translateX(0);
    transition: transform 0.2s ease;
    color: inherit;
    display: inline-block;
}

.vt-wp-card .card:hover .vt-link-arrow::after {
    transform: translateX(4px);
}
@media screen and (max-width: 786px) {
    .vt-wp-card .card-body {
        padding: 15px;
    }

    .vt-wp-card .card-text {
        margin-bottom: 16px;
    }

    .vt-wp-card .vt-link-arrow {
        font-size: 14px;
    }
}