/* Minification failed. Returning unminified contents.
(4,28): run-time error CSS1039: Token not allowed after unary operator: '-base-dark'
(35,23): run-time error CSS1039: Token not allowed after unary operator: '-font-weight-bolder'
(36,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(43,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(61,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(71,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(87,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(109,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(125,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(136,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(142,35): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
.footer{
    float: right;
    width: 100%;
    background-color: var(--base-dark);
    padding: 50px 10%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .right{
    float: right;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .right .about{
    width: 55%;
    float: right;
    padding: 15px;
}
.footer .right .about img{
    height: 100px;
    width: 100px;
    float: right;
}
.footer .right .about .name{
    height: 100px;
    line-height: 100px;
    float: right;
    padding: 0 20px;
    font-size: 40px;
    font-weight: var(--font-weight-bolder);
    color: var(--white);
}
.footer .right .about .description{
    margin-top: 30px;
    width: 100%;
    float: right;
    padding: 0 20px;
    color: var(--white);
    font-size: 15px;
    font-weight: 200;
    line-height: 30px;
}

.footer .right .contact {
    float: right;
    width: 45%;
}
.footer .right .contact .items{
    float: right;
    width: 100%;
}
.footer .right .contact .items .item{
    float: right;
    width: 100%;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.footer .right .contact .items .item:last-of-type{
    margin-bottom: 0;
}
.footer .right .contact .items .item i{
    background-color: var(--primary);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: relative;
    padding-right: 6px;
    margin-left: 30px;
}

.footer .right .contact .items .item i:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    right: 10px;
    transform: skew(20deg);
    z-index: -1;
    width: 100%;
}

.footer .left{
    float: right;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .left .links{
    float: right;
    width: 70%;
}
.footer .left .links .title{
    float: right;
    width: 100%;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 2px;
    position: relative;
    line-height: 50px;
    margin-bottom: 20px;
}
.footer .left .links .title:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    float: right;
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}
.footer .left .links .items{
    float: right;
    width: 100%;
}
.footer .left .links .items .item{
    float: right;
    width: 100%;
}
.footer .left .links .items .item a{
    color: var(--white) !important;
    line-height: 35px;
    border-bottom: 1px solid transparent;
    padding: 0 5px;
}
.footer .left .links .items .item a:hover{
    border-bottom: 1px solid var(--primary);
}

.footer .left .enamad{
    float: right;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1299.98px) {
    .footer {
        display: unset;
    }
    .footer .right .about{
        width: 50%;
        margin-bottom: 20px;
    }
    .footer .right .contact {
        width: 50%;
    }
    .footer .left .links{
        width: 50%;
    }
    .footer .left .enamad{
        width: 50%;
    }
}
@media (max-width: 1499.98px) {
    .footer {
        display: unset;
        padding: 50px 5%;
    }
}
@media (max-width: 1299.98px) {
    .footer {
        flex-flow: wrap;
    }
    .footer .right{
        width: 100%;
    }
    .footer .left{
        width: 100%;
    }
    .footer .right .about{
        width: 60%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer .right .about .description div{
        text-align: center !important;
    }
    .footer .right .contact {
        width: 40%;
        margin-bottom: 20px;
    }
    .footer .left .links{
        width: 60%;
    }
    .footer .left .enamad{
        width: 40%;
    }
}


@media (max-width: 999.98px) {
    .footer {
        padding: 50px 10%;
    }
    .footer .right{
        flex-direction: column;
    }
    .footer .left{
        flex-direction: column;
    }
    .footer .right .about {
        width: 100%;
    }
    .footer .right .contact {
        width: 100%;
    }
    .footer .left .links{
        width: 100%;
        margin-bottom: 20px;
    }
    .footer .left .enamad{
        width: 100%;
    }
}


