* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

body {
    background: no-repeat center center fixed;
    width: 100%;
    background-color: white;
    -webkit-animation: change-bg 20s ease infinite;
    animation: change-bg 20s ease infinite;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    transition: background-image 1s ease-in-out;
  }
  
  @-webkit-keyframes change-bg{
    0% { 
        background-image:  url('./img/bg2.jpg');
        background-size: cover;
        background-position: center center; 
    }
    25% { 
        background-image: url('./img/bg3.jpg'); 
        background-size: cover;
        background-position: center center;
    }
    50% { 
        background-image: url('./img/bg4.jpg'); 
        background-size: cover;
        background-position: center center;
    }
    75% { 
        background-image: url('./img/bg5.jpg'); 
        background-size: cover;
        background-position: center center;
    }
    100% { 
        background-image: url('./img/bg2.jpg'); 
        background-size: cover;
        background-position: center center;
    }
  }
  
  @keyframes change-bg {
    0% { background-image:  url('./img/bg2.jpg');  }
    25% { background-image: url('./img/bg3.jpg'); }
    50% { background-image: url('./img/bg4.jpg'); }
    75% { background-image: url('./img/bg5.jpg'); }
    100% { background-image: url('./img/bg2.jpg'); }
  }

  #preload {
      display:none;
  }

  #home {
      position: relative;
      height: 100vh;
      width: 100vw;
  }

  #home .quote {
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

#home .overlay {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: black;
    opacity: 0.2;
}

.quote h1 {
    color: white; 
    text-shadow: 0px 4px 4px rgba(0,0,0,0.7);
    width: 711px;
    text-align: center;
    font-size: 35px;
    line-height: 1.4;
    letter-spacing: 5px;
}

.blue-bar {
    position: fixed;
    height: 5px;
    width: 100%;
    background-color: #355E8B;
    z-index: 11;
}

.header-nav .tel {
    position: fixed;
    right: 8%;
    top: 21px;
    font-size: 15px;
    color: #35B1E5;
    cursor: inherit;
    transition: all 0.3s linear;
    margin-right: 60px;
}

.tel i, .mail i {
    padding-right: 10px;
    font-size: 18px;
    cursor: inherit !important;
}

.tel, .mail {
    display: flex;
}

.languages {
    position: fixed;
    right: 44px;
    top: 20px;
}

.languages a {
    color: #355E8B;
    font-size: 12px;
    font-weight: 400;
    padding-right: 5px;
    text-decoration: none;
    border-right: 1px solid #355E8B;
}

.languages a:nth-child(1){
    border: none;
    padding-right: 0px;
}

nav.stroke ul li a {
  position: relative;
  padding-bottom: 5px;
}

nav.stroke ul li a:hover {
    color: #35B1E5;
}

ul li a.active {
    color: #35B1E5 !important;
}


.languages a:after,
nav.stroke ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #355E8B;
  height: 1px;
  transition: all 0.3s linear;
}
.languages a:hover {
    color: #35B1E5;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

.header-nav {
      position: fixed;
      width: 100%;
      height: 140px; 
      background-color: white; 
      z-index: 10;
      transition: all 0.3s linear;
      -webkit-box-shadow: 0px 6px 9px -1px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 6px 9px -1px rgba(0,0,0,0.15);
box-shadow: 0px 6px 9px -1px rgba(0,0,0,0.15); 
  }

.header-nav-active {
    height: 100px;
}

.header-nav img {
      position: absolute;
      top: 40px; 
      left: 10%;
      width: 180px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      
      transition: all 0.3s linear;
  }

.header-nav nav {
      position: absolute;
      right: 8%;
      top: 60px;
      transform: translateY(0);
      transition: all 0.3s linear;

  }
.header-nav ul {
      display: flex;
  }

.header-nav ul li {
      list-style-type: none;
      margin-right: 60px; 
      font-size: 14px;
      font-weight: 400;
      transform: translateY(20px);
  }

.header-nav ul a {
      text-decoration: none;
      color: #355E8B;
  }

.mouse {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mouse .scrollmouse {
    width: 25px; 
    position: absolute;
    bottom: 80px;
}

.mouse .scrollarrow {
    width: 20px;
    position: absolute;
    bottom: 55px;
}

.mouse .scrolldot {
    width: 5px;
    animation: scrollDot 1s ease-in infinite;
    position: absolute;
    bottom: 100px;
}

@keyframes scrollDot {
    0%{
        transform: translateY(0px);
    }
    80%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0px);
    }
}

main {
    background-color: white; 
}
#services {
    position: relative;
    height: 70%;
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
}
#services a:hover {
    text-decoration: underline;
}
#services h2, #partners h2 {
    font-weight: 500;
    font-size: 20px;
    color: #355E8B;
    padding-top: 50px;
    padding-bottom: 30px;
    letter-spacing: 0.03em;
    position: relative;
}

#services h2::after, #partners h2::after {
    content: "";
    width: 34px;
    position: absolute;
    border-bottom: 2px solid #35B1E5;
    position: absolute;
    left: calc(50% - 17px);
    margin-top: 40px;
}

.services-flex {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 850px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    padding-bottom: 30px;
    transition: all 1s ease-out;
}

/*scroll appear*/
.contact-content,
.text,
.news-text,
.container-services {
    opacity: 0; 
    transform: translateY(20px);
    transition: 1s all ease-in-out;
}

.appear {
    opacity: 1 !important;
    transform: translateY(0px);
}

/*scrollbar*/

.services-flex::-webkit-scrollbar {
    height: 7px;
  }
  
.services-flex::-webkit-scrollbar-thumb {
    background-color:#355E8B;
  }

.services-flex::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }

.services-flex::-webkit-scrollbar-button {
    display: block;
    width: 5px;
}

.services-box {
    padding: 10px;
    margin-right: 10px; 
}

.services-box:last-child{
    margin-right: 20px;
}

.services-box:hover {
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.15);
}

.services-box h3 {
    color: #35B1E5;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
}

.services-box p {
    font-size: 12px;
    font-weight: 100;
    line-height: 18px;
    letter-spacing: 0.02em;
    margin-right: 10px;
    margin-left: 10px;
    text-align: initial;
}

.services-img {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-borescope {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/mitcorp.png");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-generator {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/Zenoro_Premium_Xeamos.jpg");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-gearbox {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/gearbox.JPG");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-elastic {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/elasticcoupling.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-engine {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/engine.jpg");
    background-size: cover;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-outboard {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/outboardengine.jpg");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-shipyard {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/shipyard.jpg");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-stable {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/stable.png");
    background-size: cover;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-praxis {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/praxis-bridge.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-alara {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/Omkasting-generatorset.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-stabilizer {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/stabilizer.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-steer {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/Schottel-SPJ-Pump-Jet.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-electric {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/Auxilia\ Hybrid\ Kit\ image.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-exhaust {
    width: 250px;
    height: 150px;
    margin: 0 auto;
    background-image: url("./img/TIO\ Mirrorplate\ thermal\ insulations.jpg");
    background-size: cover;
    border-bottom-right-radius: 30px;
    margin-bottom: 20px;
}
.services-row {
    display: flex;
}

.container-services {
    position: relative;
    width: 900px;
    margin: 0 auto;
}

.fa-chevron-right {
    font-size: 20px;
    color: #355E8B;
    position: absolute;
    left: 98%;
    top: 50%;
}

.fa-chevron-left {
    font-size: 20px;
    color: #355E8B;
    position: absolute;
    left: 0%;
    top: 50%;
}

#about h2, #news h2 {
    font-weight: 500;
    font-size: 20px;
    color: #355E8B;
    padding-bottom: 50px;
    letter-spacing: 0.03em;
}

#about h2::after, #news h2::after {
    content: "";
    width: 34px;
    position: absolute;
    border-bottom: 2px solid #35B1E5;
    left: calc(50% - 17px);
    margin-top: 40px;
}

#about, #news {
        position: relative;
        width: 80%;
        margin: 0 auto;
        text-align: center;
        padding-top: 50px;
        margin-bottom: 100px;
}

#contact .bg-image {
    position: absolute;
    height: 800px;
    left: -400px;
    opacity: 0.1;
    transform: translateY(-70px);
    z-index: -1;
}

.about-content, .news-content{
    width:900px;
    margin: 0 auto; 
    display: flex; 
}

.marco .img {
    height: 100px;
    width: 100px;
    background-image: url("img/Miojn\ WhatsApp\ foto.jpeg");
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    background-position: center center;
    background-size: cover;
    border-radius: 50px;
    margin-right: 20px;
}
.marco {
    display: flex;
    height: 100px;
    padding-left: 10px;
    padding-top: 20px;
}
.marco p {
    padding: 0px !important;
}
.marco-tekst {
    padding-top: 15px;
    text-align: left;
}
#locations {
    margin-top: 20px;
    padding-top: 40px;
    background-color: rgba(53, 95, 139, 0.089);
    width: 100%;
    min-height: 250px;
}

.locations-flex {
    width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}
#destination {
    padding-bottom: 30px
}
.medit-flex {
    display: inline;
}

.locations-text {
    color: #355E8B;
}
.locations-map {
    padding-top: 45px;
    padding-right: 5px;
}
.locations-text h3 {
    color: #35B1E5;
    padding-bottom: 15px;
    padding-top:20px;
}

.locations-text p {
    padding-bottom: 15px;
}
.locations-text p i {
    color: #35B1E5;
    padding-right: 10px;
}
.locations-text button {
    background-color: #35B1E5;
    padding: 12px;
    font-size: 14px;
    color: white;
    font-family: Roboto, sans-serif;
    letter-spacing: 1.3px;
}
#partners {
    width: 100%;
    height: 100%;
    color: #355E8B;
    text-align: center;
}
.partners-flex {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
    margin-top: 20px;
}
.partners-flex h1 {
    font-weight: 500;
    margin-right: 20px;
}
.partners-flex img {
    margin-right: 10px;
    margin-bottom: 20px;
}
.bg-content {
    height: auto;
    width: 55%;
    background-image: url('img/foto_aboutus_amiral.jpg');
    background-size: cover;
    background-position: center center;
    border-bottom-right-radius: 60px;
}
.bg-content-news {
    height: auto;
    width: 55%;
    background-image: url('img/Zenoro_Premium_Xeamos_2.jpg');
    background-size: contain;
    background-position: center center;
    border-bottom-right-radius: 60px;
    background-repeat: no-repeat;
}

.text, .news-text {
    height: auto;
    width: 45%;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    padding-right: 20px;
    z-index: 9;
}

.text p, .news-text p {
    padding: 10px; 
    text-align: justify;
}

#contact {
    position: relative;
    height: 100%;
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-weight: 100;
    padding-top:20px;
    transform: translateY(-70px);
}

#contact h2 {
    font-weight: 500;
    font-size: 2Opx;
    color: #355E8B;
    padding-bottom: 50px;
    padding-top: 50px;
    letter-spacing: 0.03em;
}

#contact h2::after {
    content: "";
    width: 34px;
    position: absolute;
    border-bottom: 2px solid #35B1E5;
    left: calc(50% - 17px);
    padding-top: 40px;
}
.contact-intro {
    width: 40%;
    position: relative;
    padding-right: 50px;
    padding-top: 20px;
    text-align: left;
}
.contact-intro h2::after {
    border-bottom: none !important;
}
.contact-intro h2 {
    width: 200px;
    padding-bottom: 0px !important;
}
.contact-intro h3 {
    width: 220px;
    color: #35B1E5;
    font-size: 24px;
    padding-bottom: 10px;
}
.contact-intro p {
    padding-top: 20px;
    line-height: 1.5;
}
.contact-content {
    display: flex; 
    text-align: left;
    margin-top: 20px; 
    padding-right: 40px; 
    line-height: 21px; 
    font-size: 14px;
}
.contact-content-intro {
    display: flex;
}
.maps {
    width:74%;
    padding-right: 20px;
    position: relative;
}

.office {
    margin-left: 20px;
    width:26%;
    position: relative;
}
.forum {
    width: 60%;
    position: relative;
    padding-bottom: 100px;
}
.office span {
    color: #35B1E5;
}
.forum input {
    border: 1px rgba(53, 95, 139, 0.534) solid;
    color: rgba(0, 0, 0, 0.349);
    width: 100%;
    font-size: 14px;
    padding: 8px;
    margin-bottom: 15px; 
}
.forum input:valid, .forum textarea:valid {
    background-color: rgb(255, 255, 255) !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
}
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
}
input[type="checkbox"] + label {
    position: relative;
    padding-left: 35px;
    padding-top: 10px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #141414;
    cursor: pointer;
    margin-bottom: 20px;
    margin-right: auto;
    text-align: left;
}
input[type="checkbox"] + label::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border: 1px rgba(53, 95, 139, 0.534) solid;
    top: 10px;
    left: 0;
}
input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    line-height: 18px;
    color: #35B1E5;
}
form {
    padding-top: 30px; 
    position: relative; 
}

form div {
    display: flex;
    justify-content: space-between;
}

form div p {
    color: black;
    opacity: 0.6;
    padding-top: 15px;
    font-size: 14px;
}

textarea {
    border: 1px rgba(53, 95, 139, 0.534) solid;
    color: rgba(0, 0, 0, 0.349);
    width: 100%;
    font-size: 14px;
    padding: 8px;
}

#contact button {
    position: absolute;
    right:0;
    color: white;
    background-color: #35B1E5;
    width: 25%;
    padding: 10px;
    margin-top: 10px;
    border: none;
}

.contact-content h3 {
    font-weight: 500;
    font-size: 17px;
    color: #355E8B;
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.office i {
    font-size: 25px;
    padding-right: 10px;
    color: #35B1E5;
}

footer {
    height: 60px; 
    background-color: #355E8B;
    color: white;
    padding: 10px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.fa-chevron-up {
    position: fixed;
    bottom: 0;
    right: 50px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.2);
    height: 50px;
    width: 50px; 
    font-size: 40px;
    text-align: center;
    opacity: 0;
    transition: all 0.5s linear;
    z-index:12;
}

.fa-chevron-up a {
    text-decoration: none;
}

a:-webkit-any-link {
    color: #355E8B;
    cursor: pointer;
    text-decoration: none;
}

.fas:hover {
    cursor: pointer;
    color: #35B1E5;
}

@media screen and (max-width: 1010px){

    .services-flex {
        width: 640px;
    }

    .container-services {
        width: 700px;
    }

    #about, #news {
        z-index: 1;
    }

    .about-content, .news-content {
        width: 100%;
        display: inherit;
    }

    .text, .news-text {
        width: 80%;
        margin: 0 auto;
        z-index: 2;
    }

    .bg-content, .bg-content-news {
        height: 400px;
        width: 80%;
        z-index: 2;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .bg-image {
        height: 800px;
    }

    #contact {
        height: 100%;
        position: relative;
    } 

    #contact .bg-image {
        z-index: -1;
        position: absolute;
        transform: translateY(-750px);
    }

    .text, .news-text {
        padding-right: 0px;
    }
    .forum {
        padding-right: 0px;
    }
}

@media screen and (max-width: 900px){
    .locations-map {
        display: none;
    }
    .locations-text {
        display: flex;
    }
    .locations-flex {
        width: 100%;
    }
    .partners-flex {
        height: 100%;
    }
}

@media screen and (max-width: 830px){
    
    .line {
        width: 30px;
        height: 3px;
        background-color: #355E8B;
        margin: 5px;
        transition: 0.3s all ease-out;
    }

    .toggle .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line:nth-child(2) {
        opacity: 0;
    }
    .toggle .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hamburger {
        position: fixed;
        right: 40px;
        top: 60px;
        cursor: pointer;
        z-index: 11;
    }

    .header-nav nav {
        position: fixed;
        background-color: #fff;
        width: 100%;
        height: 100%;
        right: 0;
        z-index: 13;
        margin-top: 50px;
        clip-path: circle(100px at 90% -10%);
        -webkit-clip-path: circle(100px at 90% -15%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .header-nav nav.open {
        clip-path: circle(130vh at 90% -10%);
        -webkit-clip-path: circle(130vh at 90% -15%);
        pointer-events: all;
    }

    #nav {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 200px;
        margin-top: 100px;
    }

    .header-nav nav li {
        opacity: 1;
        margin-right: 0px;
    }
    .header-nav ul li {
        font-size: 16px !important;
    }

    .header-nav .tel {
        font-size: 16px;
    }

    .header-nav nav li:nth-child(2){
        transition: all 0.5s ease 0.2s;
    }

    .header-nav nav li:nth-child(3){
        transition: all 0.5s ease 0.4s;
    }

    .header-nav nav li:nth-child(4){
        transition: all 0.5s ease 0.6s;
    }

    .header-nav nav li.fade {
        opacity: 1;
    }

    .header-nav .tel {
        opacity: 0;
    }

    .header-nav .mail {
        transform: translateX(-290px);
        opacity: 0;
    }

    .tel-mail-appear {
        opacity: 1 !important;
    }

    .logo-disappear {
        opacity: 0;
        pointer-events: none;
    }

    .languages a:nth-child(1) {
        border: none;
        padding-right: 0px;
        margin-right: 0px;
    }

    .bg-content, .bg-content-news {
        height: 350px;
    }

    .contact-content {
       display: block;
       padding-right: 0px;
    }

    .forum, .office {
        width: 100%;
        padding-right: 0px;
    }

    .office {
        padding-top: 60px;
        display: flex;
        justify-content: space-between;
        margin-left: 0px;
    }

    #contact {
        height: 100%;
    }
    
    .maps {
        width: 100%;
        padding-right: 0;
    }

    #tel-pad {
        padding-bottom: 20px;
    } 
}

@media screen and (max-width: 800px){
    .services-flex {
        width: 500px;
    }

    .container-services {
        width: 550px;
    }
    .contact-content-intro {
        display: block;
    }
    .contact-intro {
        width: 100%;
    }
    .contact-intro h2 {
        width: 100%;
    }
    .contact-intro h3 {
        width: 100%;
    }
}

@media screen and (max-width: 650px){
    .services-flex {
        width: 400px;
    }

    .container-services {
        width: 450px;
    }
}

@media screen and (max-width: 600px){
    .locations-text {
        display: block;
    }
    .tel {
        display: flex;
        flex-wrap: wrap;
        top: 150px !important;
        z-index: 30;
        width: 100%;        
        margin: 0 auto;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .header-nav .tel {
        display: none;
    }
}

@media screen and (max-width: 550px){
    .services-flex {
        width: 300px;
    }

    .container-services {
        width: 350px;
    }

    #contact .bg-image {
        height: 500px !important;
        left: -320px !important;
    }
    #contact-header {
        width: 200px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px){
    .bg-content, .bg-content-news {
        width: 90%;
    }

    .text, .news-text {
        width: 90%;
    }

    .fa-chevron-up {
        right: 50px;
    }
}
@media screen and (max-width: 450px){
    .partners-flex img {
        margin-right: 0px;
        margin-bottom: 20px;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 450px){
    .services-flex {
        width: 280px;
    }
    .container-services {
        width: 280px;
    }
    .partners-flex {
        width: 220px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .partners-flex a:nth-child(1){
        padding-bottom: 20px;
    }
    .partners-flex a:nth-child(2){
        padding-bottom: 20px;
    }
    .office {
        display: block;
    }
    .header-nav .tel {
        margin-right: 0;
    }
    .services-box {
        width: 260px;
    }
    .fa-chevron-left {
        margin-left: -20px;
    }
    .fa-chevron-right {
        left: 104%;
    }
}

@media screen and (max-width: 420px){
    .bg-image {
        height: 500px !important;
    }
    body {
        animation: none;
    }
    header {
        background-image: url(/img/bg4.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 100vh;;
    }
}

@media screen and (max-width: 370px){
    #about, #news {
        padding-top: 150px;
    }
    .hamburger {
        right: 20px;
    } 
    .partners-flex img {
        height: 60px;
    }
    .services-flex {
        padding: 0;
    }
}

@media (max-width: 350px){
    .services-flex {
        width: 250px;
    }
    .container-services {
        width: 250px;
    }
    .fa-chevron-up {
        right: 20px;
    }
}






