@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");
:root {
  --main_color: #016f4a;
  --second_color: #c51230;
  --black_color: #000000;
}
*,
:focus {
  scroll-behavior: smooth;
  outline: 0px !important;
}
::selection {
  background-color: var(--main_color) !important;
  color: rgb(255, 255, 255) !important;
}
::-webkit-scrollbar {
  background-color: rgb(255, 255, 255);
  width: 5px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
  border-radius: 25px;
  height: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 25px;
  height: 2px;
}
body {
  font-family: Poppins, sans-serif;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Page Setting
=============================*/
section {
  position: relative;
  padding: 100px 0;
  z-index: 99;
}
.section_color {
  background-color: #f5f5f5;
}
.section_title {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 25px;
}

.section_title h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 40px;
  margin: 0;
}
.section_title h5 {
  color: var(--black_color);

  font-size: 13px;

  margin: 15px auto -15px;
  max-width: 720px;
  line-height: 20px;
}
.section_title p {
  color: var(--second_color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  margin: 0 0 15px;
}
@media all and (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}
@media all and (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media all and (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}
@media all and (max-width: 767px) {
  section {
    padding: 35px 0;
  }
}
@media all and (max-width: 576px) {
  .section_title h3 {
    font-size: 24px;
    line-height: 25px;
  }
  .section_title p {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* List
===============================*/
ul {
  display: block;
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
ul li {
  display: inline-block;
}
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px auto;
}
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  padding: 0px 25px;
  background-color: var(--second_color);
  color: rgb(255, 255, 255);
  border: 0px;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  transition: all 0.3s linear 0s;
}
.link::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 0% 100%);
  background-color: var(--main_color);
  transition: all 0.3s linear 0s;
}
.link i {
  margin-right: 5px;
}
.link span {
  position: relative;
  z-index: 999;
}
.link:hover {
  color: rgb(255, 255, 255);
}
.link:hover::before {
  clip-path: circle(140% at 0% 50%);
}
@media all and (max-width: 768px) {
  .link {
    padding: 0 15px;
    line-height: 40px;
    font-size: 12px;
  }
}
.icon_link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  padding: 0px;
  background-color: var(--second_color);
  color: #fff;
  border: 0px;
  box-shadow: none;
  border-radius: 50%;
  transition: all 0.3s linear 0s;
}
.icon_link::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 0% 100%);
  background-color: var(--main_color);
  transition: all 0.3s linear 0s;
}
.icon_link i,
.icon_link::before {
  z-index: 999;
  position: relative;
}
.icon_link:hover {
  color: rgb(255, 255, 255);
  background-color: transparent;
}
.icon_link:hover::after {
  clip-path: circle(140% at 0% 50%);
}
.icon_link:hover i,
.icon_link:hover::before {
  color: rgb(255, 255, 255);
}
form .row {
  margin: 0px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
  text-align: start;
}
.form-group .d-inline-block {
  margin-inline-end: 15px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin: 0px 0px 10px;
  text-align: start;
  letter-spacing: 1px;
  color: var(--black_color);
}
.form-control {
  width: 100%;
  color: var(--black_color);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(222, 222, 222);
  margin: 0px;
  padding: 0px 15px;
  line-height: 45px;
  height: 45px;
  font-size: 14px;
  outline: 0px;
  box-shadow: none;
  font-weight: 400;
  border-radius: 0px;
}
.form-control:hover,
.form-control:focus {
  outline: 0px;
  border: 1px solid rgb(222, 222, 222);
  box-shadow: none;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0px;
}
textarea.form-control {
  padding: 15px;
  resize: none;
  min-height: 80px;
  line-height: 25px !important;
}
textarea.form-control.black:hover,
textarea.form-control.black:focus {
  color: var(--black_color);
}

/* Top Header
=============================*/
.top_header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  z-index: 9998;
  height: 60px;
  text-align: end;
}
.top_header .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 270px;
}
.top_header p {
  color: #fff;
  font-size: 12px;
  line-height: 60px;
  text-transform: uppercase;
  margin: 0;
}
.top_header ul li {
  vertical-align: middle;
}

.social {
  display: inline-block;
  border: 0px;
  margin: 10px 0px;
}
.social li a {
  padding: 0px;
  letter-spacing: 0px;
  border: 0px;
  margin: 0px;
  color: #fff;
}
.social a i {
  border: 0px;
  line-height: 40px;
  font-size: 16px;
  display: block;
}
.facebook {
  background-color: rgb(24, 119, 242);
}
.instagram {
  background-color: rgb(228, 64, 95);
}
.linkedin {
  background-color: rgb(10, 102, 194);
}
.twitter {
  background-color: rgb(29, 161, 242);
}
@media (max-width: 991.98px) {
  .top_header .col-12 {
    display: flex;
    padding: 0;
    justify-content: flex-end;
  }
  .top_header p {
    display: none;
  }
}
@media all and (max-width: 576px) {
  .top_header .social {
    display: block;
    text-align: center;
    width: 100%;
  }
  .top_header .icon_link {
    width: 35px;
    height: 35px;
  }
  .top_header .icon_link i {
    line-height: 35px;
    font-size: 14px;
  }
}

/* Top Header
=============================*/
header {
  position: fixed;
  top: 60px;
  left: 0px;
  width: 100%;

  background-color: #fff;
  z-index: 9998;
  min-height: 70px;
}
header .container {
  position: relative;
  min-height: 70px;
}
header .navbar {
  padding: 0px;
  margin: 0px;
}
header .navbar .container {
  min-height: auto;
}
header .navbar-brand {
  margin: 0px;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  width: 240px;
  height: 130px;
  top: -60px;
  left: 15px;
  z-index: 9999;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar-brand img {
  width: 100%;
}
header .menu-btn {
  display: none;
  position: absolute;
  right: 5px;
  top: 15px;
}
header .navbar {
  margin-top: -70px;
}
header ul.navbar-nav {
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: right;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
header ul.navbar-nav li {
  display: inline-block;
}
header ul.navbar-nav li a {
  position: relative;
  display: block;
  padding: 0px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black_color);
  text-align: center;
  line-height: 67px;
  border-top: 3px solid transparent;
  margin: 0px 0px 0px 25px;
  letter-spacing: 1px;
}
@media all and (max-width: 1299px) {
  header ul.navbar-nav li a {
    font-size: 13px;
  }
}
@media all and (max-width: 1199px) {
  header ul.navbar-nav li a {
    font-size: 12px;
    margin: 0px 0px 0px 18px;
    letter-spacing: 0;
  }
}
header ul.navbar-nav li a:focus,
header ul.navbar-nav li a:hover {
  color: var(--main_color);
}
header ul.navbar-nav li.active > a {
  color: var(--main_color);
  border-top-color: var(--main_color);
  font-weight: 600;
  font-size: 13px;
}
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    display: flex;
    opacity: 0;
    top: 120%;
    overflow: hidden;
    visibility: hidden;
    box-shadow: none;
    border-radius: 0px;
    margin: 0px;
    padding: 0px;
    width: 180px;
    transition: all 0.4s linear 0s;
    flex-wrap: wrap;
    flex-direction: column;
    border-top-color: rgb(238, 238, 238);
  }
  .navbar-nav .dropdown-menu.wide {
    width: 270px;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    line-height: 20px;
    text-align: start;
    margin: 0px;
    overflow: hidden;
    padding: 15px 0 15px 10px;
    border: solid rgb(238, 238, 238);
    border-width: 0 1px 1px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: padding 0.4s linear 0s;
  }
  .navbar-nav .dropdown-menu .dropdown-item.w-100 {
    border-width: 1px 1px 0 0;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover {
    padding: 15px 0 15px 20px;
    background-color: transparent;
  }
  header ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}
@media all and (max-width: 991px) {
  header .menu-btn {
    display: inline-block;
    margin: 0;
  }
  header .navbar {
    margin-top: 0;
    background-color: var(--black_color);
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
  }
  header ul.navbar-nav {
    display: block;
    text-align: start;
  }
  header ul.navbar-nav li {
    display: block;
  }
  header ul.navbar-nav li a {
    color: #fff;
    text-align: start;
    line-height: 40px;
    border-top: none;
    margin: 0;

    padding: 5px 25px;
    border-bottom: 1px solid #fff2;
    letter-spacing: 1px;
  }
  header ul.navbar-nav li a i {
    float: right;
    line-height: 45px;
  }
  .dropdown-menu {
    background-color: #fff2;
    padding: 0;
    margin: 0;
    border: 0;
  }
  header ul.navbar-nav li a.dropdown-item {
    font-weight: 400;
    line-height: 25px;
  }
}
@media all and (max-width: 576px) {
  header .navbar-brand {
    padding: 15px;
    width: 160px;
    height: 70px;
    top: 0;
    left: 0;
  }
}

/* Main Section
=============================*/
.main_section {
  width: 100%;
  margin-top: 130px;

  padding: 0px !important;
}
.main_section .look_cont {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0px;
  left: 0px;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.main_section .look_cont h1 {
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 42px;
  text-transform: uppercase;
  max-width: 991px;
}
.main_section .look_cont p {
  max-width: 768px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 16px;
}
.main_section .look_cont h3 {
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  max-width: 768px;
  line-height: 45px;
}
.main_section .look_cont .link {
  margin: 25px auto 0px;
}
.main_section .carousel,
.main_section .carousel-item,
.main_section .carousel-inner {
  width: 100%;
  height: 100%;
}
.main_section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.main_section .carousel-indicators {
  right: 0px;
  left: 0px;
  margin: auto;
  bottom: 20px;
  padding: 0px;
}
.main_section .carousel-indicators li {
  display: inline-block;
  width: 12px;
  height: 12px;
  opacity: 1;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 25px;
  border: 0;
  transition: 0.4s width linear;
  text-indent: unset;
}
.main_section .carousel-indicators li.active {
  background-color: var(--main_color);
  width: 30px;
  border-radius: 25px;
}
.main_section .carousel-control-next,
.main_section .carousel-control-prev {
  position: absolute;
  inset: 0px 25px 0px auto;
  margin: auto;

  opacity: 1;
  right: 10px;
}
.main_section .carousel-control-next i,
.main_section .carousel-control-prev i {
  line-height: 40px;
}
.main_section .carousel-control-prev {
  left: 10px;
  right: auto;
}
@media all and (max-width: 991px) {
  .main_section .look_cont h1 {
    letter-spacing: 1px;

    font-size: 28px;
  }
  .main_section .look_cont p {
    font-size: 14px;
    max-width: 576px;
  }
  .main_section .look_cont h3 {
    letter-spacing: 1px;

    font-size: 24px;

    max-width: 576px;
    line-height: 40px;
  }
}
@media all and (max-width: 767px) {
  .main_section .look_cont h1 {
    font-size: 24px;
  }
  .main_section .look_cont p {
    font-size: 12px;
    max-width: 440px;
  }
  .main_section .look_cont h3 {
    font-size: 20px;

    max-width: 440px;
    line-height: 35px;
  }
}
@media all and (max-width: 576px) {
  .main_section .look_cont {
    position: relative;
    background-color: var(--black_color);
    padding: 15px;
    min-height: 215px;
  }
  .main_section .look_cont h1 {
    font-size: 20px;
    line-height: 35px;
    margin: 0;
  }
  .main_section .look_cont p {
    font-size: 12px;
    max-width: 440px;
  }
  .main_section .look_cont h3 {
    font-size: 18px;

    line-height: 30px;
    margin: 0;
  }
  .main_section p,
  .main_section .carousel-control-next,
  .main_section .carousel-control-prev {
    display: none;
  }
}

/* Levels
=============================*/
.levels {
  padding: 0;
}
.level {
  transform: translateY(-60px);
  padding: 45px 25px;
  display: block;
  color: var(--black_color) !important;
  text-align: center;
  transition: 0.4s linear transform;
  box-shadow: 0 20px 40px rgb(3 15 39 / 10%);
  background-color: #fff;
  position: relative;
}
.level::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--second_color);
  left: 0;
  bottom: 0;
  transition: 0.4s linear height;
}
.level h3 {
  margin: 0 auto 20px;
  color: var(--main_color);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;

  font-weight: 600;
  letter-spacing: 2px;
  z-index: 99;
  position: relative;
}

.level p {
  padding: 25px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 25px;
  background-color: #fff;
}

.level h4 {
  position: relative;
  margin: 0;
  color: var(--black_color);
  text-align: center;

  font-size: 20px;
}
.level:hover {
  transform: translateY(-75px);
}
.level:hover::before {
  height: 100%;
}
.level:hover h4,
.level:hover h3 {
  color: #fff;
}
@media all and (max-width: 991px) {
  .levels {
    padding: 20px 0 40px;
  }
  .level {
    transform: translate(0) !important;
    margin: 25px auto 0;
  }
}
@media all and (max-width: 768px) {
  .level {
    padding: 25px;
  }
}

/* About
=============================*/
.about {
  position: relative;
  padding-bottom: 170px;
}
.about::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 40%;
  background-color: #c51230;
  right: 0;
  top: 0;
}
.about .about_cont img {
  width: 270px;
  margin: 0 0 25px;
}
.about .about_img {
  border: 25px solid #fff;
}
.about .about_cont {
  margin-bottom: 25px;
}
.about .about_cont h3 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 50px;
  letter-spacing: 2px;
  margin: 0;
  color: var(--main_color);
}
.about .about_cont p {
  font-size: 16px;
  margin: 25px auto;
  line-height: 30px;
  position: relative;
}
@media all and (max-width: 1199px) {
  .about .about_cont h3 {
    font-size: 32px;
  }
  .about .about_cont p {
    font-size: 14px;
    line-height: 25px;
  }
}
@media all and (max-width: 991px) {
  .about::before {
    width: 100%;
    height: 40%;

    top: auto;
    bottom: 0;
  }
  .about .about_img img {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .about {
    padding-bottom: 100px;
  }
  .about .about_cont h3 {
    font-size: 22px;
  }
  .about .about_cont p {
    font-size: 12px;
    line-height: 22px;
    margin: 0 0 15px;
    letter-spacing: 0.5px;
  }
  .about .about_cont .link {
    margin-bottom: 0;
  }
}
@media all and (max-width: 576px) {
  .about {
    padding-bottom: 100px;
  }
  .about .about_cont h3 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .about .about_cont .link {
    margin-bottom: 15px;
  }
}

/* admission
=============================*/
.admission {
  padding: 0 0 30px;
}
.admission .wrap {
  transform: translateY(-80px);

  overflow: hidden;
  margin: 0 0 -30px;
  box-shadow: 0 20px 40px rgb(3 15 39 / 10%);
}
.admission .cover {
  padding: 0;
  position: relative;
}
.admission .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.admission .cont {
  background: url(../images/admision2.jpg) center no-repeat;
  background-size: cover;
  padding: 140px 70px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.admission .cont::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 111, 74, 0.95);
}
.admission .cont h3 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 40px;
  margin: 0;
  letter-spacing: 2px;
}
.admission .cont p {
  color: #fff;
  font-size: 16px;
  margin: 30px auto;

  line-height: 35px;
  position: relative;
}
.admission .cont .link {
  margin: 0;
}
.admission .counter {
  display: flex;
  text-transform: uppercase;

  margin: 0 auto 25px;
  margin-left: auto;
  color: gray;
  text-align: start;
  background-color: #fff;
  padding: 20px;

  font-size: 14px;
}
.admission .counter i {
  font-size: 22px;
  margin-right: 20px;
  line-height: 60px;
  min-width: 60px;
  height: 60px;
  color: var(--main_color);
  background-color: #f5f5f5;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.admission .counter .counter_cont span {
  display: block;
  font-weight: 600;
  font-size: 24px;

  color: var(--black_color);
}
@media all and (max-width: 1199px) {
  .admission .cont {
    padding: 100px 25px;
  }
}
@media all and (max-width: 991px) {
  .admission .cont {
    padding: 25px;
  }
}
@media all and (max-width: 768px) {
  .admission .cont p {
    font-size: 14px;
    line-height: 25px;
    margin: 15px 0;
  }
}
@media all and (max-width: 576px) {
  .admission .wrap {
    margin-bottom: -55px;
  }
  .admission .cont {
    padding: 15px;
  }
  .admission .cont h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .admission .cont p {
    font-size: 12px;
    line-height: 22px;
  }
}

/* Campus
=============================*/
.campus {
  position: relative;
  padding: 80px 0 120px;
}
.campus .row {
  margin: 0 0 -40px;
  background-color: #f5f5f5;
}
.campus .cover {
  position: relative;
  padding: 0;
}
.campus .cover img {
  position: relative;
}
.campus .cover::before {
  content: "";
  position: absolute;
  height: calc(100% + 160px);
  width: 50%;
  background-color: var(--second_color);
  right: 0;
  top: -80px;
  left: 0;
  margin: auto;
  z-index: -1;
}
.campus .cont {
  padding: 70px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: var(--black_color);
  position: relative;
}
.campus .cont::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 20px solid transparent;
  border-right-color: #f5f5f5;
}
.campus .cont h3 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 50px;
  letter-spacing: 2px;
  margin: 0;
  color: var(--main_color);
}
.campus .cont p {
  font-size: 16px;
  margin: 25px auto;
  line-height: 30px;
  position: relative;
}
@media all and (max-width: 1199px) {
  .campus .cont {
    padding: 25px;
  }
  .campus .cont h3 {
    font-size: 32px;
  }
  .campus .cont p {
    font-size: 14px;
    margin: 15px auto;
    line-height: 25px;
  }
}

@media all and (max-width: 576px) {
  .campus {
    padding-bottom: 80px;
  }
  .campus .cont {
    padding: 20px 0 5px;
  }
  .campus .cont h3 {
    font-size: 28px;

    line-height: 40px;
  }
  .campus .cont p {
    font-size: 14px;
    margin: 15px auto;
    line-height: 25px;
  }
}

/* Tour
=============================*/
.tour {
  background: url(../images/tour.jpg) center no-repeat;
  background-size: cover;
}

.tour::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.tour .cont {
  text-align: center;

  color: #fff;
  position: relative;
  max-width: 940px;
  margin: auto;
}
.tour .cont h3 {
  font-size: 58px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  line-height: 50px;
  letter-spacing: 5px;
  margin: 0;
  color: #fff;
}
.tour .cont p {
  font-size: 14px;
  margin: 30px auto;
  line-height: 30px;
  position: relative;
  text-align: center;
}
@media all and (max-width: 767px) {
  .tour .cont h3 {
    font-size: 42px;

    letter-spacing: 2px;
  }
  .tour .cont p {
    font-size: 12px;
    margin: 15px auto;
    line-height: 25px;
  }
}
@media all and (max-width: 576px) {
  .tour .cont h3 {
    font-size: 28px;
  }
  .tour .cont p {
    text-align: justify;
  }
}

/* Board Item
=============================*/
.board_item {
  margin: 15px auto 0;
  text-align: center;
  background-color: #f9f9f9;
  padding: 25px 15px;
  min-height: 265px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s linear transform;
}
.board_item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 8px solid #fff;
}
.board_item h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.board_item:hover {
  transform: translateY(-10px);
}
@media all and (max-width: 1199px) {
  .board_item h3 {
    font-size: 12px;
  }
}
@media all and (max-width: 576px) {
  .board_item {
    min-height: auto;
    max-width: 220px;
  }
  .board_item h3 {
    font-size: 14px;
  }
}

/* News
=============================*/
.blog_item {
  background-color: #fff;

  margin-bottom: 25px;
  overflow: hidden;
}
.blog_item .cover {
  width: 100%;
  overflow: hidden;
}
.blog_item .cover img {
  width: 100%;

  transition: 0.4s linear transform;
}
.blog_item .cont {
  padding: 25px;
}
.blog_item .cont h3 {
  margin: 15px 0;
  font-size: 18px;
  line-height: 25px;
  color: var(--black_color);
}
.blog_item .cont p {
  margin: 0;
  color: #777;
  font-size: 14px;
}
.blog_item .cont a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: var(--second_color);
  display: inline-block;
  position: relative;
  padding-inline-start: 25px;
  transition: 0.4s linear padding;
}
.blog_item .cont a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  width: 15px;
  background-color: var(--second_color);
}
.blog_item:hover .cover img {
  transform: scale(1.1) rotate(3deg);
}
.blog_item .cont a:hover {
  padding-inline-start: 35px;
}
.blogs .row {
  position: relative;
}
.more_btn {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 40px;
  border: 1px solid #0003;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black_color);
  padding: 0 15px;
}
.more_btn:hover {
  color: var(--main_color);
}
.subscribe {
  background-color: var(--main_color);
  margin: 25px auto 0;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgb(3 15 39 / 10%);
}
.subscribe::before {
  content: "";
  position: absolute;
  background-color: #fff1;
  left: 120px;
  top: -20px;
  width: 150px;
  height: 90%;
  border-radius: 0 0 25px 25px;
  transform: rotate(-25deg);
}
.subscribe::after {
  content: "";
  position: absolute;
  background-color: #fff1;
  right: 120px;
  bottom: -50px;
  width: 160px;
  height: 90%;
  border-radius: 25px 25px 0 0;
  transform: rotate(-25deg);
  z-index: 0;
}

.subscribe .cont {
  color: #fff;
}
.subscribe .cont h3 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 40px;
  margin: 0;
  letter-spacing: 2px;
}

.subscribe .cont p {
  font-size: 13px;

  margin: 0;
}

.subscribe form {
  max-width: 480px;
  position: relative;
  z-index: 99;
  width: 100%;
}
.subscribe form .form-control {
  border-radius: 25px;
  border: 0 !important;
}
.subscribe form .link {
  margin: 0;
  position: absolute;
  right: -2px;
  top: 0;
  font-size: 12px;
  padding: 0 15px;
  height: 100%;
  line-height: 45px;
}
@media all and (max-width: 1199px) {
  .subscribe .cont h3 {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
@media all and (max-width: 991px) {
  .subscribe {
    flex-direction: column;
    align-items: flex-start;
  }
  .subscribe form {
    margin-top: 25px;
  }
}
@media all and (max-width: 767px) {
  .more_btn {
    position: relative;
    right: auto;
    top: auto;
    margin: auto;
  }
  .subscribe {
    padding: 25px;
  }
}
@media all and (max-width: 576px) {
  .subscribe {
    padding: 15px;
  }
  .subscribe form .link {
    position: relative;
    margin-top: 10px;
  }
}

/* Footer
=============================*/
footer {
  background-color: var(--black_color);
  padding: 70px 0 0;
  position: relative;
  z-index: 998;
}
footer .logo {
  background-color: #fff;
  padding: 10px;
  width: 230px;
  margin: 0 0 25px;
  display: block;
}
footer h3 {
  font-size: 15px;
  margin: 15px 0;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}
footer ul {
  margin-bottom: 15px;
}
footer ul li {
  display: block;
  position: relative;

  padding-left: 20px;
}

footer ul li a {
  display: inline-block;
  color: #fff9;
  line-height: 30px;
  font-size: 12px;
  text-transform: capitalize;
  transition: 0.4s linear transform;
  font-weight: 600;
}
footer ul li::before {
  content: "";
  color: #fff9;
  position: absolute;
  content: "\f105";
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
footer ul li a:hover {
  font-weight: 600;
  color: #fff;
}
footer .footer_contact li::before {
  display: none;
  padding: 0;
}

footer .footer_contact li {
  padding: 0;
  display: inline-block;
}
.contact_info li {
  margin-bottom: 10px;
}
.contact_info i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff2;
  text-align: center;
  border-radius: 50%;
  margin-inline-end: 5px;
  color: #fff;
}
.post_item {
  display: block;
  color: #fff9;
  font-size: 12px;
  line-height: 25px;
}
.post_item:hover {
  color: #fff;
}
.post_item span {
  display: block;
  margin-top: 15px;
  font-style: normal;
  color: #fff;
}
.copyrights {
  text-align: center;
  color: #fff7;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 25px 15px;
  border-top: 1px solid #fff2;
  margin-top: 25px;
}
.up_btn {
  position: absolute;
  left: 0;
  top: -25px;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 19px;
}
.whats_btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  background-color: #25d366;
  color: #fff !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.whats_btn i {
  line-height: 60px;
  display: block;
}
.whats_btn::after,
.whats_btn::before {
  width: 50px;
  height: 50px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgb(37 211 102);
  -o-box-shadow: 0 0 0 0 rgb(37 211 102);
  box-shadow: 0 0 0 0 rgb(37 211 102);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
  -webkit-animation: ripple 2s infinite;
  animation: ripple 2s infinite;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.whats_btn::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Loading
==========================*/
/* Preloader
=====================*/
.preloader {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #252525;
}

.preloader p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 14px;
  line-height: 20px;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 130px;
  text-align: center;
  top: -140px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  border: 0px;
  height: 2px;
  overflow: hidden;
}

.pace .pace-progress {
  z-index: 9999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background-color: var(--main_color);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
