@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #ccc;
  background: rgba(226, 8, 33, 0.3);
}
::selection {
  color: #ccc;
  background: rgba(226, 8, 33, 0.3);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #ccc;
  background-color: #171717;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  top: 27.5%;
  left: 33.9%;
  background-color: #E20821;
  -webkit-filter: blur(150px);
  -o-filter: blur(150px);
  filter: blur(150px);
  width: 270px;
  height: 270px;
  border-radius: 100%;
  position: fixed;
  z-index: -1;
}

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

@media only screen and (max-width: 480px) {
  .wow {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    visibility: visible !important;
  }
}
section {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo 2", sans-serif;
  margin: 0;
  color: #131313;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #E20821;
  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;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  fill: #ffffff;
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 8, 33, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(226, 8, 33, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #171717;
}

.lds-grid {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E20821;
  -webkit-animation: lds-grid 1.2s linear infinite;
          animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
}

@-webkit-keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/*--------------------------------------------------------------
  ## successModal
--------------------------------------------------------------*/
#successModal .modal-content {
  background-color: #171717;
  border-radius: 16px;
}
#successModal .modal-header {
  background-color: #72e633;
  border-color: #222;
}
#successModal .modal-body {
  border-color: #444;
  color: #ffffff;
}
#successModal .modal-footer {
  background-color: #E20821;
  border-color: #E20821;
}

/*--------------------------------------------------------------
  ## onload
--------------------------------------------------------------*/
#onload .modal-body {
  padding: 0;
  position: relative;
}
#onload .modal-body .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
#onload .modal-logo {
  text-align: center;
  padding-top: 16px;
}
#onload .modal-logo img {
  height: 100px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  #onload .modal-logo img {
    height: 70px;
  }
}
#onload .modal-h {
  padding: 8px;
  background-color: #E20821;
  text-align: center;
}
#onload .modal-h h1 {
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  #onload .modal-h h1 {
    font-size: 18px;
  }
}
#onload .modal-r {
  padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
  #onload .modal-r {
    padding: 10px;
  }
}
#onload .boxi {
  background-color: #F87800;
  padding: 20px 10px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  #onload .boxi {
    padding: 15px 8px;
  }
}
#onload .boxi.green {
  background-color: #01D500;
}
#onload .boxi p {
  font-size: 17px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #onload .boxi p {
    font-size: 15px;
  }
}
#onload .modal-mid {
  background-color: #2C2C2C;
  text-align: center;
  padding: 10px;
}
#onload .modal-mid p {
  color: #eee;
  font-size: 14px;
}
#onload .modal-2 {
  text-align: center;
  padding: 10px;
}
#onload .modal-2 h2 {
  color: #01D500;
  font-size: 20px;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  #onload .modal-2 h2 {
    font-size: 18px;
  }
}
#onload .modal-2 P {
  font-size: 15px;
}
#onload .modal-btns {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
}
#onload .modal-btns .btn-1 {
  text-align: center;
  text-decoration: none;
  background-color: #E20821;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  #onload .modal-btns .btn-1 {
    font-size: 14px;
  }
}
#onload .modal-btns .btn-1:hover {
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.55);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.55);
}
#onload .modal-btns .btn-2 {
  text-align: center;
  text-decoration: none;
  background-color: #171717;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #onload .modal-btns .btn-2 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
  ## btn-main
--------------------------------------------------------------*/
.btn-main {
  text-decoration: none;
  display: inline-block;
  border: 0;
  background-color: #ffffff;
  color: #131313;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 12px 40px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-main:hover, .btn-main:focus {
  background-color: #980516;
  color: #ffffff;
}

.btn-red {
  display: inline-block;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 50px;
  border: 0;
  color: #ffffff;
  background-color: #E20821;
  min-width: 200px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-align: center;
}
.btn-red:hover {
  background-color: #b1061a;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .btn-red {
    padding: 12px 25px;
  }
}

.btn-black {
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: transparent;
  min-width: 220px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-align: center;
}
.btn-black:hover {
  background-color: #b1061a;
  color: #ffffff;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #171717;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 482px) {
  .navbar {
    padding: 10px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.navbar .navbar-brand img {
  height: 55px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 45px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 44px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 14px;
  color: #EDF1FC;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #E20821;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    padding: 6px 0;
    color: #ffffff;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav.btn-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav.btn-nav .nav-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #fff;
  padding: 10px 0px;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav.btn-nav .nav-item a img {
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
.navbar .navbar-nav.btn-nav .nav-item a .info-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
}
.navbar .navbar-nav.btn-nav .nav-item a .info-x span {
  font-size: 12px;
  font-weight: 400;
}
.navbar .navbar-nav.btn-nav .nav-item a:hover, .navbar .navbar-nav.btn-nav .nav-item a:focus {
  background-color: transparent;
  color: #E20821;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #171717;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 12px 20px 12px;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
.navbar .dropdown-menu {
  background: #000;
  border: 1.5px solid #333;
  padding: 14px 0px;
  border-radius: 7px;
}
.navbar .dropdown-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.navbar .dropdown-menu a {
  padding: 4px 16px !important;
  text-decoration: none;
  color: #ccc;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px !important;
}
.navbar .dropdown-menu a img {
  height: 15px;
  margin-right: 12px;
  min-width: 23px;
}
.navbar .dropdown-menu a:hover, .navbar .dropdown-menu a:focus {
  background-color: transparent;
  color: #E20821;
}
.navbar .dropdown-menu a.active {
  background-color: transparent;
  color: #E20821;
}
@media only screen and (max-width: 991px) {
  .navbar .dropdown-menu a {
    margin: 0px 0px !important;
  }
}

.sticky {
  position: fixed;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 10px 0;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 482px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.sticky .navbar .navbar-brand img {
  height: 55px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar .navbar-brand img {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .sticky .navbar .navbar-brand img {
    height: 45px;
  }
}
@media only screen and (max-width: 482px) {
  .sticky .navbar .navbar-brand img {
    height: 44px;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.animate {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1.1rem);
            transform: translateY(1.1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1.1rem);
            transform: translateY(1.1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
/*--------------------------------------------------------------
  ## banner-area
--------------------------------------------------------------*/
.banner-area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 9, 10, 0.4)), to(rgba(8, 9, 10, 0.54)));
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.4) 0%, rgba(8, 9, 10, 0.54) 100%);
}
.banner-area .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.banner-area .hero-inner {
  position: relative;
  text-align: center;
}
.banner-area .hero-inner h1 {
  display: inline-block;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  padding: 19px;
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .banner-area .hero-inner h1 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
  ## video-sec
--------------------------------------------------------------*/
.video-sec {
  position: relative;
  width: 100%;
  background-image: url("../img/hero/bg.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 140px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .video-sec {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .video-sec {
    text-align: center;
  }
}
.video-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.video-sec .video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.video-sec .vide-txt {
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .video-sec .vide-txt {
    margin-left: auto;
    margin-right: auto;
    padding: 0px 16px;
  }
}
.video-sec .vide-txt h1 {
  font-size: 55px;
  color: #E20821;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1399px) {
  .video-sec .vide-txt h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .video-sec .vide-txt h1 {
    font-size: 40px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .video-sec .vide-txt h1 {
    font-size: 35px;
  }
}
.video-sec .vide-txt p {
  font-size: 18px;
  color: #171717;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .video-sec .vide-txt p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 991px) {
  .video-sec .vide-txt p {
    font-size: 17px;
    margin-bottom: 22px;
  }
}

.card-sec {
  background-color: #171717;
}
.card-sec .card-txt {
  text-align: center;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .card-sec .card-txt {
    padding: 30px 0px;
  }
}
.card-sec .card-txt h1 {
  color: #E20821;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .card-sec .card-txt h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .card-sec .card-txt h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .card-sec .card-txt h1 {
    font-size: 25px;
    font-weight: 600;
  }
}

.img-cad {
  background-color: #f90b39;
}

/*--------------------------------------------------------------
  ## page-banner
--------------------------------------------------------------*/
.page-banner {
  position: relative;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .page-banner {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-banner {
    padding-bottom: 40px;
  }
}
.page-banner .pager-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0.4392156863);
  padding: 40px 20px;
}
@media only screen and (max-width: 767px) {
  .page-banner .pager-inner {
    padding: 30px 20px;
  }
}
.page-banner .page-txt {
  text-align: center;
}
.page-banner .page-txt h1 {
  font-size: 44px;
  color: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .page-banner .page-txt h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .page-banner .page-txt h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .page-banner .page-txt h1 {
    font-size: 30px;
  }
}
.page-banner .location-img {
  height: 80px;
  margin: 20px 0px;
}
@media only screen and (max-width: 767px) {
  .page-banner .location-img {
    height: 50px;
    margin: 15px 0px;
  }
}
.page-banner .map-txt {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-banner .map-txt h5 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}
.page-banner .map-txt p {
  color: #eee;
}
.page-banner .page-map {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}
.page-banner .info-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-banner .info-flex:not(:last-child) {
  margin-bottom: 16px;
}
.page-banner .info-flex h5 {
  color: #E20821;
  font-size: 18px;
  min-width: 128px;
  background-color: #b0b0b0;
  margin-right: 10px;
  padding: 4px;
}
@media only screen and (max-width: 767px) {
  .page-banner .info-flex h5 {
    font-size: 17px;
    min-width: 90px;
  }
}
.page-banner .info-flex strong {
  color: #f7b61f;
}
.page-banner .info-flex p {
  color: #eee;
  font-size: 14px;
  background-color: #333;
  padding: 2px 4px;
}

/*--------------------------------------------------------------
  ## page-banner
--------------------------------------------------------------*/
.page-banner-2 {
  position: relative;
  padding-top: 190px;
  padding-bottom: 130px;
  background-image: url("../img/hero/bg.jpg");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .page-banner-2 {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}
.page-banner-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.page-banner-2 .page-inner-2 {
  position: relative;
  text-align: center;
}
.page-banner-2 .page-inner-2 h1 {
  font-size: 44px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .page-banner-2 .page-inner-2 h1 {
    font-size: 35px;
  }
}
.page-banner-2 ul {
  list-style: none;
  margin: auto;
  padding: 0;
  display: inline-block;
  padding: 6px 18px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  margin-top: 20px;
}
.page-banner-2 ul li {
  display: inline-block;
}
.page-banner-2 ul li:not(:last-child) {
  margin-right: 16px;
}
.page-banner-2 ul a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #ccc;
  text-transform: uppercase;
}
.page-banner-2 ul a.act {
  color: #E20821;
}

/*--------------------------------------------------------------
  ## intro
--------------------------------------------------------------*/
.intro {
  padding: 70px 0px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 40px 0px;
    padding-bottom: 0;
  }
}
.intro .boxu {
  background-color: #2B2B2B;
  border-radius: 22px;
  padding: 50px 50px;
}
@media only screen and (max-width: 1199px) {
  .intro .boxu {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .intro .boxu {
    padding: 25px;
  }
}
.intro .intro-txt h2 {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 20px;
}
.intro .intro-txt h2 span {
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#f76262), to(#E20821));
  background: linear-gradient(to right, #f76262, #E20821);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
@media only screen and (max-width: 1199px) {
  .intro .intro-txt h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .intro .intro-txt h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 482px) {
  .intro .intro-txt h2 {
    font-size: 25px;
    margin-bottom: 12px;
  }
}
.intro .intro-txt p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .intro .intro-txt p {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
  ## page-about
--------------------------------------------------------------*/
.page-about {
  position: relative;
  padding-top: 160px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .page-about {
    padding-top: 130px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .page-about {
    padding-bottom: 0;
  }
}
.page-about .abt-txt h2 {
  font-size: 55px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .page-about .abt-txt h2 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .page-about .abt-txt h2 {
    font-size: 36px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .page-about .abt-txt h2 {
    font-size: 30px;
  }
}
.page-about .abt-txt h2 span {
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#f76262), to(#E20821));
  background: linear-gradient(to right, #f76262, #E20821);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.page-about .abt-txt p {
  font-size: 19px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .page-about .abt-txt p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
  ## about-x
--------------------------------------------------------------*/
.about-x .about-txx h3 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .about-x .about-txx h3 {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.about-x .about-txx h3 span {
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#f76262), to(#E20821));
  background: linear-gradient(to right, #f76262, #E20821);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.about-x .ca-sin {
  background-color: #2B2B2B;
  border: 1px solid #373737;
  padding: 20px;
  border-radius: 16px;
}
.about-x .ca-sin span {
  font-size: 14px;
  margin-bottom: 10px;
}
.about-x .ca-sin h5 {
  color: #dad9d9;
  font-size: 17px;
  margin-bottom: 3px;
}
.about-x .ca-sin p {
  font-size: 15px;
}

/*--------------------------------------------------------------
  ## about
--------------------------------------------------------------*/
.sec-padding {
  padding: 80px 0px;
}
@media only screen and (max-width: 991px) {
  .sec-padding {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-padding {
    padding: 45px 0px;
  }
}

.about {
  background-color: #171717;
  background-image: url("../img/hero/bg2.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0px;
}
@media only screen and (max-width: 991px) {
  .about {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 45px 0px;
  }
}
.about .sec-t h2 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 35px;
  position: relative;
}
.about .sec-t h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 70px;
  height: 3px;
  border-radius: 20px;
  background-color: #E20821;
}
@media only screen and (max-width: 1199px) {
  .about .sec-t h2 {
    font-size: 37px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about .sec-t h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
}
.about p {
  color: #ccc;
}
.about p:not(:last-child) {
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
  ## programs
--------------------------------------------------------------*/
.programs {
  padding-top: 180px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .programs {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .programs {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .programs {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
.programs .sec-t {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .programs .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .programs .sec-t {
    margin-bottom: 40px;
  }
}
.programs .sec-t h2 {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .programs .sec-t h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .programs .sec-t h2 {
    font-size: 35px;
  }
}
.programs .sec-t p {
  color: #ffffff;
}
.programs .p-single {
  padding: 25px 25px;
  background-color: #000;
  border: 1px solid #373737;
  border-radius: 16px;
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.programs .p-single .p-logo {
  height: 55px;
  margin-bottom: 20px;
}
.programs .p-single h5 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
}
.programs .p-single h5::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 15%;
  height: 2px;
  border-radius: 20px;
  background-color: #E20821;
}
.programs .p-single:hover {
  background-color: #2B2B2B;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
  ## story
--------------------------------------------------------------*/
.story {
  background-color: #ffffff;
}
.story .story-txt h2 {
  font-size: 44px;
  font-weight: 700;
  color: #131313;
  margin-bottom: 50px;
  position: relative;
}
.story .story-txt h2::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 3px;
  border-radius: 20px;
  background-color: #E20821;
}
@media only screen and (max-width: 1199px) {
  .story .story-txt h2 {
    font-size: 37px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .story .story-txt h2 {
    font-size: 35px;
    margin-bottom: 35px;
  }
}

/*--------------------------------------------------------------
  ## involved
--------------------------------------------------------------*/
.involved {
  background-color: #fffbfa;
}
.involved .sec-t {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .involved .sec-t {
    margin-bottom: 33px;
  }
}
.involved .sec-t h2 {
  font-size: 44px;
  font-weight: 700;
  color: #131313;
  margin-bottom: 25px;
  position: relative;
}
.involved .sec-t h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 3px;
  border-radius: 20px;
  background-color: #E20821;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1199px) {
  .involved .sec-t h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .involved .sec-t h2 {
    font-size: 35px;
  }
}
.involved .in-txt {
  padding-top: 16px;
}
.involved .in-txt h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
  ## lights
--------------------------------------------------------------*/
.lights .sec-t {
  text-align: center;
}
.lights .sec-t h2 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .lights .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .lights .sec-t h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .lights .sec-t h2 {
    font-size: 32px;
  }
}
.lights .sec-t span {
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#f76262), to(#E20821));
  background: linear-gradient(to right, #f76262, #E20821);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.lights .h-single {
  padding: 30px 30px;
  border-radius: 16px;
  background-color: #2B2B2B;
  border: 1px solid #373737;
  text-align: center;
  height: 100%;
}
.lights .h-single img {
  height: 80px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .lights .h-single img {
    margin-bottom: 20px;
  }
}
.lights .h-single p {
  font-family: "Exo 2", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 23px;
  color: #fff;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .lights .h-single p {
    font-size: 21px;
  }
}
.lights .res-cta {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .lights .res-cta {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
  ## reserve-sec
--------------------------------------------------------------*/
.reserve-sec {
  padding-top: 180px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .reserve-sec {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .reserve-sec {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-sec {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
.reserve-sec .sec-t {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .reserve-sec .sec-t {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-sec .sec-t {
    margin-bottom: 35px;
  }
}
.reserve-sec .sec-t h2 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .reserve-sec .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .reserve-sec .sec-t h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .reserve-sec .sec-t h2 {
    font-size: 32px;
  }
}
.reserve-sec .sec-t h2 span {
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#f76262), to(#E20821));
  background: linear-gradient(to right, #f76262, #E20821);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline;
}
.reserve-sec .sec-t p {
  font-size: 18px;
  color: #ccc;
}
.reserve-sec .r-single {
  border: 1px solid #373737;
  padding: 30px 30px;
  text-align: center;
  border-radius: 20px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .reserve-sec .r-single {
    padding: 25px 25px;
  }
}
.reserve-sec .r-single img {
  height: 70px;
  margin-bottom: 20px;
}
.reserve-sec .r-single p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}
.reserve-sec .btn-red {
  border: 0;
}
@media only screen and (max-width: 767px) {
  .reserve-sec .btn-red {
    padding: 12px 12px;
    font-size: 14px;
    min-width: none;
  }
}

/*--------------------------------------------------------------
  ## form-sec
--------------------------------------------------------------*/
.form-sec {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding: 40px;
  border-radius: 22px;
  background-color: #2B2B2B;
  border: 1px solid #373737;
}
@media only screen and (max-width: 767px) {
  .form-sec {
    padding: 25px;
  }
}
.form-sec h5 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 30px;
}
.form-sec .form-control {
  border-color: #777;
  background-color: transparent;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 16px;
  color: #fff;
}
.form-sec label,
.form-sec p {
  color: #EDF1FC;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
  ## next-sec
--------------------------------------------------------------*/
.next-sec {
  padding: 40px 0px;
  text-align: center;
}
.next-sec h5 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .next-sec h5 {
    font-size: 19px;
    margin-bottom: 16px;
  }
}
.next-sec h2 {
  color: #E20821;
  font-size: 60px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .next-sec h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .next-sec h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .next-sec h2 {
    font-size: 34px;
  }
}
.next-sec h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .next-sec h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .next-sec h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.btns-ss {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btns-ss a {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .btns-ss a {
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
  ## banner-list
--------------------------------------------------------------*/
.banner-list {
  background-color: transparent;
  padding: 30px 30px;
  margin-bottom: 40px;
}
.banner-list .sec-t h2 {
  text-align: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .banner-list .sec-t h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.banner-list .list-con {
  text-align: center;
  background-color: transparent;
  border: 1px solid #373737;
  padding: 20px 12px;
  height: 100%;
}
.banner-list .list-con .company p {
  font-size: 15px;
  margin-bottom: 10px;
}
.banner-list .list-con h5 {
  color: #E20821;
  margin-bottom: 20px;
}
.banner-list .list-con h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}
.banner-list .list-con a {
  text-decoration: none;
  color: #f7b61f;
  display: inline-block;
}

/*--------------------------------------------------------------
  ## foor-plan zoom image
--------------------------------------------------------------*/
.image-zoom-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px; /* adjust size */
  margin: auto;
  height: auto;
  cursor: crosshair;
  border-radius: 18px;
  overflow: hidden;
}

.zoom-target {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/*--------------------------------------------------------------
  ## blog-page
--------------------------------------------------------------*/
.blog-page {
  padding: 70px 0px;
}
@media only screen and (max-width: 767px) {
  .blog-page {
    padding: 40px 0px;
  }
}
.blog-page .blog-single-c {
  background-color: #2B2B2B;
  border-radius: 16px;
  border: 1px solid #373737;
  padding: 12px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-single-c img {
  border-radius: 14px;
}
.blog-page .blog-single-c .blog-single-c-txt {
  padding: 18px 20px;
}
.blog-page .blog-single-c .blog-single-c-txt .date-txt {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}
.blog-page .blog-single-c .blog-single-c-txt .title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}
.blog-page .blog-single-c .blog-single-c-txt p {
  font-size: 14px;
  color: #eee;
  line-height: 1.5;
}
.blog-page .blog-single-c .blog-single-c-txt .read-more {
  display: inline-block;
  color: #E20821;
  font-weight: 600;
  margin-top: 22px;
  padding: 6px 14px;
  background-color: #171717;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.blog-page .blog-single-c .blog-single-c-txt .read-more:hover {
  background-color: #EDF1FC;
  color: #000;
}

.paginator {
  padding-bottom: 30px;
}
.paginator a {
  display: inline-block;
  padding: 8px 13px;
  min-width: 90px;
  text-align: center;
  border-radius: 7px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: rgba(226, 8, 33, 0.6);
  color: #000;
}
.paginator a.disabled {
  background-color: rgba(226, 8, 33, 0.2);
  color: #777;
}

/*--------------------------------------------------------------
# post-det
--------------------------------------------------------------*/
.post-det {
  padding: 70px 0px;
}
@media only screen and (max-width: 767px) {
  .post-det {
    padding: 40px 0px;
  }
}
.post-det .post-con {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #373737;
  padding: 20px;
  overflow: hidden;
  border-radius: 22px;
}
.post-det .post-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.post-det .post-body {
  padding: 20px 20px;
  color: #eee;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body {
    padding: 20px 15px;
  }
}
.post-det .post-body .date {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ccc;
}
.post-det .post-body .post-title {
  font-size: 28px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body .post-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body .post-title {
    font-size: 21px;
  }
}
.post-det .post-body h1,
.post-det .post-body h2,
.post-det .post-body h3,
.post-det .post-body h4,
.post-det .post-body h5,
.post-det .post-body h6 {
  color: #fff;
  margin-bottom: 12px;
}
.post-det .post-body h1 {
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h1 {
    font-size: 21px;
  }
}
.post-det .post-body h2 {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h2 {
    font-size: 18px;
  }
}
.post-det .post-body h3 {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h3 {
    font-size: 18px;
  }
}
.post-det .post-body h4 {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h4 {
    font-size: 18px;
  }
}
.post-det .post-body h5 {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h5 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h5 {
    font-size: 18px;
  }
}
.post-det .post-body h6 {
  font-size: 21px;
}
@media only screen and (max-width: 767px) {
  .post-det .post-body h6 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .post-det .post-body h6 {
    font-size: 18px;
  }
}
.post-det .post-body p {
  margin-bottom: 16px;
  line-height: 1.5;
  color: #eee;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-footer {
  position: relative;
  background-color: #EDF1FC;
  background-image: url("../img/hero/bg2.jpg");
  background-size: cover;
  background-position: center;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-footer .up-footer {
  position: relative;
  padding: 70px 0px;
}
@media only screen and (max-width: 767px) {
  .main-footer .up-footer {
    padding: 40px 0px;
  }
}
.main-footer .footer-txt {
  max-width: 360px;
}
.main-footer .footer-txt .footer-logo {
  height: 63px;
  margin-bottom: 20px;
}
.main-footer .footer-txt p {
  font-size: 14.5px;
  margin-bottom: 12px;
}
.main-footer .footer-txt .mail-link {
  text-decoration: none;
  display: inline-block;
  color: #E20821;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.main-footer h5 {
  font-size: 16px;
  font-weight: 700;
  color: #131313;
  margin-bottom: 16px;
}
.main-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-links li:not(:last-child) {
  margin-bottom: 6px;
}
.main-footer .footer-links li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.main-footer .footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-social li:not(:last-child) {
  margin-bottom: 6px;
}
.main-footer .footer-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-footer .footer-social a img {
  height: 30px;
  background-color: #fff;
  padding: 5px;
  border-radius: 6px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  min-width: 30px;
  margin-right: 8px;
}
.main-footer .footer-social a span {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}

.footer-down {
  position: relative;
  padding: 30px 0px;
  border-top: 1px solid #a7a5a5;
}
@media only screen and (max-width: 767px) {
  .footer-down {
    padding: 20px 0px;
  }
}
.footer-down .footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-down .footer-flex p {
  font-size: 14px;
  color: #ccc;
}
.footer-down .btn-top {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #B5B5B5;
  background-color: #E20821;
}
.footer-down .btn-top img {
  height: 10px;
}
/*# sourceMappingURL=main.css.map */