@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap");
@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes zoom {
  0% {
    height: 120%;
    opacity: 0; }
  80% {
    height: 100%;
    opacity: 1; }
  100% {
    height: 100%;
    opacity: 1; } }
@keyframes ml {
  from {
    opacity: 0;
    margin-left: -300px; }
  to {
    opacity: 1;
    margin-left: 0px; } }
@keyframes mr {
  from {
    opacity: 0;
    margin-left: 1900px; }
  to {
    opacity: 1;
    margin-right: 0px; } }
@keyframes mb {
  from {
    opacity: 0;
    transform: translateY(300px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fade {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  80% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }
@keyframes fade-logo {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
    top: -800px;
    left: 50%; }
  50% {
    transform: translate(-50%, -50%);
    opacity: 1;
    top: 50%;
    left: 50%; }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
    top: 50%;
    left: 50%; } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in1 {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes width {
  from {
    width: 0;
    opacity: 0; }
  to {
    width: 75%;
    opacity: 1; } }
@keyframes height {
  from {
    height: 0;
    opacity: 0; }
  to {
    height: 100%;
    opacity: 1; } }
.clear:before, .clear:after {
  content: ' ';
  display: table; }

.clear {
  *zoom: 1; }
  .clear:after {
    clear: both; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background-color: transparent; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 700; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

/* $font-pl: 'Roboto Flex', sans-serif; */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html, body {
  color: #000;
  font-size: 1em;
  line-height: 1.4; }

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.
   */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
   * A better looking default horizontal rule
   */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
   * Remove default fieldset styles.
   */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
   * Allow only vertical resizing of textareas.
   */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html,
body {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  height: fit-content; }

body {
  position: relative;
  background-color: #fff; }
  body:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    /*         background-image: url(../images/bgr-top.jpg);
            background-repeat: no-repeat;
            background-size: 100% auto; */
    z-index: -2; }
  body::after {
    content: "";
    width: 100%;
    height: 900px;
    position: absolute;
    bottom: 0;
    /*         background-image: url(../images/bgr_bottom.png);
            background-size: 100% auto; */
    z-index: -1;
    background-position: bottom;
    background-repeat: no-repeat; }

.no-js body,
.touch body {
  opacity: 1; }

h1 {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000; }
  @media (min-width: 1300px) {
    h1 {
      font-size: 30px; } }
  @media (min-width: 1601px) {
    h1 {
      font-size: 40px; } }

h2 {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #064b6c; }
  @media (min-width: 1500px) {
    h2 {
      font-size: 30px; } }
  h2.underline {
    position: relative;
    color: #000; }
    h2.underline::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      background-color: #000;
      bottom: 10px;
      left: 0; }

h3 {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  margin: 30px 0; }
  @media (min-width: 1500px) {
    h3 {
      font-size: 20px; } }

h4 {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #000; }
  @media (min-width: 1500px) {
    h4 {
      font-size: 20px; } }

blockquote {
  position: relative;
  margin-left: 40px;
  max-width: 1000px !important;
  padding: 30px 10px 10px 45px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23dadada' viewBox='0 0 20 20'%3E%3Cpath d='M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 9 7.558V11a1 1 0 0 0 1 1h2Zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612c0-.351.021-.703.062-1.054.062-.372.166-.703.31-.992.145-.29.331-.517.559-.683.227-.186.516-.279.868-.279V3c-.579 0-1.085.124-1.52.372a3.322 3.322 0 0 0-1.085.992 4.92 4.92 0 0 0-.62 1.458A7.712 7.712 0 0 0 3 7.558V11a1 1 0 0 0 1 1h2Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 40px 0;
  background-size: 30px; }
  blockquote p {
    margin: 0;
    padding: 0; }
  blockquote::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #fccab7;
    left: 0;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%; }

a {
  color: #0083c2;
  text-decoration: none;
  opacity: 1; }
  a:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

p {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  padding: 5px 0;
  font-weight: 300; }
  @media (min-width: 1601px) {
    p {
      font-size: 1rem; } }

ul li {
  font-family: "Roboto", sans-serif; }

strong {
  font-family: "Roboto", sans-serif;
  font-weight: 600 !important; }

.strong {
  font-family: "Roboto", sans-serif;
  font-weight: 600; }

p.big {
  font-size: 22px;
  line-height: 30px; }
  @media (min-width: 1500px) {
    p.big {
      font-size: 28px;
      line-height: 35px; } }

.font-14 {
  font-size: 14px !important; }

.font-16 {
  font-size: 16px !important; }

i.small,
p.small {
  font-size: 14px !important;
  line-height: 20px !important; }

.text-black {
  color: #000 !important; }
  .text-black h2 {
    color: #000; }

.text-white {
  color: #fff !important; }
  .text-white h2 {
    color: #fff !important; }

.no-slide {
  padding-top: 150px; }

.left-c {
  width: 100%;
  margin-left: 0; }
  @media (min-width: 768px) {
    .left-c {
      width: 60%;
      margin-left: 5%;
      margin-top: 20px;
      margin-bottom: 0px; } }

.bgr-gray {
  /*    #headingOne {
      .accordion-button {
      padding-top: 0 !important;
      }
  } */ }
  .bgr-gray .container {
    padding-top: 10px !important; }
  .bgr-gray .left-c {
    margin-top: 0; }

.right-c {
  width: 100%; }
  @media (min-width: 768px) {
    .right-c {
      width: 40%; } }

.testemonials {
  width: 100%; }
  @media (min-width: 768px) {
    .testemonials {
      width: 40%; } }
  .testemonials .testemonials-in {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
    background-color: #064b6c;
    padding: 50px;
    margin-left: 0px;
    color: #fff; }
    @media (min-width: 768px) {
      .testemonials .testemonials-in {
        margin-top: -150px;
        width: 90%;
        margin-left: 100px; } }
    .testemonials .testemonials-in p,
    .testemonials .testemonials-in a,
    .testemonials .testemonials-in h3,
    .testemonials .testemonials-in h4 {
      color: #fff; }
    .testemonials .testemonials-in h3 {
      font-size: 24px;
      font-weight: 200;
      margin: 0 0 10px 0; }

.btn-clients {
  margin: 40px 0px 100px 0;
  display: inline-block; }
  @media (min-width: 768px) {
    .btn-clients {
      margin: 40px 0px 150px 10%; } }

.ml-5 {
  margin-left: 0; }
  @media (min-width: 768px) {
    .ml-5 {
      margin-left: 50px; } }

/* ==========================================================================
   Custom classes
   ========================================================================== */
.site-header {
  background-color: transparent; }
  .site-header .logo {
    display: inline-block;
    width: 160px;
    margin-top: 15px; }
    .site-header .logo img {
      width: 160px; }
    @media (min-width: 1200px) {
      .site-header .logo {
        width: 180px; }
        .site-header .logo img {
          width: 180px; } }
    @media (min-width: 1500px) {
      .site-header .logo {
        width: 200px; }
        .site-header .logo img {
          width: 200px; } }
    @media (min-width: 1700px) {
      .site-header .logo {
        width: 250px;
        margin-top: 10px; }
        .site-header .logo img {
          width: 250px; } }

.container {
  max-width: 1820px;
  margin: auto;
  padding: 50px 40px;
  position: relative;
  z-index: 1; }

.container-small {
  max-width: 1000px; }

.container-small-about {
  margin: 0 40px;
  max-width: 1000px; }
  @media (min-width: 768px) {
    .container-small-about {
      margin-left: 5%; } }
  @media (min-width: 1400px) {
    .container-small-about {
      margin-left: 5%; } }

main {
  margin-bottom: 100px;
  margin: auto; }
  main p {
    font-size: 16px; }
  main span {
    font-size: 16px; }
  main ul {
    list-style-type: none; }
    main ul li {
      position: relative;
      padding: 0px 10px 10px 30px;
      font-family: "Roboto", sans-serif;
      font-size: 16px !important; }
  main .container {
    padding: 50px 40px 20px 40px; }
    @media (min-width: 1300px) {
      main .container {
        padding: 50px 70px 0px 70px; } }
    @media (min-width: 1601px) {
      main .container {
        padding: 20px 70px 0px 70px; } }

.bgr-gray {
  background-color: #f7f7f7;
  padding-bottom: 100px; }

.bgr-blue {
  background-color: #064b6c;
  color: #fff; }
  .bgr-blue h1,
  .bgr-blue h2,
  .bgr-blue p {
    color: #fff; }

.breadcrumbs {
  font-size: 14px;
  opacity: 0.5;
  max-width: 1440px;
  padding: 5px 40px 5px 40px; }
  .breadcrumbs a {
    color: #000; }
  @media (min-width: 1300px) {
    .breadcrumbs {
      padding: 20px 0px 20px 0px; } }
  @media (min-width: 1601px) {
    .breadcrumbs {
      padding: 20px 0px 20px 0px; } }

.page-card .breadcrumbs {
  max-width: 1820px; }

.page-title {
  max-width: 1700px;
  margin: auto;
  padding: 0 40px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #d0000f;
  line-height: 34px; }
  @media (min-width: 1300px) {
    .page-title {
      font-size: 30px;
      padding: 0px 70px 0px 70px;
      line-height: 34px; } }
  @media (min-width: 1601px) {
    .page-title {
      font-size: 40px;
      line-height: normal;
      padding: 0px 55px 20px 0px; } }

footer {
  text-align: center;
  color: #000;
  padding: 0px 0 20px 0; }
  footer .footer-logo {
    width: 300px;
    margin-bottom: 20px; }
  footer .copyright {
    margin-top: 0px;
    opacity: 0.8;
    padding-top: 0;
    padding-bottom: 0; }
  footer .mt-70 {
    display: inline-block; }
    @media (min-width: 768px) {
      footer .mt-70 {
        margin-top: 70px; } }
  footer .container div {
    padding: 20px 20px;
    width: 100%;
    text-align: left; }
    @media (min-width: 768px) {
      footer .container div {
        width: 30%; } }
    footer .container div h5 {
      font-size: 24px;
      margin-bottom: 40px; }
    footer .container div ul {
      padding-left: 0; }
      footer .container div ul li {
        list-style: none;
        font-size: 14px; }
  footer a {
    color: #000;
    font-family: "Roboto", sans-serif; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
.transp {
  background-color: transparent !important; }

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

.show {
  display: block !important; }

.hide {
  display: none !important;
  visibility: hidden; }

.opacity-0 {
  opacity: 0; }

.opacity-zero {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  opacity: 0; }
  @media (min-width: 430px) {
    .opacity-zero {
      opacity: 1; } }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.absolute {
  position: relative !important; }

.pt-80 {
  padding-top: 20px; }
  @media (min-width: 992px) {
    .pt-80 {
      padding-top: 140px !important; } }
  @media (min-width: 1500px) {
    .pt-80 {
      padding-top: 180px !important; } }

.min-vh {
  margin-top: 100px;
  min-height: 55vh;
  position: relative; }
  @media (min-width: 767px) {
    .min-vh {
      min-height: 70vh; } }
  .min-vh .transp {
    padding: 0; }

.v-al {
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%; }

.flex-equal > * {
  flex: 1; }

@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1; } }
.loading {
  height: 100vh;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden; }
  .loading .loader {
    position: absolute;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    z-index: 4000;
    animation: loader 1s;
    background-color: #fff; }
    .loading .loader img {
      position: absolute;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 50%;
      top: 50%;
      width: 300px;
      opacity: 1 !important; }
    @media (min-width: 1400px) {
      .loading .loader img {
        width: 400px; } }
@keyframes loader {
  0% {
    transform: scale(1.2);
    opacity: 0; }
  50% {
    transform: scale(1);
    opacity: 1; }
  100% {
    opacity: 1; } }
  .loading main,
  .loading .site-header,
  .loading .breadcrumbs,
  .loading footer {
    opacity: 0 !important; }

footer {
  animation: fade 1.2s; }

.site-header,
.breadcrumbs {
  animation: fade 1.2s; }

main {
  animation: fade 1.5s; }

@keyframes animete-left {
  0% {
    transform: translate(-1000px, 0); }
  70% {
    transform: translate(-1000px, 0); }
  100% {
    transform: translate(0, 0); } }
@keyframes animete-clip {
  0% {
    right: 0;
    transform: translate(-3000px, 0);
    opacity: 0; }
  50% {
    transform: translate(-3000px, 0);
    right: 0;
    opacity: 0; }
  100% {
    transform: translate(auto, 0);
    right: 0;
    left: auto;
    opacity: 1; } }
@keyframes animete-top {
  0% {
    transform: translate(0, -1000px);
    opacity: 0; }
  70% {
    transform: translate(0, -1000px);
    opacity: 0; }
  100% {
    transform: translate(0, 0);
    opacity: 1; } }
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  header.scroll {
    background-color: #fff;
    position: fixed;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  header .navbar-toggler {
    border: 0 !important;
    box-shadow: none !important; }
    header .navbar-toggler .animated-icon1,
    header .navbar-toggler .animated-icon2,
    header .navbar-toggler .animated-icon3 {
      width: 30px;
      height: 20px;
      position: relative;
      margin: 0px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.5s ease-in-out;
      -moz-transition: 0.5s ease-in-out;
      -o-transition: 0.5s ease-in-out;
      transition: 0.5s ease-in-out;
      cursor: pointer; }
    header .navbar-toggler .animated-icon1 span,
    header .navbar-toggler .animated-icon2 span,
    header .navbar-toggler .animated-icon3 span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      -moz-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
    header .navbar-toggler .animated-icon3 span {
      background: #b4b4b4; }
    header .navbar-toggler .animated-icon3 span:nth-child(1) {
      top: 0px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
    header .navbar-toggler .animated-icon3 span:nth-child(2) {
      top: 10px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
    header .navbar-toggler .animated-icon3 span:nth-child(3) {
      top: 20px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
    header .navbar-toggler .animated-icon3.open span:nth-child(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 0px;
      left: 8px; }
    header .navbar-toggler .animated-icon3.open span:nth-child(2) {
      width: 0%;
      opacity: 0; }
    header .navbar-toggler .animated-icon3.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 21px;
      left: 8px; }
  header nav {
    max-width: 1820px;
    margin-right: auto;
    margin-left: auto;
    z-index: 50;
    position: relative !important;
    box-shadow: none !important; }
    header nav a.nav-link {
      color: #000;
      transition: color 0.15s ease-in-out;
      font-size: 0.8rem;
      font-family: "Roboto", sans-serif;
      text-align: center; }
      header nav a.nav-link:hover, header nav a.nav-link:active, header nav a.nav-link:focus, header nav a.nav-link.active {
        color: #000;
        opacity: 0.5 !important;
        text-decoration: none; }
    @media (min-width: 1300px) {
      header nav {
        padding-left: 50px;
        padding-right: 50px; }
        header nav a.nav-link {
          font-size: 1rem; } }
    @media (min-width: 1900px) {
      header nav {
        padding-left: 0px;
        padding-right: 0px; } }
  header .navbar-collapse {
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 0vh !important; }
    @media (min-width: 768px) {
      header .navbar-collapse .navbar-nav {
        height: auto;
        overflow: visible;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; } }
  header .navbar-collapse.show {
    overflow: hidden !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100vh !important;
    background-color: #fff; }

.left-menu {
  min-width: 300px; }

.navbar-collapse .dropdown-menu {
  background-color: #f7f7f7;
  border: 0;
  border-radius: 0;
  padding: 0 0 10px 0; }
  .navbar-collapse .dropdown-menu li:first-child .dropdown-item {
    font-weight: 600 !important;
    position: relative;
    margin-bottom: 10px; }
    .navbar-collapse .dropdown-menu li:first-child .dropdown-item::before {
      content: "";
      display: block;
      height: 1px;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #000;
      opacity: 0.3; }
  .navbar-collapse .dropdown-menu li .dropdown-item {
    padding: 0.5rem 2rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem; }
    @media (min-width: 1300px) {
      .navbar-collapse .dropdown-menu li .dropdown-item {
        font-size: 1rem; } }
    .navbar-collapse .dropdown-menu li .dropdown-item:hover, .navbar-collapse .dropdown-menu li .dropdown-item:active, .navbar-collapse .dropdown-menu li .dropdown-item:focus {
      background-color: #d9d9d9; }

.language {
  margin: 0 0 0 20px !important;
  display: none; }
  .language .dropdown-menu {
    background-color: #4e7d94;
    border: 0;
    border-radius: 0;
    padding: 0 0 0 0 !important;
    width: 120px;
    min-width: 120px !important;
    font-size: 16px !important; }
    .language .dropdown-menu li .dropdown-item {
      margin-bottom: 0 !important;
      padding: 0.5rem 0.5rem !important;
      text-align: center;
      color: #000;
      background-color: #d9d9d9; }
  .language .btn {
    font-size: 14px !important;
    min-width: 120px !important;
    color: #fff;
    background-color: #4e7d94; }
    .language .btn:active, .language .btn:focus {
      box-shadow: none;
      border: 0;
      opacity: 0.8; }

.right-menu {
  z-index: 40;
  margin-left: 20px; }
  .right-menu .search-menu {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 60px;
    height: 75px;
    transform: 0.5s;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
    padding-right: 10px;
    padding-top: 10px; }
    .right-menu .search-menu .icon-search {
      top: 8px;
      right: 12px;
      width: 40px;
      height: 40px;
      display: flex;
      z-index: 1000;
      cursor: pointer;
      position: absolute;
      border-radius: 60px;
      align-items: center;
      justify-content: center; }
      .right-menu .search-menu .icon-search::before {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        border-radius: 50%;
        border: 2px solid #000;
        transform: translate(-4px, -4px); }
      .right-menu .search-menu .icon-search::after {
        content: "";
        width: 3px;
        height: 12px;
        position: absolute;
        background: #000;
        transform: translate(6px, 6px) rotate(315deg); }
    .right-menu .search-menu::after {
      -moz-transform: translate(0%, -50%);
      -o-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
      content: '';
      display: block;
      height: 40%;
      position: absolute;
      top: 50%;
      right: 0;
      width: 2px;
      z-index: 1;
      background-color: #000; }
  .right-menu.active {
    z-index: 80; }
    .right-menu.active .search-menu {
      width: 100%; }
      .right-menu.active .search-menu .search-in {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid #d9d9d9; }
      .right-menu.active .search-menu .icon-search::before {
        border: 2px solid red; }
      .right-menu.active .search-menu .icon-search::after {
        background: red; }

.search-box {
  display: none;
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #fff;
  z-index: 1000;
  top: 10px;
  left: 0px; }
  .search-box .input-group {
    width: 100%;
    max-width: 1200px !important;
    margin: 40px auto 40px auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .search-box .input-group input {
      width: 100%;
      height: 100%;
      outline: none;
      font-size: 18px; }
      @media (min-width: 430px) {
        .search-box .input-group input {
          min-width: 300px; } }
      @media (min-width: 992px) {
        .search-box .input-group input {
          min-width: 500px; } }
  .search-box .icon-close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 20px;
    display: block;
    cursor: pointer; }

.accents {
  padding: 50px 0;
  margin-bottom: 150px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 50px;
  padding: 0px 40px 50px 40px;
  overflow: hidden; }
  .accents .acc-box {
    width: 33.3%;
    padding: 20px;
    position: relative; }
    @media (min-width: 1400px) {
      .accents .acc-box {
        padding: 0 40px; } }
    @media (min-width: 1601px) {
      .accents .acc-box {
        padding: 0 60px; } }
    @media (min-width: 1700px) {
      .accents .acc-box {
        padding: 0 80px; } }
    .accents .acc-box h2 {
      padding: 20px 10px 10px 140px;
      font-family: "Roboto", sans-serif;
      font-size: 1.6rem;
      color: #000;
      height: 130px; }
      @media (min-width: 1400px) {
        .accents .acc-box h2 {
          font-size: 1.6rem; } }
      @media (min-width: 1601px) {
        .accents .acc-box h2 {
          font-size: 1.8rem; } }
      @media (min-width: 1700px) {
        .accents .acc-box h2 {
          font-size: 2rem; } }
  .accents h1 {
    margin: 0 40px 20px 40px; }
    @media (min-width: 992px) {
      .accents h1 {
        margin: 0 40px; } }
  .accents h2 {
    font-size: 25px;
    font-weight: 400; }
    @media (min-width: 1200px) {
      .accents h2 {
        font-size: 20px; } }
  .accents p {
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical; }
  .accents a, .accents a:visited {
    color: #000 !important; }
  .accents .container {
    padding: 0;
    max-width: 1820px;
    margin: auto;
    background-color: #fff; }
    @media (min-width: 992px) {
      .accents .container {
        padding: 50px 40px 50px 40px; } }
    .accents .container .slider-acc {
      display: flex; }
      .accents .container .slider-acc .acc-box {
        width: 33.3%; }

.products {
  margin: 0px 0; }
  .products .container {
    padding: 0; }
  @media (min-width: 992px) {
    .products {
      margin: 50px 0; } }
  @media (min-width: 1500px) {
    .products {
      margin: 50px 0 150px 0; } }
  .products h1 {
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    color: #d0000f; }
  .products h2 {
    margin: 0 40px;
    font-size: 1.6rem;
    text-align: center; }
  .products h3 {
    color: #000;
    font-weight: 300;
    margin: 0 auto;
    font-size: 26px;
    padding-top: 20px;
    padding-bottom: 10px; }
    .products h3 span {
      display: block;
      font-size: 1.5rem;
      font-style: normal;
      font-weight: 200; }
  .products p {
    font-weight: 300; }

.news {
  position: relative;
  margin: auto;
  background-color: #fff; }
  .news .news-slide {
    position: relative;
    z-index: 2;
    max-width: 1820px;
    margin: auto; }
    .news .news-slide .slick-slide {
      position: relative; }
    .news .news-slide .news-info {
      width: 90%;
      position: relative;
      padding: 50px 10% 50px 12%;
      z-index: 2; }
      .news .news-slide .news-info h1,
      .news .news-slide .news-info h2,
      .news .news-slide .news-info h3,
      .news .news-slide .news-info h4,
      .news .news-slide .news-info p,
      .news .news-slide .news-info span {
        color: #000; }
      .news .news-slide .news-info h3 {
        margin: 5px 0; }
      .news .news-slide .news-info h4 {
        font-size: 18px;
        opacity: 0.8; }
      .news .news-slide .news-info span {
        position: relative;
        padding-right: 50px;
        font-size: 18px; }
        .news .news-slide .news-info span:after {
          -moz-transform: translate(0%, -50%);
          -o-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
          content: '';
          display: block;
          height: 1px;
          position: absolute;
          top: 50%;
          right: 0;
          width: 40px;
          z-index: 1;
          background-color: #000;
          transition: all 0.5s; }
      .news .news-slide .news-info a:hover span::after {
        -moz-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        content: '';
        display: block;
        height: 1px;
        position: absolute;
        top: 50%;
        right: 0;
        width: 10px;
        z-index: 1;
        background-color: #000;
        right: 30px; }
      .news .news-slide .news-info img {
        max-width: 100%; }
    .news .news-slide .slick-next {
      position: absolute;
      background-color: #064b6c;
      width: 60px;
      height: 60px;
      top: 45%;
      left: 88%;
      border: 0;
      font-size: 0; }
      .news .news-slide .slick-next:before {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: center; }
    .news .news-slide .slick-prev {
      display: none !important; }
  .news h1 {
    position: absolute;
    top: 20%;
    left: 8%;
    z-index: 3;
    color: #fff; }
  .news .news-img {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1; }

.page {
  max-width: 1440px;
  background-color: #fff;
  padding: 40px; }
  .page .story {
    margin-top: 0px;
    position: relative;
    padding-bottom: 50px; }
    @media (min-width: 768px) {
      .page .story {
        min-height: 700px;
        padding-top: 150px;
        margin-top: -200px; } }
    .page .story .bgr-blue {
      position: relative;
      width: 100%;
      z-index: 2;
      padding: 20px 20px; }
      @media (min-width: 768px) {
        .page .story .bgr-blue {
          min-height: 500px;
          padding: 50px 5%;
          max-width: 70%; } }
      @media (min-width: 1400px) {
        .page .story .bgr-blue {
          padding: 50px 15%; } }
    .page .story .story-image {
      display: none;
      top: 0;
      right: 0;
      z-index: 1; }
      @media (min-width: 768px) {
        .page .story .story-image {
          display: block;
          position: absolute;
          max-width: 70%; } }
  @media (min-width: 768px) {
    .page .pb-200 {
      padding-bottom: 150px; } }
  @media (min-width: 1601px) {
    .page {
      padding: 80px; } }

.page .slider {
  height: 400px !important; }

.slider {
  margin-top: 20px;
  position: relative;
  background-color: #fff;
  padding: 5px;
  height: 400px; }
  @media (min-width: 1200px) {
    .slider {
      margin-top: 40px; } }
  @media (min-width: 1700px) {
    .slider {
      max-width: 1820px;
      margin-left: auto;
      margin-right: auto; } }
  .slider h1 {
    font-size: 1.8rem;
    font-weight: 400; }
    .slider h1 strong {
      font-weight: 600; }
    @media (min-width: 1300px) {
      .slider h1 {
        font-size: 34px; } }
    @media (min-width: 1500px) {
      .slider h1 {
        font-size: 1.8rem; } }
    @media (min-width: 1700px) {
      .slider h1 {
        font-size: 1.8rem; } }
  .slider li,
  .slider p {
    font-size: 14px; }
    @media (min-width: 1300px) {
      .slider li,
      .slider p {
        font-size: 14px; } }
    @media (min-width: 1500px) {
      .slider li,
      .slider p {
        font-size: 14px; } }
    @media (min-width: 1700px) {
      .slider li,
      .slider p {
        font-size: 18px; } }
  .slider .slick-next,
  .slider .slick-prev {
    border: 0;
    background-color: transparent;
    font-size: 0;
    opacity: 0.5; }
  .slider .slick-next {
    position: absolute;
    right: 0;
    top: 50%;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    z-index: 10; }
    .slider .slick-next::before {
      position: absolute;
      right: 0;
      content: "";
      width: 50px;
      height: 50px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'%3E%3C/path%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 100%; }
  .slider .slick-prev {
    position: absolute;
    left: 0;
    top: 50%;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    z-index: 10; }
    .slider .slick-prev::before {
      position: absolute;
      left: 0;
      content: "";
      width: 50px;
      height: 50px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 100%; }
  .slider .slick-list,
  .slider .slick-slide,
  .slider .slick-track,
  .slider .slider-content {
    height: 100%; }
  .slider .slick-slide .slide-text {
    position: relative;
    width: 33.3%; }
    .slider .slick-slide .slide-text .centred {
      position: absolute;
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 50%;
      top: 50%; }
  .slider .slick-slide .slide-img,
  .slider .slick-slide .slide-img2 {
    width: 100%;
    position: relative; }
    .slider .slick-slide .slide-img .slide-img-mask,
    .slider .slick-slide .slide-img2 .slide-img-mask {
      position: absolute;
      margin: 20px;
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      z-index: 2;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
      .slider .slick-slide .slide-img .slide-img-mask .slide-img-text,
      .slider .slick-slide .slide-img2 .slide-img-mask .slide-img-text {
        position: absolute;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        text-align: center;
        color: #fff;
        width: 80%; }
        .slider .slick-slide .slide-img .slide-img-mask .slide-img-text h2,
        .slider .slick-slide .slide-img2 .slide-img-mask .slide-img-text h2 {
          font-size: 2rem;
          font-family: "Roboto", sans-serif;
          border-bottom: 1px dotted #9ba3a9;
          padding: 10px 0px;
          color: #fff; }
        .slider .slick-slide .slide-img .slide-img-mask .slide-img-text p,
        .slider .slick-slide .slide-img2 .slide-img-mask .slide-img-text p {
          font-size: 0.8rem !important;
          opacity: 0.7;
          margin: 10px; }
        .slider .slick-slide .slide-img .slide-img-mask .slide-img-text a,
        .slider .slick-slide .slide-img2 .slide-img-mask .slide-img-text a {
          display: inline-block;
          border: 2px solid #fff;
          padding: 5px 10px;
          opacity: 0.7;
          color: #fff; }
          .slider .slick-slide .slide-img .slide-img-mask .slide-img-text a:hover,
          .slider .slick-slide .slide-img2 .slide-img-mask .slide-img-text a:hover {
            background-color: #fff;
            color: #000; }
      .slider .slick-slide .slide-img .slide-img-mask:hover, .slider .slick-slide .slide-img .slide-img-mask:active, .slider .slick-slide .slide-img .slide-img-mask:focus,
      .slider .slick-slide .slide-img2 .slide-img-mask:hover,
      .slider .slick-slide .slide-img2 .slide-img-mask:active,
      .slider .slick-slide .slide-img2 .slide-img-mask:focus {
        opacity: 1; }
    .slider .slick-slide .slide-img img,
    .slider .slick-slide .slide-img2 img {
      width: 100%;
      position: relative;
      z-index: 1; }
  .slider .slick-slide .slide-img2 {
    width: 50% !important; }
    .slider .slick-slide .slide-img2 div {
      position: relative; }
      .slider .slick-slide .slide-img2 div .slide-img-text {
        width: 99% !important; }
  .slider .slick-slide .one-img {
    height: 50%;
    margin-right: 10px; }
  .slider .slick-slide .two-images {
    height: 50%;
    padding-top: 5px;
    margin-right: 10px; }
    .slider .slick-slide .two-images :first-child.slide-img {
      margin-right: 10px; }
  .slider .clips {
    position: absolute;
    right: 0;
    top: 0;
    width: 450px;
    z-index: 5;
    opacity: 1;
    animation: animete-clip 3s;
    display: none; }
    .slider .clips .clip-arrow {
      position: absolute;
      left: 0;
      top: 73px;
      width: 180px;
      height: 555px;
      animation: bgrchange 30s infinite;
      opacity: 1;
      background-position: center center;
      background-image: url("../images/slider/sofia1.jpg");
      background-size: cover;
      transition: 0.1s all;
      clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%); }
    .slider .clips .clip-arrow1 {
      position: absolute;
      left: 125px;
      width: 280px;
      height: 700px;
      background: url("../images/slider/sofia2.jpg") center center;
      background-size: cover;
      transition: 0.4s cubic-bezier(1, -1, 0, 2);
      clip-path: polygon(75% 0%, 98% 50%, 75% 100%, 0% 100%, 23% 50%, 0% 0%); }
    @media (min-width: 1200px) {
      .slider .clips {
        display: block; } }
    @media (min-width: 1500px) {
      .slider .clips {
        width: 580px; }
        .slider .clips .clip-arrow {
          width: 230px;
          height: 605px; }
        .slider .clips .clip-arrow1 {
          left: 162px;
          width: 330px;
          height: 750px; } }
    @media (min-width: 1601px) {
      .slider .clips {
        width: 650px; }
        .slider .clips .clip-arrow {
          width: 280px;
          height: 655px; }
        .slider .clips .clip-arrow1 {
          left: 200px;
          width: 380px;
          height: 800px; } }
    @media (min-width: 1700px) {
      .slider .clips {
        width: 700px; }
        .slider .clips .clip-arrow {
          width: 320px;
          height: 695px; }
        .slider .clips .clip-arrow1 {
          left: 230px;
          width: 420px;
          height: 840px; } }
@keyframes bgrchange {
  0% {
    background-image: url("../images/slider/sofia1.jpg"); }
  40% {
    background-image: url("../images/slider/sofia3.jpg"); }
  70% {
    background-image: url("../images/slider/sofia4.jpg"); }
  100% {
    background-image: url("../images/slider/sofia1.jpg"); } }
  .slider .dark-blue {
    background-color: #064b6c;
    width: 100%;
    z-index: 1;
    padding: 50px 0; }
    .slider .dark-blue h2 {
      font-size: 22px;
      font-family: "Roboto", sans-serif;
      color: #fff;
      margin: 0;
      padding: 0 50px; }
    @media (min-width: 1200px) {
      .slider .dark-blue {
        position: absolute;
        bottom: 0;
        height: 250px; }
        .slider .dark-blue h2 {
          width: 60%;
          position: absolute;
          -moz-transform: translate(0%, -50%);
          -o-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
          top: 50%;
          left: 50px;
          font-size: 25px; } }
    @media (min-width: 1300px) {
      .slider .dark-blue {
        height: 200px; }
        .slider .dark-blue h2 {
          font-size: 25px;
          left: 50px; } }
    @media (min-width: 1500px) {
      .slider .dark-blue {
        height: 250px; }
        .slider .dark-blue h2 {
          width: 55%;
          font-size: 30px;
          left: 100px; } }
    @media (min-width: 1700px) {
      .slider .dark-blue {
        height: 300px; }
        .slider .dark-blue h2 {
          width: 58%;
          font-size: 30px; } }

.prod-slider {
  position: relative; }
  .prod-slider .slick-list {
    margin: 0 50px; }
    .prod-slider .slick-list .prod-box {
      text-align: center; }
      .prod-slider .slick-list .prod-box .prod-img {
        text-align: center;
        margin: 0; }
        .prod-slider .slick-list .prod-box .prod-img img {
          margin: auto; }
  .prod-slider .slick-next {
    right: 0;
    top: 50%;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    z-index: 10;
    border: 0;
    font-size: 0;
    width: 50px;
    height: 50px;
    background-color: transparent; }
    .prod-slider .slick-next::before {
      position: absolute;
      right: 0;
      top: 0;
      content: "";
      width: 50px;
      height: 50px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'%3E%3C/path%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 100%; }
  .prod-slider .slick-prev {
    left: 0;
    background-color: transparent;
    top: 50%;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    z-index: 10;
    border: 0;
    font-size: 0;
    width: 50px;
    height: 50px; }
    .prod-slider .slick-prev::before {
      position: absolute;
      left: 0;
      top: 0;
      content: "";
      width: 50px;
      height: 50px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 100%; }

.gallery .card .card-img {
  text-align: center; }
  .gallery .card .card-img img {
    max-width: 100%;
    padding: 0px; }
.gallery .card .card-price {
  color: red; }

.prod-list {
  display: block; }
  @media (min-width: 768px) {
    .prod-list {
      display: flex;
      flex-wrap: wrap !important;
      align-content: stretch !important; } }
  .prod-list .prod-box {
    margin-bottom: 20px;
    align-items: stretch !important;
    width: 20%;
    min-width: 400px; }
    .prod-list .prod-box .card {
      padding: 1em;
      box-shadow: none;
      border-radius: 0;
      margin: 10px;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      @media (min-width: 1300px) {
        .prod-list .prod-box .card {
          padding: 1em; } }
      @media (min-width: 1601px) {
        .prod-list .prod-box .card {
          padding: 1em; } }
      .prod-list .prod-box .card a {
        opacity: 1;
        color: #000;
        height: 100%; }
      .prod-list .prod-box .card .card-img {
        border-radius: 0;
        position: relative;
        width: 100%;
        overflow: hidden;
        padding-bottom: 100%; }
        .prod-list .prod-box .card .card-img img {
          position: absolute;
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .prod-list .prod-box .card .card-img .look-produkt {
          position: absolute;
          position: absolute;
          -moz-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          left: 50%;
          top: 50%;
          z-index: 5;
          font-size: 0.6rem;
          background-color: rgba(255, 255, 255, 0.8);
          opacity: 0;
          border: 3px solid #fff;
          padding: 3px 5px;
          font-weight: bold;
          text-transform: uppercase;
          -webkit-transition: all 0.6s ease;
          -moz-transition: all 0.6s ease;
          -ms-transition: all 0.6s ease;
          -o-transition: all 0.6s ease;
          transition: all 0.6s ease; }
      .prod-list .prod-box .card .card-body p {
        font-size: 0.9rem;
        line-height: 1.1rem; }
      .prod-list .prod-box .card h1 {
        font-size: 1.2rem !important;
        font-weight: 300;
        text-transform: uppercase;
        font-weight: 700; }
      .prod-list .prod-box .card .card-variant {
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex; }
        .prod-list .prod-box .card .card-variant .card-v-box {
          margin: 5px;
          max-width: 55px;
          text-align: center;
          border: 1px solid gainsboro;
          position: relative; }
          .prod-list .prod-box .card .card-variant .card-v-box span {
            width: 100%;
            height: 30px;
            position: absolute;
            bottom: 0;
            font-size: 0.6rem !important;
            line-height: 0.8rem;
            text-transform: uppercase;
            z-index: 10;
            opacity: 0;
            left: 0;
            background-color: #000;
            padding: 1px 1px;
            vertical-align: middle;
            color: #fff;
            text-align: center; }
          .prod-list .prod-box .card .card-variant .card-v-box:hover span {
            opacity: 0.6; }
        .prod-list .prod-box .card .card-variant .card-img-v {
          width: 45px;
          height: 45px;
          overflow: hidden;
          position: relative;
          margin: auto; }
          .prod-list .prod-box .card .card-variant .card-img-v img {
            position: absolute;
            -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            left: 50%;
            top: 50%;
            top: 60%;
            width: 100px; }
      .prod-list .prod-box .card .card-price {
        font-size: 1.5rem;
        color: #a31a03; }
        .prod-list .prod-box .card .card-price .card-regular-price.promo {
          color: #000;
          opacity: 0.7;
          font-size: 1rem;
          text-decoration: line-through; }
        .prod-list .prod-box .card .card-price .card-reduced-price span {
          font-size: 1.2rem; }
      .prod-list .prod-box .card:hover .card-img .look-produkt {
        opacity: 0.8;
        -webkit-transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease; }

.page-card .product-container {
  background-color: #fff; }

.card {
  margin-top: 50px;
  padding: 3em;
  line-height: 1.5em;
  background-color: #fff;
  max-width: 1440px;
  margin: 0 auto 50px auto;
  border: 0; }
  .card .preview-thumbnail {
    border: none;
    margin-top: 15px;
    padding: 0; }
    @media (min-width: 768px) {
      .card .preview-thumbnail {
        display: flex;
        flex-wrap: wrap; } }
    .card .preview-thumbnail li {
      width: 18%;
      margin-right: 2%;
      display: inline-block;
      list-style: none;
      padding: 0 !important; }
      .card .preview-thumbnail li a {
        width: 100%;
        height: 120px;
        overflow: hidden;
        display: inline-block;
        position: relative;
        background-color: #fff; }
        .card .preview-thumbnail li a img {
          max-width: 100%;
          display: block;
          position: absolute;
          -moz-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          left: 50%;
          top: 50%; }
      .card .preview-thumbnail li:last-of-type {
        margin-right: 0; }
      .card .preview-thumbnail li:before {
        display: none !important; }

p {
  font-size: 1rem;
  font-weight: 400; }

strong {
  font-size: 1rem;
  font-weight: 400; }

@media (min-width: 768px) {
  .product-info-in {
    display: flex; } }

.images {
  width: 100%; }
  @media (min-width: 768px) {
    .images {
      width: 50%; } }
  .images img {
    max-width: 100%;
    width: 100%; }

.prices {
  margin-top: 30px; }
  .prices .regular-price {
    font-size: 20px;
    padding-right: 10px; }
    .prices .regular-price.promo {
      text-decoration: line-through;
      opacity: 0.7;
      font-size: 16px !important; }

.reduced-price {
  font-size: 20px;
  color: #730003; }

.details {
  width: 100%;
  padding-left: 0px; }
  @media (min-width: 768px) {
    .details {
      padding-left: 40px;
      width: 50%; } }
  .details .attribute {
    padding: 0.375rem 0.75rem; }
  .details .var-row {
    margin-bottom: 5px; }
    .details .var-row .attribute, .details .var-row label {
      font-size: 0.9rem;
      padding: 5px; }
  .details .buy {
    margin-top: 20px; }
    .details .buy .quantity {
      max-width: 60px; }
      .details .buy .quantity input {
        width: 100%;
        padding: 0.375rem 0.75rem; }
    .details .buy .btn {
      margin-left: 5px !important;
      background-color: #a31a03;
      color: #fff; }

.product-title,
.price,
.sizes,
.colors {
  font-weight: bold; }

.product-description, .variation-description {
  font-size: 1rem !important; }

.checked,
.price span {
  color: #ff9f1a; }

.product-title,
.rating,
.product-description,
.price,
.vote,
.sizes {
  margin-bottom: 15px; }

.product-title {
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #d0000f; }

.tooltip-inner {
  padding: 1.3em; }

.lightbox {
  top: 0 !important;
  left: 0 !important;
  z-index: 1200 !important;
  background-color: #fff !important; }
  .lightbox .img-show img {
    max-height: 95vh; }

.rel-prod,
.more-prod {
  position: relative;
  max-width: 1440px;
  margin: auto; }
  .rel-prod .product-wrapper,
  .more-prod .product-wrapper {
    max-width: 100%;
    padding-bottom: 20px;
    text-align: center; }
    .rel-prod .product-wrapper .product-image a,
    .more-prod .product-wrapper .product-image a {
      display: inline-block;
      position: relative;
      width: 100%;
      max-width: 300px;
      height: 300px;
      overflow: hidden;
      text-align: center;
      background-color: #fff;
      margin: auto; }
      .rel-prod .product-wrapper .product-image a img,
      .more-prod .product-wrapper .product-image a img {
        max-height: 100%;
        margin: auto;
        position: absolute;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%; }
    .rel-prod .product-wrapper .product-name,
    .more-prod .product-wrapper .product-name {
      font-size: 14px;
      margin-top: 10px; }
  @media (min-width: 430px) {
    .rel-prod .product-wrapper,
    .more-prod .product-wrapper {
      max-width: 50%; } }
  @media (min-width: 768px) {
    .rel-prod .product-wrapper,
    .more-prod .product-wrapper {
      max-width: 33%; } }
  .rel-prod .slick-prev,
  .rel-prod .slick-next,
  .more-prod .slick-prev,
  .more-prod .slick-next {
    position: absolute;
    top: 40%;
    position: absolute;
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    font-size: 0;
    width: 20px;
    height: 50px;
    z-index: 1000;
    padding: 0;
    border: 0;
    background-color: transparent; }
    .rel-prod .slick-prev:before,
    .rel-prod .slick-next:before,
    .more-prod .slick-prev:before,
    .more-prod .slick-next:before {
      content: "";
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-compact-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6.776 1.553a.5.5 0 0 1 .671.223l3 6a.5.5 0 0 1 0 .448l-3 6a.5.5 0 1 1-.894-.448L9.44 8 6.553 2.224a.5.5 0 0 1 .223-.671z'/%3E%3C/svg%3E");
      background-repeat: no-repeat no-repeat;
      background-position: center center;
      background-size: cover;
      opacity: 0.6; }
  .rel-prod .slick-prev,
  .more-prod .slick-prev {
    left: 0; }
    .rel-prod .slick-prev:before,
    .more-prod .slick-prev:before {
      transform: rotate(180deg); }
  .rel-prod .slick-next,
  .more-prod .slick-next {
    right: 0; }

.news-list .card {
  padding: 1em; }
  .news-list .card .news-img img {
    max-width: 100%; }
  .news-list .card .card-body img {
    max-width: 100%; }
@media (min-width: 1601px) {
  .news-list .card {
    padding: 1em 3em; } }
.news-list a {
  color: #000; }

.news-details {
  max-width: 800px;
  margin-bottom: 80px; }
  .news-details .news-det-img {
    max-width: 100%;
    margin-bottom: 40px; }
  .news-details .back-to-news {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 10px; }

.load-more {
  margin: auto;
  position: relative;
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  left: 50%;
  padding: 10px 60px;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 16px; }

.cookie {
  z-index: 20;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); }
  .cookie .cookie-info {
    padding: 25px 20px 25px 20px;
    width: calc(100% - 40px);
    background-color: #fff;
    position: absolute;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    max-width: 380px; }
    .cookie .cookie-info p {
      font-size: 11px;
      line-height: 18px;
      font-family: "Roboto", sans-serif;
      word-spacing: 0.1em;
      color: #000;
      text-align: justify; }
    .cookie .cookie-info button {
      font-size: 13px;
      padding: 10px;
      display: block;
      width: 100%;
      background-color: #000;
      color: #fff;
      border: 0;
      font-weight: 500; }
    @media (min-width: 768px) {
      .cookie .cookie-info {
        max-width: 380px; } }
  .cookie .btn-link {
    position: relative;
    margin: auto;
    display: block;
    text-align: center;
    font-size: 12px;
    color: black;
    margin-top: 20px;
    font-weight: 700;
    text-decoration: none; }
    .cookie .btn-link span {
      position: relative;
      padding-bottom: 3px;
      word-spacing: 0.1em; }
      .cookie .btn-link span::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #000; }

.basket {
  cursor: pointer;
  z-index: 60;
  position: relative;
  margin-top: 15px; }
  .basket .bi-cart4 {
    position: relative;
    font-size: 2rem;
    width: 50px;
    height: 35px;
    display: inline-block; }
    .basket .bi-cart4::before {
      position: absolute; }
    .basket .bi-cart4 span {
      font-size: 12px;
      width: 25px;
      height: 25px;
      position: relative;
      display: inline-block;
      color: #fff;
      padding: 5px;
      bottom: 10px;
      left: 25px; }
      .basket .bi-cart4 span b {
        position: absolute;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        display: inline-block; }
      .basket .bi-cart4 span::before {
        position: absolute;
        border-radius: 50px;
        background-color: #a31a03;
        position: absolute;
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        content: '';
        width: 100%;
        height: 100%;
        z-index: -1; }

.basket-info {
  position: absolute;
  top: 0px;
  right: 20px;
  z-index: 50;
  display: none; }
  .basket-info .basket-in {
    margin-top: 80px;
    font-size: 12px;
    background-color: #fff;
    padding: 10px 0;
    -webkit-box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
    height: 100%; }
    .basket-info .basket-in::before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      left: 83%;
      top: -20px;
      background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAnIGhlaWdodD0nMTAwJz4gICAgICAgIDxwb2x5bGluZSAgICAgICAgICAgIHBvaW50cz0nMCwxMDAgNTAsNTAgMTAwLDEwMCcgICAgICAgICAgICBmaWxsPScjZmZmJyAgICAgICAgICAgIHN0cm9rZT0ncmdiYSgwLCAwLCAwLCAwLjA1KScgICAgICAgICAgICBzdHJva2Utd2lkdGg9JzEnICAgICAgICAgICAgc3Ryb2tlLWxpbmVqb2luPSdtaXRlcicgICAgICAgIC8+ICAgIDwvc3ZnPg==);
      background-size: 100%; }
    .basket-info .basket-in .d-flex {
      border-bottom: 1px solid #eeeeee;
      padding: 5px 10px; }
      .basket-info .basket-in .d-flex .basket-image {
        width: 40px;
        height: 40px;
        position: relative;
        overflow: hidden;
        padding: 5px;
        margin-right: 5px; }
        .basket-info .basket-in .d-flex .basket-image img {
          max-height: 100%;
          height: 100%;
          position: absolute;
          -moz-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          left: 50%;
          top: 50%; }
      .basket-info .basket-in .d-flex .basket-title {
        width: 130px;
        position: relative; }
      .basket-info .basket-in .d-flex .basket-number {
        font-weight: bold;
        padding: 0 5px;
        min-width: 30px; }
      .basket-info .basket-in .d-flex .basket-price {
        padding: 0 5px;
        color: #64b448;
        font-weight: bold; }
    .basket-info .basket-in .basket-button {
      padding: 10px 5px 0 5px; }
      .basket-info .basket-in .basket-button .btn {
        margin-left: 5px !important;
        background-color: #64b448;
        color: #fff; }

.basket-table .img-fluid {
  max-width: 150px; }
.basket-table button {
  color: #a31a03;
  background-color: transparent !important;
  border: 0 !important;
  font-size: 12px; }
  .basket-table button .bi-trash {
    color: #a31a03; }
    .basket-table button .bi-trash:before {
      font-size: 20px; }

.billing-det .notes {
  font-size: 14px;
  color: #9d9d9d;
  line-height: 18px;
  padding-left: 35px; }

.back {
  margin-bottom: 50px;
  display: inline-block; }

.btn {
  border-radius: 0;
  font-size: 12px;
  min-width: 110px; }
  @media (min-width: 768px) {
    .btn {
      min-width: 150px; } }

.icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  font-size: 3rem;
  padding: 10px;
  color: #65b449;
  margin: 30px auto;
  position: relative; }
  .icon i {
    z-index: 1;
    position: absolute;
    position: absolute;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%; }
  .icon:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    border: 4px solid #65b449;
    border-radius: 50%;
    z-index: 0; }

.icon-delivery, .icon-gift, .icon-personal {
  width: 100px;
  height: 100px; }
  @media (min-width: 1400px) {
    .icon-delivery, .icon-gift, .icon-personal {
      width: 100px;
      height: 100px; } }
  @media (min-width: 1601px) {
    .icon-delivery, .icon-gift, .icon-personal {
      width: 110px;
      height: 110px; } }
  @media (min-width: 1700px) {
    .icon-delivery, .icon-gift, .icon-personal {
      width: 130px;
      height: 130px; } }

.icon-delivery {
  display: block;
  background-image: url(../images/icons/delivery.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px; }

.icon-gift {
  display: block;
  width: 130px;
  height: 130px;
  background-image: url(../images/icons/gift.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px; }

.icon-personal {
  display: block;
  width: 130px;
  height: 130px;
  background-image: url(../images/icons/personal-album.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px; }

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .slide {
    display: none; } }

/*# sourceMappingURL=style.css.map */
