/*styles*/

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0179cb;
    --secondary: #222;
    --grey: #f9f9f9;
}

body {
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

body.active {
    overflow-y: hidden;
}

.container {
    max-width: 1350px;
    position: relative;
    height: 100%;
}

.container.sml {
    max-width: 1000px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.aos-animate {
    z-index: 9;
}

.icon {
    background: transparent;
}

.heading h1, .heading h2, .heading h3 {
    font-size: inherit !important;
    margin: inherit !important;
    font-style: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}

/* Header */

.header {
  z-index: 99;
  position: relative;
  width: 100%;
}

.header.mid {
  margin-top: 141px;
}

.header.mid .bottom-header .logo {
  max-width: 165px;
}

.header.mid .bottom-header {
  position: fixed;
  width: 100%;
  top: -200px;
  transition: all 0.8s ease;
  left: 0;
  padding: 10px 0;
  box-shadow: 2px 0 40px rgba(37, 132, 255, 0.12);
}

.header.stuck .bottom-header {
  top: 0;
}

.header.mid .topheader {
  position: fixed;
  width: 100%;
  top: -200px;
  transition: all 0.8s ease;
  left: 0;
  z-index: 9;
  background: white;
}

.header.mid .topheader ul li a {
  color: #060807;
}

.header.mid .topheader ul li a.active {
  color: white;
}

.header.mid .topheader ul li a::before {
    background: #f7f7f7;
}

.header .topheader {
    background: #333;
    position: relative;
    z-index: 9;
    width: 100%;
    box-shadow: 0 9px 19px rgba(0,0,0,.08);
    overflow: hidden;
}

.topheader ul {
    display: flex;
    justify-content: right;
    margin: 0;
    padding: 0;
}

.topheader ul li {
    display: inline-block;
    position: relative;
    padding: 0;
    font-size: 15px;
/*    flex: 1;*/
    text-align: center;
    margin: 0 10px;
}

.topheader ul li.active {
  background: #0179cb;
  color: white;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.topheader ul li a {
    color: #bfbfbf;
    font-weight: 600;
    position: relative;
    font-size: 12px;
    padding: 10px 5px;
    display: block;
    transition: 0.5s ease;
}

.topheader ul li a i {
  color: #0179cb;
}

.bottom-header {
    position: relative;
    font-size: 16px;
    background: #222;
    z-index: 999;
    padding: 10px 0;
}

.bottom-header .logo {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 100%;
}

.bottom-header .logo img {
  max-height: 100px;
}

.bottom-header .logo.sub img {
  max-height: 87px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header.mid .bottom-header .logo.sub img {
  max-height: 73px;
}

.bottom-header .menu {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.bottom-header .menu ul {
  display: flex;
  justify-content: center;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  position: relative;
}

.bottom-header .menu ul li {
    position: relative;
    display: inline-block;
    padding: 0;
}

.bottom-header .menu ul li a {
    color: #bfbfbf;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    padding: 5px 15px;
    white-space: nowrap;
    text-transform: uppercase;
}

.bottom-header .menu ul li a:hover {
    text-decoration: none;
    color: #0052da;
}

.contact-items {
  width: fit-content;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
}

.contact-items a {
  color: white;
  font-size: 20px;
  text-decoration: none !important
}

.contact-items i {
    vertical-align: middle;
    margin-right: 5px;
    color: #ff4c00;
}

.bottom-header ul li ul.dropdown {
  position: absolute !important;
  left: -40px;
  top: 55px;
  margin-left: 0;
  transition: all 0.4s ease;
  display: block !important;
  opacity: 0;
  background: white;
  border-radius: 5px;
  padding: 10px 0;
  text-align: center;
  box-shadow: 2px 0 20px rgba(0,0,0,.2);
  width: fit-content;
  height: auto;
  visibility: hidden;
  transform: scale(.9);
}

.bottom-header ul li:hover > ul.dropdown {
  opacity: 1;
  left: 0;
  visibility: visible;
  transform: scale(1);
}

.bottom-header ul li ul.dropdown li {
  float: none;
  width: 100%;
  padding: 10px 30px;
  white-space: nowrap;
}

/*Home*/

.trade-logo {
  max-height: 75px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

.btn {
  position: relative;
  line-height: normal;
  padding: 15px 28px;
  border-radius: 0;
  color: white !important;
  background: #0179cb;
  font-weight: 600;
  transition: all .5s ease;
  overflow: hidden;
  z-index: 1;
  font-size: 17px;
  border: 2px solid #0179cb;
}

.btn:hover {
  background: transparent;
  color: #060807 !important;
  border-color: #060807;
}

.btn.white {
  background: white;
  border-color: white;
  color: #060807 !important;
}

.btn.white:hover {
  color: white !important;
  background: transparent;
}

.btn.dark {
  background: #060807;
  border-color: #060807;
  color: white !important;
}

.btn.dark:hover {
  color: #060807 !important;
  background: transparent;
}

.breadcrumb {
  position: relative;
  background: #222;
  color: white;
  border-radius: 0;
}

.breadcrumb a {
  color: #0179cb;
  text-decoration: none;
  font-weight: bold;
}

/*Home*/

.holder {
  position: relative;
  border: 25px solid white; 
}

.hero {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 15px;
  width: 100%;
}

.hero.small {
  height: 70vh;
}

.hero.small .overlay .main,
.hero.small .overlay .main h1 {
  font-size: 65px;
  line-height: 65px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background-color: #222222;
  border-radius: 15px;
}

.hero .hero-image {
  padding: 0 10px;
  background: white;
  display: inline-block;
  margin: 10px 0;
}

.hero .hero-image img {
  max-width: 250px;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: auto;
}

.hero .overlay {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  max-width: 800px;
}

.hero .overlay .tag2 {
  position: relative;
  padding-left: 50px;
  text-transform: uppercase;
  color: #0179cb;
}

.hero .overlay .tag2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 1px;
  background: #0179cb;
}

.hero .overlay .main {
  font-size: 65px;
  line-height: 62px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: white;
}

.under-hero {
  position: relative;
  padding: 40px 0;
  background: white;
  color: #222;
}

.under-hero .services-block {
  position: relative;
  padding: 20px;
}

.under-hero .services-block .title {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  margin: 10px 0;
}

.under-hero .services-block .title span {
  color: #0179cb;
}

.under-hero .service {
  position: relative;
  transform: translateY(-100px);
  text-transform: uppercase;
  color: white;
}

.under-hero .service .image {
  position: relative;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.under-hero .service .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #222222;
  transition: all .5s ease;
}

.under-hero .service:hover {
  cursor: pointer;
}

.under-hero .service:hover .image::before {
  opacity: 0.8;
}

.under-hero .service:hover .bottom::after {
  left: 0;
}

.under-hero .service:hover {
  color: white;
  text-decoration: none;
}

.under-hero .service .bottom {
  position: relative;
  padding: 30px 20px;
  background: black;
  text-align: center;
  font-weight: bold;
  transition: all .5s ease;
  z-index: 9;
  overflow: hidden;
}

.under-hero .service .bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: #0179cb;
  transition: all .5s ease;
  z-index: -1;
}

.home-blocks {
  position: relative;
  top: -80px;
  z-index: 9;
  margin-bottom: -40px;
}

.home-block {
  position: relative;
  padding: 40px;
  background: white;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.home-block.right {
  background: #060807;
  color: white;
}

.home-block.right::before {
  position: absolute;
  content: "";
  left: 0;
  top: -30px;
  width: 100%;
  height: 30px;
  background: #060807;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.home-block.right::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 30px;
  background: #060807;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.home-block.left::before {
  position: absolute;
  content: "";
  left: 0;
  top: -30px;
  width: 100%;
  height: 30px;
  background: white;
  clip-path: polygon(100% 100%, 0 0, 0 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.home-block.left::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 30px;
  background: white;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.block-heading {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.icon-wrap i {
  font-size: 50px;
  margin-bottom: 10px;
  color: #0179cb;
}

.block {
  padding: 80px 10px;
  position: relative;
}

.inner-block {
  padding: 120px 80px;
}

.heading {
  font-size: 40px;
  font-weight: 600;
  position: relative;
  margin-bottom: 6px;
}

.tag {
  position: relative;
  display: inline;
  padding: 3px 20px;
  background: #f2f2f2;
  border-radius: 20px;
}

.notice {
  position: relative;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 20px;
}

.vertical-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.block a {
  color: #0179cb;
}

.list i {
  vertical-align: middle;
  position: relative;
  font-size: 18px;
  top: -1px;
  color: #0179cb;
  margin-right: 5px;
}

.tall-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 400px;
}

/*.tall-image.bottom::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  background: white;
  clip-path: polygon(100% 100%, 0 0, 0 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.tall-image.top::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 75px;
  background: #f9f9f9;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
  box-shadow: 0 9px 19px rgba(0,0,0,.06);
}

.tall-image.top.white::before {
  background: white;
}*/

.inner-block.orange {
  color: white;
  background: #0179cb;
}

.inner-block.orange .list i {
  color: white;
}

.inner-block.orange .icon-wrap i {
  color: white;
}

.inner-block.orange .tag {
  background: #f2f2f21f;
}

.logo-float.right {
  left: unset;
  right: 0;
  background: #060807;
}

.design-block {
  position: relative;
  height: 100%;
  background: #ececec;
  overflow: hidden;
}

.logo-float {
  background: #0179cb;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 9;
  color: white;
  box-shadow: 0 9px 19px rgba(0,0,0,.2);
}

.logo-float i {
  font-size: 100px;
}

.image-float.left {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  top: 150px;
  box-shadow: 0 9px 19px rgba(0,0,0,.2);
}

.image-float.middle {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  top: -65px;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.2);
}

.image-float.right {
  width: 100%;
  height: 68%;
  background-size: cover;
  background-position: center;
  position: relative;
  bottom: -65px;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.2);
}

.enlarge {
  height: 100%;
  transform: rotate(15deg) scale(1.3);
}

/*Tabs*/
 .ai-tabs__tab-header ul {
   list-style: none;
   display: table;
   padding: 0;
   margin: 0;
   width: 100%;
}
 .ai-tabs__tab-header ul li {
   display: table-cell;
   text-align: center;
}
 .ai-tabs__tab-header ul li a {
   display: block;
  padding: 10px;
  border-bottom: none;
  color: black;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 24px;
}
 .ai-tabs__line-container {
   display: block;
   height: 4px;
   position: relative;
   width: 100%;
}
 .ai-tabs__line {
   height: 3px;
   position: absolute;
   width: auto;
   transition: 0.25s ease;
   background: #0179cb;
}
 .ai-tabs__content {
   display: none;
   padding-top: 24px;
   padding-bottom: 32px;
}
 .ai-tabs__content.ai-tabs__content--active {
   display: block;
}
.ai-content__main {
  padding-left: 40px;
 }
.ai-content__main p {
  font-size: 19px;
 }

 .banner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
 }

/*Panels*/
.panel-hold {
  display: flex;
}

.panel {
  position: relative;
  height: 600px;
  padding: 50px;
  background-size: cover;
  background-position: center;
  flex: 1;
  transition: all .5s ease;
  overflow: hidden;
}

.panel:hover {
  flex: 1.2;
}

.panel.orange {
  background: #0179cb;
  color: white;
}

.panel-content {
  position: absolute;
  width: 80%;
  bottom: 60px;
  transition: all .5s ease;
}

/*Gallery*/

.gal .image {
  box-shadow: unset;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .5s ease;
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.magnify {
  width: fit-content;
  position: absolute;
  bottom: -70px;
  right: 20px;
  padding: 8px 14px;
  font-size: 23px;
  background: #060807;
  color: #0179cb;
  transition: all 0.45s ease;
  z-index: 1;
  border-radius: 35px;
}

.gal .image:hover .magnify {
  bottom: 20px;
}

.gal .image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: all 1s ease;
}

.gal .image:hover::after {
  opacity: .3;
}

/*Menu*/

.menu-burger  {
  border: none;
  padding: 0;
  position: relative;
  display: block;
  background: transparent;
  color: #0179cb;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  float: right;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger-nav svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
}
.burger-nav .opened svg {
  transform: rotate(90deg);
}
path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
path:nth-child(1) {
  transform-origin: 36% 40%;
}
path:nth-child(2) {
  stroke-dasharray: 29 299;
}
path:nth-child(3) {
  transform-origin: 35% 63%;
}
path:nth-child(4) {
  stroke-dasharray: 29 299;
}
path:nth-child(5) {
  transform-origin: 61% 52%;
}
path:nth-child(6) {
  transform-origin: 62% 52%;
}
.opened path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
.opened path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
.opened path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.opened path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
.opened path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.opened path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}

/*Slick*/

.hero .hero-slider .slick-arrow {
  position: absolute;
  color: #111513;
  font-size: 35px;
  border: none;
  box-shadow: none;
  transition: all .5s;
  opacity: 1;
  width: 50px;
  height: 75px;
  background: #ffffff6b;
}

.hero .hero-slider .slick-arrow.slick-next {
  right: 0;
  z-index: 9;
}

.hero .hero-slider .slick-arrow.slick-prev {
  left: 0;
  z-index: 9;
}

.slick-next::before, .slick-prev::before {
  display: none;
}

/*Contact*/

input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control.wpcf7-textarea, select.wpcf7-form-control.wpcf7-select {
    width: 100%;
    margin: 12px 0;
    padding: 10px;
    border: 1px solid #c8c8c8;
    border-radius: 0;
    color: #000;
}

input.wpcf7-form-control.wpcf7-text:focus, textarea.wpcf7-form-control.wpcf7-textarea:focus {
    outline: 0;
    border-color: none;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
    margin-bottom: 20px;
}

.wpcf7-submit {
    float: right;
    cursor: pointer;
}

/*Footer*/

.footer {
    padding: 50px 10px;
    font-size: 14px;
    color: white;
    background: #060807;
    position: relative;
}

.footer .heading {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer ul {
  line-height: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.footer ul i {
  vertical-align: middle;
  font-size: 13px;
  color: #f26b34;
  top: -1px;
  position: relative;
  margin-right: 5px;
}

.footer p {
  max-width: 320px;
  position: relative;
  z-index: 1;
  top: 5px;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.footer ul li a:hover {
    text-decoration: none;
    color: white;
}

.footer-bottom {
  background: #0d0d0d;
  padding: 10px 0;
  color: white;
  z-index: 9;
  position: relative;
  text-align: center;
  }

.footer-bottom a {
  color: white;
}

@media (max-width: 991px) {

  .enlarge {
    height: 500px;
  }

  .home-block {
    margin-bottom: 50px;
  }
    
    .bottom-header .menu {
        position: relative;
        top: 0;
        transform: none;
    }

    .bottom-header .menu ul li {
        width: 100%;
        text-align: center;
    }

    .bottom-header ul {
        display: block;
    }

    .bottom-header ul li {
        display: inline-block;
        padding: 10px;
        position: relative;
        transition: all 0.5s ease;
        text-align: center;
    }

    .bottom-header ul li a {
        color: white;
        position: relative;
        padding: 40px 0;
        margin: 0 0px 0 0;
        height: auto;
        transition: all 0.5s ease;
        font-size: 22px;
    }

    .bottom-header .menu ul li a {
        font-size: 17px;
        line-height: 50px;
        color: white;
    }

    .bottom-header .menu ul li {
        display: block;
    }

    .bottom-header .menu ul {
        height: 100vh;
        width: 100vw;
        background: #060807;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        display: block;
        padding: 50px;
        padding-top: 100px;
    }

    .bottom-header .menu ul.active {
        opacity: 1;
        visibility: visible;
    }

    .bottom-header .menu ul li a::before {
        display: none;
    }

    .hero .overlay .main,
    .heading {
      font-size: 35px;
      line-height: 35px;
    }

    .hero .overlay {
      left: 50%;
      text-align: center;
      width: 90%;
      transform: translate(-50%, -50%);
    }

    .hero .overlay .tag2 {
      display: inline-block;
    }

    .under-hero .service .bottom {
      padding: 10px 15px;
    }

    .under-hero .service .image {
      height: 150px;
    }

    .under-hero .service {
      margin: 10px;
    }

}

@media (max-width: 768px) {

  .inner-block {
    padding: 60px 30px;
  }

  body {
    font-size: 15px;
  }

  .inner-content {
    max-width: 85%;
  }

  .hero-image {
    height: 720px;
  }

}

@media (max-width: 576px) {

  body {
    font-size: 14px;
  }


}

@media (max-width: 400px) {


}
