@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@600&display=swap');

:root {
  --mainColor: #1A3450;
  --lightColor: #15BCE1;
  --darkColor: #002B7C;
}

html{
  scroll-behavior: smooth;
}

* {
    font-family: 'Karla', sans-serif;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: scroll;
    color: #2c3740;
    margin: 0px;
    font-size: 1rem;
    font-weight: 200;
    overflow-x: hidden;
    text-decoration: none;
    border: none
}

h1 {
  font-family: 'Quicksand';
  font-weight: 600;
  font-size: 26px;
  color: var(--textColor);
  text-transform: uppercase;
  margin-bottom: 20px;
}

h2 {
  color: var(--textColor);
}


h3 {
  color: var(--mainColor);
  font-weight: 600
}

h3.white {
  color: white;
  font-weight: 300
}

h3.whiteBold {
  color: white;
  font-weight: 600
}

.boldText {
  color: #645B16;
  font-weight: 300
}

.bigBoldText {
  color: var(--mainColor);
  font-weight: 300;
  font-size: 1.2em
}

.boldTextWhite {
  color: white;
  font-weight: 600
}

.whiteText {
  color: white;
}

.smallText {
  font-size: 12px
}

.image40 {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.image40.top {
  display: none
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  border-bottom: 1px dotted var(--mainColor)
}

  .row.reverse {
    flex-direction: row-reverse;
  }

  .row.contacts {
    flex-direction: row;
    margin-top: 20px;
  }

.column {
  text-align: right;
}

  .column.alignLeft {
    text-align: left;
  }

.smallImg {
  width: 30px;
  height: 30px;
}

.mediumImg {
  width: 45px;
  height: 45px;
}

.workcloudImg {
  display: flex;
  width: calc(50vw);
  object-fit: contain;
  align-self: center;
}

.welcome_logo {
  display: flex;
  width: calc(40vw);
  object-fit: contain;
  animation-name: logoFade;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}

@keyframes logoFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1
  }
}



.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto
}

.headerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  width: 100%;
  height: 100vh;
  background-color: var(--mainColor);
  background-image: url('../media/header.jpg');
  background-repeat: no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: top;
  text-align: center;
  position: relative;
  background-attachment: fixed;
}

  .headerContainer::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 10px;
    background-size: 20px 20px;
    background-image:
      radial-gradient(circle at 10px -5px, transparent 12px, white 13px);
  }
  .headerContainer::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 15px;
    background-size: 40px 20px;
    background-image:
      radial-gradient(circle at 10px 15px, white 12px, transparent 13px);
  }

  .menuContainer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 70px;
    max-width: 200px;
    min-width: 200px;
    height: 600px;
    background-color: white;
    border-radius: 0px 0px 30px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    overflow: scroll;
    animation-name: menuFadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1
  }

  @keyframes menuFadeIn {
    0% {
      opacity: 0
    }
    100% {
      opacity: 1
    }
  }

    .mobileMenu {
      display: none;
    }

    .mobileMenuScreen {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      width: 100vw;
      height: 100%;
      position: fixed ;
      top: 0;
      left: 0;
      z-index: 5;
      background-color: rgba(255,255,255,0.97);
    }

    .logo_img {
      width: 180px;
      height: 180px;
      object-fit: contain;
    }

    .logo_img:hover {
      width: 180px;
      height: 180px;
      object-fit: contain;
      animation-name: logoZoom;
      animation-duration: 1s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
    }

    @keyframes logoZoom {
      0% {
        width: 180px;
        height: 180px;
      }
      100% {
        width: 200px;
        height: 200px;
      }
    }

  .linksContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
  }

    .linksContainer__link {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding: 10px;
      font-size: 20px;
      color: var(--mainColor);
      background: white;
      width: 100%;
      font-weight: 600;
      text-transform: capitalize;
      padding-left: 40px
    }

      .linkActive, .linksContainer__link:hover {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 10px;
        font-size: 20px;
        width: 100%;
        padding-left: 40px;
        background-color: var(--mainColor);
        color: white;
        font-weight: 600;
        border-radius: 6px;
        animation-name: fadeIn;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
        animation-duration: 0.4s;
        text-transform: capitalize;
      }

      @keyframes fadeIn {
        0% {
          background-color: var(--mainColor);
        }
        100% {
          background-color: var(--mainColor);

        }
      }

    .linksContainer__link_img {
      min-width: 30px;
      min-height: 30px;
      max-width: 30px;
      max-height: 30px;
      margin-right: 15px;
    }


    .menu_social_img {
      width: 40px;
      height: 40px;
      margin-top: 40px
    }

.container {
  width: 100vw;
  height: auto;
  padding: 50px 70px 50px 0px;
  padding-left: 300px;
  text-align: center;
}

/* Services */


.serviceItem {
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.serviceItem.mt20 {
  margin-top: 20px;
}

.serviceImageContainer {
  min-width: 30px;
  min-height: 30px;
  margin-right: 5px;
}

/* GALLERY START */

.galleryContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}

  .modal {
    display: none;
    position: fixed;
    z-index: 3;
    left:0;
    top: 0;
    width: 100vw;
    height: auto;
    overflow: auto;
    background-color: black;
    align-items: center;
    justify-content: center
  }

  /* Modal Content */
  .modal-content {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #black;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }

  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 20
  }

  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;

  }

  /* Hide the slides by default */
  .mySlides {
    display: none;
  }

  .slide {
    width: 100%;
    object-fit: contain;
  }

  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: var(--darkColor);
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    background-color: var(--darkColor);
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: var(--darkColor);
  }

  img.hover-shadow {
    transition: 0.3s;
    width: 200px;
    height: 200px;
    margin-left: 5px;
    border-radius: 10px;
    cursor: pointer;
  }

  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }


  /* Partners Start */

  .partnersContainer {
    display: flex;
    padding-left: 300px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .partner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    border-radius: 10px;
    margin: 5px;
    filter: grayscale(90%);
  }

  .partner:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    filter: grayscale(0%);
  }

  .partnerImg {
    display: flex;
    width: 200px;
    height: 200px;
    object-fit: contain;
  }

  /* Partners End */


/* GALLERY END */
/* FOOTER */

.footer {
  display: flex;
  min-height: auto;
  min-width: 100%;
  flex-direction: row;
  padding-left: 300px;
  padding-top: 20px;
  margin-top: 20px;
  background-color: var(--mainColor);
  background-image: url('../media/header.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-blend-mode: soft-light;
  background-size: cover;
  padding-bottom: 20px;
  position: relative;
  background-attachment: fixed;
}


  .footerDataContainer {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-bottom: 25px
  }

  .contactDataContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .contactColumn {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }

  .contactRow {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    width: calc(100vw - 400px);
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted white;
  }

  .inputRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 250px;
  }

  .contactTexInput {
    display: flex;
    border-radius: 6px;
    height: 30px;
    width: 300px;
    margin-top: 5px;
    color: var(--mainColor);
    font-weight: 600;
    outline: none;
    padding-left: 10px
  }

  .contactMultiInput {
    display: flex;
    border-radius: 6px;
    height: 200px;
    width: 300px;
    margin-top: 5px;
    color: var(--mainColor);
    font-weight: 600;
    outline: none;
    padding: 10px 10px;
  }

  .footerButton {
    display: flex;
    border-radius: 6px;
    background-color: #DD8B10;
    width: 300px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-top: 10px;
  }

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

  .bigBoldText {
    font-size: 1em
  }

  .menuContainer {
    flex-direction: row;
    left: 0px;
    max-width: 100%;
    min-width: 100%;
    height: 150px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .partnersContainer {
    padding-left: 20px;
    padding-right: 20px;
  }


  .linksContainer {
    flex-direction: row;
  }

    .linksContainer__link {
      font-size: 16px;
      padding-left: 0px;
      justify-content: center;
    }

      .linkActive, .linksContainer__link:hover {
        font-size: 16px;
        padding-left: 0px;
        justify-content: center;

      }

    .linksContainer__link_img {
      min-width: 24px;
      min-height: 24px;
      max-width: 24px;
      max-height: 24px;
      margin-right: 3px;
    }

    .menu_social_img {
      display: none
    }

    .pricelist__item__description {
      display: flex;
      font-size: 0.8rem;
      text-align: left;
    }

    .pricelist__item__price {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--darkColor);
    }

  .headerContainer {
    padding: 150px 20px 20px 20px;
  }

  .container {
    width: 100vw;
    height: auto;
    padding: 20px 20px 20px 20px;
    text-align: center;
  }

  .footer {
    padding-left: 20px;
  }

  .contactRow {
    width: calc(100vw - 150px);

  }

}

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

  .smallImg {
    min-width: 20px;
    min-height: 20px;
  }

  .bigBoldText {
    color: var(--mainColor);
    font-weight: 300;
    font-size: 0.8em
  }

  .partner {
    filter: grayscale(0%);
  }

  .linksContainer__link {
    justify-content: center;
  }

    .linkActive, .linksContainer__link:hover {
      justify-content: center;
    }

  .linksContainer__link_img {
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
    margin-right: 15px;
  }

  .menuContainer {
    flex-direction: row;
    left: 0px;
    max-width: 100%;
    min-width: 100%;
    height: 150px;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-between;
  }

  .logo_img {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }

  .logo_img:hover {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: none
  }

  .mobileMenu {
    display: flex;
  }

  .image40.top {
    display: flex
  }

  .linksContainer {
    display: none;
  }

  .mobileMenuScreen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100%;
    position: fixed ;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(255,255,255,0.97);
  }

    .mobileMenuHeading {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: auto;
      padding: 20px;
    }

    .mobileMenu__close {
      display: flex;
      position: fixed;
      right: 20px;
      min-width: 40px;
      min-height: 40px;
      border: 2px solid var(--brownColor);
      border-radius: 20px;
      padding: 10px;
    }

  .row {
    flex-direction: column-reverse;
  }

    .row.reverse {
      flex-direction: column-reverse;
    }

    .row.contacts {
      flex-direction: row;
      margin-top: 0px;
    }

  .column {
    text-align: center;
  }

    .column.alignLeft {
      text-align: center;
    }


  .footer {
      flex-direction: column;
      padding-left: 20px;
  }


    .footerDataContainer {
      display: flex;
      flex-direction: column;
      margin-left: 20px;
    }





    .contactRow {
      display: flex;
      flex-direction: column;
      margin-left: 0px;
      width: calc(100vw - 50px);
      justify-content: flex-start;
      align-items: flex-start;
      border-bottom: 1px dotted white;
    }

    .inputRow {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: auto;
    }

    .contactColumn {
      margin-left: 0px;
    }

    .contactTexInput {
      width: calc(100vw - 150px);
    }

    .contactMultiInput {
      width: calc(100vw - 150px);

    }

    .footerButton {
      margin-left: 0px;
      width: calc(100vw - 150px);

    }
}
