@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}

#btn-vibrate {
  animation: vibrate 2s linear 0s infinite;
  -moz-animation: vibrate 2s linear 0s infinite;
  -webkit-animation: vibrate 2s linear 0s infinite;
  -o-animation: vibrate 2s linear 0s infinite;
}

@-webkit-keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}

@keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}

button.scrolltop {
  height: 40px;
  width: 40px;
  background: #033d5b;
  border: none;
  position: fixed;
  right: 15px;
  bottom: 15px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 999;
  color: #fff;
}

button.scrolltop span {
  display: block;
  font-size: 24px;
  line-height: 24px;
}

button.scrolltop:focus {
  outline: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
}

.loading img {
  width: 100px;
  height: 100px;
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
}

html {
  scroll-behavior: smooth !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btn-theme-primary {
  background: #023d5c;
  border-color: #023d5c;
  color: #fff;
}

.btn-theme-primary:hover {
  color: #ededed;
  background-color: rgba(2, 61, 92, 0.9);
}

header {
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
}

header .top-bar {
  background: #033d5b;
}

header .top-bar .contact {
  margin: 0;
}

header .top-bar .contact li {
  display: inline;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

header .top-bar .contact li span {
  font-size: 15px;
  font-weight: 600;
}

header .top-bar .contact li a {
  color: #fff;
}

header .top-bar .contact li a:hover {
  text-decoration: none;
}

header .top-bar .contact li:first-child {
  padding-right: 25px;
  margin-right: 10px;
}

header .top-bar .contact li:first-child::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 10px;
  background-color: #fff;
  height: 1px;
  width: 16px;
}

header .top-bar .social {
  margin: 0;
}

header .top-bar .social li {
  padding: 5px 5px;
  margin: 0;
  position: relative;
  text-align: center;
}

header .top-bar .social li a {
  font-size: 1.4em;
  padding: 0px;
  width: 35px;
  display: inline-block;
  color: #fff;
}

header .nav {
  position: relative;
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 0px 10px -2px #000;
          box-shadow: 0px 0px 10px -2px #000;
}

header .nav .container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .nav .logo {
  width: 12vw;
}

header .nav .menu-btn {
  display: none;
}

header .nav .menu {
  margin-left: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  list-style-type: none;
  margin-bottom: 0px;
}

header .nav .menu .submenu {
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .nav .menu .submenu .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 10px 0;
  z-index: 100;
  background: #e7e7e7;
  border-radius: 6px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .nav .menu .submenu .sub a {
  display: block;
  padding: 10px;
}

header .nav .menu .submenu .sub a:hover::after {
  width: 50%;
}

header .nav .menu .submenu .sub.show {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .nav .menu li {
  padding: 10px;
}

header .nav .menu a {
  font-size: 1em;
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  font-weight: bold;
}

header .nav .menu a.active::after {
  width: 35px;
}

header .nav .menu a:hover {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

header .nav .menu a::after {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  bottom: -0.2em;
  left: 0;
  background: #033d5b;
}

header .nav .menu a:hover::after {
  width: 35px;
}

.slider {
  width: 100%;
}

.slider .swiper-container {
  height: 700px;
}

.slider .swiper-slide img {
  width: 100%;
}

.slider .swiper-slide::before {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100%;
  content: "";
  background: rgba(3, 61, 91, 0.3);
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  color: #033d5b;
}

.slider .swiper-pagination-bullet-active {
  background: #033d5b;
}

.product {
  width: 100%;
}

.product .swiper-container {
  height: 400px;
  border-radius: 6px;
}

.product .swiper-slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product .swiper-button-next,
.product .swiper-button-prev {
  color: #033d5b;
}

.product .swiper-pagination-bullet-active {
  background: #033d5b;
}

.product h2 {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.product p {
  font-size: 14px;
}

.product .list li {
  border-bottom: 1px solid #eaeaea;
  margin-top: 5px;
  margin-bottom: 0;
  padding-bottom: 5px;
}

.product .list li:last-child {
  border-bottom: none;
}

.page-header {
  position: relative;
  width: 100%;
  padding: 200px 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.page-header h1 {
  font-size: 2.5rem;
  position: relative;
  margin: 0 0 10px 0;
}

.page-header h1::after {
  position: absolute;
  width: 100px;
  content: "";
  bottom: -5px;
  left: 0;
  height: 3px;
  background: #fff;
}

.page-header span {
  font-size: 1.3rem;
}

.page-header::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.fapps {
  padding: 100px 0;
}

.fapps .fapps-box .fapps-inner {
  line-height: 15px;
  text-align: center;
}

.fapps .fapps-box .fapps-inner a {
  text-decoration: none;
  color: #033D5B;
}

.fapps .fapps-box .fapps-inner span {
  font-size: 14px;
}

.about {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #ffffff;
}

.about .about-home {
  padding: 30px;
  text-align: justify;
}

.about .about-home h3 {
  border-bottom: 1px solid #000;
}

.about .about-home .more-btn {
  color: #023d5c;
  border-color: #023d5c;
}

.about .about-home .more-btn:hover {
  color: #fff;
  background-color: #023d5c;
}

.about .about-img {
  padding: 100px;
  border: 8px solid #023d5c;
  border-radius: 10px;
}

.features {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #ededed;
}

.features .box {
  padding: 15px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 3px 0px 0px #023d5c;
          box-shadow: 0px 3px 0px 0px #023d5c;
  background: #fff;
  text-align: center;
}

.features .box .box-content .icon {
  color: #033d5b;
  margin-bottom: 15px;
}

.features .box .box-content .icon i {
  padding: 15px;
  border-radius: 50%;
  background-color: #ededed;
}

.features .box .box-content p {
  margin: 0;
}

.opacity-8 {
  opacity: 0.8;
}

.portfolio .nav-pills .nav-link {
  color: #000;
}

.portfolio .nav-pills .active {
  color: #fff;
  background: #033d5b;
}

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

.portfolio-list .portfolio-item {
  position: relative;
  margin-bottom: 35px;
}

.portfolio-list .portfolio-item .thumb-info {
  display: block;
  position: relative;
  text-decoration: none;
  max-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.portfolio-list .portfolio-item .thumb-info:hover .thumb-info-wrapper::after {
  opacity: 0.3;
}

.portfolio-list .portfolio-item .thumb-info:hover .thumb-info-title {
  background: rgba(33, 37, 41, 0.9);
}

.portfolio-list .portfolio-item .thumb-info:hover .thumb-info-action-icon {
  right: 0;
  top: 0;
}

.portfolio-list .portfolio-item .thumb-info img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
  position: relative;
  width: 100%;
}

.portfolio-list .portfolio-item .thumb-info img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.portfolio-list .portfolio-item .thumb-info .thumb-info-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(33, 37, 41, 0.8);
  color: #fff;
  font-weight: 600;
  left: 0;
  letter-spacing: -0.05em;
  position: absolute;
  z-index: 2;
  max-width: 90%;
  font-size: 17px;
  padding: 10px 21px 10px;
  bottom: 13%;
}

.portfolio-list .portfolio-item .thumb-info .thumb-info-inner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.portfolio-list .portfolio-item .thumb-info .thumb-info-action-icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0 0 0 4px;
  display: inline-block;
  font-size: 25px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  right: -100px;
  text-align: center;
  top: -100px;
  width: 50px;
  z-index: 2;
  background: #212529 !important;
  color: #fff;
}

.portfolio-list .portfolio-item .thumb-info .thumb-info-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  display: block;
  position: relative;
}

.portfolio-list .portfolio-item .thumb-info .thumb-info-wrapper::after {
  content: "";
  background: rgba(33, 37, 41, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  bottom: -4px;
  color: #fff;
  left: -4px;
  position: absolute;
  right: -4px;
  top: -4px;
  display: block;
  opacity: 0;
  z-index: 1;
}

.call-to-action {
  padding: 70px 0px;
  margin-top: 30px;
  background: #ededed;
}

footer {
  -webkit-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.5);
}

footer .widget {
  padding: 20px;
  margin-bottom: 20px;
}

footer .widget .widget-title {
  padding: 20px 0;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

footer .widget.widget-about .social {
  margin: 0;
}

footer .widget.widget-about .social li {
  padding: 5px 5px;
  margin: 0;
  position: relative;
  text-align: center;
  border: 1px solid #c3c3c3;
  margin-right: 10px;
  border-radius: 50%;
  background: #e7e7e7;
}

footer .widget.widget-about .social li a {
  font-size: 1.4em;
  padding: 0px;
  width: 35px;
  display: inline-block;
  color: #033d5b;
}

footer .widget.widget-menu {
  padding: 20px;
}

footer .widget.widget-menu ul {
  list-style-type: none;
}

footer .widget.widget-menu ul li {
  margin-bottom: 13px;
  border-bottom: 1px dashed rgba(74, 74, 74, 0.5);
  position: relative;
  padding: 15px 10px 12px 0px;
  margin-bottom: 0;
  line-height: 20px;
  font-size: 14px;
  background: none;
}

footer .widget.widget-menu ul li a {
  color: #000;
}

footer .widget.widget-menu ul li a:hover {
  text-decoration: none;
}

footer .widget.widget-adress ul {
  list-style-type: none;
}

footer .widget.widget-adress ul li {
  position: relative;
  padding: 10px 10px 10px 0px;
  margin-bottom: 0;
  line-height: 20px;
  font-size: 14px;
  background: none;
}

footer .widget.widget-adress ul li a {
  color: #000;
}

footer .widget.widget-adress ul li a:hover {
  text-decoration: none;
}

footer .widget p {
  padding-top: 20px;
  text-align: justify;
}

footer .footer-bottom {
  border: 1px solid #ddd;
  padding: 20px;
}

footer .footer-bottom .bottom-footer a {
  color: #000;
}

.section-seperator {
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.section-seperator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  z-index: 2;
  background: #033d5b;
}

.product {
  position: relative;
  padding: 100px 0;
  background: #fff;
  z-index: 1;
  width: 100%;
}

.gallery {
  position: relative;
  padding: 100px 0;
  background: #fff;
  z-index: 1;
  width: 100%;
}

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

.gallery .gallery-list .gallery-item {
  position: relative;
  margin-bottom: 35px;
}

.gallery .gallery-list .gallery-item .thumb-info {
  display: block;
  position: relative;
  text-decoration: none;
  max-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.gallery .gallery-list .gallery-item .thumb-info:hover .thumb-info-wrapper::after {
  opacity: 0.3;
}

.gallery .gallery-list .gallery-item .thumb-info:hover .thumb-info-action-icon {
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.gallery .gallery-list .gallery-item .thumb-info img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
  position: relative;
  width: 100%;
      height: 300px;
    object-fit: cover;
}

.gallery .gallery-list .gallery-item .thumb-info img:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.gallery .gallery-list .gallery-item .thumb-info .thumb-info-inner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.gallery .gallery-list .gallery-item .thumb-info .thumb-info-action-icon {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  display: inline-block;
  font-size: 25px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  text-align: center;
  top: -100px;
  width: 50px;
  z-index: 2;
  background: #212529 !important;
  color: #fff;
}

.gallery .gallery-list .gallery-item .thumb-info .thumb-info-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  display: block;
  position: relative;
}

.gallery .gallery-list .gallery-item .thumb-info .thumb-info-wrapper::after {
  content: "";
  background: rgba(33, 37, 41, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  bottom: -4px;
  color: #fff;
  left: -4px;
  position: absolute;
  right: -4px;
  top: -4px;
  display: block;
  opacity: 0;
  z-index: 1;
}

.contact-page {
  position: relative;
  padding: 100px 0;
  background: #fff;
  z-index: 1;
  width: 100%;
}

.contact-page .text-title .desc {
  margin-top: 15px;
  font-size: 13px;
}

.contact-page .text-title h3 {
  font-size: 22px;
  font-weight: 600;
}

.contact-page .block-box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7f2;
}

.contact-page .block-box-content {
  padding: 10px;
}

.contact-page .block-box-content .social {
  margin: 0;
}

.contact-page .block-box-content .social li {
  padding: 2px 2px;
  margin: 0;
  position: relative;
  text-align: center;
  border: 1px solid #c3c3c3;
  margin-right: 10px;
  border-radius: 10px;
}

.contact-page .block-box-content .social li a {
  font-size: 1.4em;
  padding: 0px;
  width: 35px;
  display: inline-block;
  color: #033d5b;
}

.contact-page .block-box-content .contact-info li {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ededed;
}

.contact-page .block-box-content .contact-info li span i {
  color: #033d5b;
}

.contact-page .block-box-content .contact-info li a {
  color: #000;
  padding-left: 10px;
}

.contact-page .block-box-content .contact-info li a:hover {
  text-decoration: none;
}

.contact-page .contact-form .input-group-text {
  font-size: 14px;
}

.contact-page .contact-form .form-control {
  background: #ededed;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
}

.contact-page .contact-form .btn {
  font-size: 14px;
  width: 150px;
}

.gmap {
  line-height: 0.8;
}

@media (max-width: 768px) {
  .top-bar .top-bar-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top-bar .top-bar-content .contact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top-bar .top-bar-content .contact li:first-child::after {
    content: none;
  }
  header .nav .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
  }
  header .nav .logo {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .nav .logo img {
    height: 80px;
  }
  header .nav .menu-btn {
    display: block;
    background: #ededed;
    padding: 10px;
    border: 1px solid #ddd;
  }
  header .nav .menu {
    background: #efefef;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 0;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  header .nav .menu li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 15px;
  }
  header .nav .menu li::after {
    content: none;
  }
  header .nav .open {
    -webkit-transition: margin 0.3s ease-in-out;
    transition: margin 0.3s ease-in-out;
    opacity: 1;
    margin-top: 15px;
    padding: 10px;
    height: auto;
  }
  .slider .swiper-container, .product-slider .swiper-container {
    height: auto;
  }
}

.contacts-menu {
  position: fixed;
  top: 50%;
  margin: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  z-index: 12;
}

.contacts-menu .contacts-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contacts-menu .contacts-menu-inner a {
  text-align: center;
  color: #033d5b;
  padding: 10px;
  background: #e7e7e7;
  font-size: 26px;
}

.contacts-menu .contacts-menu-inner a:first-child {
  border-top-left-radius: 10px;
}

.contacts-menu .contacts-menu-inner a:last-child {
  border-bottom-left-radius: 10px;
}

@media (max-width: 1200px) {
  .slider .swiper-container, .product-slider .swiper-container {
    height: auto;
  }
}
