/* Name
Font: Cormorant SC
Color: #5c3900
Tag Line
Font: Julius Sans One
Color: #5c3900
Icon
Color: #392504
Frame
Color: #f7eecd */

.fa-user-plus {
    margin-right: 7px;
}

.fa-sign-in-alt {
    margin-right: 7px;
}

#title {
    background-color: #f7eecd;
    padding-top: 15px;
    display: flex;
    background: linear-gradient(rgba(247, 238, 205,.8), rgba(247, 238, 205,.8)), url("/Images/Register-background.jpg") center no-repeat;
    background-size: cover;
    height: 100vh;
}

#title form a:hover{
    text-decoration: none !important;
}

.fa-sign-out-alt {
    margin-right: 8px;
}

.fix-bug:hover {
    text-decoration: none !important;
}

#cover {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: calc(50vh - 220px) auto;
}

#cover h1 {
    color: #5c3900;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

#cover .fas {
    margin-right: 8px;
}

.navbar-brand {
    font-family: 'Cormorant SC', serif;
    font-size: 25px;
    color: #5c3900 !important;
    padding-top: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-weight: 400;
}

h1, h2 {
    font-family: 'Cormorant SC', serif;
}

div .col-md-6.text-md-left.mb-md-0.mb-4 {
    line-height: 2;
}

#title-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: rgba(92, 57, 0, .6) !important;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #724600;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 650ms;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.title-content {
    padding: 5rem 0 8rem;
}

.title-content h1{
    color: #5c3900;
}

.title-image {
    width: 60%;
}

#story {
    background-color: #5c3900;
}

#blockquote-story {
    display: flex;
    align-items: center;
    justify-content: center;
}

#blockquote-story p {
    color: #f7eecd;
    line-height: 2;
}

#blockquote-story div::before {
    content: open-quote;
    color: #392504;
    font-size: 6rem;
}

#blockquote-story div::after {
    content: close-quote;
    color: #392504;
    font-size: 6rem;
}

#blockquote-story footer {
    color: #b68e00;
}

#process {
    background-color: #f7eecd;
}

#process h1 {
    font-family: 'Great Vibes', cursive;
    color: #5c3900;
}

#process p {
    line-height: 2;
    font-weight: 400;
}

#process a {
    text-decoration: none !important;
}

#process .process-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

#process .fas {
    margin-right: 8px;
}

.signature {
    color: #5c3900;
}

#products {
    background-color: #5c3900;
}

.products-info {
    color: #f7eecd;
}

.products-info i {
    font-size: 4.5rem;
}

#testimonials {
    background-color: #f7eecd;
}

#testimonials h1 {
    color: #5c3900;
    font-family: 'Great Vibes', cursive;
}

#testimonials h2 {
    color: #392504;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

/* added 6rem, remove to go back to default. */
.carousel-item {
    padding: 9rem 2.5rem 6rem;
}

.carousel-inner img {
    width: 13rem !important;
    margin-top: 3.5rem;
}

.carousel-inner footer {
    font-size: 2rem;
    color: #5c3900;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    margin-top: 2.5rem;
    padding-right: 2rem;
}

#about {
    background-color: #f7eecd;
}

#contact {
    background-color: #5c3900;
    color: #f7eecd;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

#contact h1 {
    margin-bottom: 1.5rem;
    font-family: 'Great Vibes', cursive;
    color: #b68e00;
}

#contact div {
    padding-bottom: 0.5rem;
    font-size: medium;
}

#contact .contact-content {
    text-align: left;
    border-right: 1px solid black;
}

#contact span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

.middle{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
  .btn-contact{
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #f7eecd;
    margin: 10px;
    border-radius: 30%;
    box-shadow: 0 10px 20px -5px #00000070;
    color: #5c3900;
    overflow: hidden;
    position: relative;
  }
  .btn-contact i{
    line-height: 70px;
    font-size: 26px;
    transition: 0.2s linear;
  }
  .btn-contact:hover{
    background: #392504;
  }
  .btn-contact:hover i{
    transform: scale(1.3);
    color: #f7eecd;
  }
  .btn-contact::before{
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #5c3900;
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
  }
  .btn-contact:hover::before{
    animation: aaa 1s 1;
    top: -10%;
    left: -10%;
  }
  @keyframes aaa {
    0%{
      left: -110%;
      top: 90%;
    }50%{
      left: 10%;
      top: -30%;
    }100%{
      top: -10%;
      left: -10%;
    }
  }

.copyright {
    color: #ffffff;
}

@media (max-width: 426px) {
    #cover h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1199px) {
    .process-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .row.title-content .col-md-6 img {
        margin-left: 5rem;
        width: 80%;
    }

    .story-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .row.title-content .col-md-6 img {
        margin-left: unset;
        width: 60%;
    }

    .title-content {
        padding-bottom: 4rem;
    }

    #story div img {
        width: 70%;
    }

    #contact .contact-content {
        border-right: initial;
        /* border-bottom: 1px solid black; */
    }

    address {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid black;
        margin-bottom: initial;
    }

    #contact .contact-content {
        padding-bottom: initial;
    }

    #contact .middle{
        position: relative;
        top: 3rem;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
        padding-bottom: initial;
      }
      .btn-contact{
        display: inline-block;
        width: 55px;
        height: 55px;
        background: #f7eecd;
        margin: 10px;
        border-radius: 30%;
        box-shadow: 0 10px 20px -5px #00000070;
        color: #5c3900;
        overflow: hidden;
        position: relative;
      }
      .btn-contact i{
        line-height: 56px;
        font-size: 16px;
        transition: 0.2s linear;
      }
      .btn-contact:hover{
        background: #392504;
      }
      .btn-contact:hover i{
        transform: scale(1.3);
        color: #f7eecd;
      }
      .btn-contact::before{
        content: "";
        position: absolute;
        width: 120%;
        height: 120%;
        background: #5c3900;
        transform: rotate(45deg);
        left: -110%;
        top: 90%;
      }
      .btn-contact:hover::before{
        animation: aaa 1s 1;
        top: -10%;
        left: -10%;
      }
      @keyframes aaa {
        0%{
          left: -110%;
          top: 90%;
        }50%{
          left: 10%;
          top: -30%;
        }100%{
          top: -10%;
          left: -10%;
        }
      }
}

@media (max-width: 479px) {
    .long-address {
        display: block;
    }
}