﻿@import "fontawesome.min.css";
@import "all.min.css";
@import "brands.min.css";
@import "regular.min.css";
@import "solid.min.css";

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,::after,::before {
  box-sizing: border-box;
}

html, body{
  margin: 0px;
  padding: 0px;
}

body{
  background-color: #eef2f3;
  color: var(--cargo-black-navy);
  font-family: "Montserrat", sans-serif;
}

/* root */
:root{
  --cargo-black: #434A50;
  --cargo-black-rgb: 67, 74, 80;
  --cargo-black-navy: #2B373F;
  --cargo-black-navy-rgb: 43, 55, 63;
  --cargo-black-logo: #33495C;
  --cargo-black-logo-rgb: 51, 73, 92;
  --cargo-silver: #707070;
  --cargo-silver-light: #b9b9b9;
  --cargo-orange-light: #ff8800;
  --cargo-orange-light-rgb: 255, 136, 0;
  --cargo-orange: #FE6A0A;
  --cargo-orange-rgb: 254, 106, 10;
  --cargo-orange-navy: #EB5D09;
  --cargo-orange-navy-rgb: 235, 93, 9;
  --cargo-red: #dc3232;
}

button{
  border: 0px;
}

a{
  text-decoration: none;
  color: var(--cargo-black-logo);
  transition: color 0.3s;
}

a:hover{
  color: var(--cargo-orange);
}

a.btn,
button.btn{
  background-color: var(--cargo-orange-light);
  /* color: var(--cargo-black-logo); */
  color: #fff;
  font-weight: bold;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px rgba(209, 209, 209, 0.25);
  transition: background 0.3s;
  cursor: pointer;
}

a.btn:hover,
button.btn:hover{
  background-color: var(--cargo-orange);
}

/* barva textu */
.txt-black{
  color: var(--cargo-black-navy);
}

.txt-orange-light{
  color: var(--cargo-orange-light);
}

.txt-orange{
  color: var(--cargo-orange);
}

.txt-orange-navy{
  color: var(--cargo-orange-navy);
}

.txt-red{
  color: var(--cargo-red);
}
/* barva textu end */

/* text tučně */
.strong{
  font-weight: bold;
}
/* text tučně end */

/* align */
.txt-left{
  text-align: left;
}

.txt-center{
  text-align: center;
}

.txt-right{
  text-align: right;
}
/* align end */






/* header */
.header{
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 999;
}

  .header .header-container{
    max-width: 1320px;
    margin: 0px auto;
  }

    .header .header-container .menu-bar{
      display: flex;
      width: 100%;
      /* height: 115px; */
      height: 160px;
      /* background: #fff; */
      background: rgba(255, 255, 255, 0.85);
      border-radius: 10px;
      box-shadow: 0px 0px 4px 0px rgba(68, 68, 68, 0.25);
      /* opacity: 0.9; */
      backdrop-filter: blur(2px);
      transition: all 0.3s;
    }

    .header .header-container .menu-bar:hover{
      background: #fff;
    }

      .header .header-container .menu-bar .logo{
        width: 300px;
        height: 100%;
      }

        .header .header-container .menu-bar .logo a{
          display: flex;
          height: 100%;
          align-items: center;
          justify-content: center;
        }

          .header .header-container .menu-bar .logo img{
            height: 100%;
            filter: drop-shadow(0px 0px 4px rgba(68, 68, 68, 0.5));
          }

    .header .header-container .menu-bar .menu-container{
      width: calc(100% - 300px);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

      .header .header-container .menu-bar .menu-container .menu-top,
      .header .header-container .menu-bar .menu-top-mobile{
        position: relative;
        display: flex;
        width: 100%;
        height: 45px;
        background-color: rgba(var(--cargo-black-logo-rgb), 0.85);
        border-top-right-radius: 10px;
        border-bottom-left-radius: 7px;
        transition: all 0.3s;
      }

        .header .header-container .menu-bar .menu-container .menu-top div{
          display: flex;
          flex: auto;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          column-gap: 6px;
        }

        .header .header-container .menu-bar .menu-container .menu-top a{
          color: #fff;
        }

          .header .header-container .menu-bar .menu-container .menu-top div i{
            color: var(--cargo-orange-light);
            transition: color 0.3s;
          }

          .header .header-container .menu-bar .menu-container .menu-top div:hover i{
            color: var(--cargo-orange);
          }

          .header .header-container .menu-bar .menu-container .menu-top .social{
            justify-content: end;
            column-gap: 16px;
          }

          .header .header-container .menu-bar .menu-container .menu-top .social span{
            cursor: default;
            user-select: none;
          }

          .header .header-container .menu-bar .menu-container .menu-top .social a i{
            color: #fff;
            transition: color 0.3s;
          }

          .header .header-container .menu-bar .menu-container .menu-top .social a:hover i{
            color: var(--cargo-orange);
          }

          .header .header-container .menu-bar .menu-container .menu-top div span{
            color: #fff;
            font-weight: bold;
          }

      .header .header-container .menu-bar .menu-container .menu{
        width: 100%;
      }

        .header .header-container .menu-bar .menu-container .menu{
          width: 100%;
          height: calc(100% - 90px);
          display: flex;
          flex-direction: row;
          align-items: flex-end;
          font-weight: bold;
        }

          .header .header-container .menu-bar .menu-container .menu .menu-items{
            flex: 1 1 auto;
          }

            .header .header-container .menu-bar .menu-container .menu .menu-items ul{
              list-style-type: none;
              display: flex;
              flex-direction: row;
              column-gap: 8px;
              padding-left: 10px;
            }

              .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
                padding: 16px 22px;
                margin-right: 6px;
              }

              .header .header-container .menu-bar .menu-container .menu .menu-items ul li.active a{
                color: var(--cargo-orange-light);
              }

          .header .header-container .menu-bar .menu-container .menu .btn-ask{
            flex: 0 1 60px;
            /* height: 58px; */
            height: 67px;
            display: flex;
            align-items: center;
            padding-right: 12px;
          }

        .header .header-container .menu-bar .menu-container .menu-bottom{
          display: flex;
          width: 100%;
          height: 45px;
          color: #fff;
          font-size: 18px;
          /* background-color: var(--cargo-black-navy); */
          background-color: rgba(var(--cargo-black-logo-rgb), 0.85);
          border-bottom-right-radius: 10px;
          border-top-left-radius: 7px;
          transition: all 0.3s;
        }

        .header .header-container .menu-bar .menu-container .menu-bottom .wrapper {
          max-width: calc(100% - 10px);
          margin-left: 5px;
          overflow: hidden;
        }
        
        .header .header-container .menu-bar .menu-container .menu-bottom .marquee {
          white-space: nowrap;
          overflow: hidden;
          display: inline-block;
          animation: marquee 20s linear infinite;
          animation-delay: 1.5s;
        }

        .header .header-container .menu-bar .menu-container .menu-bottom .marquee strong{
          color: var(--cargo-orange-light);
        }
        
        .header .header-container .menu-bar .menu-container .menu-bottom .marquee p {
          display: inline-block;
          margin: 0px;
          padding: 12px;
        }
        
        @keyframes marquee {
          0% {
            transform: translate3d(0, 0, 0);
          }
          100% {
            transform: translate3d(-50%, 0, 0);
          }
        }

    .header .header-container .menu-bar:hover .menu-container .menu-top,
    .header .header-container .menu-bar:hover .menu-container .menu-bottom{
      background-color: var(--cargo-black-logo);
    }
          




  /* container */
  .container .content img{
    width: 100%;
  }

  .container .content .slogan{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    width: 1320px;
    text-align: center;
    /* background: rgba(68, 68, 68, 0.5); */
    background: rgba(var(--cargo-black-logo-rgb), 0.5);
    color: #fff;
    backdrop-filter: blur(4px);
    border-radius: 10px;
    text-shadow: 1px 1px rgba(209, 209, 209, 0.25);
    box-shadow: 0px 0px 4px 0px rgba(68, 68, 68, 0.25);
  }

    .container .content .slogan span{
      text-shadow: 1px 1px rgba(68, 68, 68, 0.75);
    }

    .container .content .slogan p{
      font-size: 22px;
      font-weight: bold;
      font-style: italic;
      padding: 12px 16px;
    }

  /* three slogan */
  .three-slogan-shot{
    display: flex;
    max-width: 1320px;
    margin: 0px auto;
    column-gap: 60px;
    margin-top: -108px;
  }

  .three-slogan-shot .mini-slogan{
    width: 33.3%;
    /* background-color: var(--cargo-orange-light); */
    background-color: rgba(var(--cargo-orange-light-rgb), 0.85);
    color: #fff;
    text-shadow: 1px 1px rgba(68, 68, 68, 0.25);
    border-radius: 7px;
    padding: 0px 15px 15px 15px;
    text-align: center;
    /* opacity: 0.9; */
    backdrop-filter: blur(2px);
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.25);
    transition: all 0.3s;
    cursor: default;
  }

  .three-slogan-shot .mini-slogan:hover{
    /* opacity: 1; */
    background-color: var(--cargo-orange-light);
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.5);
  }

  .three-slogan-shot .mini-slogan h2{
    font-size: 38px;
  }

  .three-slogan-shot .mini-slogan p{
    font-size: 18px;
  }

  .three-slogan-shot .mini-slogan p.let{
    font-size: 84px;
    font-weight: bold;
    margin: 10px 0px;
  }
  /* three slogan end */

  /* world map */
  .world-map{
    display: flex;
    max-width: 1320px;
    min-height: 600px;
    margin: -220px auto 0px auto;
    background: url('../img/mapa-sveta.png') center top no-repeat;
  }
  /* world map end */

  /* page */
  .page{
    /* display: flex; */
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.75) -30%, #fff 30%);
    width: 1320px;
    min-height: 600px;
    margin: -220px auto -40px auto;
    padding: 15px 35px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(68, 68, 68, 0.5);
    backdrop-filter: blur(2px);
  }

  .page h2{
    text-align: center;
    font-size: 24px;
    color: var(--cargo-orange-light);
  }

    .page h2 span.underline{
      position: relative;
    }

    .page h2 span.underline::before{
      position: absolute;
      content: '';
      width: 100%;
      height: 3px;
      bottom: -6px;
      background-color: var(--cargo-black-navy);
    }

  .page h3{
    margin-bottom: 45px;
  }

    .page h3 span.underline{
      position: relative;
    }

    .page h3 span.underline::before{
      position: absolute;
      content: '';
      width: 100%;
      height: 3px;
      bottom: -6px;
      background-color: var(--cargo-orange-light);
    }

  .page p{
    line-height: 26px;
  }

  

  /* ul */
  .page ul{
    line-height: 46px;
  }

  .page ul li{
    position: relative;
  }

  .page ul li span{
    position: absolute;
    bottom: -18px;
    left: 0px;
    font-size: 12px;
    font-style: italic;
  }

  .page ul li i{
    margin-right: 15px;
  }

  .page ul.num li{
    list-style-type: decimal;
  }

  .page ul.type-none li{
    list-style-type: none;
  }/* 

  .page ul.auto{
    list-style-image: url('../img/auto-16x16.png');
  } */

  .page ul li.strong{
    list-style-type: none;
    font-size: 18px;
    font-weight: bold;
    margin-left: -40px;
  }
  /* ul end */
  /* page end */

/* mapa */
  .mapa{
    width: 100%;
    align-self: stretch;
  }
  .mapa iframe{
    width: 100%;
    height: 90%;
    box-shadow: 0px 0px 4px 0px rgba(68, 68, 68, 0.5);
  }
/* mapa end */

/* form */
  .page label{
    font-style: italic;
    padding: 0px 0px 10px 0px;
  }

  .page input,
  .page select,
  .page textarea{
    width: 100%;
    height: 34px;
    border: 1px solid var(--cargo-silver);
    border-radius: 7px;
    padding: 5px 10px;
  }/* 

  .page input::placeholder,
  .page select::placeholder,
  .page textarea::placeholder{
    color: var(--cargo-silver-light);
  } */
  
  .page textarea[name="note"]{
    height: 254px;
    resize: none;
  }

  .page button.btn#odeslat-poptavku{
    height: 54px;
  }

  
/* form end */

/* notifications */
.notification-container{
  display: flex;
  width: 100%;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 7px;
  margin-top: 10px;
}

.notification-container .notification-icon{
  display: flex;
  flex: 0;
  padding: 4px 8px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.notification-container .notification{
  flex: 1;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  /* success */
  .notification-container.info{
    background-color: #CFE8F4;
    border-color: #66A4C2;
    color: #457DAF;
  }
  /* success end */

  /* success */
  .notification-container.warning{
    background-color: #F9F4D6;
    border-color: #E5E0AB;
    color: #977432;
  }
  /* success end */

  /* success */
  .notification-container.error{
    background-color: #ECC8C5;
    border-color: #DA9696;
    color: #B5413C;
  }
  /* success end */

  /* success */
  .notification-container.success{
    background-color: #DCF3D5;
    border-color: #ABDB9A;
    color: #5C714F;
  }
  /* success end */
/* notifications end */

/* emoji */
  .time-line-emoji{
    width: 80%;
    margin: 0px auto;
  }

    .time-line-emoji-items{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      row-gap: 55px;
    }

      .time-line-emoji-item{
        display: flex;
        width: 100%;
        height: auto;
      }

        .time-line-emoji-item .emoji{
          display: flex;
          align-items: center;
          flex: 0 130px;
          font-size: 55px;
          color: var(--cargo-orange-light);
        }

          /* .time-line-emoji-item .emoji i{
            width: 100%;
          } */
          
      .time-line-emoji-item .text{
        flex: 1 auto;
        padding-left: 15px;
        text-align: center;
      }

        .time-line-emoji-item .text h4{
          margin: 6px 0px;
        }

        .time-line-emoji-item .text p{
          /* line-height: 12px; */
        }
/* emoji end */
















  /* footer */
  .footer{
    display: flex;
    height: 326px;
    background-color: var(--cargo-black-logo);
    color: #fff;
    text-shadow: 1px 1px rgba(68, 68, 68, 0.25);
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.25);
  }

    .footer .footer-container{
      display: flex;
      width: 1320px;
      /* height: calc(100% - 50px); */
      /* height: 100%; */
      margin: 61px auto 0px auto;
      padding-bottom: 20px;
      font-size: 16px;
      text-align: center;
    }

      .footer .footer-container .footer-logo{
        flex: 40%;
        height: 100%;
        text-align: center;
        border-right: 1px dashed var(--cargo-silver);
      }

        .footer .footer-container .footer-logo .footer-logo-container{
          display: flex;
          flex-direction: column;
        }

          .footer .footer-container .footer-logo .footer-logo-container h3{
            font-size: 22px;
            margin-top: 5px;
            color: var(--cargo-orange-light);
          }

          .footer .footer-container .footer-logo .footer-logo-container .footer-logo-content{
            display: flex;
            flex-direction: row;
          }

            .footer .footer-container .footer-logo .footer-logo-container .footer-logo-content img{
              width: 192px;
              margin: 10px 0px;
              padding: 0px 5px;
              filter: drop-shadow(0px 0px 45px #fff);
            }

            .footer .footer-container .footer-logo .footer-logo-container .footer-logo-content .footer-logo-content-p p{
              padding: 0px 10px;
            }

      .footer .footer-container .footer-column{
        flex: 20%;
        height: 100%;
      }

      .footer .footer-container .footer-column:not(:last-child){
        border-right: 1px dashed var(--cargo-silver);
      }

      .footer .footer-container .footer-column h3{
        font-size: 22px;
        margin-top: 5px;
        color: var(--cargo-orange-light);
      }

      .footer .footer-container .footer-column.quick-links ul{
        list-style-type: none;
        padding: 0px;
      }

      .footer .footer-container .footer-column.quick-links ul li{
        padding: 5px 25px;
      }

      .footer .footer-container .footer-column.quick-links ul li a{
        color: #fff;
      }

      .footer .footer-container .footer-column.quick-links ul li a:hover,
      .footer .footer-container .footer-column.quick-links ul li.active a{
        color: var(--cargo-orange-light);
      }

      .footer .footer-container .footer-column.quick-contact ul{
        list-style-type: none;
        padding: 0px;
      }

      .footer .footer-container .footer-column.quick-contact ul{
        font-style: normal;
      }
      
      .footer .footer-container .footer-column.quick-contact ul li{
        padding: 5px 25px;
      }
      
      .footer .footer-container .footer-column.quick-contact ul li a{
        color: #fff;
      }
      
      .footer .footer-container .footer-column.quick-contact ul li a:hover{
        color: var(--cargo-orange-light);
      }

      
  /* footer end */

.menu-top-mobile{
  display: none !important;
}

































/* responsive */
/* 1453 */
@media all and (max-width: 1453px){
  .header{
    top: 0px;
  }
}
/* 1453 */
/* 1200 */
@media all and (max-width: 1380px){
  .header{
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
  }

  .header .header-container{
    max-width: 100%;
    margin: 0px;
  }

  .header .header-container .menu-bar{
    border-radius: 0px;
  }

  .header .header-container .menu-bar .logo{
    width: 175px;
  }

  .header .header-container .menu-bar .menu-container{
    width: calc(100% - 175px);
    border-radius: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu-top{
    font-size: 14px;
    border-top-right-radius: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu-bottom{
    font-size: 14px;
    border-bottom-right-radius: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul{
    justify-content: space-around;
    align-items: center;
    padding-left: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li{
    text-align: center;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
    /* padding: 0px; */
    margin-right: 0px;
  }


  .page{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
    padding: 15px;
  }

  .page label{
    font-size: 12px;
  }


  .footer{
    height: 100%;
  }
  
  .footer .footer-container{
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    margin: 0px;
  }

  .footer .footer-container h3{
    margin-top: 18px !important;
  }
}
/* 1200 */

/* 1067 */
@media all and (max-width: 1067px){
  .footer .footer-container .footer-logo{
    flex: 60%;
  }

  .footer .footer-container .footer-column.footer-column.quick-links{
    flex: 40%;
  }

  .footer .footer-container .footer-column.footer-column.quick-contact{
    flex: 50%;
    border-top: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container .footer-column.footer-column.support{
    flex: 50%;
    border-top: 1px dashed var(--cargo-silver);
  }
}
/* 1067 */

/* 991 */
@media all and (max-width: 991px){
  .header{
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
  }

  .header .header-container{
    max-width: 100%;
    margin: 0px;
  }

  .header .header-container .menu-bar{
    border-radius: 0px;
  }

  .header .header-container .menu-bar .logo{
    width: 175px;
  }

  .header .header-container .menu-bar .menu-container{
    width: calc(100% - 175px);
    border-radius: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu-top{
    font-size: 14px;
    border-top-right-radius: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu-bottom{
    font-size: 14px;
    border-bottom-right-radius: 0px;
  }

  /* .header .header-container .menu-bar .menu-container .menu .btn-ask{
    padding-right: 0px;
  } */

  .header .header-container .menu-bar .menu-container .menu .menu-items ul{
    justify-content: space-around;
    align-items: center;
    padding-left: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li{
    text-align: center;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
    padding: 0px;
    margin-right: 0px;
  }


  .page{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
    padding: 15px;
  }

  .page label{
    font-size: 12px;
  }


  .footer{
    height: 100%;
  }
  
  .footer .footer-container{
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    margin: 0px;
  }

  .footer .footer-container .footer-logo{
    flex: 60%;
  }

  .footer .footer-container .footer-column.footer-column.quick-links{
    flex: 40%;
  }

  .footer .footer-container .footer-column.footer-column.quick-contact{
    flex: 50%;
    border-top: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container .footer-column.footer-column.support{
    flex: 50%;
    border-top: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container h3{
    margin-top: 18px !important;
  }
}
/* 991 */

/* 767 */
@media all and (max-width: 767px){
  .header{
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
  }

  .header .header-container{
    max-width: 100%;
    margin: 0px;
  }

  .header .header-container .menu-bar{
    flex-direction: column;
    border-radius: 0px;
    height: auto;
  }

  .header .header-container .menu-bar .logo{
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--cargo-black);
  }

  .header .header-container .menu-bar .logo a{
    width: 50%;
  }

  .header .header-container .menu-bar .menu-top-mobile{
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
    height: auto;
    font-size: 16px;
    border-radius: 0px;
    color: #fff;
  }

  .header .header-container .menu-bar .menu-top-mobile a{
    width: 100%;
    color: #fff;
    justify-content: flex-start;
  }

  .header .header-container .menu-bar .menu-top-mobile i{
    color: var(--cargo-orange-light);
  }

  .header .header-container .menu-bar .menu-top-mobile div{
    display: flex;
    align-items: center;
    height: 36px;
    padding: 4px 8px;
  }

  .header .header-container .menu-bar .menu-top-mobile div.social a{
    justify-content: center;
  }

  .header .header-container .menu-bar .menu-top-mobile div span{
    padding-left: 6px;
  }

  .header .header-container .menu-bar .menu-container{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu-top{
    display: none;
  }

  .header .header-container .menu-bar .menu-container .menu{
    height: auto;
    flex-direction: column;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu .btn-ask{
    width: 100%;
    justify-content: center;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul{
    flex-direction: row;
    align-items: center;
    padding-left: 0px;
  }
  
  .header .header-container .menu-bar .menu-container .menu .menu-items ul li{
    padding: 15px 0px;
    text-align: center;
    width: 50%;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
    margin: 0px;
    padding: 0px;
    flex-direction: column;
  }


  .header .header-container .menu-bar .menu-container .menu-bottom{
    height: 32px;
    border-radius: 0px;
    font-size: 14px;
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.25);
  }

  .header .header-container .menu-bar .menu-container .menu-bottom .marquee p{
    padding: 8px;
  }


  .container .content{
    position: relative;
  }

  .container .content .slogan{
    width: 90%;
    transform: translate(-50%, -50%);
  }

  .container .content .slogan h1{
    font-size: 26px;
  }

  .container .content .slogan p{
    padding: 0px;
    font-size: 16px;
  }

  .three-slogan-shot{
    flex-direction: column;
    align-items: center;
    width: 100%;
    column-gap: 0px;
    row-gap: 12px;
    margin: 8px 0px 12px 0px;
    background: url(../img/mapa-sveta.png) center center no-repeat;
  }

  .world-map{
    display: none;
  }

  .three-slogan-shot .mini-slogan{
    width: 90%;
  }

  .three-slogan-shot .mini-slogan h2{
    font-size: 32px;
  }

  .three-slogan-shot .mini-slogan p{
    font-size: 18px;
  }


  .page{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }


  .footer{
    height: 100%;
  }

  .footer .footer-container{
    flex-direction: column;
    width: 100%;
    margin-top: 18px;
  }

  .footer .footer-container .footer-logo{
    border-bottom: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container .footer-column:not(:last-child){
    border-bottom: 1px dashed var(--cargo-silver);
    padding: 0px 0px 16px 0px;
  }

  .footer .footer-container .footer-column h3{
    margin-top: 18px;
  }
}
/* 767 */

/* 575 */
@media all and (max-width: 575px){
	.header{
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
  }

  .header .header-container{
    max-width: 100%;
    margin: 0px;
  }

  .header .header-container .menu-bar{
    flex-direction: column;
    border-radius: 0px;
    height: auto;
  }

  .header .header-container .menu-bar .logo{
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--cargo-black);
  }

  .header .header-container .menu-bar .logo a{
    width: 50%;
  }

  .header .header-container .menu-bar .menu-top-mobile{
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
    height: auto;
    font-size: 15px;
    border-radius: 0px;
    color: #fff;
  }

  .header .header-container .menu-bar .menu-top-mobile a{
    width: 100%;
    color: #fff;
    justify-content: flex-start;
  }

  .header .header-container .menu-bar .menu-top-mobile i{
    color: var(--cargo-orange-light);
  }

  .header .header-container .menu-bar .menu-top-mobile div{
    display: flex;
    align-items: center;
    height: 36px;
    padding: 4px 8px;
  }

  .header .header-container .menu-bar .menu-top-mobile div.social a{
    justify-content: center;
  }

  .header .header-container .menu-bar .menu-top-mobile div span{
    padding-left: 6px;
  }

  .header .header-container .menu-bar .menu-container{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu-top{
    display: none;
  }

  .header .header-container .menu-bar .menu-container .menu{
    height: auto;
    flex-direction: column;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu .btn-ask{
    width: 100%;
    justify-content: center;
    padding-right: 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul{
    flex-direction: column;
    align-items: center;
  }
  
  .header .header-container .menu-bar .menu-container .menu .menu-items ul li{
    padding: 6px 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
    margin: 0px;
    padding: 0px;
    flex-direction: column;
  }


  .header .header-container .menu-bar .menu-container .menu-bottom{
    height: 32px;
    border-radius: 0px;
    font-size: 14px;
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.25);
  }

  .header .header-container .menu-bar .menu-container .menu-bottom .marquee p{
    padding: 8px;
  }


  .container .content{
    position: relative;
  }

  .container .content .slogan{
    width: 90%;
    transform: translate(-50%, -50%);
  }

  .container .content .slogan h1{
    font-size: 16px;
  }

  .container .content .slogan p{
    padding: 0px;
    font-size: 12px;
  }

  .three-slogan-shot{
    flex-direction: column;
    align-items: center;
    width: 100%;
    column-gap: 0px;
    row-gap: 12px;
    margin: 8px 0px 12px 0px;
    background: url(../img/mapa-sveta.png) center center no-repeat;
  }

  .world-map{
    display: none;
  }

  .three-slogan-shot .mini-slogan{
    width: 90%;
  }

  .three-slogan-shot .mini-slogan h2{
    font-size: 24px;
  }

  .three-slogan-shot .mini-slogan p{
    font-size: 14px;
  }


  .page{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }


  .footer{
    height: 100%;
  }

  .footer .footer-container{
    flex-direction: column;
    width: 100%;
    margin-top: 18px;
  }

  .footer .footer-container .footer-logo{
    border-bottom: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container .footer-column:not(:last-child){
    border-bottom: 1px dashed var(--cargo-silver);
    padding: 0px 0px 16px 0px;
  }

  .footer .footer-container .footer-column h3{
    margin-top: 18px;
  }
}
/* 575 */

/* 508 */
@media all and (max-width: 508px){
  .header{
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
  }

  .header .header-container{
    max-width: 100%;
    margin: 0px;
  }

  .header .header-container .menu-bar{
    flex-direction: column;
    border-radius: 0px;
    height: auto;
  }

  .header .header-container .menu-bar .logo{
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--cargo-black);
  }

  .header .header-container .menu-bar .logo a{
    width: 50%;
  }

  .header .header-container .menu-bar .menu-top-mobile{
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 50%;
    height: auto;
    font-size: 13px;
    border-radius: 0px;
    color: #fff;
  }

  .header .header-container .menu-bar .menu-top-mobile a{
    width: 100%;
    color: #fff;
    justify-content: flex-start;
  }

  .header .header-container .menu-bar .menu-top-mobile i{
    color: var(--cargo-orange-light);
  }

  .header .header-container .menu-bar .menu-top-mobile div{
    display: flex;
    align-items: center;
    height: 36px;
    padding: 4px 8px;
  }

  .header .header-container .menu-bar .menu-top-mobile div.social a{
    justify-content: center;
  }

  .header .header-container .menu-bar .menu-top-mobile div span{
    padding-left: 6px;
  }

  .header .header-container .menu-bar .menu-container{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu-top{
    display: none;
  }

  .header .header-container .menu-bar .menu-container .menu{
    height: auto;
    flex-direction: column;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items{
    width: 100%;
  }

  .header .header-container .menu-bar .menu-container .menu .btn-ask{
    width: 100%;
    justify-content: center;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul{
    flex-direction: column;
    align-items: center;
  }
  
  .header .header-container .menu-bar .menu-container .menu .menu-items ul li{
    padding: 6px 0px;
  }

  .header .header-container .menu-bar .menu-container .menu .menu-items ul li a{
    margin: 0px;
    padding: 0px;
    flex-direction: column;
  }


  .header .header-container .menu-bar .menu-container .menu-bottom{
    height: 32px;
    border-radius: 0px;
    font-size: 14px;
    box-shadow: 0px 0px 18px 4px rgba(68, 68, 68, 0.25);
  }

  .header .header-container .menu-bar .menu-container .menu-bottom .marquee p{
    padding: 8px;
  }


  .container .content{
    position: relative;
  }

  .container .content .slogan{
    width: 90%;
    transform: translate(-50%, -50%);
  }

  .container .content .slogan h1{
    font-size: 16px;
  }

  .container .content .slogan p{
    padding: 0px;
    font-size: 12px;
  }

  .three-slogan-shot{
    flex-direction: column;
    align-items: center;
    width: 100%;
    column-gap: 0px;
    row-gap: 12px;
    margin: 8px 0px 12px 0px;
    background: url(../img/mapa-sveta.png) center center no-repeat;
  }

  .world-map{
    display: none;
  }

  .three-slogan-shot .mini-slogan{
    width: 90%;
  }

  .three-slogan-shot .mini-slogan h2{
    font-size: 24px;
  }

  .three-slogan-shot .mini-slogan p{
    font-size: 14px;
  }


  .page{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }


  .footer{
    height: 100%;
  }

  .footer .footer-container{
    flex-direction: column;
    width: 100%;
    margin-top: 18px;
  }

  .footer .footer-container .footer-logo{
    border-bottom: 1px dashed var(--cargo-silver);
  }

  .footer .footer-container .footer-column:not(:last-child){
    border-bottom: 1px dashed var(--cargo-silver);
    padding: 0px 0px 16px 0px;
  }

  .footer .footer-container .footer-column h3{
    margin-top: 18px;
  }
}
/* 508 end */








/* GRID */
.row{
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
  margin: 15px 0px;
}

.row [class*="col-"]{
  display: flex;
  flex-direction: column;
  padding: 0 5px;
  margin-bottom: 10px;
}

.row.r .row [class*="col-"]{
  padding: 0;
}

.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,
.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,
.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,
.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,
.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{
  width: 100%;
  position: relative;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}
/* GRID end */









/* GRID */

@media(min-width: 1200px){

  .col-xl-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%
  }

  .col-xl-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%
  }

  .col-xl-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%
  }

  .col-xl-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%
  }

  .col-xl-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%
  }

  .col-xl-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%
  }

  .col-xl-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%
  }

  .col-xl-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%
  }

  .col-xl-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%
  }

  .col-xl-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%
  }

  .col-xl-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%
  }

  .col-xl-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%
  }

  .col-xl-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%
  }
}


@media(min-width: 992px){

  .col-lg-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%
  }

  .col-lg-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%
  }

  .col-lg-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%
  }

  .col-lg-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%
  }

  .col-lg-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%
  }

  .col-lg-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%
  }

  .col-lg-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%
  }

  .col-lg-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%
  }

  .col-lg-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%
  }

  .col-lg-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%
  }

  .col-lg-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%
  }

  .col-lg-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%
  }

  .col-lg-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%
  }
}

@media(min-width: 768px){

  .col-md-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%
  }

  .col-md-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%
  }

  .col-md-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%
  }

  .col-md-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%
  }

  .col-md-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%
  }

  .col-md-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%
  }

  .col-md-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%
  }

  .col-md-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%
  }

  .col-md-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%
  }

  .col-md-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%
  }

  .col-md-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%
  }

  .col-md-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%
  }

  .col-md-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%
  }
}


@media(min-width: 576px){
  .col-sm-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%
  }

  .col-sm-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%
  }

  .col-sm-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%
  }

  .col-sm-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%
  }

  .col-sm-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%
  }

  .col-sm-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%
  }

  .col-sm-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%
  }

  .col-sm-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%
  }

  .col-sm-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%
  }

  .col-sm-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%
  }

  .col-sm-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%
  }

  .col-sm-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%
  }

  .col-sm-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%
  }
}
/* GRID end */
/* Responsive end */





