:root {
  --kof: calc(100vw / 1440);
}

@media (min-width: 1800px) {
  :root {
    --kof: calc(100vw / 1800);
  }
}
@media (max-width: 1210px) {
  :root {
    --kof: calc(100vw / 980);
  }
}
@media (max-width: 900px) {
  :root {
    --kof: calc(100vw / 800);
  }
}
@media (max-width: 600px) {
  :root {
    --kof: calc(100vw / 600);
  }
}
@media (max-width: 400px) {
  :root {
    --kof: calc(100vw / 450);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #4f4f4f;
  font-size: calc(var(--kof) * 16);
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  color: #1f4d7a;
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1f4d7a;
}

h1 {
  margin-bottom: calc(var(--kof) * 20);
}

h3 {
  margin: calc(var(--kof) * 30) 0;
  font-size: calc(var(--kof) * 18);
  font-weight: bold;
  font-size: calc(var(--kof) * 22);
}

p {
  margin-bottom: calc(var(--kof) * 20);
}

.container {
  padding: 0 calc(var(--kof) * 120) 0 calc(var(--kof) * 120);
}
@media (max-width: 1210px) {
  .container {
    padding: 0 calc(var(--kof) * 31) 0 calc(var(--kof) * 31);
  }
}

.bgi {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.btn {
  padding: calc(var(--kof) * 15) calc(var(--kof) * 20);
  background-color: #eb5757;
  color: #fff;
  border-radius: 2px;
  font-size: calc(var(--kof) * 12);
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 0.2em;
  font-weight: bold;
  cursor: pointer;
}

.f-jc-c {
  display: flex;
  justify-content: center;
}

.f-ai-c {
  display: flex;
  align-items: center;
}

.f-jc-sb {
  display: flex;
  justify-content: space-between;
}

.f-ai-jf-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-ai-jc-sbc {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.heading {
  font-size: calc(var(--kof) * 36);
  font-weight: 900;
  text-align: center;
  margin: 0;
  position: relative;
  margin-bottom: calc(var(--kof) * 85);
}
.heading:after {
  content: "";
  background-image: url("../img/uzel.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: calc(var(--kof) * 100);
  height: calc(var(--kof) * 40);
  position: absolute;
  bottom: calc(var(--kof) * -50);
  left: 50%;
  transform: translateX(-50%);
}

.afteheading {
  content: "";
  background-image: url("../img/uzel.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: calc(var(--kof) * 50) auto 0;
  width: calc(var(--kof) * 70);
  height: calc(var(--kof) * 21);
}

[data-animate] {
  opacity: 0;
}

.form-box {
  font-size: calc(var(--kof) * 18);
  font-weight: bold;
  color: #1f4d7a;
  margin-bottom: calc(var(--kof) * 30);
  width: 100%;
  position: relative;
}
.form-box p {
  margin-bottom: calc(var(--kof) * 10);
}
.form-box.required > p:after {
  content: "*";
}
.form-box-wrapper.search {
  position: relative;
}
.form-box-wrapper.search button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: calc(var(--kof) * 14) calc(var(--kof) * 20);
  color: #fff;
  background-color: #eb5757;
  font-weight: bold;
  font-size: calc(var(--kof) * 12);
  line-height: 100%;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
.form-box-wrapper.checkbox label {
  position: relative;
  padding-left: calc(var(--kof) * 40);
  margin-right: calc(var(--kof) * 50);
}
.form-box-wrapper.checkbox label:before {
  content: "";
  position: absolute;
  top: calc(var(--kof) * -6);
  left: 0;
  width: calc(var(--kof) * 30);
  height: calc(var(--kof) * 30);
  border: 1px solid #bdbdbd;
}
.form-box-wrapper.checkbox input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.form-box-wrapper.checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: calc(var(--kof) * 4);
  left: calc(var(--kof) * 12);
  width: calc(var(--kof) * 8);
  height: calc(var(--kof) * 12);
  border-right: 4px solid #eb5757;
  border-bottom: 4px solid #eb5757;
  box-sizing: border-box;
  transform: rotate(45deg);
}
.form-box-wrapper.file {
  position: relative;
}
.form-box-wrapper.file label {
  display: block;
  width: 100%;
  color: #4f4f4f;
  border: 1px solid #bdbdbd;
  box-sizing: border-box;
  border-radius: 4px;
  padding: calc(var(--kof) * 10) calc(var(--kof) * 50) calc(var(--kof) * 5) calc(var(--kof) * 20);
  position: relative;
  height: calc(var(--kof) * 40);
  font-style: normal;
  font-weight: normal;
  font-size: calc(var(--kof) * 16);
  overflow: hidden;
  cursor: pointer;
  text-overflow: ellipsis;
  text-align: left;
}
.form-box-wrapper.file label strong {
  font-weight: normal;
  background-color: #e3e5e8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: calc(var(--kof) * 9) calc(var(--kof) * 21);
}
.form-box-wrapper.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-box.submit {
  text-align: center;
}
.form-box.submit input[type=submit] {
  font-weight: bold;
  font-size: calc(var(--kof) * 12);
  line-height: 100%;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: calc(var(--kof) * 15) calc(var(--kof) * 20);
  color: #fff;
  background-color: #eb5757;
  border: none;
  cursor: pointer;
}
.form-box.submit input[type=submit]:active, .form-box.submit input[type=submit]:focus {
  outline: none;
}
.form-box.submit .error, .form-box.submit .success {
  position: relative;
  bottom: 0;
  text-align: center;
  padding-top: calc(var(--kof) * 25);
}
.form-box.submit .success {
  color: #19ff00;
  display: none;
}
.form-box .input-text {
  border: 1px solid #eb5757;
}
.form-box .error {
  color: #eb5757;
  position: absolute;
  bottom: calc(var(--kof) * -20);
  right: 0;
  font-style: normal;
  font-weight: normal;
  font-size: calc(var(--kof) * 12);
  line-height: calc(var(--kof) * 15);
  display: none;
}

input[type=text], textarea {
  width: 100%;
  color: #4f4f4f;
  padding: calc(var(--kof) * 10) calc(var(--kof) * 50) calc(var(--kof) * 5) calc(var(--kof) * 20);
  line-height: 1.5;
  font-size: calc(var(--kof) * 16);
  font-weight: normal;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 500px) {
  input[type=text], textarea {
    padding: calc(var(--kof) * 10) calc(var(--kof) * 25) calc(var(--kof) * 5) calc(var(--kof) * 20);
  }
}
input[type=text]:focus, input[type=text]:active, textarea:focus, textarea:active {
  outline: none;
}

textarea {
  height: 125px;
  resize: vertical;
  min-height: 42px;
}

input[type=text],
input[type=submit],
.goods-item-actions-submit,
button {
  font-family: "Montserrat", sans-serif;
}
input[type=text]::-moz-placeholder,
input[type=submit]::-moz-placeholder,
.goods-item-actions-submit::-moz-placeholder,
button::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
}
input[type=text]::-webkit-input-placeholder,
input[type=submit]::-webkit-input-placeholder,
.goods-item-actions-submit::-webkit-input-placeholder,
button::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
}
input[type=text]:-ms-input-placeholder,
input[type=submit]:-ms-input-placeholder,
.goods-item-actions-submit:-ms-input-placeholder,
button:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
}
input[type=text]::-ms-input-placeholder,
input[type=submit]::-ms-input-placeholder,
.goods-item-actions-submit::-ms-input-placeholder,
button::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
}
input[type=text]::placeholder,
input[type=submit]::placeholder,
.goods-item-actions-submit::placeholder,
button::placeholder {
  font-family: "Montserrat", sans-serif;
}

.search input {
  padding-right: calc(var(--kof) * 100);
}

.site-header {
  padding: calc(var(--kof) * 30) 0;
  position: absolute;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease-out;
  height: auto;
}
.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header.stiky {
  background-color: #fff;
  position: fixed;
  transform: translateY(-100%);
  opacity: 0;
}
.site-header.stiky.show {
  transform: translateY(0);
  opacity: 1;
}
.site-header.stiky.first {
  display: none;
}

.logo {
  z-index: 20;
}
.logo .custom-logo-link {
  width: calc(var(--kof) * 21);
  margin-right: calc(var(--kof) * 10);
}
.logo .custom-logo-link .custom-logo {
  width: calc(var(--kof) * 21);
}
.logo-name {
  font-weight: bold;
  font-size: calc(var(--kof) * 25);
  font-family: Arial, serif;
}

.menu {
  list-style: none;
  color: #333;
  font-weight: bold;
  font-size: calc(var(--kof) * 12);
  text-transform: uppercase;
}
.menu li {
  display: inline;
  margin-left: calc(var(--kof) * 50);
}
.menu li:first-child {
  margin-left: 0;
}
.menu a {
  color: inherit;
}
.menu .login {
  color: #56ccf2;
}

.mobile-login {
  display: none;
  padding: calc(var(--kof) * 15);
  border-radius: 50%;
  background-color: #1f4d7a;
  justify-content: center;
  align-items: center;
  width: calc(var(--kof) * 50);
  height: calc(var(--kof) * 50);
}
.mobile-login img {
  width: calc(var(--kof) * 20);
}

.mobile-open {
  position: fixed;
  height: 100%;
  background-color: #fff;
}

.no-scroll {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 980px) {
  .no-scroll {
    position: relative;
  }
}

.hero {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .container {
  z-index: 10;
}
.hero-content {
  max-width: calc(var(--kof) * 820);
}
.hero-content h1 {
  font-weight: bold;
  font-size: calc(var(--kof) * 60);
  line-height: 89%;
  letter-spacing: -0.03em;
  font-variant: small-caps;
  text-transform: uppercase;
}
.hero-content p {
  font-weight: bold;
  font-size: calc(var(--kof) * 30);
  line-height: 100%;
  color: #1f4d7a;
}

.gradient {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.9;
  position: absolute;
  width: 100%;
  height: calc(var(--kof) * 351);
  left: 0px;
  top: 0px;
  z-index: 1;
}

.arrow {
  position: absolute;
  bottom: calc(var(--kof) * 10);
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  width: calc(var(--kof) * 30);
  height: calc(var(--kof) * 30);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about {
  height: calc(var(--kof) * 600);
  display: flex;
  align-items: center;
  position: relative;
}
.about-content h2 {
  margin-bottom: calc(var(--kof) * 10);
  font-weight: 900;
  font-size: calc(var(--kof) * 36);
}
.about-content p {
  font-size: calc(var(--kof) * 18);
}
.about-content-wrapper {
  max-width: calc(var(--kof) * 330);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--kof) * 76);
  position: relative;
  box-sizing: content-box;
}
.about-content-wrapper .iico {
  position: absolute;
  top: calc(var(--kof) * 100);
  right: 0;
}
.about-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-icon {
  left: 0;
  top: 0;
  position: absolute;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--kof) * 240);
  height: calc(var(--kof) * 240);
}
.about-icon img {
  width: calc(var(--kof) * 170);
}
.about-icon.bottom-right {
  left: 0;
  right: auto;
  bottom: 0;
  top: auto;
}
.about-icon.top-right {
  top: 0;
  left: auto;
  bottom: auto;
  right: 0;
}
.about.vision .about-icon img {
  width: calc(var(--kof) * 150);
}

.services {
  padding: calc(var(--kof) * 200) 0;
  background-position: bottom center;
  position: relative;
}
@media (min-width: 1200px) {
  .services {
    background-size: contain;
  }
}
.services .heading {
  margin-bottom: calc(var(--kof) * 80);
}
.services-content {
  display: flex;
  justify-content: center;
}
.services-item {
  max-width: calc(var(--kof) * 330);
  padding: calc(var(--kof) * 50);
  box-sizing: content-box;
  position: relative;
}
.services-item h3 {
  font-weight: bold;
  font-size: calc(var(--kof) * 36);
  margin-bottom: calc(var(--kof) * 30);
  line-height: 1;
}
.services-item p {
  font-size: calc(var(--kof) * 18);
  margin-bottom: calc(var(--kof) * 30);
}
.services-item:first-child {
  padding-left: 0;
}
.services-item:last-child {
  padding-right: 0;
}
.services-item:last-child:after {
  display: none;
}
.services-item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(var(--kof) * 5);
  background-color: #1f4d7a;
}

.contact {
  padding-top: calc(var(--kof) * 124);
}
.contact .heading {
  margin-bottom: calc(var(--kof) * 95);
}
.contact-content {
  text-align: center;
  margin-bottom: calc(var(--kof) * 95);
}
.contact-content p {
  margin-bottom: calc(var(--kof) * 10);
}

#map {
  height: calc(var(--kof) * 400);
  width: 100%;
  margin-bottom: -5px;
}

.site-footer {
  padding: calc(var(--kof) * 40);
  background-color: #1f4d7a;
  color: #fff;
  font-size: calc(var(--kof) * 14);
}
.site-footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.site-footer a {
  color: #56ccf2;
  justify-self: start;
}
.site-footer p:last-child {
  margin-bottom: 0;
}
.site-footer section {
  margin: 0;
}
.site-footer section:last-child {
  justify-self: end;
}
.site-footer section:last-child a {
  color: inherit;
}
.site-footer section:last-child a:hover {
  color: inherit;
}
.site-footer section:first-child {
  justify-self: start;
}

.modal {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.2);
  padding: calc(var(--kof) * 120);
  overflow: auto;
  display: none;
  opacity: 0;
}
@media (min-width: 1800px) {
  .modal {
    padding: calc(var(--kof) * 150) calc(var(--kof) * 300);
  }
}
@media (max-width: 900px) {
  .modal {
    padding: calc(var(--kof) * 50);
  }
}
@media (max-width: 600px) {
  .modal {
    padding: calc(var(--kof) * 25);
  }
}
.modal-content {
  background-color: #fff;
  padding: calc(var(--kof) * 100);
  position: relative;
}
.modal-content.textarea-mooved .form-box {
  transition-duration: 0s !important;
}
@media (max-width: 900px) {
  .modal-content {
    padding: calc(var(--kof) * 100) calc(var(--kof) * 50);
  }
}
.modal.show {
  display: block;
}

.exit {
  position: absolute;
  background-color: #eb5757;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--kof) * 45);
  height: calc(var(--kof) * 45);
  cursor: pointer;
}
.exit span {
  position: absolute;
  width: calc(var(--kof) * 21);
  height: calc(var(--kof) * 1);
  background-color: #fff;
  transform: matrix(0.71, 0.71, 0.71, -0.71, 0, 0);
}
.exit span:last-child {
  transform: rotate(135deg);
}

.post-goods {
  padding: calc(var(--kof) * 120) calc(var(--kof) * 270);
}
@media (max-width: 1210px) {
  .post-goods {
    padding: calc(var(--kof) * 120) calc(var(--kof) * 100);
  }
}
@media (max-width: 600px) {
  .post-goods {
    padding: calc(var(--kof) * 25);
  }
  .post-goods .modal-content {
    padding-left: calc(var(--kof) * 25);
    padding-right: calc(var(--kof) * 25);
    padding-bottom: calc(var(--kof) * 25);
  }
}

.post {
  display: inline-table;
  position: relative;
}
.post span {
  display: inline-table;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.post span.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.page-hero {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.page-hero .gradient {
  position: fixed;
}

.modal-page {
  position: absolute;
  top: calc(var(--kof) * 180);
  left: 0;
  right: 0;
}
@media (max-width: 900px) {
  .modal-page {
    top: 0;
  }
}
.modal-page-content {
  background-color: #fff;
  margin: 0 calc(var(--kof) * 120) calc(var(--kof) * 180);
  padding: calc(var(--kof) * 50) calc(var(--kof) * 250);
}
@media (max-width: 1200px) {
  .modal-page-content {
    padding: calc(var(--kof) * 50) calc(var(--kof) * 75);
    margin: 0 calc(var(--kof) * 50) calc(var(--kof) * 50);
  }
}
@media (max-width: 900px) {
  .modal-page-content {
    padding: 0;
    margin: 0;
    padding-top: calc(var(--kof) * 100);
    padding-bottom: calc(var(--kof) * 25);
  }
  .modal-page-content > header {
    padding: 0 calc(var(--kof) * 20);
  }
}

.last-ten {
  font-weight: 900;
  font-size: calc(var(--kof) * 22);
  line-height: 150%;
  text-align: center;
  margin-top: calc(var(--kof) * 33);
}

.goods-item {
  display: grid;
  padding: calc(var(--kof) * 20);
  grid-template-columns: 1fr 3fr 1fr;
  grid-gap: 30px;
  background: #fcfcfc;
  box-shadow: 0px 4px 10px rgba(51, 51, 51, 0.25);
  border-radius: 3px;
  color: #828282;
  font-size: calc(var(--kof) * 14);
  line-height: calc(var(--kof) * 17);
  margin-bottom: calc(var(--kof) * 20);
  cursor: pointer;
  transition: all 0.3s;
}
.goods-item.dishow {
  filter: grayscale(1);
  pointer-events: none;
}
.goods-item.no-thumb {
  grid-template-columns: 3fr 1fr;
}
.goods-item.goods_no_action {
  grid-template-columns: 1fr 4fr;
}
.goods-item.goods_no_action.no-thumb {
  grid-template-columns: 1fr;
}
.goods-item:last-child {
  margin-bottom: 0;
}
.goods-item-image img {
  width: 100%;
  border-radius: 4px;
  height: auto;
}
.goods-item-content h4 {
  font-weight: 600;
  font-size: 1.15em;
  line-height: calc(var(--kof) * 20);
  margin-bottom: calc(var(--kof) * 7);
}
.goods-item-content .barge {
  display: block;
  color: #4f4f4f;
  margin-bottom: calc(var(--kof) * 7);
}
.goods-item-content .barge a {
  color: inherit;
}
.goods-item-content .barge a:hover {
  color: inherit;
}
.goods-item-content .price {
  color: #333;
}
.goods-item-content header {
  margin-bottom: 5px;
}
.goods-item-content .content {
  margin-top: calc(var(--kof) * 7);
  margin-bottom: calc(var(--kof) * 20);
}
.goods-item-content .content p {
  display: inline;
}
.goods-item-content footer {
  margin-top: calc(var(--kof) * 20);
}
.goods-item-content dl {
  font-size: 1.08em;
  margin-bottom: calc(var(--kof) * 5);
}
.goods-item-content dl:last-child {
  margin-bottom: 0;
}
.goods-item-content dl dt,
.goods-item-content dl dd {
  display: inline;
}
.goods-item-actions button {
  background-color: inherit;
  border: 1px solid #eb5757;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  color: #eb5757;
  width: 100%;
  padding: calc(var(--kof) * 12);
  cursor: pointer;
}
.goods-item-actions button:focus, .goods-item-actions button:active {
  outline: none;
}
.goods-item-actions p {
  margin-bottom: calc(var(--kof) * 10);
}
.goods-item .select2-container .select2-selection--single .select2-selection__rendered {
  background-color: initial;
  font-size: calc(var(--kof) * 14);
  min-width: calc(var(--kof) * 140);
}
.goods-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: calc(var(--kof) * 10);
  height: calc(var(--kof) * 10);
}
@media (max-width: 600px) {
  .goods-item {
    grid-template-columns: 1fr 1.5fr;
    font-size: calc(var(--kof) * 16);
  }
  .goods-item-actions {
    grid-column: span 2;
  }
  .goods-item-actions button {
    width: auto;
  }
  .goods-item-actions p:last-child {
    text-align: center;
  }
}

.rfq .goods-item {
  display: block;
}

.post-rfq-quote {
  padding: calc(var(--kof) * 20) 0;
  margin: calc(var(--kof) * 30) 0;
  border-top: 1px solid #e3e5e8;
  border-bottom: 1px solid #e3e5e8;
  text-align: center;
  color: #828282;
}
.post-rfq-quote p {
  font-size: calc(var(--kof) * 18);
  line-height: calc(var(--kof) * 22);
}
.post-rfq-quote .btn {
  background-color: #2d9cdb;
}

.notifyjs-oos-base {
  background-color: #2d9cdb;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-weight: normal;
  font-size: calc(var(--kof) * 18);
  line-height: calc(var(--kof) * 22);
  color: #fff;
  padding: calc(var(--kof) * 24) calc(var(--kof) * 20) calc(var(--kof) * 24) calc(var(--kof) * 70);
  position: relative;
}
.notifyjs-oos-base:after {
  content: "";
  position: absolute;
  top: calc(var(--kof) * 22);
  left: calc(var(--kof) * 26);
  background: url("../img/noty.svg") no-repeat center;
  width: calc(var(--kof) * 30);
  height: calc(var(--kof) * 30);
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 1210px) {
  .about {
    height: calc(var(--kof) * 500);
  }
  .about-icon {
    width: calc(var(--kof) * 200);
    height: calc(var(--kof) * 200);
  }
  .about-icon img {
    width: calc(var(--kof) * 150);
  }
  .about.vision .about-icon img {
    width: calc(var(--kof) * 125);
  }
  .mission .about-image:last-child {
    display: none;
  }
  .vision {
    flex-direction: row-reverse;
  }
  .vision .top-right {
    right: auto;
    left: 0;
  }
  .services {
    padding: calc(var(--kof) * 100) 0;
  }
  .services-content {
    display: block;
  }
  .services-item {
    max-width: 100%;
    padding: calc(var(--kof) * 50) 0;
    text-align: center;
  }
  .services-item p {
    max-width: calc(var(--kof) * 750);
    margin-left: auto;
    margin-right: auto;
  }
  .services-item:after {
    top: auto;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    height: calc(var(--kof) * 5);
  }
}
@media (max-width: 924px) {
  .menu {
    display: none;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu li {
    margin: 0;
    font-size: calc(var(--kof) * 30);
    margin-bottom: calc(var(--kof) * 30);
    position: relative;
  }
  .menu li:first-child:before {
    content: "";
    background-image: url("../img/uzel.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: calc(var(--kof) * 100);
    height: calc(var(--kof) * 40);
    position: absolute;
    top: -150%;
    left: 50%;
    transform: translateX(-50%);
  }
  .mobile-open .menu {
    display: flex;
  }
  .mobile-open .mobile-login {
    opacity: 0;
    z-index: -1;
  }
  .mobile-login {
    display: flex;
    transition: all 0.3s;
  }
  .site-header {
    padding: calc(var(--kof) * 25) 0;
    transition: all 0.3s;
  }
  .logo .custom-logo-link {
    width: calc(var(--kof) * 30);
  }
  .logo .custom-logo-link .custom-logo {
    width: calc(var(--kof) * 30);
  }
  .hero-content {
    text-align: center;
  }
  .about {
    flex-direction: column;
    height: auto;
  }
  .about-image {
    height: calc(var(--kof) * 375);
  }
  .about-content-wrapper {
    max-width: 100%;
    padding: 0 calc(var(--kof) * 33);
    margin-top: calc(var(--kof) * 50);
    margin-bottom: calc(var(--kof) * 80);
    box-sizing: border-box;
  }
  .about-content-wrapper:after {
    top: calc(var(--kof) * -10);
  }
  .about-icon.top-right {
    left: auto;
    right: 0;
  }
  .about-us {
    flex-direction: column-reverse;
  }
  .site-footer-content {
    grid-template-columns: 1fr;
  }
  .site-footer-content section,
  .site-footer-content section:first-child,
  .site-footer-content section:last-child {
    justify-self: center;
    padding-bottom: calc(var(--kof) * 10);
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    position: relative;
    margin-bottom: calc(var(--kof) * 80);
  }
  .hero-content h1:after {
    content: "";
    background-image: url("../img/uzel.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: calc(var(--kof) * 100);
    height: calc(var(--kof) * 40);
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 400px) {
  .hero-content h1:after {
    bottom: -25%;
  }
}
.select2-container--default .select2-selection--single {
  border: 1px solid #bdbdbd;
  height: auto;
}
.select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single:active {
  outline: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: #4f4f4f;
  padding: calc(var(--kof) * 10) calc(var(--kof) * 50) calc(var(--kof) * 5) calc(var(--kof) * 20);
  line-height: 1.5;
  font-size: calc(var(--kof) * 16);
  font-weight: normal;
}
.select2-container .select2-selection--single .select2-selection__rendered:focus, .select2-container .select2-selection--single .select2-selection__rendered:active {
  outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus, .select2-container--default .select2-search--dropdown .select2-search__field:active {
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: calc(var(--kof) * 12);
  height: calc(var(--kof) * 12);
  border-bottom: 2px solid #eb5757;
  border-left: 2px solid #eb5757;
  transform: rotate(-45deg);
  transition: all 0.3s;
  top: 31%;
  right: calc(var(--kof) * 20);
}
.select2-container--default .select2-selection--single .select2-selection__arrow:focus, .select2-container--default .select2-selection--single .select2-selection__arrow:active {
  outline: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(135deg) translate(calc(var(--kof) * 4), calc(var(--kof) * -2));
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.grosHints {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  list-style: none;
  box-shadow: 1px 2px 5px 1px silver;
}
.grosHints li {
  padding: 15px;
}
.grosHints li:hover {
  background-color: silver;
  cursor: pointer;
}
.grosHints li.focused {
  background-color: #dedede;
}

.filepond--drop-label {
  background-color: #fff;
}

.filepond--root .filepond--drop-label {
  min-height: 2.8em;
}

.filepond--root {
  margin-bottom: 0;
}

.page-template-default .modal-page-content {
  padding-left: 15px;
  padding-right: 15px;
}

.rfq-id {
  float: right;
}

.filepond--label-action {
  text-decoration: none;
}

.lessmore {
  font-weight: 600;
  color: #eb5757;
}

.grosModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  opacity: 0;
  display: none;
}
.grosModal-wrapper {
  background-color: #fff;
  width: 100%;
  max-width: calc(var(--kof) * 500);
  flex-shrink: 0;
  box-shadow: 0px 4px 10px rgba(51, 51, 51, 0.25);
  position: relative;
  transform: translateX(100%);
  transition: all 0.3s;
  opacity: 0;
}
.grosModal.active {
  display: flex;
  opacity: 1;
}
.grosModal.active .grosModal-wrapper {
  opacity: 1;
}
.grosModal-header {
  padding: calc(var(--kof) * 15) calc(var(--kof) * 20) calc(var(--kof) * 15) calc(var(--kof) * 50);
  background: #FCFCFC;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}
.grosModal-content {
  padding: calc(var(--kof) * 30) calc(var(--kof) * 50);
  overflow: auto;
  margin-top: calc(var(--kof) * 75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grosModal .exit {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.water {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: #1f4d7a;
  border-radius: 50%;
}
.water span {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -85px;
  background-color: #1f4d7a;
}
.water span:first-child {
  border-radius: 45%;
  background: #fff;
  animation: wave 4s linear infinite;
  top: -95px;
}
.water span:nth-child(2n) {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.3);
  animation: wave 4.5s linear infinite;
  top: -80px;
}
.water span:nth-child(3n) {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.3);
  animation: wave 5s linear infinite;
  top: -60px;
}
.water span:nth-child(4n) {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.3);
  animation: wave 5.5s linear infinite;
  top: -40px;
}
.water span:nth-child(5n) {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.3);
  animation: wave 6s linear infinite;
  top: -25px;
}

.item-for {
  font-weight: bold;
  font-size: calc(var(--kof) * 13);
  line-height: calc(var(--kof) * 16);
  color: #fff;
  background-color: #1f4d7a;
  border-radius: 5px;
  padding: calc(var(--kof) * 7) calc(var(--kof) * 10);
}

.item-date {
  font-size: calc(var(--kof) * 13);
}

.item-single {
  color: #4f4f4f;
}
.item-single h2 {
  font-weight: 900;
  font-size: calc(var(--kof) * 24);
  line-height: 120%;
  margin-bottom: calc(var(--kof) * 30);
}
.item-single-info {
  margin-bottom: 20px;
}
.item-single .wp-post-image {
  width: 100%;
  height: auto;
  margin-bottom: calc(var(--kof) * 20);
}
.item-single-meta, .item-single dl {
  margin: calc(var(--kof) * 20) 0;
}
.item-single-meta .meta-name, .item-single-meta dt, .item-single dl .meta-name, .item-single dl dt {
  font-weight: bold;
  font-size: calc(var(--kof) * 16);
  line-height: calc(var(--kof) * 20);
  color: #1f4d7a;
  margin-bottom: calc(var(--kof) * 10);
}
.item-single-meta .meta-val, .item-single-meta dd, .item-single dl .meta-val, .item-single dl dd {
  color: #4f4f4f;
  font-size: calc(var(--kof) * 14);
  line-height: 150%;
}
.item-single-meta .meta-val p, .item-single-meta dd p, .item-single dl .meta-val p, .item-single dl dd p {
  display: inline;
}
.item-single-meta.price .meta-val, .item-single dl.price .meta-val {
  color: #eb5757;
  font-size: calc(var(--kof) * 16);
  line-height: 150%;
  font-weight: bold;
}
.item-single-meta.horizontal, .item-single dl.horizontal {
  display: flex;
  justify-content: space-between;
}
.item-single-meta.link a, .item-single dl.link a {
  display: flex;
  align-items: center;
}
.item-single-meta.link a span, .item-single dl.link a span {
  margin-left: calc(var(--kof) * 18);
}

@keyframes wave {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.no-scroll {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
