@font-face {
  font-family: Verlag-Book;
  src: url(../fonts/Verlag-Book.ttf);
}
@font-face {
  font-family: Verlag-Bold;
  src: url(../fonts/Verlag-Bold.ttf);
}
@font-face {
  font-family: Verlag-BoldItalic;
  src: url(../fonts/Verlag-BoldItalic.ttf);
}
@font-face {
  font-family: Verlag-BookItalic;
  src: url(../fonts/Verlag-BookItalic.ttf);
}
@font-face {
  font-family: Verlag-Light;
  src: url(../fonts/Verlag-Light.ttf);
}
@font-face {
  font-family: Verlag-LightItalic;
  src: url(../fonts/Verlag-LightItalic.ttf);
}
@font-face {
  font-family: salzburg-serial-bold;
  src: url(../fonts/salzburg-serial-bold.ttf);
}
@font-face {
  font-family: salzburg-serial-light1;
  src: url(../fonts/Salzburg-Serial-RegularDB.ttf);
}
@font-face {
  font-family: MyriadProRegular;
  src: url(../fonts/MyriadProRegular.ttf);
}
html,
body {
  font-family: "Verlag-Book";
  width: 100%;
  overflow-x: hidden;
  line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Verlag-Book";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #ff0308;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #21dfc2;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #ff0308;
  z-index: 9999999999999999999999 !important;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #425451;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 100px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 5px;
  z-index: 9999999;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #425451;
  padding: 14px 15px;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  font-family: "Verlag-Book";
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ef373e;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #08362f;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #ff0308;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(43, 56, 54, 0.7);
  transition: 0.2s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  transition: ease-in-out 0.2s;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #56e7d0;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #ed1c24;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(21, 27, 26, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;

  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";

  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  /*transition-property: ;*/
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  /*opacity: ;*/
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  /*opacity: ;*/
  transition: 0.2s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
}

#hero .carousel-indicators .active {
  background-color: #1bbca3;
}

#hero .btn-get-started {
  font-family: "Verlag-Book";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #ef373e;
}

#hero .btn-get-started:hover {
  background: #ef373e;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
}

.section-bg {
  background-color: #f2f5f4;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ff0308;
}
.section-title h2 {
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ff0308;
  font-family: Verlag-Bold;
  letter-spacing: 2px;
}

.section-title p {
  margin-bottom: 30px;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 21px;
  font-size: 15px;
}
#country {
  width: 100%;
  height: 45px;
  border: 1px solid #ced4da;
  padding: 10px;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f2f5f4;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 24px;
  color: #58716d;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1bbca3;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .progress {
  height: 50px;
  display: block;
  background: none;
}

.about .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #58716d;
}

.about .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .progress-bar-wrap {
  background: #e6eceb;
}

.about .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #fb0032;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  background: #fff;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #808080;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #ff0308;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Verlag-Book";
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7c9995;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #ff0308;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .infos {
  position: relative;
  z-index: 2;
}

.contact .info {
  padding: 60px;
  background: #fff;
  color: #334240;
  text-align: center;
  box-shadow: -5px -5px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 48px;
  color: #ff0308;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: Verlag-Bold;
  letter-spacing: 2px;
}

.contact .info p {
  font-size: 15px;
  line-height: 20px;
  font-family: Verlag-Book;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.contact .info-bg {
  background: white;
}

.contact .contact-form-wrap {
  box-shadow: 10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .validate {
  display: none;
  color: #ff0308;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: Verlag-Book;
  margin-bottom: 5px;
  color: #5f7c78;
  text-transform: capitalize;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #1bbca3;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #ff0308;
  padding: 10px 24px;
  color: #ff0308;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff0308;
  color: #fff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #344341;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

#footer .footer-top {
  background: #acbab7;
  border-bottom: 1px solid #4d635f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Verlag-Book";
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #58716d;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff0308;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff0308;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #40e4ca;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff0308;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: black;
}
#footer .footer-newsletter p span {
  letter-spacing: 0.5px;
  font-weight: bolder;
  font-family: Verlag-Book;
}

#footer .copyright {
  text-align: center;
  padding: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#team .section-title h2 {
  color: #374341;
  text-transform: capitalize;
}

.director-img {
  margin: 0 auto;
}

.director-img p {
  font-size: 24px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.dir-img-sec {
  display: flex;
  align-items: center;
}
.drc1-text {
  padding-left: 60px;
}
.drc1-text h1 {
  color: #ff0308;
  font-size: 24px;
}
.diret1 .row {
  align-items: center;
}

.diret1 {
  background: #f3f5f4;
  padding: 60px;
  margin-bottom: 50px;
}
.textcls {
  padding-right: 30px;
}
.dir-img-sec1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dir-img-sec1 .drc1-text {
  padding-right: 60px;
}
.text2 {
  padding-left: 40px;
}
.director-img video {
  width: 100%;
}

.info-box a {
  color: #ff0308;
}

.adv-cont {
  padding: 100px 30px;
}

.adv-cont p i {
  font-family: Verlag-BoldItalic;
}

.Advisory1 .container {
  max-width: 700px;
}
.Advisory1 {
  background: #f3f5f4;
  padding: 40px;
}
.Advisory2 .container {
  max-width: 700px;
}
.Advisory2 {
  padding: 40px;
}
.adv-cont h4 {
  color: #374341;
}
.centered h2 {
  font-size: 38px;
  font-weight: 600;
  font-family: "Verlag-Bold";
}
.genesis_img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  margin-top: -38px;
}

.text-verticalmid {
  align-items: center;
  display: flex;
}
.text-forSubtitle {
  line-height: 1.2;
  color: #374341;
  font-size: 16px;
  font-family: Verlag-Bold;
  letter-spacing: 2px;
  font-weight: 700;
}
.text-forTitle {
  color: #374341;
  text-align: center;
  font-size: 35px;
  font-family: Verlag-Bold;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 1.2;
}
.text-forP {
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 21px;
  font-size: 15px;
}

#frame1 {
  background-color: #f3f5f4;
  padding: 55px;
}

#frame1 img {
  width: 50%;
  margin-top: 0px;
  float: right;
  box-shadow: 10px 10px rgba(148, 144, 144, 0.1);
}

#frame1 p {
  float: left;
  text-align: center;
  margin: 150px 80px;
}

.text-forSubtitle span {
  font-size: 16px;
  font-family: "Verlag-LightItalic";
}

#frame2 {
  margin-left: 50px;
  margin-top: 30px;
}
#frame2 img {
  width: 100%;
  margin: 20px;
  box-shadow: 10px 10px rgba(148, 144, 144, 0.1);
}

#frame2 p {
  float: left;
  text-align: center;
}

#frame3 {
  background-color: #f3f5f4;
  padding: 55px;
}

#frame3 img {
  width: 80%;
  margin-top: 0px;
  float: right;
  box-shadow: 10px 10px rgba(148, 144, 144, 0.1);
}

#frame3 p {
  float: left;
  text-align: center;
  margin: 150px 80px;
}

#frame4 {
  margin-left: 50px;
  margin-top: 30px;
}
#frame4 img {
  width: 100%;
}
.j-slide div {
  background-color: rgb(243, 245, 244);
}
#frame4 p {
  float: left;
  text-align: center;
  margin: 150px 75px;
}

#frame5 {
  margin-left: 50px;
  margin-top: 30px;
}
#frame5 img {
  width: 80%;
}

#frame5 p {
  float: left;
  text-align: center;
  margin: 150px 75px;
}

/*jssor slider loading skin spin css*/
.jssorl-009-spin img {
  animation-name: jssorl-009-spin;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*jssor slider bullet skin 051 css*/
.jssorb051 .i {
  position: absolute;
  cursor: pointer;
}
.jssorb051 .i .b {
  fill: #fff;
  fill-opacity: 0.3;
}
.jssorb051 .i:hover .b {
  fill-opacity: 0.7;
}
.jssorb051 .iav .b {
  fill-opacity: 1;
}
.jssorb051 .i.idn {
  opacity: 0.3;
}

/*jssor slider arrow skin 051 css*/
.jssora051 {
  display: block;
  position: absolute;
  cursor: pointer;
}
.jssora051 .a {
  fill: none;
  stroke: #ff0308;
  stroke-width: 360;
  stroke-miterlimit: 10;
}
.jssora051:hover {
  opacity: 0.8;
}
.jssora051.jssora051dn {
  opacity: 0.5;
}
.jssora051.jssora051ds {
  opacity: 0.3;
  pointer-events: none;
}
select#country {
  width: 100%;
  height: 45px;
}
.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.3;
  background: #f1453d;
}

.hero-wrap.hero-wrap-2 {
  height: 300px;
}
.hero-wrap.hero-wrap-2 .slider-text {
  height: 300px;
}
.hero-wrap.hero-wrap-2 .slider-text .bread {
  font-weight: 900;
  color: #fff;
}
.hero-wrap.hero-wrap-2 .slider-text .breadcrumbs {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span a {
  color: #fff;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.2;
}

.footer_icon_bg {
  width: 15%;
}

.fa {
  color: #ff0308;
  background: #fff;
  padding: 3px 4px;
  border: 1px solid white;
  border-radius: 54px;
  margin-right: 10px;
  font-size: 14px;
  margin-bottom: 60px;
  margin-top: 5px;
}

.footer-newsletter div {
  display: inline-flex;
}
.services .icon-box:hover .icon {
  background: transparent;
}
.readmore {
  font-family: Verlag-BookItalic;
  color: #ff0308;
  text-transform: capitalize;
  padding-top: 50px;
}
.school1 .service-box-inner {
  text-transform: uppercase;
}

#elite .in-heading h1::before {
  width: 105%;
}
#PMS .in-heading h1::before {
  right: -16px;
  width: 105%;
}
.sty .service-box {
  padding: 0px 40px;
}

.uni1 .service-box-inner p {
  text-transform: uppercase !important;
  font-size: 15px !important;
  font-family: verlag-Bold;
}

.popover-content {
  display: none;
}
.popover {
  -moz-box-shadow: 0 0 8px #5b7d83;
  -webkit-box-shadow: 0 0 8px #5b7d83;
  box-shadow: 0 0 8px #5b7d83;
  z-index: 9999999;
  position: relative;
}
.popbtn {
  background: transparent;
  border: none;
  display: block;
  text-align: center;
  width: 100%;
  color: #ff0308;
  letter-spacing: 0.5px;
}
.popover {
  max-width: 400px !important;
  width: 100% !important;
  padding: 0 !important;
}
.popover h4 {
  color: #ff0308 !important;
  text-align: center;
}
.popover .card {
  border: none !important;
  padding: 0 !important;
}
.popover li {
  list-style-type: disc !important;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }

  .contact .info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .Director1,
  .Director2 {
    margin-top: 176px !important;
  }

  .diret1 p,
  .drc1-text h2 {
    text-align: center !important;
  }

  .videotext {
    left: 0 !important;
    top: 1% !important;
  }
  #hero h2 {
    font-size: 28px;
  }
  .libpdR {
    padding-left: 15px !important;
  }

  .libpd {
    padding-right: 15px !important;
  }

  .lib-left {
    text-align: center !important;
    padding-right: 15px !important;
  }

  .lib-right {
    padding-left: 0 !important;
  }
  .container-fluid.library {
    padding: 60px 20px !important;
    text-align: center !important;
  }

  .library img {
    width: 50% !important;
    margin-bottom: 20px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }

  #hero h2 {
    font-size: 28px;
  }

  .contact .php-email-form {
    padding: 15px 0 0 0;
  }

  .for-text1::before {
    display: none;
  }
  .for-text1::after {
    display: none;
  }

  #frame3 {
    padding: 0 15px;
  }
  .section-title p {
    font-size: 16px;
  }

  #frame1 p,
  #frame2 p,
  #frame3 p {
    margin: 30px 130px;
    font-size: 26px;
  }
  #frame2 p,
  #frame3 p {
    float: none;
  }

  #frame1 img {
    width: 100%;
  }

  #frame2 {
    margin-left: 10px;
  }

  #frame2 img {
    width: 93%;
    margin: 0;
    margin-bottom: 50px;
  }

  #frame3 img {
    width: 100%;
    float: none;
  }

  #frame4 {
    align-content: center;
    margin: 30px 10px;
  }

  .genesis_img {
    width: 100%;
    margin-top: -53px;
  }
  .bannr-img img {
    height: 400px;
  }
  .diret1 {
    background: #f3f5f4;
    padding: 15px;
    margin-bottom: 50px;
  }
  .dir-img-sec {
    display: block;
    align-items: center;
  }
  .drc1-text {
    padding-left: 0;
    margin-top: 20px;
  }
  .dir-img-sec1 {
    display: block;
  }
  .dir-img-sec1 .drc1-text {
    padding-right: 0;
  }
  .text2 {
    padding-left: 0;
    margin-top: 20px;
  }
  .textcls {
    padding-right: 0;
  }
  .diret1 img {
    width: 100%;
    height: 500px;
    margin: 20px 2px;
  }

  .container-fluid.studpage,
  .container-fluid.studpage1,
  .container-fluid.studpage2 {
    padding: 0 !important;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .service-box {
    margin-bottom: 100px !important;
  }
  /* .school-p {
    display: none;
  } */

  .un-box {
    width: 45% !important;
  }
  .univ-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 0 !important;
    margin: 0 15px;
  }
  .uni1 .service-box {
    margin-bottom: 0 !important;
    margin-top: 39px !important;
  }
  .formain {
    margin: 0 15px;
  }
  .unt3 .service-box {
    margin-bottom: 70px !important;
  }
  .cont {
    padding-bottom: 1px;
  }
  .swiper-container {
    width: 100%;
    height: 100%;
    padding: 0 !important;
  }
  .gov1 .in-heading p {
    padding: 0 !important;
  }
  .gov1 {
    margin: 0 15px;
  }
  .gov1 .service-box {
    margin-bottom: 40px !important;
    margin-top: 20px;
  }
  .gov1 .service-box {
    margin-bottom: 0 !important;
    margin-top: 0;
    padding: 0 20px;
    max-height: 100%;
  }
  .gov1 .col-lg-4.col-md-6.col-sm-12.col-12 {
    margin-bottom: 10px;
    margin-top: 16px;
  }
}
/* @media screen and (min-device-width: 768px) and (max-device-width: 900px) {
  .videotext {
    top: 30% !important;
  }
} */

@media (max-width: 480px) {
  .for-text1 span {
    padding: 0px !important;
  }
  .school-p {
    background-color: #d0d3d3a1;
    padding: 40px 10px;
    max-width: 700px;
    font-size: 18px;
    color: #252525;
    line-height: 20px;
  }

  .for-text1 {
    font-size: 1.5rem !important;
  }

  .subtitle {
    margin: 35px;
  }
  .videotext {
    /* padding: 40px; */
    left: 0 !important;
    top: -40px !important;
  }
  .school-p {
    background-color: #d0d3d3a1;
    padding: 40px;
    max-width: 700px;
    font-size: 15px;
    color: #252525;
    line-height: 17px;
  }

  .popup-section-heading {
    padding-top: 35px;
  }

  .partnership .in-heading {
    margin-top: 0 !important;
  }
  .container-fluid.studpage1 {
    font-size: 14px !important;
  }
  .videotext1 #loading {
    display: none;
  }

  .in-heading h1 {
    position: relative;
    display: inline !important;
    background: #fff;
    font-size: 25px;
  }
  .in-heading h1::before {
    display: none;
  }
  .service-box {
    padding: 30px 30px;
    margin: 0 20px;
  }
  .container-fluid.uni1 {
    padding: 0 !important;
    text-align: center;
  }
}

@media (max-width: 1500px) {
  .container-fluid.uni1 {
    padding: 60px 50px !important;
  }
  .content-image img {
    margin-bottom: 20px;
  }
  .swiper-container {
    padding: 0 !important;
  }
}

@media screen and (min-device-width: 1400px) and (max-device-width: 1500px) {
  .swiper-container {
    padding: 0 !important;
  }
  .centered {
    width: 37% !important;
  }
  .centered ul li {
    letter-spacing: 0.1px;
  }
  .service-box {
    padding: 35px 10px !important;
  }
  .uni1 .service-box p {
    margin-top: 20px !important;
    text-transform: capitalize;
    font-size: 14px !important;
    font-weight: 500;
  }
}
@media screen and (min-device-width: 1300px) and (max-device-width: 1400px) {
  .swiper-container {
    padding: 0 !important;
  }
  .centered {
    width: 40% !important;
  }
  .centered ul li {
    letter-spacing: 0px;
  }
  .service-box {
    padding: 35px 10px !important;
  }
  .uni1 .service-box p {
    margin-top: 0px !important;
    font-size: 14px !important;
    font-weight: 500;
  }
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1300px) {
  .swiper-container {
    padding: 0 !important;
  }
  .centered {
    width: 44% !important;
  }
  .centered ul li {
    letter-spacing: 0px;
  }
  .service-box {
    padding: 35px 10px !important;
  }
  .uni1 .service-box p {
    margin-top: 0px !important;
    font-size: 14px !important;
    font-weight: 500;
  }
}
