
@media(max-width: 768px){
    div.home {
        margin-right: 0;
        width: 100%;
        height: 90vh;
    }
    
    label.label-search-home {
        width: 100%;
    }
    
    div.slogan {
        width: 100%;
    }
    
    div.logo-home {
        display: none;
    }
    
    div.above-search {
        text-align: center;
    }
}

.home {width: calc(100% - 130px);margin-right: 130px;padding: 20px;}

.boxes-home {
    display: flex;
}

.box-home {
    color: white;
    width: 25%;
    margin: 15px;
    border: 1px solid #2c2e3d;
    border-radius: 20px;
    padding: 25px;
    background: linear-gradient(48deg, rgb(41 42 60), rgb(107 175 227 / 5%));
}

.box-home svg {
    width: 55px;
    height: 55px;
    fill: white;
    background: linear-gradient(48deg, rgb(106 66 237 / 10%), rgb(107 175 227 / 10%));
    padding: 16px;
    border-radius: 15px;
}

.box-icon {display: flex;align-items: center;margin-bottom: 15px;}

.box-icon strong {
    margin-right: 15px;
}



/* .accordion {
    display: flex;
    overflow: hidden;
    height: 300px;
    border-radius: 20px;
}

.accordion-item {
    transition: flex 0.8s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin: 0 5px;
    border-radius: 20px;
    align-items: center;
}

.accordion-item.active {
    flex: 4;
}

.accordion-item-header {
    background-color: #4899e5;
    color: white;
    padding: 0px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    border-radius: 20px;
    position: relative;
    height: 300px;
    background: linear-gradient(180deg, rgb(54 55 83), rgb(51 60 88));
    display: flex;
    flex-direction: row-reverse;
}

.accordion-item-content {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 16px;
    color: #333;
    padding: 10px;
    padding-right: 30px;
    opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(48deg, rgb(40 41 60), rgb(41 45 56));
    border-radius: 20px 0 0 20px;
    margin-right: -20px;
    height: 285px;
    color: white;
}

.accordion-item.active .accordion-item-content {
    opacity: 1;
}

.accordion-item:not(.active) .accordion-item-content {
    display: none;
}

.box-accordion {
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 20px;
    color: white;
    font-weight: 700;
    background-size: cover;
    font-size: 12px;
}

.box-accordion span {
    width: 100%;
    height: 100%;
    background: radial-gradient(#282a3bb5 45%, #282a3bad);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item-header svg {
    width: 50px;
    height: 50px;
    fill: white;
    background: linear-gradient(48deg, rgb(106 66 237 / 10%), rgb(107 175 227 / 10%));
    padding: 15px;
    border-radius: 15px;
    margin-top: 20px;
}

.accordion-item-header span {
    margin: auto;
} */



.home-search {height: 100%;display: flex;align-items: center;justify-content: center;flex-direction: column;}

.home-search input {
    width: 800px;
    max-width: 100%;
    margin-bottom: 0;
    padding-right: 50px;
    !i;!;
    height: 60px;
}

.home-search svg {
    fill: white;
    width: 20px;
    height: 20px;
    top: 50%;
    position: absolute;
    right: 20px;
    transform: translatey(-50%);
}


.above-search {
    display: flex;
    justify-content: space-between;
    width: 800px;
    max-width: 100%;
    align-items: flex-end;
    color: white;
    padding: 0 30px 10px 30px;
}

.logo-home>div {
    flex-direction: row-reverse;
    align-items: baseline;
}

.logo-home strong {
    font-size: 30px;
    margin-right: 5px;
}

.logo-home span {
    line-height: 24px;
}


.search-main input:focus-visible {
    outline: 0;
    border: 1px solid #6c6f80;
    height: 80px;
}
.label-search-home{
    position: relative;margin-bottom: 50px;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.word, .logo-home, .label-search-home {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
}
  
.word:nth-child(1) {
  animation-delay: 0.2s;
}
.word:nth-child(2) {
  animation-delay: 0.2s;
}
.logo-home {
  animation-delay: 1.5s;
}
.label-search-home {
  animation-delay: 0.8s;
}

.slogan {
    font-size: 18px;
    font-weight: 500;
}