/*
Theme Name: WP_Ogitive
Theme URI: http://ww.ogitive.com
Author: Ogitive
Author URI: http://www.ogitive.com
Description: Blank template
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpog
Tags:
*/

* {
  margin: 0;
  padding: 0;
  -webkit-locale: "en";
}

:root {
  /*boje*/
  --black: #000;
  --white: #fff;
  --yellow: #FFAC1C;
  --gray: #F1F2F2;
  --blue: #0D4A5D;
  --darkblue: #0D2D63;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Matter', sans-serif;
  overflow-x: hidden;
  color: var(--darkblue);
}

@font-face {
  font-family: 'Matter';
  src: url('assets/fonts/Matter-Regular.otf');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Matter';
  src: url('assets/fonts/Matter-Medium.otf');
  font-style: normal;
  font-weight: 500;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  color: unset;
}

p {
  font-family: 'Matter', sans-serif;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 400;
}

h1 {
  font-size: 140px;
  font-family: 'Matter', sans-serif;
  margin-bottom: 30px;
  color: var(--darkblue);
  line-height: 1;
  font-weight: 400;

}

h2 {
  font-size: 4em;
  font-family: 'Matter', sans-serif;
  margin-bottom: 50px;
  margin-top: 0;
  color: var(--darkblue);
  line-height: 1;
  font-weight: 400;
}

h3 {
  font-size: 50px;
  font-family: 'Matter', sans-serif;
  margin-bottom: 30px;
  margin-top: 0;
  color: var(--darkblue);
  line-height: 1;
  font-weight: 400;
}

a {
  color: var(--darkblue);
}

.simple-link {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 1em;
  /* padding: 12px; */
  /* border: 1px solid var(--darkblue); */
  font-weight: 600;
  /* margin-top: 30px; */
  width: auto;
  height: auto;
}

a.simple-link {
  font-size: 16px;
}

.simple-link:hover {
  text-decoration: none;
  color: var(--darkblue);
}

.simple-link:hover::before {
  content: ".";
  left: 0;
}

/* .simple-link::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-image: url('http://saltandwater.local/wp-content/uploads/2024/07/salt-grain.webp');
  background-image: url('https://saltandwater.nnwebdigital.com/wp-content/uploads/2024/07/salt-grain.webp');
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
} 

 .simple-link:hover::before {
  animation: wave-motion 2s infinite ease-in-out;
}

@keyframes wave-motion {

  0%,
  100% {
    transform: translateX(0%) translateY(0%) rotate(0deg);
  }

  5% {
    transform: translateX(20%) translateY(-10%) rotate(18deg);
  }

  10% {
    transform: translateX(40%) translateY(-20%) rotate(36deg);
  }

  15% {
    transform: translateX(60%) translateY(-10%) rotate(54deg);
  }

  20% {
    transform: translateX(80%) translateY(20%) rotate(72deg);
  }

  25% {
    transform: translateX(100%) translateY(5%) rotate(90deg);
  }

  30% {
    transform: translateX(120%) translateY(-20%) rotate(108deg);
  }

  35% {
    transform: translateX(140%) translateY(-5%) rotate(126deg);
  }

  40% {
    transform: translateX(160%) translateY(30%) rotate(144deg);
  }

  45% {
    transform: translateX(180%) translateY(15%) rotate(162deg);
  }

  50% {
    transform: translateX(200%) translateY(0%) rotate(180deg);
  }

  55% {
    transform: translateX(220%) translateY(-15%) rotate(198deg);
  }

  60% {
    transform: translateX(240%) translateY(-30%) rotate(216deg);
  }

  65% {
    transform: translateX(260%) translateY(-10%) rotate(234deg);
  }

  70% {
    transform: translateX(280%) translateY(20%) rotate(252deg);
  }

  75% {
    transform: translateX(300%) translateY(10%) rotate(270deg);
  }

  80% {
    transform: translateX(320%) translateY(-20%) rotate(288deg);
  }

  85% {
    transform: translateX(340%) translateY(-5%) rotate(306deg);
  }

  90% {
    transform: translateX(360%) translateY(20%) rotate(324deg);
  }

  95% {
    transform: translateX(380%) translateY(10%) rotate(342deg);
  }
} */











.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.flex-wide {
  justify-content: space-between;
}

.flex.flex-center {
  justify-content: center;
}

.grid {
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.uk-container {
  max-width: 1600px;
}

section {
  margin: 50px 0 100px;
}

/*HEADER*/
header {
  position: relative;
  height: 295px;
}

header.inside-header {
  height: 90px;
}

.top-menu {
  padding: 30px 0 30px 0;
  position: fixed;
  width: 100%;
  background: var(--white);
  z-index: 200;
  top: 0;
  transition: .4s all ease;
}

header.inside-header .top-menu {
  padding: 10px 0 0;
}

.top-menu.active {
  padding: 10px 0 !important;
  transition: .4s all ease;
  background: rgba(255, 255, 255, 1);
  padding-top: 0px;
}

.top-menu.active .top-menu-right {
  align-items: start;
}

.top-menu .flex.flex-wide {
  position: relative;
}

header.inside-header .top-menu .flex {
  padding-bottom: 10px;
  /*border-bottom: 1px solid var(--darkblue);*/
}

header.inside-header .top-menu .flex .flex {
  padding-bottom: 0px;
  border-bottom: none;
}

.page-template-page-builder header.inside-header .top-menu .flex,
.page-template-default header.inside-header .top-menu .flex,
.page-template-page-contact header.inside-header .top-menu .flex {
  border-bottom: none;
  padding-bottom: 10px;
}

.top-logo {
  width: 38%;
}

.top-logo img {
  width: 400px;
}

header.inside-header .top-logo img {
  width: 70px;
}

.before-nav {
  display: block;
  transition: .3s all ease;
  margin-left: auto;
}

.active .before-nav {
  display: none;
  transition: .3s all ease;
}

.before-nav h1 {
  font-size: 40px;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}

.before-nav h1.small-header-h {
  font-size: 18px;
  letter-spacing: 1.2px;
}

.top-menu-right {
  width: 61%;
  justify-content: end;
}

.top-menu .main-nav>nav>ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  justify-content: space-between;
  list-style-type: none;
}

header .top-menu .main-nav {
  display: none;
  padding-top: 30px;
  transition: .4s all ease;
  margin-left: auto;
}

header.inside-header .top-menu .main-nav {
  display: block;
  padding-top: 30px;
  transition: .4s all ease;
}

header .top-menu.active .main-nav {
  display: block;
  transition: .4s all ease;
}

header .top-menu .main-nav>nav>ul>li {
  display: inline-block;
  margin: 0;
}

header .top-menu .main-nav>nav>ul>li>a {
  color: var(--darkblue);
  font-size: 14px;
  font-family: 'Matter', sans-serif;
  text-transform: uppercase;
  padding: 0px 15px 35px;
  position: relative;
}

.top-menu .main-nav>nav>ul>li>ul {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  list-style-type: none;
  border-top: 1px solid var(--darkblue);
  background: #fff;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 40px 0 30px;
  z-index: 10;
  top: 80px;
  height: auto !important;
  min-height: 285px;
}

.top-menu .main-nav>nav>ul>li>ul:before {
  content: "";
  background: var(--white);
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-menu .main-nav>nav>ul>li>ul:after {
  content: "";
  background: var(--white);
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}


/*.top-menu .main-nav > nav > ul > li:hover ul{
  display: flex;
}*/
.top-menu .main-nav>nav>ul>li>ul>li {
  margin-right: 6vw;
}

.top-menu .main-nav>nav>ul>li>ul>li>a {
  font-size: 54px;
  margin-bottom: 20px;
  display: block;
}

.top-menu .main-nav>nav>ul>li>ul>li>a:hover {
  text-decoration: none;
}

.top-menu .main-nav>nav>ul>li>ul>li>ul {
  display: block !important;
  list-style-type: none;
  flex-direction: column;
  height: auto !important;
}

.top-menu .main-nav>nav>ul>li>ul>li>ul>li {
  display: block;
}

.top-menu .main-nav>nav>ul>li>ul>li>ul>li>a {
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.flex.flex-wide.mob-logo-close {
  display: none;
}

#menuBtn {
  display: none;
  position: absolute;
  right: 0;
  top: 15px;
}

.lang {
  margin-left: 4vw;
  padding-top: 30px;
  display: none;
}

header.inside-header .lang {
  display: block;
}

.active .lang {
  display: block;
}

.lang a {
  font-size: 14px;
}

.wide-pic {
  margin-bottom: 30px;
}

.wide-pic img {
  width: 100%;
}

.wide-pic.builder-pic img {
  max-width: 780px;
}

.wide-pic.single-wide img {
  /*max-height: 800px;*/
  object-fit: cover;
}

/* nn style */
.single-post .wide-pic.single-wide img {
  max-width: 780px;
}
.single-post .wide-pic {
    text-align: center;
}
.single-post #page-text p img, #page-text div img {
  margin: 50px 0;
  width: 100%;
}
.single-post .single-top-title h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
}
.single-post .single-top-title {
    text-align: center;
    margin-top: 0;
}

/*CHOOSE*/

.choose-section p {
  font-size: 18px;
}

.text-holder {
  width: 32%;
  margin-top: auto;
  margin-bottom: 60px;
}

.right-content {
  width: 45%;
}

.choose-cat.grid {
  column-gap: 35px;
  margin: 50px 0;
  width: 100%;
}

.choose-cat.grid a:hover {
  text-decoration: none;
}

.cat-box {
  height: 325px;
  background: var(--black);
  position: relative;
  display: flex;
}

.cat-box img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  opacity: 0.75;
  position: absolute;
  z-index: 1;
  transition: .4s all ease;
}

.cat-box:hover img {
  opacity: 0.55;
  transition: .4s all ease;
}

.cat-box h3 {
  z-index: 5;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  margin: auto;
  text-align: center;
  font-size: 80px;
}

/*SCIENCE*/

.science-section .text-holder {
  /* margin: auto 0; */
  margin: 0 !important;
  width: 50%;
}

@media (max-width: 768px) {
  .science-section .text-holder {
    width: 100%;
  }
}

.science-section .text-holder p {
  width: 64%;
}

.science-section h2 {
  width: 50%;
  margin-bottom: 30px;
}

.anime-h {
  padding: 50px 0;
}

.anime-h h2 {
  font-size: 140px;
}

/*Functional*/

.functional-slider .uk-dotnav>*>* {
  display: block;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: #000;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #000;
  transition: .2s ease-in-out;
  transition-property: background-color, border-color;
}

/* nn promena */
.functional-section .text-holder {
  width: 100%;
}

.functional-slider ul li img {
  height: 100%;
  object-fit: cover;
}

/*FINAL PRODUCTS*/

.product-section h2 {
  width: 75%;
}

.product-grid.grid {
  column-gap: 35px;
  padding: 60px 0;
}

.product-box img {
  width: 100%;
  height: 338px;
  object-fit: cover;
  margin-bottom: 30px;
}

.product-box a {
  font-size: 30px;
}

section.partners {
  padding: 120px 0;
  border-top: 1px solid var(--darkblue);
  border-bottom: 1px solid var(--darkblue);
}

section.partners p {
  width: 50%;
  font-size: 36px;
}

.partners-grid.grid {
  margin-top: 40px;
  width: 100%;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*ABOUT*/
.about-section {
  padding: 50px 0;
}

.about-section h2 {
  width: 80%;
}

.about-section p {
  width: 50%;
}


/*QUOTES*/
.quotes {
  background: var(--gray);
  padding: 125px 0;
}

.quotes .text-holder {
  margin: 0;
  width: 25%;
  padding-top: 50px;
}

.quotes .text-holder img {
  margin-bottom: 65px;
}

p.name {
  font-weight: 500;
}

.quotes .right-content {
  width: 50%;
}


/*BLOG*/
.blog-boxes {
  margin-top: 70px;
}

.blog-section h2 {
  width: 45%;
}

.blog-box {
  border-top: 1px solid var(--darkblue);
  padding: 50px 0;
}

.blog-img {
  width: 45%;
}

.blog-img img {
  width: 100%;
  object-fit: cover;
  height: 460px;
}

.blog-text {
  width: 38%;
  margin-left: 35px;
  padding-bottom: 40px;
  position: relative;
}

.blog-title {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 45px;
  display: block;
}

.blog-cat-date {
  position: absolute;
  bottom: 0;
}

.blog-cat-date a {
  display: inline-block;
  text-transform: uppercase;
  margin-right: 10vw;
}

.blog-cat-date .post-categories {
  display: inline-block;
  margin-right: 10vw;
}

.blog-cat-date p {
  display: inline-block;
  margin-bottom: 0;
}

/*FOOTER*/
footer {
  padding: 80px 0 70px;
  border-top: 1px solid var(--darkblue);
  margin-top: 100px;
}

.footer-left {
  width: 30%;
}

.footer-left img {
  display: inline-block;
  margin-right: 50px;

}

.footer-left p {
  display: inline-block;
  font-size: 12px;
  line-height: 1.7;
}

.footer-mid {
  width: 45%;
}

.footer-mid .simple-link {
  color: var(--darkblue);
}

/* .email-holder {
  position: relative;
  width: 65%;
}

.email-holder input {
  border: none;
  border-bottom: 1px solid var(--darkblue);
  font-size: 12px;
  color: var(--darkblue);
  width: 100%;
}

.email-holder input::placeholder {
  color: var(--darkblue);
  opacity: 1;
}

.email-holder button {
  position: absolute;
  right: 0px;
  top: 0;
  line-height: 0.4;
  background: none;
  border: none;
} */

.footer-right {
  width: 20%;
}

.footer-right .social a {
  font-size: 12px;
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 80px;
}

.footer-bottom p {
  font-size: 12px;
}

.footer-bottom .copyright {
  width: 32%;
}

.wide-pic.opacity-back {
  background: var(--black);
  position: relative;
}

.wide-pic.opacity-back img {
  opacity: 0.7;
}

.wide-pic.opacity-back .pic-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 150px;
  width: 100%;
  text-align: center;
}

.tabs-section .uk-subnav>* {
  border-bottom: 1px solid var(--darkblue);
  padding-left: 0;
}

.tabs-section .uk-subnav-pill>*>:first-child {
  color: var(--darkblue);
  padding-left: 0;
  font-size: 18px;
  text-transform: none;
}

.tabs-section .uk-subnav-pill>*>:hover {
  background: transparent;
}

.tabs-section .uk-subnav-pill>.uk-active>a {
  background-color: unset;
  color: var(--darkblue);
  padding-left: 5px;
}

.tabs-section .uk-subnav-pill>.uk-active:before {
  content: ".";
  position: absolute;
  left: 0;
  bottom: 5px;
}

.cat-post-boxes.grid {
  grid-template-columns: 1fr 1fr;
  column-gap: 35px;
}

.cat-post-box {
  margin-bottom: 50px;
}

.cat-post-box img {
  width: 100%;
  margin-bottom: 25px;
  object-fit: cover;
}

.cat-post-box .cat-post-title {
  display: block;
  font-size: 28px;
  margin-bottom: 15px;
}

.cat-post-box .cat-post-cat {
  font-size: 16px;
}

.other-cat-section {
  border-top: 1px solid var(--darkblue);
  padding: 120px 0 60px;
}

.other-cat-section .simple-link {
  display: block;
  font-size: 60px;
  font-weight: 700;
  padding-bottom: 50px;
  margin-bottom: 50px;
  width: 100%;
}

.other-cat-section .simple-link:hover {
  text-decoration: none;
  color: var(--darkblue);
}

.other-cat-section .simple-link:first-child {
  border-bottom: 1px solid var(--darkblue);
}

.other-cat-section .simple-link:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}



.contact-flex {
  margin: 100px 0;
}

.contact-flex .email-holder input {
  width: 100%;
}

.contact-flex .email-holder input::placeholder {
  font-size: 14px;
}

.msg-input-box {
  width: 45%;
}

.msg-input-box .email-holder {
  margin-bottom: 30px;
  width: 100%;
}

.info-contact {
  width: 48%;
}

.info-contact h3 {
  font-size: 24px;
  max-width: 340px;
}

.info-contact .simple-link {
  color: var(--darkblue);
}

.newsletter {
  width: 48%;
}

.newsletter .email-holder {
  width: 100%;
}

.newsletter p {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
}

.newsletter h3 {
  font-size: 36px;
  margin-bottom: 125px;
}

.input-holder label {
  display: block;
  font-size: 14px;
  color: var(--darkblue);
  margin-bottom: 5px;
}

.input-holder textarea {
  border: 1px solid var(--darkblue);
  resize: none;
  width: calc(100% - 10px);
  min-height: 206px;
  margin-bottom: 30px;
  font-size: 16px;
  color: var(--darkblue);
  padding: 5px;
}

button.simple-link {
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.mob-newsletter {
  background: var(--darkblue);
  padding: 50px 0 10px;
}

.mob-newsletter span {
  text-transform: uppercase;
  letter-spacing: 3.2px;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 25px;
  display: block;
}

.mob-newsletter p {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 60px;
}

.mob-newsletter .email-holder {
  width: 100%;
}

.mob-newsletter .email-holder input {
  border-bottom: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.mob-newsletter .email-holder input::placeholder {
  color: var(--white);
}

.single-top-title {
  margin-bottom: 10px !important;
  /*margin-top: 50px;*/
}

.single-top-title h1 {
  font-size: 100px;
  text-transform: uppercase;
  max-width: 780px;
  margin: auto;
}

.single-top-title a {
  pointer-events: none;
}

.top-title {
  margin-bottom: 100px !important;
  margin-top: 50px;
}

.top-title h1 {
  font-size: 70px;
}

.grid.gallery-grid {
  margin: 30px 0;
  column-gap: 30px;
  row-gap: 30px;
}


.anime-container {
  position: relative;
  height: 900px;
}

.anime-h {
  position: sticky;
  top: 90px;
}

#page-text p,
#page-text h2,
#page-text h3 {
  /*width: 50%;*/
}

#page-text p img,
#page-text div img {
  margin: 50px 0;
  max-width: 780px;
  /*width: 100%;*/
}

#page-text figure {
  margin-bottom: 50px;
}

#page-text figure figcaption.wp-caption-text {
  text-align: left;
  font-size: 14px;
  max-width: 780px;
  line-height: 1.2;
}

#page-text figure img {
  margin: 50px 0 20px;
  max-width: 780px;
}

#page-text p.full-width {
  width: 100%;
}

#page-text div.grid img {
  margin: 0;
  height: 288px;
  object-fit: cover;
  width: 100%;
}

#page-text div.grid.grid-two img {
  height: auto;
}

.wpcf7 .simple-link {
  max-width: 75px;
  height: 23px;
}

.wpcf7 .simple-link input {
  background: none;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--darkblue);
  cursor: pointer;
  display: inline-block;
}

.wpcf7 .simple-link:hover {
  text-decoration: none;
  color: var(--darkblue);
}

.wpcf7 .simple-link:hover::before {
  content: ".";
  left: 0;
}

.single-top-pic {
  margin-bottom: 50px;
}



.plusbtn {
  width: 15px;
  height: 15px;
  position: absolute;
  cursor: pointer;
  top: -2px;
  right: -14px;
}

.plusbtn::before {
  content: '';
  width: 7px;
  height: 1px;
  background: var(--darkblue);
  top: 8px;
  position: absolute;
  left: -11px;
  transform: rotate(0deg);
  transition: .4s all ease-in-out;
}

.plusbtn::after {
  content: '';
  width: 7px;
  height: 1px;
  background: var(--darkblue);
  top: 8px;
  position: absolute;
  left: -11px;
  transform: rotate(90deg);
  transition: .4s all ease-in-out;
  opacity: 1;
}

.plusbtn:hover::after {
  background: #fff;
}

.plusbtn:hover::before {
  background: #fff;
}

.act-plus .plusbtn::before {
  transform: rotate(180deg);
  transition: .4s all ease-in-out;
  opacity: 0;
}

.act-plus .plusbtn::after {
  transform: rotate(180deg);
  transition: .4s all ease-in-out;
}

.top-menu .main-nav>nav>ul>li>ul>li span {
  display: none;
}


.grid.awards-grid {
  column-gap: 150px;
  row-gap: 50px;
}

.award-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.grid.videos-grid {
  column-gap: 30px;
  row-gap: 30px;
}

.videos-grid video {
  margin-bottom: 25px;
}

.video-holder {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  height: 295px;
}

.videoCover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.playVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.video-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.press-box {
  margin-bottom: 90px;
}

.press-info {
  padding: 20px 0;
  border-bottom: 1px solid var(--darkblue);
}

.press-info:nth-child(1) {
  border-top: 1px solid var(--darkblue);
}

.press-info a {
  font-size: 24px;
}

.tabs-section .uk-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 35px;
  margin-bottom: 70px;
  padding-left: 20px;
}

.blog-post-box {
  margin-bottom: 30px !important;
}

.blog-post-box img {
  margin-bottom: 20px;
}

.blog-post-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.tabs-section.blog-tabs .uk-subnav>* {
  margin-bottom: 30px;
}


.flex-top {
  display: flex;
  flex-direction: column-reverse;
}

.flex-top .wide-pic {
  margin-bottom: 30px;
  text-align: center;
}

.flex-top .single-top-title {
  margin-bottom: 75px !important;
}


.services-top-title {
  max-width: 1200px;
  margin: 50px 0 !important;
}

.services-top-title h1 {
  font-size: 100px;
}


.services-intro .text-holder {
  margin-top: 0;
}

.services-intro .right-content {
  width: 55%;
}

.about-section.services-about {
  padding: 100px 0;
  border-top: 1px solid var(--darkblue);
  border-bottom: 1px solid var(--darkblue);
}

.about-section.services-about h2 {
  width: 60%;
}

.about-section.services-about p {
  width: 35%;
}



.services-acc {
  margin-top: 0;
}

.accordion-head {
  top: 0px;
  padding: 25px 0;
  overflow: visible;
  background: var(--white);
  z-index: 10;
  cursor: pointer;
}

.accordion-head p {
  margin-bottom: 0;
  font-size: 140px;

}

.accordion-tab {
  position: relative;
  border-bottom: 1px solid var(--darkblue);
}

.accordion-tab:after {
  content: '';
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 1px;
  height: 1px;
  z-index: 50;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s ease;
  margin-top: 0;
  padding-bottom: 0;
}

.open .accordion-content {
  margin-top: 10px;
  max-height: 10000px;
  transition: all 0.4s ease-in;
  padding-bottom: 100px;
}

span.acc-btn {
  width: 60px !important;
  height: 60px;
  right: 0;
  top: 14px;
  border: 2px solid var(--darkblue);
  border-radius: 50%;
}

.accordion-head span.acc-btn {
  position: relative;
  display: block;
  float: right;
  top: unset;
  margin: auto 0;
}

span.acc-btn::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--darkblue);
  top: 28px;
  position: absolute;
  left: 15px;
  transform: rotate(0deg);
  transition: .4s all ease-in-out;
}

span.acc-btn::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--darkblue);
  top: 28px;
  position: absolute;
  left: 15px;
  transform: rotate(90deg);
  transition: .4s all ease-in-out;
  opacity: 1;
}

.open span.acc-btn::before {
  transform: rotate(180deg);
  transition: .4s all ease-in-out;
  opacity: 0;
}

.open span.acc-btn::after {
  transform: rotate(180deg);
  transition: .4s all ease-in-out;
}

.acc-top-txt {
  width: 50%;
}

.acc-grid {
  column-gap: 30px;
  margin: 20px 0;
}

.acc-box img {
  margin-bottom: 30px;
}

.acc-box h3 {
  font-size: 30px;
}

.acc-box a:hover {
  text-decoration: none;
}

section.partners.services-awards {
  border-bottom: 1px solid var(--darkblue);
  padding: 0 0 120px;
  border-top: none;
}

.services-product {
  border-bottom: 1px solid var(--darkblue);
  padding: 50px 0;
}

.section-process,
.services-info {
  border-bottom: 1px solid var(--darkblue);
  padding: 50px 0 100px;
}


.grid.process-grid {
  margin-top: 60px;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
}

.section-process h3 {
  font-size: 44px;
}

.pro-box {
  margin-bottom: 30px;
}

.pro-box span {
  font-size: 140px;
  width: 15%;
}

.pro-box p {
  font-size: 25px;
  width: 70%;
  margin: auto 0;
}

.services-info h2 {
  width: 50%;
}

.services-info .text-holder {
  margin: auto 0;
}

.services-info .right-content {
  width: 50%;
}

.services-info .right-content img {
  width: 100%;
}

.services-about {
  padding: 50px 0;
}

.services-about h2 {
  width: 60%;
}

.services-about .simple-link {
  display: block;
  margin-top: auto;
  width: 20%;
  margin-bottom: 25px;
}

.services-about .text-holder {
  width: 50%;
  margin-bottom: 0;
  margin-top: 50px;
}

.services-about .about-wide-img {
  margin: 100px 0;
}

.outro-img {
  width: 42%;
}

.services-outro .text-holder {
  width: 50%;
  margin-bottom: auto;
}

.services-outro .text-holder h2 {
  width: 90%;
}

.filter-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--darkblue);
  text-transform: uppercase;
  font-family: 'Matter', sans-serif;
  margin-bottom: 100px;
  width: 370px;
  text-align: left;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--darkblue);
}

.filter-btn:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  color: var(--darkblue);
}

.filter-btn.uk-open:after {
  content: "-";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  color: var(--darkblue);
}

.filter-holder {
  position: relative;
}

.filter-drop {
  background: var(--darkblue);
  width: 370px;
  z-index: 10;
  top: 30px !important;
}

.filter-drop li a {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.filter-drop li.uk-active a {
  color: var(--white);
  text-decoration: underline;
}

.filter-drop .uk-dropdown-nav>li>a:hover {
  color: var(--white);
  text-decoration: underline;
}

.grid.clients-grid {
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
  align-items: center;
}

.about-intro .text-holder {
  margin-left: auto;
}

.about-top-title {
  margin: 50px 0;
}

.about-top-title h1 {
  font-size: 100px;
  width: 70%;
}

section.partners.about-awards {
  border-top: none;
  padding: 0 0 120px;
}

.about-page-info {
  padding: 100px 0;
  border-bottom: 1px solid var(--darkblue);
}

.about-page-info .text-holder {
  width: 45%;
  margin-top: 0;
  margin-bottom: 0;
}

.about-page-info .text-holder h3,
.about-yacht h3 {
  font-size: 44px;
}

.about-page-info .right-content {
  width: 50%;
}

.about-page-info .right-content img {
  width: 100%;
}

.about-yacht {
  padding: 50px 0 100px;
  border-bottom: 1px solid var(--darkblue);
}

.grid.yacht-grid {
  margin-top: 50px;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
  row-gap: 34px;
}

.y-box img {
  width: 100%;
  object-fit: contain;
}

.our-team {
  padding: 50px 0 100px;
  border-bottom: 1px solid var(--darkblue);
}

.our-team p {
  width: 60%;
}

.our-team img {
  width: 100%;
  margin: 20px 0;
}

.lectures {
  padding: 50px 0 100px;
  border-bottom: 1px solid var(--darkblue);
}

.lectures-holder {
  border-top: 1px solid var(--darkblue);
}

.lectures-holder a {
  display: block;
  font-size: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--darkblue);
  display: none;
}

.lectures-holder a:nth-child(-n+4) {
  display: block;
}

.lectures-holder.opened a {
  display: block;
}

.lectures .simple-link {
  font-size: 16px;
  margin-top: 60px;
  color: var(--darkblue);
}

.awards-acc .accordion {
  border-top: 1px solid var(--darkblue);
}

.awards-acc .accordion-head p {
  margin-bottom: 0;
  font-size: 25px;
}

.awards-acc span.acc-btn {
  width: 40px !important;
  height: 40px;
  border: 1px solid var(--darkblue);
}

.awards-acc span.acc-btn::before {
  width: 20px;
  height: 1px;
  top: 20px;
  left: 11px;
}

.awards-acc span.acc-btn::after {
  width: 20px;
  height: 1px;
  top: 20px;
  position: absolute;
  left: 11px;
}

.awards-top-title,
.small-top-title {
  margin: 50px 0;
}

.awards-acc .accordion-content p {
  max-width: 620px;
}

.awards-top-title h1 {
  font-size: 68px;
  width: 50%;
}

.small-top-title h1 {
  width: 70%;
  font-size: 68px;
}

.about-top-title h1,
.services-top-title h1,
.portfolio-title h1 {
  text-transform: uppercase;
}

.mob-filter {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 51px;
  transition: 0.3s all ease;
  background: var(--darkblue);
  z-index: 300;
}

.mob-filter ul {
  box-shadow: none;
  padding: 15px;
}

.mob-filter a {
  font-size: 14px;
  color: var(--white) !important;
  display: block;
  border-bottom: 1px solid var(--white);
  margin-bottom: 10px;
}

.mob-filter li.uk-active a {
  font-weight: 700;
}

.mob-filter #mobFilter {
  color: var(--white);
  font-size: 16px;
  padding: 10px;
}

.filter-btn#mobFilter:after {
  color: var(--white);
  top: 10px;
  right: 10px;
}

.mob-filter.opened {
  height: 100%;
  transition: 0.3s all ease;
  transform: translate(0px, 25%);
}

.opened .filter-btn#mobFilter:after {
  content: "-";
}

.mob-filter.opened #mobFilter {
  border-bottom: 1px solid var(--white);
}

.np-div {
  position: relative;
  margin-top: 40px;
}

.prev-link {
  position: absolute;
  left: 0;
}

.next-link {
  position: absolute;
  right: 0;
}

.flex.flex-wide.links-flex {
  max-width: 500px;
  margin-top: 100px;
}

.service-img-wide {
  margin: 100px 0;
}

.service-img-wide img {
  width: 100%;
}

.video-box iframe {
  max-width: 100%;
  width: 100%;
  height: 295px;
}

.video-box .html5-video-player .ytp-large-play-button svg {
  display: none;
}

.video-box .html5-video-player .ytp-large-play-button {
  border-top: 25px solid transparent;
  border-left: 50px solid #fff;
  border-bottom: 25px solid transparent;
}


.ytp-cued-thumbnail-overlay {
  width: unset !important;
}

.ytp-chrome-bottom {
  visibility: hidden;
}

.tp-video-play-button {
  display: none !important
}

.rev_slider video {
  pointer-events: none;
}

.share-post {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--darkblue);
  border-top: 1px solid var(--darkblue);
  margin: 100px 0;
}

.share-post .soc-links {
  position: relative;
  top: 4px;
}

.share-post .soc-links a {
  margin-right: 35px;
}

.share-post p {
  margin-right: 60px;
}

.other-posts {
  padding-top: 50px;
}

.other-posts h3.other-h3 {
  font-size: 44px;
  margin-bottom: 50px;
}

#page-text p>a {
  /* text-decoration: underline; */
}

.choose-section .right-content h2 {
  /* font-size: 140px; */
}

#page-text figure.gallery-item .gallery-icon img {
  margin: 0;
  width: 100%;
}

.mob-newsletter .email-holder {
  position: relative;
}

.mob-newsletter .email-holder p {
  margin-bottom: 0;
}

.mob-newsletter .email-holder .wpcf7-spinner {
  margin-bottom: 0;
}

.mob-newsletter .email-holder .submit {
  border-bottom: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  z-index: 10;
  cursor: pointer;
  color: var(--darkblue);
  background: url("assets/img/Arrow-rightW.svg") no-repeat center;
}

.mob-newsletter .email-holder .submit:after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
}

.page-content ol {
  list-style: decimal;
  list-style-position: inside;
  margin-left: 0;
  width: 50%;
  line-height: 1.5;
}


/* ===== NN CSS Style ===== */
.py-4 {
  padding: 4rem 0;
}

.small-header-p {
  font-size: 18px;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}

.top-logo img,
#mainlogo {
  /* width: 70px !important; */
}

header {
  /* height: 70px; */
}

.top-menu {
  /* padding: 18px 0 15px 0 !important; */
  /* padding-top: 10px !important; */
  /* background: rgba(255, 255, 255, 0.7); */
}

.home-header {
  background: transparent;
}

.wide-pic {
  /* margin-top: -72px; */
}

.right-content h2 {
  font-size: 5em;
}

.cat-box h3 {
  font-size: 3em !important;
}

.functional-section .text-holder {
  width: 32%;
}

.science-section h2 {
  width: 100%;
}

.nn-flex {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

/*
.nn-flex div {
  flex: 0 0 50%;
} */

.anime-h h2 {
  font-size: 5em !important;
  max-width: 55%;
  margin-bottom: 0 !important;
  /* margin-bottom: 40px; */
}

.nn-flex .anime-h {
  padding: 0;
}

.top-menu-right,
.top-logo {
  display: flex;
  align-items: center;
}

.uk-active {
  display: flex;
  justify-content: center;
}



@media only screen and (max-width: 1400px) {
  .science-section h2 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 1200px) {
  header {
    /* height: 70px !important; */
  }
}

@media only screen and (max-width: 768px) {
  .anime-h h2 {
    width: 100% !important;
  }

  .anime-h h2 {
    max-width: 100%;
    font-size: 56px !important;
  }
}

@media only screen and (max-width: 500px) {
  .right-content h2 {
    font-size: 2.7em !important;
  }

  .nn-flex {
    flex-direction: column;
    /* padding: 20px; */
  }

  #animeH {
    font-size: 3em !important;
    margin-bottom: 40px;
  }

  .wide-pic {
    margin-top: 0px;
  }

  .top-logo img,
  #mainlogo {
    /* width: 235px !important; */
  }

}

/* About page */
.nn-flex>div {
  flex: 1;
}

.nn-flex h2 {
  max-width: 60%;
}

/* Air Special */
/*
.page-template-page-builder .wide-pic.builder-pic {
   display: flex;
  justify-content: center; 
}
*/

.wide-pic.builder-pic img {
  margin-top: 45px;
/*   width: 100%; */
}

.flex-top .single-top-title {
  /* display: flex; */
  /* justify-content: center; */
}

/* .page-template-page-builder .uk-container {
  max-width: 1024px;
  display: flex;
  justify-content: center;
} */

.single-top-title .uk-container h1 {
  font-size: 3.5em;
}

.page-template-page-builder #page-text div img,
.page-template-page-builder #page-text p {
/*   width: 100%; */
  font-size: 1.1em;
}

.page-template-page-builder #page-text p a {
  border-bottom: 1px solid var(--darkblue);
  transition: box-shadow .5s, color .5s;
  box-shadow: 0 -2px var(--primary-color) inset;
  color: var(--grey);
  padding: 3px 6px 0 6px;
}

.page-template-page-builder #page-text p a:not(.no-shadow):hover {
  box-shadow: 0 -2rem var(--darkblue) inset;
  color: var(--white);
}

#page-text h2 {
  width: 100%;
  max-width: 780px;
}

@media (max-width: 992px) {
  .single-top-title .uk-container h1 {
    font-size: 2.7em;
  }

  .nn-flex h2 {
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .single-top-title .uk-container h1 {
    font-size: 2.2em;
  }

  .flex-top .single-top-title {
    margin-bottom: 0px !important;
  }
}

/* Blog */
.blog-post-box h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.nn-form-field label {
  display: none !important;
}

.nn-form-field input {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--darkblue) !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.nn-form-field input::placeholder {
  color: var(--darkblue) !important;
  opacity: 1 !important;
}

.nn-textarea label {
  font-weight: 400 !important;
  margin-bottom: 25px !important;
  color: var(--darkblue) !important;
  font-size: 14px !important;
}

.nn-textarea textarea {
  background: transparent !important;
}

.nn-textarea textarea:focus,
.nn-textarea textarea:hover {
  border-color: orange !important;
}

.nn-textarea textarea:focus {
  border: 2px solid orange !important;
}

.single-post .page-content .uk-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-post figure {
    display: flex;
    flex-direction: column;
/*     align-items: center; */
	max-width: 780px;
}

.single-post #page-text p {
    max-width: 780px;
}
/*nn style*/
.nn_layout #page-text h2,
.single-post #page-text h2,
.single-post #page-text h3{
    text-align: center;
    margin-top: 50px;
}

.forminator-button {
  background: transparent !important;
  color: var(--darkblue) !important;
  text-transform: uppercase !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:hover {
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0) !important;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0) !important;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:hover::before {
  content: '.';
}

h2 {
  font-size: 3.2em;
}

.nn_layout #page-text p {
    max-width: 780px;
}