.p0 {
  margin-top: 0;
  margin-bottom: 0;
}

.p0 p {
  margin-top: 0;
  margin-bottom: 0;
}

.h1,
h1 {
  margin-bottom: 25px;
  font-size: 48px;
}

.title {
  line-height: 1.1;
  font-weight: 700;
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #00aeef;
  font-size: 48px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
  }
}


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


.list-none > li {
  margin: 0;
  padding: 0;
}


.list-none > li:before {
  display: none;
}

.content ul, footer .box ul,
.list-bullet {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content ul > li, footer .box ul > li,
.list-bullet > li {
  display: block;
  position: relative;
  margin: 5px 0;
  padding-left: 30px;
  transition: all 0.3s;
}

.content ul > li:before, footer .box ul > li:before,
.list-bullet > li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  background-image: url("../img/li.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.content ul > li a, footer .box ul > li a,
.list-bullet > li a {
  display: inline-block;
}

.content ul > li a:hover, footer .box ul > li a:hover,
.list-bullet > li a:hover {
  padding-left: 5px;
}

.content {
  font-size: 18px;
  font-weight: 300;
}

.content strong {
  color: #222222;
  font-style: italic;
  font-size: 18px;
}

.color-primary {
  color: #00aeef;
}

.color-white {
  color: #fff;
}

.color-white a {
  color: #fff;
}

.color-white .title {
  color: #fff;
  border-color: #fff;
}

.color-white strong {
  color: #fff;
}

.background-primary {
  background-color: #00aeef;
}

.background-secondary {
  background-color: #141312;
}

.background-white {
  background-color: #fff;
}

.background-gray {
  background-color: #ebebeb;
}

.btn {
  padding-top: 8px;
  padding-left: 25px;
  padding-right: 25px;
  height: 40px;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  outline: 0;
}

.btn:hover {
  box-shadow: inset 0 0 0 2px #fff;
}

.btn-primary {
  background-color: #00aeef;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0076a3;
}

.btn-white {
  background-color: #fff;
  color: #252525;
}

.btn-white:hover {
  background-color: #252525;
  color: #111;
}

.btn-primary-slant {
  position: relative;
}

.btn-primary-slant:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 15px;
  border-color: transparent transparent #00aeef transparent;
  transition: all 0.3s;
}

.btn-primary-slant:hover:before {
  border-color: transparent transparent #0076a3 transparent;
}

.vcenter-wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.vcenter-wrapper .vcenter-item {
  display: table-cell;
  vertical-align: middle;
}

.padding-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-medium {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-xlarge {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .tablet-width-full {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .tablet-text-center {
    text-align: center !important;
  }
}

@media (max-width: 991px) {
  .tablet-margin-top-30 {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .mobile-width-full {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .mobile-text-center {
    text-align: center !important;
  }
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.background-center {
  background-position: 50% 50%;
}

.background-fixed {
  background-attachment: fixed;
}

.background-cover {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-fixed-cover {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 991px) {
  .background-fixed-cover {
    background-attachment: scroll;
  }
}

.transition {
  transition: all 0.3s;
}

.link-fake {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  text-decoration: none;
}

.image-fullsize {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
}

@keyframes move-down {
  0% {
  }
  100% {
    background-position: center bottom;
    opacity: 0;
  }
}

.effect-move-down {
  display: inline-block;
}

.effect-move-down:hover {
  animation-name: move-down;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.btn,
a {
  transition: all 0.3s;
}

.btn:hover,
a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 27px;
  }
  .h3,
  h3 {
    font-size: 22.5px;
  }
  .h4,
  h4 {
    font-size: 18px;
  }
  .h5,
  h5 {
    font-size: 15px;
  }
  .h6,
  h6 {
    font-size: 12px;
  }
}

embed,
iframe,
object,
video {
  max-width: 100%;
  height: auto;
  border: 0;
}

.p-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.p-0 p {
  margin-top: 0;
  margin-bottom: 0;
}

ul.list-0 {
  margin: 0;
  padding: 0;
}

ul.list-0 li {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.no-padding {
  padding: 0;
}

::selection {
  background-color: #00aeef;
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #333333;
  transition: all 0.3s;
  z-index: 1000;
}

@media (max-width: 767px) {
  header {
    position: static;
    padding-bottom: 0;
  }
}

header .logo {
  margin-left: 30px;
  float: left;
}

@media (max-width: 991px) {
  header .logo {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

header .logo img {
  width: 315px;
  max-width: 100%;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  header .logo img {
    width: 240px;
  }
}

@media (max-width: 1200px) {
  header .logo {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  header .logo {
    margin-top: 10px;
  }
}

header.sticked {
  transition-timing-function: linear;
  border-bottom: 5px solid #00aeef;
}

header .top_inf {
  position: relative;
  width: 100%;
  padding-right: 35px;
  margin-top: 10px;
}

header .top_inf p {
  display: inline-block;
  margin-left: 20px;
  float: right;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  header .top_inf {
    float: right;
    width: auto;
  }
}

@media (max-width: 768px) {
  header .top_inf {
    padding-right: 0;
    width: 100%;
  }
  header .top_inf p {
    display: block;
    text-align: center;
    width: 100%;
  }
}

#mainmenu {
  float: right;
  border: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#mainmenu li .dropdown-menu {
  height: 0;
  overflow: hidden;
}

#mainmenu li.open .dropdown-menu {
  height: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  #mainmenu {
    min-height: 40px;
  }
}

@media (min-width: 768px) {
  #mainmenu .navbar-header {
    float: none;
    text-align: right;
  }
  #mainmenu .navbar-nav {
    float: none;
  }
  #mainmenu ul.nav > li {
    float: none;
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #mainmenu ul.nav > li {
    height: 40px;
  }
}

@media (min-width: 768px) {
  #mainmenu ul.nav > li > a {
    padding: 35px 20px;
    height: 90px;
    font-size: 15px;
    font-weight: 600;
    color: #141312;
  }
  #mainmenu ul.nav > li > a:focus, #mainmenu ul.nav > li > a:hover {
    background-color: #00aeef;
    color: #fff;
  }
  #mainmenu ul.nav > li > a .caret {
    margin-left: 5px;
    margin-top: -1px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #mainmenu ul.nav > li > a {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) {
  #mainmenu li .dropdown-menu {
    padding: 0;
    border: 0;
    display: block;
    opacity: 0;
    margin-top: 10px;
    text-transform: none;
    transition: all 0.3s;
  }
  #mainmenu li .dropdown-menu > li > a {
    color: #fff;
    font-size: 13px;
    padding: 12px 15px 8px;
  }
  #mainmenu li .dropdown-menu > li > a:focus, #mainmenu li .dropdown-menu > li > a:hover {
    background-color: #141312;
    color: #fff;
  }
  #mainmenu li.open .dropdown-toggle {
    color: #fff;
    background-color: #141312;
  }
  #mainmenu li.open .dropdown-menu {
    color: #141312;
    opacity: 1;
    margin-top: 0;
  }
  #mainmenu li.open .dropdown-menu a {
    color: #141312;
  }
}

/* MOBILE MENU */
@media (max-width: 767px) {
  #mainmenu {
    min-height: 45px;
    text-align: center;
    margin-bottom: 0;
    padding-top: 6px;
    background-color: #00aeef;
  }
  #mainmenu .navbar-toggle {
    float: none;
    border: 1px solid #fff;
    margin: 0;
  }
  #mainmenu .navbar-toggle span {
    background-color: #fff;
  }
  #mainmenu .navbar-collapse {
    width: 100%;
    box-shadow: none;
  }
  #mainmenu ul.navbar-nav {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  #mainmenu ul.navbar-nav > li {
    display: block;
    text-align: center;
    border-top: 1px solid #0076a3;
  }
  #mainmenu ul.navbar-nav > li:first-of-type {
    border-top: 0;
  }
  #mainmenu ul.navbar-nav > li a {
    padding-top: 7px;
    padding-bottom: 7px;
    color: #fff;
    font-weight: 700;
  }
  #mainmenu ul.navbar-nav > li.open > a {
    background-color: #141312;
  }
  #mainmenu .dropdown-menu {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  #mainmenu .dropdown-menu li a {
    color: #fff;
    font-size: 13px;
    padding: 0;
  }
}

#mainslider {
  margin-top: 90px;
  position: relative;
  height: 720px;
  background: #ccc url("../img/loading.gif") no-repeat center center;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  #mainslider {
    margin-top: 0;
    height: 400px;
  }
}

#mainslider .item {
  width: 100%;
  height: 720px;
  border-bottom: 5px solid #0076a3;
}

@media (max-width: 767px) {
  #mainslider .item {
    height: 400px;
  }
}

#mainslider .carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  text-shadow: none;
}

#mainslider .carousel-caption .title {
  margin-bottom: 15px;
  font-size: 72px;
  color: #fff;
}

@media (max-width: 991px) {
  #mainslider .carousel-caption .title {
    font-size: 48px;
    color: #fff;
  }
}

@media (max-width: 767px) {
  #mainslider .carousel-caption .title {
    font-size: 30px;
  }
}

#mainslider .carousel-caption .text {
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

@media (max-width: 991px) {
  #mainslider .carousel-caption .text {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  #mainslider .carousel-caption .text {
    font-size: 18px;
  }
}

#mainslider .carousel-caption .btn-slider {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 30px 17px;
  background-color: #00aeef;
  color: #fff;
  border: 0;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
}

#mainslider .carousel-caption .btn-slider:hover {
  background-color: #0076a3;
  padding-left: 35px;
  padding-right: 35px;
  box-shadow: inset 0 0 0 2px #fff;
}

@media (max-width: 767px) {
  #mainslider .carousel-caption .btn-slider {
    padding: 9px 20px 7px;
    font-size: 16px;
  }
}

#mainslider .carousel-indicators li {
  margin: 0 2px;
  width: 15px;
  height: 15px;
  border: 0;
  background: #fff;
  opacity: 0.5;
}

#mainslider .carousel-indicators li.active {
  margin: 0 2px;
  opacity: 1;
}

.subslider {
  margin-top: 90px;
  height: 350px;
}

@media (max-width: 767px) {
  .subslider {
    margin-top: 0;
    height: 200px;
  }
}

.subslider .carousel-caption {
  position: absolute;
  text-shadow: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .subslider .carousel-caption {
    top: 0;
  }
}

.subslider .carousel-caption .title {
  margin: 0;
  font-size: 72px;
  color: #fff;
}

@media (max-width: 991px) {
  .subslider .carousel-caption .title {
    font-size: 48px;
    color: #fff;
  }
}

.section-home-content {
  position: relative;
  padding-top: 70px;
  padding-bottom: 140px;
  background-image: url("../img/content-bg.jpg");
  background-position: center bottom;
}

.section-home-content .title,
.section-home-content h1 {
  margin-top: 0;
  font-size: 30px;
  color: #141312;
}

.line-vertical {
  position: absolute;
  top: 50px;
  bottom: 140px;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .line-vertical {
    display: none;
  }
}

.section-boxes {
  position: relative;
  margin-top: -90px;
  padding-bottom: 80px;
}

.section-boxes .owl-carousel .item {
  margin: 0;
}

.section-boxes .owl-carousel .item .title {
  position: relative;
  height: 90px;
  margin: 0;
  padding-top: 24px;
  font-size: 36px;
  color: #fff;
  border-top: 5px solid #0076a3;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .section-boxes .owl-carousel .item .title {
    padding-top: 30px;
    font-size: 24px;
  }
}

.section-boxes .owl-carousel .item .title:after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #00aeef transparent transparent transparent;
  transition: all 0.3s;
}

.section-boxes .owl-carousel .item img {
  display: block;
  width: 100%;
  height: auto;
}

.section-boxes .owl-carousel .owl-item:nth-child(3n+1) .title {
  background: #00aeef;
}

.section-boxes .owl-carousel .owl-item:nth-child(3n+1) .title:after {
  border-color: #00aeef transparent transparent transparent;
}

.section-boxes .owl-carousel .owl-item:nth-of-type(3n+2) .title {
  background: #09bcff;
}

.section-boxes .owl-carousel .owl-item:nth-of-type(3n+2) .title:after {
  border-color: #09bcff transparent transparent transparent;
}

.section-boxes .owl-carousel .owl-item:nth-child(3n+3) .title {
  background: #009bd5;
}

.section-boxes .owl-carousel .owl-item:nth-child(3n+3) .title:after {
  border-color: #009bd5 transparent transparent transparent;
}

.section-boxes .owl-carousel .owl-item:hover .title {
  color: #fff;
  background: #141312;
  border-top: 5px solid #0076a3;
}

.section-boxes .owl-carousel .owl-item:hover .title:after {
  border-color: #141312 transparent transparent transparent;
}

.section-boxes .owl-carousel .owl-controls .owl-buttons .owl-next,
.section-boxes .owl-carousel .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  top: calc(50% + 45px);
  margin-top: -16px;
  display: inline-block;
  height: 32px;
  width: 21px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.section-boxes .owl-carousel .owl-controls .owl-buttons .owl-next {
  right: -45px;
  background-image: url("../img/arrow-blackR.png");
}

.section-boxes .owl-carousel .owl-controls .owl-buttons .owl-prev {
  left: -45px;
  background-image: url("../img/arrow-blackL.png");
}

.section-areas {
  position: relative;
  background-color: #00aeef;
  background-image: url("../img/cover-bg.jpg");
  border-top: 5px solid #0076a3;
}

.section-areas .title {
  color: #fff;
  font-size: 36px;
}

.section-areas .owl-carousel .item {
  display: block;
  margin: 0 15px;
  background: #000;
}

.section-areas .owl-carousel .item img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}

.section-areas .owl-carousel .item:hover img {
  opacity: 0.5;
}

.section-areas .owl-carousel .owl-controls .owl-buttons .owl-next,
.section-areas .owl-carousel .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  top: calc(50%);
  margin-top: -16px;
  display: inline-block;
  height: 32px;
  width: 21px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.section-areas .owl-carousel .owl-controls .owl-buttons .owl-next {
  right: -45px;
  background-image: url("../img/arrow-whiteR.png");
}

.section-areas .owl-carousel .owl-controls .owl-buttons .owl-prev {
  left: -45px;
  background-image: url("../img/arrow-whiteL.png");
}

.section-info .box {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.section-info .box img {
  width: 75px;
  height: auto;
  margin-bottom: 10px;
}

.section-info .box strong {
  display: block;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
  color: #141312;
}

.section-info .box .arrow-more {
  display: inline-block;
  margin-top: 10px;
  width: 36px;
  height: 41px;
  background-image: url("../img/arrow-blueD.png");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  .section-info .box .arrow-more {
    display: none;
  }
}

.section-gallery .col-xs-6 {
  padding: 0;
  background-color: #000;
}

.section-gallery img {
  filter: grayscale(0.01);
  opacity: 1;
  transition: all 0.3s;
}

.section-gallery img:hover {
  filter: grayscale(0);
  opacity: 0.6;
}

footer {
  background-color: #009bd5;
  border-top: 5px solid #0076a3;
  padding-top: 45px;
  padding-bottom: 45px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 991px) {
  footer {
    padding-bottom: 30px;
  }
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
}

footer .box {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  footer .box {
    min-height: 200px;
  }
}

footer .box .title {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
  display: block;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

footer .box .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #4db5dc;
}

footer .box ul li {
  padding-left: 20px;
}

footer .box ul li:before {
  top: 5px;
  width: 5px;
  height: 5px;
  background: #fff;
}

.copyright {
  position: relative;
  padding: 18px 0 14px;
  background-color: #fff;
  font-size: 13px;
}

.copyright a {
  color: #777777;
}

.copyright a:hover {
  color: #777777;
  opacity: 0.5;
  text-decoration: none;
}

.copyright .copy-rights {
  float: left;
}

.copyright .copy-by {
  float: right;
  text-align: right;
}

.section-callback {
  background-color: #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-callback .col-xs-12 {
  padding-left: 5px;
  padding-right: 5px;
}

.section-callback .callback-desc {
  font-size: 18px;
  padding-bottom: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.section-callback .form-control {
  font-size: 13px;
  padding-top: 13px;
}

.section-callback .btn-send {
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  width: 100%;
  color: #fff;
  background-color: #141312;
}

.section-callback .btn-send:hover {
  background-color: #000;
}

.section-callback .error {
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumbs-wrapper {
  background-color: #ecf0f4;
  font-size: 13px;
  color: #777777;
  padding: 13px 0 10px;
}

.breadcrumbs-wrapper ol.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumbs-wrapper ol.breadcrumb li {
  display: inline-block;
  margin: 0 10px;
  border-left: 1px solid #777777;
  padding-left: 20px;
}

.breadcrumbs-wrapper ol.breadcrumb li:first-of-type {
  padding-left: 0;
  border-left: 0;
}

.breadcrumbs-wrapper ol.breadcrumb li:before {
  display: none;
}

.breadcrumbs-wrapper ol.breadcrumb li a {
  display: inline-block;
  margin-top: 2px;
  color: #777777;
}

.breadcrumbs-wrapper ol.breadcrumb li a:hover {
  text-decoration: none;
  color: #515151;
}

.breadcrumbs-wrapper ol.breadcrumb li:last-of-type {
  opacity: 0.6;
}

.form-control {
  height: 40px;
  margin-bottom: 10px;
  padding: 12px 15px 10px;
  font-size: 16px;
  outline: 0;
  border: 1px solid #ccc;
  transition: all 0.2s linear;
  box-shadow: none;
}

.form-control:hover {
  border-left: 5px solid #ccc;
  transition: all 0.2s linear;
}

.form-control:focus {
  border-left: 5px solid #00aeef;
  outline: 0;
  transition: all 0.2s linear;
}

textarea.form-control {
  height: 110px;
  resize: none;
}

.btn-send {
  padding-left: 5px;
  padding-right: 5px;
  color: #fff;
  background-color: #141312;
}

.btn-send:hover {
  color: #fff;
  background-color: black;
}

.btn-send:focus {
  color: #fff;
  background-color: black;
}

.error {
  color: #fff;
  margin-bottom: 15px;
}

#map {
  width: 100%;
  height: 400px;
}
