/* ------------------------------------------------------------ */
/* --------------------------- ABOUT -------------------------- */
/* ------------------------------------------------------------ */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    margin-bottom: 100px;
    margin-top: -70px;
}

.about .container {
    width: 100%;
    height: auto;
    margin-left: 0px;
    clip-path: polygon(0 0, 57.3% 11.3%, 45% 100%, 0% 100%);
}

.line {
    width: 400px;
    margin-top: 150px;
    border: 2px solid #ed6b41;
    transform: rotate(-71.5deg);
    margin-left: 410px;
}

.about .box-text {
    width: 50%;
    margin-top: 50px;
}

.container-title {
    margin-bottom: 30px;
    padding: 50px 50px 0 50px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

.container-title h1 {
    font-size: 2rem;
    color: #ed6b41;
    margin-bottom: 10px;
}

.border-title {
    width: 100px;
    height: 4px;
    background-color: #ed6b41;
    margin: 0 auto 20px 0;
}

.about .content {
    font-family: 'Open Sans', sans-serif;
    color: #444444;
    margin: 20px 40px;
}

.about .content .paragraph {
    margin-top: -120px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about .content .paragraph-italic {
    font-style: italic;
    margin-bottom: 20px;
    color: #2c4964;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about .content ul i {
    font-size: 20px;
    margin-right: 10px;
    color: #f59a29;
}

.about .read-more {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 410px;
    text-decoration: none;
    font-weight: bold;
    color: #ed6b41;
    transition: all .5s;
}

.about .read-more:hover {
    color: #f59a29;
}

.about .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.about .read-more:hover i {
    transform: translateX(10px);
}

.about .gallery {
    width: 62%;
    height: 616px;
    float: right;
    display: grid;
    position: absolute;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    clip-path: polygon(19.5% 11%, 100% 0, 100% 100%, 0% 100%);
    margin-top: 2px;
    margin-left: 575px;
}

.gallery .carousel img {
    width: 100%;
    object-fit: contain;
}

/* ------------------------------------------------------------ */
/* ---------------------- ABOUT RESPONSIVE -------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -100px;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .container-title h1 {
        font-size: 50px;
    }

    .border-title {
        width: 150px;
        height: 4px;
    }

    .about .box-text {
        width: 100%;
        margin-top: 100px;
    }

    .line {
        width: 400px;
        margin-top: 150px;
        border: 2px solid #ed6b41;
        transform: rotate(-80deg);
        margin-left: 850px;
    }

    .about .read-more {
        margin-left: 800px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -100px;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .about .box-text {
        width: 100%;
        margin-top: 100px;
    }

    .line {
        width: 400px;
        margin-top: 150px;
        border: 2px solid #ed6b41;
        transform: rotate(-80deg);
        margin-left: 680px;
    }

    .about .read-more {
        margin-left: 700px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .container-title h1 {
        font-size: 35px;
    }

    .border-title {
        width: 100px;
        height: 4px;
    }

    .about .box-text {
        width: 100%;
        margin-top: 50px;
    }

    .line {
        width: 400px;
        margin-top: 150px;
        border: 2px solid #ed6b41;
        transform: rotate(-82deg);
        margin-left: 450px;
    }

    .about .read-more {
        margin-left: 500px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (max-width: 920px) {
    .line {
        width: 400px;
        margin-top: 150px;
        border: 2px solid #ed6b41;
        transform: rotate(-82deg);
        margin-left: 500px;
    }

    .about .read-more {
        margin-left: 500px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .container-title h1 {
        font-size: 30px;
    }

    .about .box-text {
        width: 100%;
        margin-top: 100px;
    }

    .about .read-more {
        margin-left: 150px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (width: 540px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .about .box-text {
        width: 100%;
        margin-top: 100px;
    }

    .about .read-more {
        margin-left: 320px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}

@media screen and (width: 344px) {
    .about {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .about .container {
        clip-path: none;
    }

    .container-title h1 {
        font-size: 28px;
    }

    .about .box-text {
        width: 100%;
        margin-top: 100px;
    }

    .about .read-more {
        margin-left: 100px;
    }

    .about .gallery {
        display: none;
    }
    
    .gallery .carousel img {
        display: none;
    }
}