main .about
{
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}
main .about h2
{
    padding-right: 50px;
    font-size: 70px;
    width: 80%;
    max-width: 1100px;
    border-right: 2px solid #000;
}
main .about .services
{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 285px;
    width: 98%;
}
main .about .services div:not(:last-child) { border-right: 2px solid #000 }
main .about .services .offerTxt
{
    display: flex;
    justify-content: center;
    gap: 10px;
}
main .about .services div 
{ 
    padding: 20px 40px 20px;
    height: 100%;
}
main .about .services div h4
{
    margin: 0;
    font-size: 25px;
}
main .about .services div h3
{
    margin: 0;
    font-size: 40px;
}
main .about .services div ul
{ 
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    list-style-type: none;
}
main .about > a
{ 
    padding: 15px 50px;
    background-color: #000;
    font-size: 20px;
    color: #FDFFFF;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Inter Medium';
}
main .mission 
{   
    width: 90%;
    max-width: 1100px;
}
main .mission .textScroll
{
    position: relative;
    margin-inline: auto;
    overflow: hidden;
    height: 200px;
}
main .mission h2
{  
    position: absolute;
    white-space: pre;
    width: 100%;
    font-size: 70px;
    animation: textSlide 10s linear infinite;
}
main .mission .info { width: 100% }
main .mission .info .gallery
{  
    display: grid;
    grid-template-columns: calc(40% - 6px) calc(30% - 6px) calc(30% - 6px);
    gap: 18px;
    align-self: center;
}
main .mission .info .gallery div
{  
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 305px;
}
main .mission .info .gallery div .img
{  
    width: 100%;
    height: 100%;
    background: var(--image-url);
    background-position: center;
    background-size: cover;
    transition: .2s ease-out;
}
main .mission .info .gallery div:hover .img { transform: scale(1.2) }
main .mission .info .gallery div:nth-child(2)
{  
    grid-column: 2;
    grid-row: 1 / span 2;
}
main .mission .info .gallery div h4
{  
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    font-size: 40px;
    color: #FDFFFF;
    background-color: #00000059;
    transition: .2s ease-out;
    backdrop-filter: blur(1px);
}
main .mission .info .gallery div:hover h4 
{ 
    background-color: #0000007f;
    backdrop-filter: blur(0);
}

@keyframes textSlide 
{
    from
    {
        transform: translate(0, 0);
    }    
    to
    {
        transform: translate(-500px, 0);
    }
}

@media only screen and (max-width: 1225px) 
{
    main .about .services
    {
        flex-wrap: wrap;
        height: unset;
    }
    main .about .services div
    { 
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
    }
    main .mission .info .gallery div h4 { font-size: 25px }
}
@media only screen and (max-width: 925px) 
{
    main .about h2 { font-size: 40px }
    main .about { margin-bottom: 50px }
}
@media only screen and (max-width: 720px) 
{
    main .about .services
    {
        flex-direction: column;
        align-items: center;
    }
    main .about .services div
    { 
        border-right: unset !important;
        width: 70%;
    }
    main .about .services div:last-child {  border-bottom: unset }
    main .mission .info .gallery
    {  
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    main .mission .info .gallery div
    {  
        width: 100%;
        max-width: 300px;
    }
    main .mission .info .gallery div h4 { font-size: 40px }
}