:root {
    --background: #AEB7B2;
    --foreground: #2F4D57;
    --main: #f7e7d0;
    --accent: #445f66;
    --accent-3: #6f8285;
    --accent-2: #597075;
    --shadow-2: rgba(0, 0, 0, 0.2);
    --shadow-3: rgba(0, 0, 0, 0.4);
}

@font-face {
    font-family: Roboto-Regular;
    src: url('../assets/fonts/Roboto-Regular.ttf');
    font-display: swap;
}

body {
    overflow-x:hidden ;
    letter-spacing: 1px;
}

body {
    font-family: Roboto-Regular, serif;
}

.f-end {
    justify-content: flex-end;
}

.color-main {
    color: var(--main);
}

.color-fore {
    color: var(--foreground);
}

.nav-bar.visible {
    background: var(--accent-2);
}

#nav-logo {
    visibility: hidden;
    transition: 0.2s;
}

#nav-logo.visible {
    visibility:unset;
}

.nav-bar {
    top: 0;
    z-index: 3000;
    transition: 0.5s;
}

.background-show {
    background-color: var(--shadow-3);
}

.custom-toggler.navbar-toggler {
    border-color: var(--main);
    border-width: 1px;
    height: 38px;
}

.hamburger {
    color: var(--main);
}

.hamburger:focus, .nav-label:hover {
    color: var(--foreground);
    transition: 0.5s;
}

.jumbotron {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: +55%;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.322);
    background-color: none;
    position: relative;
    background-image: url("../assets/jumbotron-mobile-2.jpg");
    background-image: image-set(
        url("../assets/jumbotron-mobile-2.webp") 1x,
        url("../assets/jumbotron-mobile-2.jpg") 1x,
    );
}

#main-logo {
	position: absolute;
	right: 0;
	bottom: 60px;
	width: 300px;
    margin: 25px;
}


h1, h2 {
    font-weight: bold;
}

.nav-label{
    color: var(--main);
    font-size: 1.2rem;
}

.nav-label:active {
    color: var(--foreground);
}

main{
    color: var(--foreground)
}

.text-container {
    color: var(--accent)
}

.article-box {
    padding: 75px 0 0 0;
    border: none;
}

article p, article li, article a {
    font-size: 1.2rem;
}

.article-container-bg, .article-container {
    position: relative;
    overflow: hidden;
}

.article-container-bg .text-container, .article-container-bg h2 {
    color: var(--main);
}

.section-img {
    bottom: 0px;
    width: 100%;
}

.img-to-right {
    right: 0;
    border-radius: 500px 0 0 0px;
}

.img-to-left {
    left: 0;
    border-radius: 0 500px 0 0px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

h3 {
    margin-top: 20px;
}

.article-container-bg {
    background: var(--accent-3)
}

.text-container {
    margin-top: auto;
    margin-bottom: auto;
    padding: 0 30px;
}

#contact-us a {
    text-decoration: none;
}

#contact-us a {
    color: var(--accent);
}

#contact-us a:hover{
    color: var(--background);
}

footer {
    background-color: var(--foreground);
    color: var(--main);
}

footer .container {
    align-items: center;
    height: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

#copyright, .social {
    font-size: 1.2rem;
}

footer a {
    color: var(--main);
    font-size: 0.8rem;
    display: block;
    margin: 0 10px;
}

#links {
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.navbar-collapse {
    padding: 10px;
}

.shadow-3{
    background-color: var(--shadow-3);
}

.social-container {
    display: flex;
}

.social-container-contact .social{
    font-size: 3rem;
    margin-right: 20px;
}

.social-container-contact {
    display: flex;
    justify-content: flex-start;
}

.contact-button {
    display: block; 
    margin: 20px auto;
    padding: 10px;
}

button {
    border-color: var(--foreground);
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    box-shadow: black 0px 0px 4px 0px;
    background-color: var(--accent);
    color: var(--main);
}


.pic-ctn {
    width: 100vw;
    height: 200px;
    margin: 20px auto
  }
  
  @keyframes display {
    0% {
      transform: translateX(200px);
      opacity: 0;
    }
    10% {
      transform: translateX(0);
      opacity: 1;
    }
    20% {
      transform: translateX(0);
      opacity: 1;
    }
    30% {
      transform: translateX(-200px);
      opacity: 0;
    }
    100% {
      transform: translateX(-200px);
      opacity: 0;
    }
  }
  
  .pic-ctn {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 300px;
  }
  
  .pic-ctn > div {
    position: absolute;
    top: 0;
    opacity: 0;
    animation: display 20s infinite;
  }
  
  div:nth-child(2) {
    animation-delay: 5s;
  }
  div:nth-child(3) {
    animation-delay: 10s;
  }
  div:nth-child(4) {
    animation-delay: 15s;
  }
  div:nth-child(5) {
    animation-delay: 20s;
  }

.review {
    padding: 2rem;
}

.desktop-only {
    display: none;
}

.contact-icon {
    font-size: 1.7rem;
    margin: 15px;
}

@media only screen and (orientation: landscape)  and (min-width: 748px) {
    .jumbotron {
        background-position-x: +85%;
    }
  }

@media only screen and (min-width: 768px) {
    .desktop-only {
        display: initial;
    }
    .contact-icon {
        font-size: 1.2rem;
    }

    .jumbotron {
        background-position-x: +85%;
        background-blend-mode: darken;
        background-color: rgba(0, 0, 0, 0.322);
        background-color: none;
        background-image: url("../assets/jumbotron-min-2.jpg");
        background-image: image-set(
            url("../assets/jumbotron-min-2.webp") 1x,
            url("../assets/jumbotron-min-2.jpg") 1x,
        );
    }
    
    #main-logo {
        width: 400px;
        bottom: 60;
    }
    .article-box {
        padding: 75px 0;
    }
  }

@media only screen and (min-width: 992px) {
    .nav-bar {
        background: var(--shadow-3);
    }

    .navbar-collapse {
        padding: 10px;
        background-color: unset;
    }

    .section-img {
        position: absolute;
        max-height: 100%;
        object-fit: cover;
    }

    .width-50 {
        width: 50%;
    }

    .width-40 {
        width: 40%;
    }
    
}
  
@media only screen and (min-width: 1024px) {
    
  }

@media only screen and (min-width: 1200px) {
   
  }

@media only screen and (min-width: 1300px) {
    
  }


@media only screen and (orientation: landscape)  and (min-width: 748px) and (max-height: 500px) {
.jumbotron {
    background-position-x: +85%;
}
#main-logo {
    width: 320px;
}
}

  