* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #393440;
    position: relative;
}

.container {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
}

header > .container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

header > .container > a {
    font-size: 0.75rem;
    color: rgb(219, 211, 196);
    text-decoration: none;
    font-style: italic;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
}

header > .container > a:hover {
    color: #ffc14a;
}

header .menu-responsive {
    display: none;
}

header .menu-responsive a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .menu-responsive h1 {
    color: #f46e22;
    font-size: 2.3rem;
    font-style: italic;
    text-align: center;
    z-index: 1;
}

header .menu-responsive h1:last-child {
    color: #fff;
    position: absolute;
    transform: translateY(5px);
    transform: translateX(3px);
    z-index: 0;
}

header .menu-responsive label {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

header input[type="checkbox"] {
    display: none;
}

.banner {
    width: 100%;
    padding: 50px 0;
    background-color: #dedad9;
}

.banner .row {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.banner .col {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.banner .title {
    color: #f46e22;
    font-size: 3.5rem;
    font-style: italic;
}

.banner .highlight {
    background: url("./Images/gheyrt.png") no-repeat center center;
    background-size: cover;
    width: 436px;
    height: 67px;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .highlight > h3 {
    color: #000;
    font-size: 1.1rem;
    font-style: italic;
    padding: 10px 0;
    display: inline-block;
    word-spacing: 5px;
    letter-spacing: 4px;
}

.banner .promo {
    background: url("./Images/yhjy.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 10px;
    width: 222px;
    height: 71px;
}

.banner .promo > h3 {
    color: #fff;
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
}

.banner .promo > h4 {
    font-size: 1rem;
    font-style: italic;
    text-align: center;
}

.banner .ratio h1 {
    color: #f46e22;
    font-size: 4.5rem;
    font-style: italic;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.banner .ratio h2 {
    color: #f46e22;
    font-size: 3rem;
    font-style: italic;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.banner .ratio h3 {
    color: #7d6767;
    font-size: 1rem;
    font-style: italic;
}

.banner .ratio {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    line-height: 0.9;
}

.banner .ratio .col {
    gap: 0;
}

.banner .cost {
    font-size: 1.5rem;
    font-style: italic;
    color: #656565;
    font-weight: 100;
    text-decoration: line-through;
}

.banner .price {
    font-size: 1.8rem;
    font-style: italic;
    color: #000;
    font-weight: 600;
    padding-left: 20px;
}

.banner p {
    font-size: 0.9rem;
    font-style: italic;
    color: #000;
    font-weight: 100;
    padding: 20px 0;
    text-align: center;
}

.banner .btn-order-now {
    background-image: linear-gradient(rgb(255, 156, 147), rgb(244, 1, 1));
    color: #fff;
    font-size: 1rem;
    font-style: italic;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.banner .img-router {
    width: 300px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.banner .img-router:hover {
    transform: rotate(10deg); 
}

section {
    width: 100%;
    padding: 50px 0;
    background-color: #fff;
}

section h1 {
    color: #e16307;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    text-transform: uppercase;
}

section .line {
    width: 300px;
    height: 2px;
    background-color: #ddd;
    margin: 30px auto 50px auto;
}

section.link-subpage {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.link-subpage a {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #efefef;
    font-size: 0.9rem;
    background: linear-gradient(45deg,rgb(89, 190, 49), rgb(244, 199, 1));
    transition: all 0.3s ease-in-out;
    animation: pulse 1s infinite;
}

section.link-subpage a:last-child {
    background: linear-gradient(45deg,rgb(241, 158, 228), rgb(1, 228, 244));
}

.video-product .box-video {
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    background-color: #e6e6e6;
}

.video-product .box-video iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
}

.box-question {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.box-question .item {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.box-question .question {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f1f3f4;
    cursor: pointer;
}

.box-question .question h6 {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    user-select: none;
}

.box-question .question .icon {
    font-size: 1.5rem;
    color: #000;
    user-select: none;
}

.box-question .body {
    overflow: hidden;
    height: 0;
    user-select: none;
}

.box-question .content {
    width: 100%;
    padding: 10px 20px;
    background-color: #f1f3f4;
    font-size: 0.85rem;
}

.box-question .content p {
    color: #000;
    line-height: 1.5;
}

.box-question .content a {
    color: #000;
    font-weight: 600;
}

.box-question input {
    display: none;
}

.box-question input[type="checkbox"]:checked ~ .body {
    height: 100%;
}

.product-included {
    width: 100%;
    padding: 50px 0;
    background-color: #fff;
}

.product-included .container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.product-included .container .row {
    border: 2px solid #ddd;
    border-radius: 5px; 
    display: flex;
    flex-flow: row nowrap;
    padding: 20px;
}

.product-included .container .row .col {
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.product-included .container img {
    width: 350px;
    object-fit: cover;
}

.product-included .container h2 {
    color: #e16307;
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
}

.product-included .container table {
    width: 100%;
    border-collapse: collapse;
}

.product-included .container i.fa {
    color: #e16307;
    font-size: 1rem;
    margin-right: 10px;
}

.product-included .container td {
    text-align: left;
    padding: 5px 0;
}

.product-included .container p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    font-style: italic;
    font-weight: 600;
}

.product-included .container span {
    color: #e83c30;
    font-size: 1rem;
    font-weight: 600;
}

.slider {
    width: calc(100% - 40px);
    max-width: 400px;
    margin: 0 auto;
}

.slider img {
    width: 100%;
    object-fit: cover;
}

.slider .slick-prev::before,
.slider .slick-next::before {
    color: #000;
    font-size: 1.3rem;
}

.properties h3 {
    color: #e83c30;
    font-size: 1.1rem;
    text-align: center;
    margin: 20px 0;
}

.properties .slider {
    width: calc(100% - 40px);
    max-width: 1000px;
}

.list-service {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px 40px;
}

.list-service .item {
    width: calc(50% - 20px);
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}

.list-service .item .group {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.list-service .item h4 {
    color: #000;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.list-service .item h5 {
    width: calc(100% - 220px);
    color: #000;
    font-size: 0.75rem;
}

.list-service .item select {
    width: 220px;
    padding: 5px;
    border: 1px solid #ddd;
    outline: none;
    cursor: pointer;
}

footer {
    background-color: #242424;
    padding: 50px 0;
}

footer .row {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 10px;
}

footer .col {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
}

footer .gap-20 {
    gap: 20px;
}

footer h2 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

footer i {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
    width: 15px;
}

footer i.facebook {
    color: #3b5998;
}
footer i.youtube {
    color: #c4302b;
}

footer i.telegram {
    color: #0088cc;
}

footer .payment {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin: 20px auto;
}

footer .payment img {
    height: 50px;
    object-fit: cover;
}

footer a {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

footer span>a {
    text-decoration: underline;
}

footer span {
    color: #fff;
    font-size: 0.8rem;
}

footer .copyright {
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #cccccc38;
    text-align: center;
}

footer .copyright span {
    color: #fff;
    font-size: 0.7rem;
}

.box-fixed {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.box-fixed a img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    animation: pulse 1s infinite;
}

.box-fixed-right {
    right: 20px;
    left: auto;
} 

.box-fixed-right a img {
    background-color: #07d2e15d;
    border-radius: 50%;
    padding: 10px 12px;
    width: 70px;
    height: 70px;
}

.routersocks5 a img {
    background-color: rgba(241, 188, 237, 0.5);
}

@media screen and (max-width: 1000px) {
    header .menu-responsive {
        display: flex;
    }
    header .menu {
        display: none !important;
        position: absolute;
        z-index: 999;
        top: 80px;
        right: 0;
        background-color: #e16307;
        flex-flow: column nowrap !important;
        align-items: flex-end !important;
        width: auto;
    }
    header .menu a {
        color: #fff !important;
        width: 100%;
        text-align: right;
    }

    header .menu a h3 {
        user-select: none;
    }

    header .menu a:hover {
        color: #000 !important;
    }

    header input#show-menu:checked ~ .menu {
        display: flex !important;
    }
}

@media screen and (max-width: 850px) {
    .container {
        width: calc(100% - 40px);
        max-width: 600px;
    }
    .banner {
        padding: 20px 0;
    }
    .banner>.container>.row {
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }

    .banner>.container>.row .title {
        display: none;
    }

    .banner .img-router {
        width: 250px;
    }

    .product-included img {
        width: 200px !important;
    }

    .product-included p {
        font-size: 0.8rem !important;
    }

    .list-service .item {
        width: 100%;
    }

    footer .payment img {
        height: 35px;
    }

    html {
        font-size: 17px;
    }

    .video-product .box-video iframe {
        height: 400px;
    }

    section h1 {
        font-size: 1.5rem;
        max-width: calc(100% - 40px);
    }

    section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 650px) {
    footer .row {
        flex-flow: column nowrap;
        gap: 30px;
    }

    footer .col {
        width: 100%;
    }

    footer .gap-20 {
        gap: 5px;
    }

    footer h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    section h1 {
        font-size: 1rem;
        max-width: calc(100% - 40px);
    }

    .properties h3 {
        font-size: 0.8rem;
    }

    .product-included .container .row {
        flex-flow: column nowrap;
    }

    .product-included h2 {
        font-size: 1.1rem !important;
        margin: 0 0 20px 0 !important;
    }

    .product-included p {
        font-size: 0.75rem !important;
    }

    .product-included span {
        font-size: 0.8rem !important;
    }

    .product-included img {
        width: 150px !important;
    }

    .product-included .col {
        padding: 0 !important;
    }

    .box-question h6 {
        font-size: 0.8rem !important;
    }

    .box-question .content {
        font-size: 0.8rem !important;
    }

    .video-product .box-video iframe {
        height: 300px;
    }

    .highlight {
        width: 350px !important;
        height: 45px !important; 
    }

    .highlight h3 {
        font-size: 0.9rem !important;
    }

    .menu-responsive h1 {
        font-size: 1.5rem !important;
    }

    .menu {
        top: 61.5px !important;
    }

    .cost {
        font-size: 1.2rem !important;
    }

    .price {
        font-size: 1.5rem !important;
    }

    .banner .ratio h1 {
        font-size: 3.5rem !important;
    }

}
