/*!
Theme Name: Sealogea
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sealogea
Tags:
----------------------------------------------------------------------------------------- */

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

*:focus,
*:active {
  outline: none;
}

/*  Variables
---------------------------------------- */
:root {
  /* Colors */
  --black: #000;
  --white: #fff;

  --main: ;
  --main-dark: ;
  --main-light: ;

  --accent: #193594;
  --accent-dark: ;
  --accent-light: ;

  --gray: ;
  --gray-dark: ;
  --gray-light: #f9f9f9;

  /* Fonts */
  --serif: ;
  --sans-serif: "Open Sans", sans-serif; /* 300, 400, 600, 700, 800 */
}

/*  General
----------------------------------------------------------------------------------------- */
html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-weight: 400;
  font-display: auto;
  font-family: var(--sans-serif);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.section-title {
  font-size: 42px;
  color: var(--accent);
}

.section-title::after {
  content: "";
  display: block;
  width: 120px;
  margin-top: 30px;
  border-bottom: 3px solid var(--accent);
}

.section-title.center {
  text-align: center;
}

.section-title.center::after {
  margin: 30px auto 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

ul,
ol,
dl {
  line-height: 1.5;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

@media only screen and (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Layout
 *
----------------------------------------------------------------------------------------- */

/*  Site Layout: Grid System
----------------------------------------------------------------------------------------- */

section {
  padding: 60px 0;
  overflow: hidden;
}

.container,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  max-width: 1280px !important;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.x-space-between {
  justify-content: space-between;
}

.layout {
  padding: 0 !important;
}

[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 15px;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

/* .col-sm */
@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* .col-md */
@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* .col-lg */
@media only screen and (min-width: 1200px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/*  Site Layout: Site Header
----------------------------------------------------------------------------------------- */

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  position: fixed;
  transition: 0.05s;
  align-items: center;
  color: var(--white);
}

.site-header [class*="col-"] {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.site-header.fixed {
  color: var(--black);
  background: var(--white);
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.4);
}

/* .site-branding */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding .logo {
  max-height: 60px;
  margin-right: 15px;
}

.site-branding .site-name {
  font-size: 33px;
  font-weight: 300;
  text-transform: uppercase;
}

.site-branding .site-description {
  font-size: 10px;
}

@media only screen and (max-width: 576px) {
  .site-branding .logo {
    max-height: 30px;
  }
  .site-branding .site-name {
    font-size: 20px;
  }
}

/*  Main Navigation
--------------------------------------------------- */

/* .main-navigation */
.main-navigation {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

/* .main-navigation > menu */
.main-navigation .menu {
  display: flex;
  align-items: center;
}

/* .main-navigation > menu-item */
.main-navigation .menu > .menu-item {
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
}

.main-navigation:not(.mobile) .menu > .menu-item:not(:last-child)::after {
  content: "•";
  margin: 15px;
  opacity: 0.2;
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 50px;
  display: flex;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}

.main-navigation .menu > .menu-item > a:hover {
  opacity: 0.8;
  color: var(--accent);
}

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > .sub-menu {
  left: 0;
  z-index: 1000;
  overflow: hidden;
  position: absolute;

  max-height: 0;

  width: 100%;
  max-width: 576px;
  min-width: max-content;

  display: flex;
  flex-direction: column;

  color: var(--black);
  background: var(--gray-light);
}

.main-navigation .menu > .menu-item:hover > .sub-menu,
.main-navigation .menu > .menu-item > .sub-menu.open {
  padding: 15px;
  max-height: min-content;
  border: 1px solid var(--main);
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  padding: 5px 10px;
  align-items: center;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a:hover {
  color: var(--white);
  background: var(--main);
}

/* .mega-menu */
.main-navigation .menu > .mega-menu > .sub-menu {
  flex-direction: row;
}

.main-navigation .menu > .mega-menu > .sub-menu > .menu-item:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--gray);
}

.main-navigation .menu > .mega-menu > .sub-menu > .menu-item > a {
  font-weight: 600;
  color: var(--black);
}

.main-navigation .menu > .mega-menu > .sub-menu > .menu-item > a > .iconify {
  display: none;
}

/* .main-navigation-mobile */
.main-navigation.mobile {
  left: 0;
  padding: 15px;
  width: 100%;
  z-index: 999;
  display: block;
  overflow-y: scroll;
  position: absolute;

  background: var(--white);
}

.main-navigation.mobile .menu {
  flex-direction: column;
  align-items: flex-start;
}

.main-navigation.mobile .menu .menu-item {
  width: 100%;
}

.main-navigation.mobile .menu > .menu-item > a {
  padding: 0 30px;
  color: var(--black);
  justify-content: space-between;
}

/* .main-navigation-mobile > .sub-menu */
.main-navigation.mobile .menu .menu-item .sub-menu {
  left: 0;
  min-width: 100%;
  position: unset;
  transform: unset;
}

/* .menu-toggle */
.mobile-toggle {
  display: none;
}

.mobile-toggle div {
  width: 35px;
  height: 3px;
  margin: 7px 0;
  transition: 0.2s;
  background-color: var(--white);
}

.change div:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.change div:nth-child(2) {
  opacity: 0;
}

.change div:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/*  */
@media only screen and (max-width: 1140px) {
  .mobile-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
}

/*  Site Layout: Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: 15px 0;
  text-align: center;
  color: var(--white);
  background: var(--black);
}

/*  Component: Buttons
----------------------------------------------------------------------------------------- */
.buttons {
  display: flex;
  align-items: center;
  min-width: max-content;
}

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

.buttons li:not(:first-child) {
  margin-left: 15px;
}

input[type="submit"],
.buttons [class*="button-"] {
  height: 40px;
  display: flex;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0px 30px;
  text-align: center;
  color: var(--white);
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  border: 1px solid transparent;
  background-color: var(--accent);
}

input[type="submit"]::before,
.buttons [class*="button-"]::before {
  content: "";
  display: block;
  width: 30px;
  transition: 0.3s;
  margin-right: 15px;
  border-bottom: 1px solid var(--white);
}

input[type="submit"]:hover::before,
.buttons [class*="button-"]:hover::before {
  width: 45px;
}

input[type="submit"],
.buttons .button-xxl {
  height: 60px;
  font-size: 16px;
  padding: 0 45px;
}

/*  Component: Forms
----------------------------------------------------------------------------------------- */
.form {
  padding: 45px;
  background: var(--white);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
}

input,
textarea {
  width: 100%;
  font-size: 14px;
  font-family: inherit;
  padding: 15px 30px;
  background: #fbfbfb;
  border: 1px solid #f1f0f0;
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Sections
 *
----------------------------------------------------------------------------------------- */

/*  Section: Hero
----------------------------------------------------------------------------------------- */
#hero {
  padding: 0;
  position: relative;
}

#hero > .overlay {
  display: flex;
  padding: 155px 0 60px 0;
  text-align: center;
  align-items: center;
  color: var(--white);
  justify-content: center;
  background: #0000009c;
  min-height: calc(var(--vh, 1vh) * 100);
}

#hero .editor {
  font-size: 18px;
  margin-bottom: 30px;
}

#hero .editor > h1 {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.scroll-down {
  left: 50%;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  animation-name: scrolldown;
  animation-duration: 5s;
  font-size: 42px;
  color: var(--white);
  transform: translateX(-50%);
  transition-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.scroll-down span:first-child {
  margin-bottom: 15px;
}

@keyframes scrolldown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 0;
  }
}

@media only screen and (max-width: 576px) {
  #hero .editor > h1 {
    font-size: 48px;
  }
}

/*  Section: Who We Are
----------------------------------------------------------------------------------------- */
#who-we-are {
  height: 420px;
  display: flex;
  align-items: center;
}

/*  Section: What We Offer
----------------------------------------------------------------------------------------- */
#what-we-offer {
  display: flex;
  padding: 160px 0;
  align-items: center;
  background: url(/wp-content/themes/sealogea/media/background.png) no-repeat
    center center / cover;
}

@media only screen and (max-width: 576px) {
  #what-we-offer {
    padding: 60px 0;
  }
  #what-we-offer .layout {
    margin-top: 30px;
  }
}

/*  Section: Contacts
----------------------------------------------------------------------------------------- */
.contact-card {
  padding: 45px;
}

.contact-list li {
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.contact-list li::after {
  content: "";
  display: block;
  width: 45px;
  margin: 30px 0;
  border-bottom: 2px solid gray;
}


.contact-list li .iconify {
  padding: 5px;
  font-size: 38px;
  color: var(--white);
  background: var(--accent);
  margin-right: 15px;
}

#google-map {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  filter: grayscale(100%);
}

@media only screen and (max-width: 576px) {
  .form,
  .contact-card {
    padding: 15px;
  }
  #contacts .x-space-between {
    flex-direction: column-reverse;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Blocks
 *
----------------------------------------------------------------------------------------- */

/*  Block: Icon Box
----------------------------------------------------------------------------------------- */
.icon-box {
  height: 100%;
  padding: 15px;
  display: flex;
  transition: 0.3s;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
}

.icon-box:hover {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

.icon-box:hover img {
  filter: brightness(0) invert(1);
}

.icon-box .icon {
  max-width: 90px;
  margin-bottom: 15px;
}

.icon-box .title {
  font-size: 16px;
  font-weight: 600;
  max-width: 220px;
}

@media only screen and (max-width: 576px) {
  .icon-box .title {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Parts
 *
----------------------------------------------------------------------------------------- */

/*  Template Part: 
----------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------
 *
 *  Template Pages
 *
----------------------------------------------------------------------------------------- */

/*  Template Page: 
----------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------
 *
 *  Components
 *
----------------------------------------------------------------------------------------- */
