@font-face {
  font-family: BPG;
  src: url("../fonts/bpg_extrasquare_mtavruli_2009.ttf");
}

body {
  font-family: BPG;
  color: #444444;
}

a {
  color: #ef7100;
}

a:hover {
  color: #ef7100;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: BPG;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(45%);
  left: calc(50% - 45px);
  border: 6px solid #005293;
  border-top-color: #EF7100;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #005293;
  color: #EF7100;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #006293;
  color: #ef8100;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
  background: #005293;
  height: 60px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    height: 64px;
  }
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0 10px 15px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: BPG;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 16px;
  background-color: #EF7100;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover>a:before, .nav-menu .active>a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active>a, .nav-menu li:hover>a {
  color: #fff;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  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;
  border-radius: 5px;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active>a, .nav-menu .drop-down ul li:hover>a {
  color: #1acc8d;
}

.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-nav-toggle {
  position: fixed;
  right: 20px;
  top: 18px;
  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: #fff;
}

.mobile-nav {
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 60px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #005293;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
  color: #EF7100;
  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: "\eaa1";
}

.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-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

#headersection {
  width: 100%;
  position: relative;
  padding: 70px 0 30px 0;
}

#headersection:before {
  content: "";
  background: #005293;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#headersection h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#headersection h1 span {
  color: #fff;
  border-bottom: 4px solid #EF7100;
  font-size: 40px;
}

@media(max-width: 1023px) {
  #headersection h1 {
    text-align: center;
  }

  #headersection h1 span {
    font-size: 30px;
  }

  #headersection h2 {
    text-align: center;
  }

  #headersection h2 span {
    font-size: 25px;
  }
}

#headersection h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 22px;
}

#headersection .btn-get-started {
  font-family: BPG;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #EF7100;
}

#headersection .btn-get-started:hover {
  background: #ef8100;
}

#headersection .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #headersection {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #headersection {
    padding-top: 80px;
  }

  #headersection .animated {
    -webkit-animation: none;
    animation: none;
  }

  #headersection .headersection-img {
    text-align: center;
  }

  #headersection .headersection-img img {
    max-width: 80%;
  }

  #headersection h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #headersection h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #headersection .headersection-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

section {
  padding: 25px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #005293;
  font-family: BPG;
}

.section-title h2::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #EF7100;
  margin: 20px 0px 0px 0px;
}

#SectionFeatures {
  display: flex;
}

#DetailedSectionfeatures {
  display: none;
  min-height: 360px;
}

.detailedinfofooter {
  font-size: 15px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #005293;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #005293;
}

.features .icon-box:hover {
  background: #ebebff;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 224px;
  background-size: 100% 100%;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.aboutus {
  font-size: 12px;
}

.owl-carousel .owl-item img {
  width: 80%;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.partnersbg {
  background-color: #F5F5F5;
  height: 100px;
}

.vacancy .vacancy-list {
  padding: 0;
}

.vacancy .vacancy-list ul {
  padding: 0;
  list-style: none;
}

.vacancy .vacancy-list li + li {
  margin-top: 15px;
}

.vacancy .vacancy-list li {
  padding: 20px;
  background: #f5f5ff;
  border-radius: 4px;
  position: relative;
}

.vacancy .vacancy-list a {
  display: block;
  position: relative;
  font-family: BPG;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.vacancy .vacancy-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #005293;
}

.vacancy .vacancy-list .icon-show, .vacancy .vacancy-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.vacancy .vacancy-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.vacancy .vacancy-list .icon-show {
  display: none;
}

.vacancy .vacancy-list a.collapsed {
  color: #343a40;
}

.vacancy .vacancy-list a.collapsed:hover {
  color: #ef7100;
}

.vacancy .vacancy-list.collapsed .icon-show {
  display: inline-block;
}

.vacancy .vacancy-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .vacancy .vacancy-list {
    padding: 0;
  }
}


.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #005293;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #005293;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #005293;
}

.contact .info a {
  color: #005293;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  color: #EF7100;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.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 input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #EF7100;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ef8100;
}

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

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

#footer {
  background: #005293;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
