

.head__body-btn svg {
    position: absolute;
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    color: #EA4544;
}

.head__body-btn-darkmode svg {
    position: absolute;
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    color: #fff;
}

.nav__mobile-list {
    position: fixed;
    z-index: 3;
    background-color: white;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform linear 0.3s;
    overflow: auto;
}

.nav__mobile-list-creat,
.nav__mobile-list-blog,
.nav__mobile-list-G {
    padding: 20px 0px;
}

.nav__mobile input {
    display: none;
}

.nav__mobile-close svg {
    width: 30px;
    height: 30px;
    color: #313131;
    padding-top: 10px;
    padding-left: 10px;
    cursor: pointer;
}

.nav__mobile-close svg:hover {
    color: #EA4544;
}

.nav__mobile-list-creat:hover,
.nav__mobile-list-blog:hover,
.nav__mobile-list-G:hover {
    background: #EA4544;
    color: white;
}

.nav__mobile-dropdown-tool a,
.nav__mobile-dropdown-service a {
    text-decoration: none;
    color: #000;
}

.nav__tool, .nav__service {
    padding: 20px 0px;
    cursor: pointer;
}

.nav__tool:hover {
    background: #EA4544;
    color: white;
}

.nav__service:hover {
    background: #EA4544;
    color: white;
}

.nav__mobile-btn:hover {
    background: #EA4544;
    cursor: pointer;
}

.nav__mobile-btn:hover a {
    color: #fff;
}

.nav__mobile-overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

#head__input:checked ~ .nav__mobile-list {
    display: block;
}

#head__input:checked ~ .nav__mobile-overlay {
    display: block;
}

#head__input:checked ~ .nav__mobile-list {
    transform: translateX(0%);
}

.nav__mobile-dropdown-tool {
    display: none;
}

.nav__mobile-dropdown-service {
    display: none;
}

#dropdown-tool:checked ~ .nav__mobile-dropdown-tool {
    display: block;
}

#dropdown-service:checked ~ .nav__mobile-dropdown-service {
    display: block;
}

.nav__mobile-dropdown-tool, .nav__mobile-dropdown-service {
     margin-top: 20px;
    margin-left: 50px;
    width: 260px;
    font-weight: 300;
    font-size: 13px;
    line-height: 40px;
    border: 0.5px solid #e6e8ea;
}

.fa-adjust {
    animation-name: spin;
    animation-duration: 0.8s;
}

@keyframes spin {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(360deg)
    }
}

/* darkmode */


@media (max-width:1200px) {
    /* .head__menu-picture {
        display: none;
    } */
    .head__res {
        display: flex;
        justify-content: space-around;
    }
    /* .head__body-btn svg {
        display: block;
    } */
    .l-11 {
        flex: 0 0 90%;
        max-width: 90%;
    }
    .l-o-1 {
        margin-left: 3.33333%;
    }
}

@media (max-width:1045px) {
    .head__menu-picture {
        display: none;
    }
    .head__body-btn svg {
        display: block;
        margin-left: -40px
    }
    .nav__mobile-list {
        display: block;
    }
    .head__menu-picture-darkmode {
        display: none;
    }
    .head__body-btn-darkmode svg {
        display: block;
    }
    .m-11 {
        flex: 0 0 90%;
        max-width: 90%;
    }
    .m-o-1 {
        margin-left: 3.33333%;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        height: 100%;
    }
    .foot__text, .foot__text-1, .foot__text-2 {
        flex-direction: column;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-left: 0;
        padding-left: 20px;
    }
}

@media (max-width: 740px) {
    .m-11 {
        flex: 0 0 90%;
        max-width: 90%;
    }
    .m-o-1 {
        margin-left: 3.33333%;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        height: 100%;
    }
    .foot__text, .foot__text-1, .foot__text-2 {
        flex-direction: column;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-left: 0;
        padding-left: 10px;
    }
    .foot__darkmode {
        height: 100%;
    }
    .frame6 {
        width: 320px;
    }
}

#fa-adjust-dark {
    animation-name: spinDarkmode;
    animation-duration: 0.8s ;
}

@keyframes spinDarkmode {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(180deg);
    }
}