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

@font-face {
  font-family: kenyanCoffee;
  src: url('./assets/kenyanCoffeeBOLD.ttf')
}

@font-face {
  font-family: kenyanCoffeeRegular;
  src: url('./assets/kenyanCoffeeREGULAR.ttf')
}

/************** PC NORMAL ******************/
  body { 
    overflow: hidden; 
  }
  
  .master-container {
    display: flex;
    width: 900vw;
  }

  .arrow {
    width: 15%;
    padding-left: 3%;
    padding-top: 14%;
    transition: 0.5s all;
  }

  .bg-welcome { 
    background: url('./assets/bgWelcomePC.png') no-repeat; 
  }
  
  .bg-products { 
    background: url('./assets/bgProductsPC.jpg') no-repeat; 
  }
  
  .bg-wholesaling { 
    background: url('./assets/bgWholesalingPC.png') no-repeat; 
  }
  
  .bg-takeaway { 
    background: url('./assets/bgTakeawayPC.jpg'); 
  }
  
  .bg-our-history { 
    background: url('./assets/bgOurHistoryPC.jpg'); 
  }
  
  .bg-contact { 
    background: url('./assets/bgContactPC.jpg'); 
  }  
  
  .bg-welcome,
  .bg-products,
  .bg-wholesaling,
  .bg-takeaway,
  .bg-our-history,
  .bg-contact {
    background-size: cover;
    width: 100vw;
    height: 100vh;
  }

  .nav__mobile {
    display: none;
  }

  .nav {
    display: flex;
    position: fixed;
    color: rgb(255,255,255);
    width: 100vw;
    height: 12.5vh;
    min-height: 90px;
    background-color: rgba(0,0,0,0.6);
  }
  
  .nav-logo { 
    margin-left: 6vw; 
  }
  
  .nav-logo > figure > a > img {
    width: 80%;
    height: 100%;
  }
  
  .nav__elements__container {
    height: 10%;
    width: 100%;
  }
  
  .nav__elements__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    padding: 0.5% 25% 0.5% 25%;
    border-bottom: 1px solid rgb(255,255,255);
  }
  
  .nav__elements__info > div { 
    display: flex; 
    align-items: center;
  }

  .nav__elements__info > div > figure {
    margin-right: 18px;
  }
  
  .nav__elements__info > div > p { 
    font: 1vw 'Roboto', 'sans-serif';
    line-height: 30px;
  }
  
  .nav__elements__links ul {
    display: flex;
    justify-content: space-around;
    font-size: 1.5vw;
    list-style: none;
    width: 90%;
    margin-left: 8%;
    padding-top: 0.5%;    
  }
  
  .nav__elements__links ul li a {
    font: 1.5vw KenyanCoffeeRegular, sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;
    transition: all 1s;
  }

  .nav__elements__links ul li a:hover {
    text-decoration: underline;
    line-height: 2vh;
  }

  .cta-takeaway {
    position: fixed;
    top: 130px;
    left: 84vw;
    z-index: 1002;
    cursor: pointer;
  }

  .cta-takeaway > img {
    height: 16vh;
    max-height: 140px;
  }

  .branch-offices {
    position: fixed;
    top: 0;
    left: 70%;
    display: none;
    flex-direction: column;
    width: 30vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    padding-top: 10vh;
    z-index: 1003;
  }
  
  .branch-offices ul {
    display: flex;
    flex-direction: column;
    margin-top: 20vh;
  }

  .branch-offices ul li {
    margin-top: 5vh;
    margin-left: 5vw;
  }

  .branch-offices ul li a {
    color: rgb(255,255,255);
    font: 2.4rem kenyanCoffeeRegular, sans-serif;
    text-decoration: none;
  }

  .close-branch-offices {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 80%;
    background-color: rgba(255,255,255,0.8);
    cursor: pointer;
  }
  
  .close-branch-offices > div {
    background-color: rgb(255,255,255);
    width: 100%;
    height: 3px;
  }
  
  .close-branch-offices > div:nth-child(1) { 
    transform: rotate(45deg) translate(30px,10px); 
  }
  
  .close-branch-offices > div:nth-child(2) {
    transform: rotate(135deg) translate(30px,-10px);
  }
  
  .main__welcome {
    display: flex;
    color: rgb(255,255,255);
    margin-top: 27vh;
  }
  
  .welcome__info {
    width: 90%;
    margin-left: 3%;
  }
  
  .welcome__info > p {
    font: 11vw KenyanCoffeeRegular, sans-serif;
    margin-top: 0;
    margin-bottom: 6vh;
  }
  
  .welcome__info-text h1,
  .welcome__info-text p {
    font: bold 3.9vh 'Roboto', sans-serif;
    text-align: justify;
    width: 59vw;
    margin-bottom: 3vh;
  }
  
  .products {
    display: flex;
    color: rgb(255,255,255);
    margin-top: 27vh;
  }
  
  .products__info {
    width: 88%;
    margin-left: 3%;
  }
  
  .products__info > p {
    font: 11vw KenyanCoffeeRegular, sans-serif;
    margin-top: 0;
    margin-bottom: 5vh;
  }
  
  .products__info_text {
    font: bold 1.5vw 'Roboto', sans-serif;
    width: 40vw;
  }
  
  .products__icons {
    display: flex;
    margin-top: 2vh;
    width: 47vw;
  }

  .products__icons-container {
    display: flex;
    width: 60vw;
    overflow: hidden;
  }

  .products__icons-container div:last-child {
    display: none;
  }

  .product__icon-remove {
    animation: iconRemove 1s ease-in;
  }

  @keyframes iconRemove {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .product__icon {
    display: block;
    margin-right: 8%;
    width: 120px;
  }

  .product__icon > p {
    font: bold 0.6rem 'Roboto',sans-serif;
    text-align: center;
    margin-top: 2%;
  }

  .product__icon > a {
    font: bold 0.6rem 'Roboto',sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;
    margin-left: 15%;
    border: 1px solid rgb(255,0,0);
    padding: 1% 5%;
  }

  .product__icon > figure {
    display: block;
    text-align: center;
  }

  .product__icon > figure > a > img {
    width: 70px;
    height: 70px;
  }

  .arrow-double {
    cursor: pointer;
    padding-top: 2%;
  }

  .arrow-double > a > img {
    width: 80%;
  }

  .code-QR {
    width: 180px;
    height: 180px;
    transform: translateX(30%) translateY(-15%);
  }

  .code-QR > figure {
    width: 100%;
    height: auto;
  }

  .code-QR > figure > img {
    width: 100%;
    height: auto;
  }

  .code-QR > p {
    font-size: 0.6rem;
    text-align: center;
  }
  
  .wholesaling {
    display: flex;
    color: rgb(255,255,255);
    margin-top: 27vh;
  }
  
  .wholesaling__info {
    margin-top: 0;
    padding-left: 5%;
  }
  
  .wholesaling__info > p:nth-child(1) {
    font: 11vw KenyanCoffeeRegular, sans-serif;
    margin-top: 1vh;
    margin-bottom: 3vh;
  }
  
  .wholesaling__info_text > p:nth-child(1),
  .wholesaling__info_text > p:nth-child(2),
  .wholesaling__info_text > p:nth-child(3) {
    font:  bold 1.5vw 'Roboto', sans-serif;
    padding-top: 1rem;
    width: 85%;
  }

  .takeaway {
    display: flex;
    margin-top: 27vh;
  }
  
  .takeaway__info {
    width: 88%;
    padding-left: 2%;
  }
  
  .takeaway__info > p:nth-child(1) {
    font: 10vw KenyanCoffeeRegular, sans-serif;
    margin-bottom: 2vh;
    margin-top: 4vh;
  }
  
  .takeaway__info_text > p:nth-child(n+1) {
    font: bold 1.5vw 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .takeaway__info_text > p:nth-child(1),
  .takeaway__info_text > p:nth-child(2) {
    width: 55%;
  }

  .takeaway__info_text > p:nth-child(3) {
    width: 25%;
  }

  .our-history {
    display: flex;
    margin-top: 27vh;
  }
  
  .our-history__info {
    display: flex;
    flex-direction: column;
    margin-top: 2vh;
    padding-left: 2%;
    width: 87vw;
  }

  .our-history__info > p:nth-child(1) {
    font: 11vw kenyanCoffeeRegular, sans-serif;
    margin-bottom:  4vh;
  }

  .our-history__info_text {
    width: 72%;
  }

  .our-history__info_text > p {
    font: bold 1.4vw 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .contact {
    display: flex;
    color: rgb(255,255,255);
    margin-top: 27vh;
    width: 100%;
  }
  
  .contact__info{
    width: 100%;
    padding-left: 3%;
  }
  
  .contact__info > p:nth-child(1) {
    font: 11vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 4vh;
  }
  
  .contact__info > p:nth-child(n+2) {
    font: bold 2.5vh/3vh 'Roboto', sans-serif;
  }

  .contact__info > p:nth-child(6) {
    margin-top: 3vh;
  }

  .contact__stores {
    display: flex;
  }

  .contact__stores > div:nth-child(1) > p {
    font: bold  2.5vh 'Roboto', sans-serif;
    width: 70%;
  }

  .contact__stores > div:nth-child(2) > p {
    font: bold 2.5vh 'Roboto', sans-serif;
    width: 100%;
  }
  
  .contact__social-networks {
    display: flex;
    justify-content: space-between;
    width: 20%;
    min-width: 15%;
    margin: 0 auto;
  }
  
  .contact__social-networks > figure > a img{
    width: 80%;
    transition: 0.5s all;
  }
  
  .contact__social-networks > figure > a:hover img{
    transform: scale(1.2);
  }


/************** TABLETA ******************/
@media (max-width: 1024px) {

  body { 
    overflow: unset; 
  }

  .master-container {
    flex-direction: column;
    width: 100vw;
  }

  .arrow { 
    display: none 
  }

  .bg-welcome { 
    background: url('./assets/bgWelcomePC.jpg') no-repeat contain; 
  }
  
  .bg-products { 
    background: url('./assets/bgProductsPC.jpg') no-repeat contain; 
  }
  
  .bg-wholesaling { 
    background: url('./assets/bgWholesalingPC.jpg') no-repeat contain; 
  }
  
  .bg-takeaway { 
    background: url('./assets/bgTakeawayPC.jpg') no-repeat contain; 
  }
  
  .bg-our-history { 
    background: url('./assets/bgOurHistoryPC.jpg') no-repeat contain;
  }
  
  .bg-contact { 
    background: url('./assets/bgContactPC.jpg') no-repeat contain; 
  }

  .nav {
    height: 70px;
  }

  .nav__elements__info > div > figure { 
    width: 20px;
  }
  
  .nav__elements__info > div > p {
    font: bold 1.2vw 'Roboto',sans-serif;
  }

  .cta-takeaway {
    display: block;
    top: 12vw;
    left: 80vw;
  }

  .cta-takeaway > img {
    height: 13vh;
  }

  .branch-offices ul li a {
    color: rgb(255,255,255);
    font: 3vw kenyanCoffeeRegular, sans-serif;
  }

  .close-branch-offices {
    margin-left: 70%;
  }
  
  .welcome__info {
    margin-left: 20%;
  }
  
  .welcome__info > p {
    font: 13vw kenyanCoffeeRegular, sans-serif;
  }
  
  .welcome__info-text h1,
  .welcome__info-text p {
    font: bold 3vh 'Roboto', sans-serif;
    width: 65vw;
    margin-bottom: 3vh;
  }
  
  .products__info {
    margin-left: 20%;
  }
  
  .products__info > p {
    font: 13vw kenyanCoffeeRegular, sans-serif;
    margin-top: 3vh;
    margin-bottom: 5vh;
  }
  
  .products__info_text {
    font: bold 2vw 'Roboto', sans-serif;
    width: 60vw;
  }

  .products__icons-container div:last-child {
    display: none;
  }
  
  .products__icons {
    display: flex;
    margin-top: 2vh;
    width: 50vw;
    overflow: hidden;
  }

  .products__icons > div {
    margin-right: 5%;
    padding: 1% 2%;
  }

  .products__icons > div > p {
    font: bold 0.6rem 'Roboto',sans-serif;
    margin-top: 5%;
  }

  .products__icons > div > a {
    font: bold 0.6rem 'Roboto',sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;
    border: 1px solid rgb(255,0,0);
    padding: 1% 4%;
  }

  .products__icons > div > figure {
    padding: 8%;
    background-color: rgb(255,0,0);
    border-radius: 80px;
  }

  .products__icons > div > figure > a > img {
    width: 50px;
    height: 50px;
  }

  .code-QR {
    width: 150px;
    height: 150px;
    transform: translateX(50%);
  }

  .code-QR > figure {
    width: 100%;
    height: auto;
  }

  .code-QR > figure > img {
    width: 100%;
    height: auto;
  }

  .code-QR > p {
    font-size: 0.6rem;
  }
  
  .wholesaling {
    margin-top: 27vh;
  }
  
  .wholesaling__info {
    margin-top: 2vh;
    padding-left: 20%;
  }
  
  .wholesaling__info > p:nth-child(1) {
    font: 13vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 3vh;
  }
  
  .wholesaling__info_text > p:nth-child(1),
  .wholesaling__info_text > p:nth-child(2),
  .wholesaling__info_text > p:nth-child(3) {
    font:  bold 1.8vw 'Roboto', sans-serif;
  }

  .takeaway {
    margin-top: 27vh;
  }
  
  .takeaway__info {
    width: 100%;
    padding-left: 20vw;
  }
  
  .takeaway__info > p:nth-child(1) {
    font: 12vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 6vh;
  }
  
  .takeaway__info_text > p:nth-child(n+1) {
    font: bold 2vw 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .takeaway__info_text > p:nth-child(1),
  .takeaway__info_text > p:nth-child(2) {
    width: 70%;
  }

  .takeaway__info_text > p:nth-child(3) {
    width: 40%;
  }
  
  .our-history__info {
    padding-left: 18vw;
  }

  .our-history__info > p:nth-child(1) {
    font: 12vw kenyanCoffeeRegular, sans-serif;
    margin-bottom:  5vh;
  }

  .our-history__info_text {
    width: 92%;
  }

  .our-history__info_text > p {
    font: bold 2vw 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .contact__info{
    padding-left: 18vw;
  }
  
  .contact__info > p:nth-child(1) {
    font: 12vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 6vh;
  }
  
  .contact__info > p:nth-child(n+2) {
    font: bold 2.5vh/3vh 'Roboto', sans-serif;
  }

  .contact__info > p:nth-child(6) {
    margin-top: 3vh;
  }

  .contact__stores > div:nth-child(1) > p {
    font: bold  2.5vh 'Roboto', sans-serif;
    width: 70%;
  }

  .contact__stores > div:nth-child(2) > p {
    font: bold 2.5vh 'Roboto', sans-serif;
    width: 100%;
  }
  
  .contact__social-networks {
    display: flex;
    justify-content: space-between;
    width: 15%;
    min-width: 15%;
    margin: 0 auto;
  }
  
  .contact__social-networks > figure > a img{
    width: 80%;
    transition: 0.5s all;
  }
  
  .contact__social-networks > figure > a:hover img{
    transform: scale(1.2);
  }

}
/************** TABLETA ******************/

/************** MOBILE ******************/
@media (max-width: 600px) {

  body { 
    overflow: unset; 
  }

  .master-container {
    flex-direction: column;
    width: 100vw;
  }

  .arrow { 
    display: none;
  }
  
  .bg-welcome {
    background: url('./assets/bgWelcomePC.png') 10%;
  }
  
  .bg-products {
    background: url('./assets/bgProductsMobile.jpg') 100%;
  }
  
  .bg-wholesaling { 
    background: url('./assets/bgWholesalingPC.jpg') 46.5%;
  }
  
  .bg-takeaway { 
    background: url('./assets/bgTakeawayPC.jpg') 150%;
  }
  
  .bg-our-history { 
    background: url('./assets/bgOurHistoryPC.jpg') 45%;
  }
  
  .bg-contact { 
    background: url('./assets/bgContactPC.jpg') 60%; 
  }
  
  .bg-welcome,
  .bg-products,
  .bg-wholesaling,
  .bg-takeaway,
  .bg-our-history,
  .bg-contact {
    background-size: cover;
    height: auto;
    overflow: hidden;
  }
  
  .nav { 
    display: none;
  }
  
  .nav__mobile {
    position: fixed;
    display: flex;
    width: 100vw;
    height: 85px;
    z-index: 1;
    background-color: rgb(255,255,255);
  }

  .nav__mobile__logo {
    padding-left: 4%;
  }
  
  .nav__mobile__logo > a > img {
    width: 20vw;
    margin-top: 0.5vh;
  }
  
  .nav__mobile__hamburguer {
    display: flex;
    flex-direction: column;
    width: 70px;
    height: 70px;
    margin: 20px 0 5px 58vw;
  }
  
  .nav__mobile__hamburguer > div:nth-child(1),
  .nav__mobile__hamburguer > div:nth-child(3) {
    background-color: rgb(0,0,0);
    margin:  5% 0;
    width: 70%;
    height: 3px;
  }

  .nav__mobile__hamburguer > div:nth-child(2) {
    background-color: rgb(0,0,0);
    margin:  5% 0;
    width: 50%;
    height: 3px;
  }

  .nav__mobile__hamburguer > p {
    font: bold 1rem 'Roboto', sans-serif;
    margin-top: 5%;
    margin-left: 15%;
  }
  
  .nav__mobile__hamburguer-list {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 1002;
  }
  
  .close-nav__mobile {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 5%;
    margin-left: 75%;
    background-color: rgba(255,255,255,0.8);
  }
  
  .close-nav__mobile > div {
    background-color: rgb(255,255,255);
    width: 100%;
    height: 3px;
  }
  
  .close-nav__mobile > div:nth-child(1) { 
    transform: rotate(45deg) translate(30px,10px); 
  }
  
  .close-nav__mobile > div:nth-child(2) {
    transform: rotate(135deg) translate(30px,-10px);
  }
  
  .nav__mobile__hamburguer-list ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-top: 10%;
  }
  
  .nav__mobile__hamburguer-list ul li {
    margin-bottom: 10%;
  }
  
  .nav__mobile__hamburguer-list ul li a {
    color: rgb(255,255,255);
    font: 2.4rem kenyanCoffeeRegular, sans-serif;
  }
  
  .nav__mobile__hamburguer-list ul li:nth-child(6) a {
    text-decoration: none;
  }

  .cta-takeaway {
     display: block;
     top: 110px;
     left: 60vw;
  }

  .cta-takeaway > img {
    height: 10vh;
  }

  .branch-offices {
    left: 0;
    width: 100vw;
  }
  
  .branch-offices ul {
    justify-content: center;
    margin-left: 20vw;
  }

  .branch-offices ul li {
    margin-top: 5vh;
  }

  .branch-offices ul li a {
    font: 2.4rem kenyanCoffeeRegular, sans-serif;
  }

  .close-branch-offices {
    margin-top: 5%;
  }
  
  .main__welcome {
    margin-top: 25vh; 
    height: 80vh;
  }
  
  .welcome__info { 
    width: 90vw; 
    margin-left: 14%;
  }
  
  .welcome__info > p {
    font: 20vw kenyanCoffeeRegular, sans-serif;
  }
  
  .welcome__info-text h1,
  .welcome__info-text p {
    font: bold 2.5vh 'Roboto', sans-serif;
    text-align: left;
    margin: 3vh 0 0 0;
    width: 80%;
  }
  
  .products {
    width: 100vw;
    height: 220vh;
    margin-top: 20vw;
  }
  
  .products__info {
    width: 100%;
    margin-left: 14%;
  }
  
  .products__info > p {
    font: 20vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 5vh;
  }
  
  .products__info_text {
    font: bolder 2.5vh 'Roboto', sans-serif;
    width: 75vw;
  }

  .products__icons {
    display: flex;
    margin-top: 7vh;
    width: 100vw;
  }

  .products__icons-container {
    display: flex;
    flex-wrap: wrap;
    width: 90vw;
  }

  .products__icons-container div:last-child {
    display: block;
  }

  .products__icons-container div:last-child > p {
    font-size: 0.7rem;
  }

  .product__icon {
    display: block;
    margin-right: 8%;
    margin-bottom: 15%;
    width: 120px;
  }

  .product__icon > p {
    font: bold 1rem 'Roboto',sans-serif;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .product__icon > a {
    font: bold 1rem 'Roboto',sans-serif;
    margin-left: 20%;
  }

  .product__icon > figure {
    display: block;
    text-align: center;
  }

  .product__icon > figure > a > img {
    width: 100px;
    height: 100px;
  }

  .arrow-double {
    display: none;
  }

  .code-QR {
    display: none;
  }

  .code-QR > figure {
  }

  .code-QR > figure > img {
  }

  .code-QR > p {
  }
  
  .wholesaling {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    margin-top: 17vh;
  }
  
  .wholesaling__info {
    margin-top: 0;
    padding-left: 14%;
  }
  
  .wholesaling__info > p:nth-child(1) {
    font: 20vw kenyanCoffeeRegular, sans-serif;
    margin-top: 0;
  }

  .wholesaling__info_text > p:nth-child(1),
  .wholesaling__info_text > p:nth-child(2),
  .wholesaling__info_text > p:nth-child(3) {
    font: bold 2.5vh/1.5rem 'Roboto', sans-serif;
    padding-bottom: 0.5rem;
  }
  
  .takeaway {
    width: 100vw;
    height: 90vh;
    margin-top: 18vw;
  }
  
  .takeaway__info{
    width: 100%;
    padding-left: 16%;
  }
      
  .takeaway__info > p:nth-child(1) {
    font: 20vw/18vw kenyanCoffeeRegular, sans-serif;
    padding-bottom: 2vh;
  }

  .takeaway__info_text > p:nth-child(n+1) {
    font: bold 2.5vh/normal 'Roboto', sans-serif;
  }

  .takeaway__info_text > p:nth-child(1),
  .takeaway__info_text > p:nth-child(2),
  .takeaway__info_text > p:nth-child(3),
  .takeaway__info_text > p:nth-child(4) {
    width: 85%;
  }
  
  .our-history {
    width: 100vw;
    height: 100vh;
    margin-top: 25vw;
  }
  
  .our-history__info {
    width: 100vw;
    padding-left: 14%;
  }

  .our-history__info > p:nth-child(1) {
    font: 20vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 4vh;
  }
  
  .our-history__info_text > p {
    font: bold 2.5vh/4vh 'Roboto', sans-serif;
    width: 80vw;
    margin-bottom: 1.6rem;
  }
  
  .contact {
    height: 100vh;
    margin-top: 12vh;
  }
  
  .contact__info {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding-left: 14%;
  }
  
  .contact__info > p:nth-child(1) {
    font: 20vw kenyanCoffeeRegular, sans-serif;
    margin-bottom: 5vh;
  }
  
  .contact__info > p:nth-child(n+2) {
    font: bolder 2.5vh/3vh 'Roboto', sans-serif;
    width: 95%;
  }

  .contact__info > p:nth-child(6) {
    margin-bottom: 3vh;
  }

  .contact__stores {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .contact__stores > div:nth-child(1) {
    margin-bottom: 3vh;
  }

  .contact__stores > div:nth-child(1) > p {
    font: bold  2.5vh 'Roboto', sans-serif;
    width: 70%;
  }

  .contact__stores > div:nth-child(2) > p {
    font: bold 2.5vh 'Roboto', sans-serif;
  }
    
  .contact__social-networks {
    width: 50vw;
    margin: 10vh 15% 0 15%;
  }

  .contact__social-networks > figure > a img {
    width: 90%;
    transition: 0.5s all;
  }
}
/************** MOBILE ******************/

@media (max-width:360px) {

  .main__welcome {
    margin-top: 30vh;
  }

  .products__icons-container {
    width: 100vw;
  }

  .product__icon {
    margin-right: 2%;
  }

  .product__icon > figure > a > img {
    width: 70px;
    height: 70px;
  }
}

/************** 4k ******************/
@media (min-width:1800px) {
  .arrow {
    width: 15%;
    padding-left: 3%;
    padding-top: 14%;
    transition: 0.5s all;
  }

  .nav {
    height: 12vh;
    min-height: 115px;
  }

  .cta-takeaway {
    position: fixed;
    top: 160px;
    left: 85vw;
  }

  .cta-takeaway > a > img {
    height: 16vh;
    max-height: 140px;
  }

  .welcome__info {
    margin-left: 0;
  }
  
  .welcome__info-text h1,
  .welcome__info-text p {
    font: bold 1.5vw 'Roboto', sans-serif;
    width: 52vw;
  }
  
  .products__info {
    margin-left: 0;
  }
  
  .products__info > p {
    font: 10vw kenyanCoffeeRegular, sans-serif;
    margin-top: 0;
  }
  
  .products__icons {
    display: flex;
    margin-top: 2vh;
    width: 50vw;
    overflow: hidden;
  }

  .products__icons > div {
    margin-right: 5%;
    padding: 1% 2%;
  }

  .products__icons > div > p {
    font: bold 0.6rem 'Roboto',sans-serif;
    margin-top: 5%;
  }

  .products__icons > div > a {
    font: bold 0.6rem 'Roboto',sans-serif;
    color: rgb(255,255,255);
    text-decoration: none;
    border: 1px solid rgb(255,0,0);
    padding: 1% 4%;
  }

  .products__icons > div > figure {
    padding: 8%;
    background-color: rgb(255,0,0);
    border-radius: 80px;
  }

  .products__icons > div > figure > a > img {
    width: 50px;
    height: 50px;
  }
  
  .wholesaling__info {
    margin-top: 0;
    padding-left: 2%;
  }
  
  .wholesaling__info > p:nth-child(1) {
    margin-top: 0;
    margin-bottom: 3vh;
  }
  
  .wholesaling__info_text > p:nth-child(n+1) {
    padding-top: 2rem;
    width: 75%;
  }
  
  .takeaway__info {
    width: 100%;
    padding-left: 0;
  }
  
  .takeaway__info > p:nth-child(1) {
    font: 10vw kenyanCoffeeRegular, sans-serif;
  }
  
  .takeaway__info_text > p:nth-child(n+1) {
    font: bold 1.5vw 'Roboto', sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .takeaway__info_text > p:nth-child(1),
  .takeaway__info_text > p:nth-child(2) {
    width: 60%;
  }

  .our-history {
    display: flex;
    margin-top: 27vh;
  }
  
  .our-history__info {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    width: 87vw;
  }

  .our-history__info > p:nth-child(1) {
    font: 10vw kenyanCoffeeRegular, sans-serif;
    margin-bottom:  7vh;
  }

  .our-history__info_text {
    width: 63%;
  }
  
  .contact__info {
    padding-left: 0;
  }
  
  .contact__info > p:nth-child(1) {
    font: 10vw kenyanCoffeeRegular, sans-serif;
  }

  .contact__social-networks > figure > a img {
    width: 100%;
  }
}
/************** 4k ******************/


/************** APPLE GRANDE ******************/
@media (min-width:2000px) {

  .arrow {
    width: 15%;
    padding-left: 3%;
    padding-top: 14%;
    transition: 0.5s all;
  }

  .nav {
    height: 10vh;
    min-height: 115px;
  }

  .cta-takeaway {
    position: fixed;
    top: 190px;
    left: 89vw;
  }

  .cta-takeaway > a > img {
    height: 16vh;
    max-height: 140px;
  }

  .products__icons {
    margin-top: 6vh;
  }

  .product__icon > figure > a > img {
    width: 100px;
    height: 100px;
  }

  .product__icon > p {
    font: bold 0.8rem 'Roboto',sans-serif;
    text-align: center;
    margin-top: 4%;
    margin-bottom: 4%;
  }

  .product__icon > a {
    font: bold 0.8rem 'Roboto',sans-serif;
    margin-left: 20%;
  }

  .contact__social-networks > figure > a img{
    width: 150%;
  }
}
/************** APPLE GRANDE ******************/