.hero {
    height: 740px;
    background-image: url('../images/hero-backgr1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    animation: ani 2s forwards;
}

@keyframes ani {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.hero__container {
    width: 100%;
}

.hero__title {
    font-weight: 800;
    font-size: 45px;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.2;
}

.hero__text {
    font-weight: 300;
    font-size: 35px;
    line-height:35px;
}

.hero__text-wrapper {
    padding-left: 25px;
    border-left: 4px solid #F89410;
    margin-bottom: 50px;
}

.hero__button {
    background-color: #F89410;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    padding: 15px 5px 15px 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);    
}

.hero__button:hover {
    background-color: #cf7b0d;
}

@media (max-width:1240px) {}

@media (max-width:1140px) {}

@media (max-width:1080px) {
    .hero {
        height: 640px;
    }
    .hero__title {
        font-size: 40px;
    }
    .hero__text {
        font-size: 30px;
        line-height:30px;
    }
    .hero__button {
        padding: 10px 5px 10px 20px;
    }
}

@media (max-width:920px) {}

@media (max-width:768px) {
    .hero {
        height: 600px;
    }
    .hero__title {
        font-size: 35px;
    }
    .hero__text {
        font-size: 25px;
        line-height:25px;
    }
    .hero__button {
        font-size: 18px;
    }
}

@media (max-width:568px) {
    .hero {
        height: 560px;
    }
    .hero__title {
        font-size: 30px;
    }
    .hero__text {
        font-size: 20px;
        line-height:20px;
    }
    .hero__button {
        font-size: 16px;
    }
}

@media (max-width:344px) {}