:root {
  --primary-color: #1290A7;
  --second-color: #F58722;
  --third-color: #0292FF;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
html {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 150%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  resize: none;
  min-width: 100%;
  min-height: 100%;
  background: #1A1A38;
  color: #fff;
}

body.in-menu {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

body.fixed {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
body.fixed::before {
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.49);
  left: 0;
  top: 0;
  position: absolute;
  z-index: 990;
}

body.in-search {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

body.in-search::before {
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.89);
  left: 0;
  top: 0;
  position: absolute;
  z-index: 999;
}

ul,
li {
  margin: 0;
  padding: 0;
}

a,
a:link {
  color: #313132;
  text-decoration: none;
}

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

a:visited,
a:active {
  text-decoration: none;
  color: #313132;
}

img {
  border: 0;
  max-width: 100%;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-ms-input-placeholder {
  opacity: 1;
}

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

@media (min-width: 576px) {
  html {
    scrollbar-width: auto;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.16);
  }
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background-color: #f2f4f7;
    border-radius: 0px;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: var(--primary-color);
  }
}
/**
 * OWL CAROUSEL
 */
.owl-carousel .owl-nav {
  margin: 0;
}
.owl-carousel .owl-nav [class*=owl-] {
  height: 50px;
  width: 50px;
  border: 0;
  position: absolute;
  border-radius: 4px;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.08);
  margin: 0px;
  opacity: 0;
}
.owl-carousel .owl-nav [class*=owl-] i {
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  color: #fff;
}
.owl-carousel .owl-nav .owl-prev {
  left: 30px;
}
.owl-carousel .owl-nav .owl-prev:hover {
  background: rgba(0, 0, 0, 0.28);
}
.owl-carousel .owl-nav .owl-next {
  right: 30px;
}
.owl-carousel .owl-nav .owl-next:hover {
  background: rgba(0, 0, 0, 0.28);
}
.owl-carousel:hover .owl-nav [class*=owl-] {
  opacity: 1;
}
.owl-carousel .owl-dots {
  margin-top: 0px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 3px 3px;
  background: var(--primary-color);
  border: 0;
  border-radius: 100%;
}
.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--second-color);
}
.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--second-color);
}

/**
 * BXSLIDER
 */
.bx-wrapper {
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  background: none;
}
.bx-wrapper .bx-controls-direction > a {
  background: none;
  text-indent: 0;
  height: 50px;
  width: auto;
  line-height: 50px;
  text-align: center;
  top: 50%;
  color: #333;
  margin: 0;
  transform: translateY(-50%);
}
.bx-wrapper .bx-controls-direction > a i {
  font-size: 38px;
  line-height: 50px;
  display: block;
}
.bx-wrapper .bx-controls-direction .bx-prev {
  left: -75px;
}
.bx-wrapper .bx-controls-direction .bx-next {
  right: -75px;
}

/**
 * CONTACT FORM
 */
div.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-form p {
  margin-bottom: 0;
}
.wpcf7-form input,
.wpcf7-form select {
  line-height: 20px;
  border: 0;
  padding: 10px 15px;
  color: #001f46;
  background: #fff;
  font-family: "SVN Gilroy", serif;
  font-size: 14px;
  margin: 5px 0;
  width: 100%;
  border-radius: 0px;
}
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 15px;
  height: 91px;
  color: #001f46;
  font-family: "SVN Gilroy", serif;
  font-size: 14px;
  background: #fff;
  margin: 5px 0px;
  border-radius: 0px;
}
.wpcf7-form .wpcf7-radio {
  width: 100%;
  padding: 10px 0px 10px;
  display: flex;
  margin-bottom: 19px;
  align-items: center;
  justify-content: space-around;
  background: orange;
  border-radius: 6px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  margin-bottom: 0;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item label input {
  width: auto;
  margin: 0;
  margin-right: 10px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
}
.wpcf7-form input.wpcf7-submit {
  background: #ff7a00;
  text-transform: uppercase;
  color: #fff;
  margin: 5px 0;
  border-radius: 0px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.5px;
  border: 0;
}
.wpcf7-form .wpcf7-checkbox {
  display: flex;
  align-items: center;
}
.wpcf7-form .wpcf7-checkbox input[type=checkbox] {
  display: inline;
}

.nav_paginate > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav_paginate > ul > li {
  display: inline-block;
  vertical-align: middle;
}
.nav_paginate > ul > li > a,
.nav_paginate > ul > li span {
  margin: 3px 3px;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 28px;
  background: #fff;
  border: 1px solid #bbb;
  text-align: center;
}
.nav_paginate > ul > li > a i,
.nav_paginate > ul > li span i {
  display: block;
  text-align: center;
  line-height: 28px;
}
.nav_paginate > ul > li span.current {
  border-color: orange;
  background: orange;
  color: #fff;
}

/**
 * ANIMATION
 */
@keyframes top_left {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes top_bottom {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes bottom_left {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
@keyframes bottom_top {
  from {
    top: 100%;
  }
  to {
    top: 3px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes banner_sub {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes trf_left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes banner_style {
  from {
    transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
/**
 * ANIMATION
 */
@keyframes shadow-after {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes shadow-before {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes rotating {
  to {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=css.css.map */