.content .mytitle,
.content .mymintitle {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.content .mytitle {
    position: relative;
    margin-bottom: 80px;
}

.content .mytitle:after,
.content .mytitle:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 80px;
    height: 3px;
    background-color: var(--mainColor);
}

.content .mytitle:before {
    bottom: unset;
    left: 55%;
}

.content .mymintitle {
    font-size: 18px;
    letter-spacing: 12px;
    opacity: 0.50;
    text-transform: uppercase;
}

.content .clients-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.content .clients-container .clients-content {
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .clients {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.content .clients:not(.system) {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.content .clients>a {
    width: 100%;
    height: 100px;
    background-color: var(--bgColorLight1);
    margin: 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /*justify-content: space-around;*/
    position: relative;
    overflow: hidden;
}

.content .clients:not(.system)>a:after {
    position: absolute;
    content: "";
    bottom: -20px;
    right: -20px;
    border: 20px solid transparent;
    border-left-color: var(--mainColor);
    transform: rotate(45deg);
}

.content .clients a .icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 15px;
}

.content .clients a.mega .icon {
    background-image: url(../images/mega.png);
}

.content .clients a.googledrive .icon {
    background-image: url(../images/googledrive.png);
}

.content .clients a.mediafire .icon {
    background-image: url(../images/mediafire.png);
    background-size: 170%;
    background-position: center;
}

.content .clients a.unzip .icon {
    background-image: url(../images/unzip.png);
}

.content .clients a .icon {
    background-size: 100%;
    background-repeat: no-repeat;
}

.content .clients a .information {
    color: var(--bgColor1);
}

.content .clients a .information h1:first-child {
    font-size: 16px;
    letter-spacing: 3px;
}

.content .clients.system>a {
    height: 200px;
    width: calc(100% / 3);
    display: block;
    padding-top: 10px;
    padding-left: 50px;
    cursor: default;
}

.content .clients.system {
    margin-bottom: 80px;
}

.content .clients a .information h1:first-child {
    margin-bottom: 10px;
    position: relative;
}

.content .clients a .information h1:first-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mainColor);
}

.content .clients:not(.system) a .information h1:first-child:after {
    width: 0;
    transition: width 0.5s;
}

.content .clients:not(.system) a:hover .information h1:first-child:after {
    width: 50px;
}

.content .clients:not(.system) a:hover {
    transform: scale(1.05);
}

.content .clients:not(.system) a {
    transition: transform 0.6s;
    text-decoration: none;
    width: 350px;
}

/* Resposive */
/* screen width 1440 and 1400 */
@media screen and (max-width:1450px) {
    .content .clients>a {
        width: 100%;
    }

    .content .clients.system>a {
        width: calc(100% / 2.7);
    }
}

/* screen width 1366 and 1360 */
@media screen and (max-width:1376px) {
    .content .clients.system>a {
        width: calc(100% / 2.6);
    }
}

/* screen width 1280 */
@media screen and (max-width:1290px) {
    .content .clients.system>a {
        width: calc(100% / 2.5);
    }
}

/* screen width 1152 and 1024 */
@media screen and (max-width:1162px) {
    .content .clients.system>a {
        width: calc(100% / 2.2);
        padding-left: 30px;
    }
}

/* screen width under 1024 */
@media screen and (max-width:1024px) {
    .content .clients.system>a {
        width: calc(100% / 2.3);
        padding-left: 20px;
    }

    .content .clients.system>a h1 {
        font-size: 90%;
    }
}