:root {
  --blue-main: #063350;
  --green: #4BAC9A;
  --text: #373D45;
  --blue: #69AECD;
}
.about__wrapper {
    width: 100%;

    min-height: 100vh;
}
.about__name {
    height: 300px;
    width: 100%;
    background-color: var(--green);
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.about__name h3 {
    color: #fff;
    font-size: 32px;
}
.about__name-line {
    width: 120px;
    margin-top: 15px;
    height: 1px;
    background-color: #d8fff8;
}
.about__container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about__element {
    width: 50%;
    height: 748px;
    min-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e3e3e3;
}
.about__element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__element-text {
    width: 500px;


    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about__element-name {
    color: var(--green);
    font-size: 34px;
    margin-bottom: 30px;
}
.about__element-name h3{
    line-height: 44px;
}
.about__element-content {
    color: var(--blue-main);
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1024px) {
    .about__container{
        flex-direction: column;
    }
    .about__element{
        width: 100%;
        height: initial;
    }
    .about__element-text{
        padding: 25px 10px;
    }
    .about__element:nth-child(4){
        display: none;
        visibility: hidden;
    }
}