/* Start Variables */
:root {
    --main-color: #d11e38;
    --white-color: white;
    --secender-color: #161616;
    --text-color: #444444;
}
/* End Variables */
/* Start Global Rules */
* {
    --webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    text-decoration: none;
}
body {
    font-family: 'Ubuntu', sans-serif;
    overflow-x: hidden;
}

*::selection {
    background-color: var(--main-color);
    color: white;
}
/* Start Global Rules */
/* Start header */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 10;
    transition: background-color 0.4s ease-in-out;
    background-color: var(--color-orange);
}

header.scrolled {
    background-color: white;
    -moz-box-shadow: 0 4px 4px var(--main-color);
    -webkit-box-shadow: 0 4px 4px var(--main-color);
    box-shadow: 0 2px 5px var(--main-color);
    opacity: 0.98;
}

.logo img{
    max-width: 60px;
}

.hamburger {
    display: none;
}

.nav-bar ul {
    display: flex;
    list-style: none;
}

.nav-bar ul li a {
    display: block;
    color: var(--secender-color);
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 0 5px;
    transition: color 0.4s ease-in-out;
}

header.scrolled .nav-bar a {
    color: var(--main-color);
}

header.scrolled .nav-bar ul li a.active {
    color: black;
}

header.scrolled .nav-bar ul li a:hover {
    color: black;
}

.nav-bar ul li a:hover {
    color: var(--main-color);
}

.nav-bar ul li a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    
}

.nav-bar ul li.active::after {
    display: none;
}

.nav-bar ul li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width .2s;
}

.nav-bar ul li:hover::after {
    width: 100%;
}

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 900px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 6px 0;
        z-index: 1000;
    }
    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background-color: white;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-bar.active {
        height: 450px;
    }

    header.active {
        background-color: transparent;
        transition: 0.5s;
    }
    header {
        background-color: white;
    }

    header.scrolled {
        background-color: white;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar.active ul li a  {
        color: white;
        background-color: none;
        color: var(--main-color);
    }
    .nav-bar ul li a.active {
        background-color: var(--main-color);
        color: white;
    }
    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul {
        opacity: 1;
    }
    .nav-bar ul li a {
        margin-bottom: 12px;
    }
}
/* End header */
/* Start sec-1 */
.sec-1 {
    margin-top: 80px;
}

.sec-1 .img-text {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
}

.sec-1 .img-text img{
    max-width: 100%;
    height: auto;
}

.sec-1 .img-text .text-sec-1 {
    position: absolute;
    margin-left: 50px;
}

.sec-1 .img-text .text-sec-1 h1 {
    font-size: 90px;
    color: var(--main-color);
    -webkit-text-stroke: 1px var(--white-color);
}

.sec-1 .img-text .text-sec-1 p {
    font-size: 37px;
    color: var(--main-color);
    -webkit-text-stroke: 0.5px var(--white-color);
    font-weight: 500;
}
/* Start sec-1 */
/* Start section SERVICE */
section {
    max-width: 90%;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

section .pig-title {
    color: var(--main-color);
    text-align: center;
    margin-top: 15px;
}

section .title {
    text-align: center;
    font-weight: 400;
    color: var(--secender-color);
}
/* End section SERVICE */
/* Start Section WHY US? */
.services .services-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    align-items: center;
    row-gap: 50px;
    column-gap: 50px;
}

.services .services-content .srv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-color);
    border-radius: 15px;
    height: 250px;
    padding: 0px 10px;
    transition: 0.4s;
}

.services .services-content .srv:hover {
    transform: scale(1.1);
}

.services .services-content .srv svg {
    width: 150px;
}

.services .services-content .srv #svg1 {
    width: 80px;
}

.services .services-content .srv #svg2 {
    width: 120px;
}

.services .services-content .srv #svg3 {
    width: 130px;
}

.services .services-content .srv #svg4 {
    width: 140px;
}

.services .services-content .srv #svg5 {
    width: 50px;
}

.services .services-content .srv #svg6 {
    width: 50px;
}

.services .services-content .srv .text {
    margin-top: 25px;
    text-align: start;
}

.services #text-5-6 {
    margin-top: 5px;
}

.services .services-content .srv .text .normal-text {
    text-align: center;
    font-size: 15px;
    color: var(--main-color);
}

.services .services-content .srv .text .smoll-text {
    text-align: center;
    font-size: 13px;
    font-weight: 100;
    color: var(--text-color);
    max-width: 400px;
}

.services .free {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 25px;
}

.services .free a {
    background-color: var(--main-color);
    border-radius: 30px;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    padding: 10px 20px;
    font-size: 20px;
    transition: 0.4s;
}

.services .free a:hover {
    background-color: transparent;
    color: var(--main-color);
}
/* End Section WHY US? */
/* Start Section PLANFOR YOU */
.plan-for-you  {
    width: 75%;
}

.plan-for-you .plan-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-top: 15px;
    align-items: center;
    column-gap: 20px;
}

.plan-for-you .plan-content .srv {
    text-align: center;
    margin-top: 20px;
    max-width: 100%;
    transition: 0.5s;
}

.plan-for-you .plan-content .srv:hover {
    transform: scale(1.1);
}

.plan-for-you .plan-content .srv ul {
    list-style: none;
}
/* Start Pricing */
.plan-for-you .plan-content .srv #price-1month {
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.plan-for-you .plan-content .srv #price-3month {
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.plan-for-you .plan-content .srv #price-6month {
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.plan-for-you .plan-content .srv #price-12month {
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
/* End Pricing */
.plan-for-you .plan-content .srv #month1 {
    color: white;
    display: flex;
    justify-content: center;
}

.plan-for-you .plan-content .srv #month1-1 {
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
}

.plan-for-you .plan-content .srv #month3 {
    color: white;
    display: flex;
    justify-content: center;
}

.plan-for-you .plan-content .srv #month3-3 {
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
}

.plan-for-you .plan-content .srv #month6 {
    color: white;
    display: flex;
    justify-content: center;
}

.plan-for-you .plan-content .srv #month6-6 {
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
}

.plan-for-you .plan-content .srv #month12 {
    color: white;
    display: flex;
    justify-content: center;
}

.plan-for-you .plan-content .srv #month12-12 {
    color: white;
    display: flex;
    justify-content: center;
    position: relative;
}
/* Start befor and after */
.plan-for-you .plan-content .srv #month1-1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    margin-top: -25px;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--main-color);
}

.plan-for-you .plan-content .srv #month3-3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    margin-top: -25px;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--secender-color);
}

.plan-for-you .plan-content .srv #month6-6::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    margin-top: -25px;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--main-color);
}

.plan-for-you .plan-content .srv #month12-12::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    margin-top: -25px;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--secender-color);
}
/* End befor and after */
/* Start border color */
.plan-for-you .plan-content .border-1 {
    border: 3px solid var(--main-color);
    border-radius: 20px;
}

.plan-for-you .plan-content .srv .line-1 {
    background-color: var(--main-color);
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.plan-for-you .plan-content .border-2 {
    border: 3px solid var(--secender-color);
    border-radius: 20px;
}

.plan-for-you .plan-content .srv .line-2 {
    background-color: var(--secender-color);
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.plan-for-you .plan-content .border-3 {
    border: 3px solid var(--main-color);
    border-radius: 20px;
}

.plan-for-you .plan-content .srv .line-3 {
    background-color: var(--main-color);
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.plan-for-you .plan-content .border-4 {
    border: 3px solid var(--secender-color);
    border-radius: 20px;
}

.plan-for-you .plan-content .srv .line-4 {
    background-color: var(--secender-color);
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
/* End border color */

.plan-for-you .plan-content .srv .li1 {
    text-align: start;
    display: inline-block;
    line-height: 25px;
    margin-top: 15px;
    text-align: center;
    margin-top: 50px;
}

.plan-for-you .plan-content .srv .li3 {
    text-align: start;
    display: inline-block;
    line-height: 25px;
    margin-top: 15px;
    text-align: center;
    margin-top: 50px;
}

.plan-for-you .plan-content .srv .li6 {
    text-align: start;
    display: inline-block;
    line-height: 25px;
    margin-top: 15px;
    text-align: center;
    margin-top: 50px;
}

.plan-for-you .plan-content .srv .li12 {
    text-align: start;
    display: inline-block;
    line-height: 25px;
    margin-top: 15px;
    text-align: center;
    margin-top: 50px;
}

.plan-for-you .plan-content .botton-month {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 100;
}

.plan-for-you .plan-content .botton-month #botton-1 {
    border: 1.5px solid var(--main-color);
    background-color: var(--main-color);
    padding: 10px 30px;
    border-radius: 20px;
    color: white;
    transition: 0.5s;
}

.plan-for-you .plan-content .botton-month #botton-1:hover {
    color: var(--main-color);
    background-color: transparent;
}

.plan-for-you .plan-content .botton-month #botton-3 {
    border: 1.5px solid var(--secender-color);
    background-color: var(--secender-color);
    padding: 10px 30px;
    border-radius: 20px;
    color: white;
    transition: 0.5s;
}

.plan-for-you .plan-content .botton-month #botton-3:hover {
    color: var(--secender-color);
    background-color: transparent;
}

.plan-for-you .plan-content .botton-month #botton-6 {
    border: 1.5px solid var(--main-color);
    background-color: var(--main-color);
    padding: 10px 30px;
    border-radius: 20px;
    color: white;
    transition: 0.5s;
}

.plan-for-you .plan-content .botton-month #botton-6:hover {
    color: var(--main-color);
    background-color: transparent;
}

.plan-for-you .plan-content .botton-month #botton-12 {
    border: 1.5px solid var(--secender-color);
    background-color: var(--secender-color);
    padding: 10px 30px;
    border-radius: 20px;
    color: white;
    transition: 0.5s;
}

.plan-for-you .plan-content .botton-month #botton-12:hover {
    color: var(--secender-color);
    background-color: transparent;
}
/* End Section PLANFOR YOU */
/* Start Section Slider */
.container1 {
    width: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.swiper {
    max-width: 50%;
    height: fit-content;
}

.swiper-slide img {
    width: 100%;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    position: absolute;
    padding: 20px;
    color: var(--main-color);
}

.swiper .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.swiper .text-slide-pig {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
}

.swiper .text-slide-pig h1 {
    color: var(--main-color);
    font-size: 28px;
}

.swiper .text-slide-pig p {
    color: var(--text-color);
    font-size: 18px;
    padding: 0px 20px;
}

.swiper .text-slide-pig p a {
    color: var(--main-color);
    font-weight: 600;
}

/* End Section Slider */
/* Start Section TUTORIAL */
.tutorial .img-tutorial img{
    position: relative;
    max-width: 120%;
    margin-left: -7%;
}

.tutorial .tutorial-titel {
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: -25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
}

.tutorial .tutorial-titel h1 {
    text-align: center;
    color: var(--main-color);
    font-size: 150px;
}

.tutorial .tutorial-titel .tutorial-p p {
    text-align: center;
    color: var(--main-color);
    font-size: 35px;
    font-weight: 100;
}

.tutorial .tutorial-titel .tutorial-botton {
    text-align: center;
    margin-top: 30px;
}

.tutorial .tutorial-titel .tutorial-botton a {
    border: 1.5px solid var(--main-color);
    background-color: var(--main-color);
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    transition: all 0.5s ease 0s;
}

.tutorial .tutorial-titel .tutorial-botton a:hover {
    background-color: transparent;
    color: var(--main-color);
}
/* End Section TUTORIAL */
/* Start Section Questions */
.titel-section-questions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.titel-section-questions h1 {
    font-size: 35px;
    color: var(--main-color);
}

.titel-section-questions .questions-p {
    margin-top: 10px;
    text-align: center;
}

.titel-section-questions .questions-p p {
    font-size: 18px;
    line-height: 23px;
}

.titel-section-questions .questions-p p a {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
}

.Questions {
    margin-top: 50px;
    flex-wrap: wrap;
}

.Questions img {
    max-width: 400px;
    max-height: 225px;
}

.Questions-2 img {
    max-width: 400px;
    max-height: 225px;
}

.accordion {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 100px;
}

.accordion .contentBX {
    position: relative;
    margin: 10px 20px;
}

.accordion .contentBX .label {
    position: relative;
    padding: 10px;
    border: 1.5px solid var(--secender-color);
    color: var(--main-color);
    font-size: 20px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
}

.accordion .contentBX .label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.accordion .contentBX.active .label::before {
    content: '-';
}

.accordion .contentBX .content {
    position: relative;
    background: #fff;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

.accordion .contentBX .content p {
    line-height: 25px;
    color: var(--text-color);
}

.accordion .contentBX.active .content {
    height: 100px;
    padding: 10px;
}

.feedbacks {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 25px;
    color: var(--main-color);
}
/* End Section Questions */
/* Start Section START NOW */
.services .start-now {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.services .start-now .srv {
    display: flex;
    justify-content: center;
}

.services .start-now .srv .text {
    text-align: center;
    padding: 15px;
}

.services .start-now .srv .text .normal-text {
    font-size: 25px;
    color: var(--main-color);
    font-weight: 800;
}

.services .start-now .srv .text .smoll-text {
    font-size: 22px;
    font-weight: 200;
}

.services .start-now .srv .text .smoll-text a {
    color: white;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.5s;
}

.services .start-now .srv .text .smoll-text a:hover {
    color: var(--main-color);
    background-color: transparent;
}
/* End Section START NOW */
/* Start Section Why Us */
.guide {
    max-width: 70%;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
}

.installation {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.installation .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 20px;
}

.installation .col {
    border: 1px solid var(--main-color);
    background-color: var(--white-color);
    padding: 20px;
    height: 20rem;
    width: 18rem;
    text-align: center;
    transition: 0.4s;
}

.installation .bg-col {
    background-color: var(--main-color);
}

.installation .text-col {
    color: var(--white-color);
}

.installation .col .card {
    color: var(--secender-color);
    transition: 0.5s;
}

.installation .col .card-title-stroke {
    padding-top: 30%;
    font-size: 50px;
    color: var(--secender-color);
    -webkit-text-stroke: 1px var(--white-color);
    line-height: 40px;
    padding-bottom: 15px;
}

.installation .col .card .card-title {
    padding-top: 5%;
    font-size: 16px;
}


.installation .col .card .card-text {
    padding-top: 10%;
    max-width: 15rem;
}

.installation .col .card .card-text a {
    color: var(--white-color);
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 20px;
    transition: 0.4s;
}

.installation .col .card .card-text a:hover {
    background-color: transparent;
    color: var(--main-color);
}
/* End Section Why Us */
/* Start Section footer */

.services .footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 200px;
    width: 115%;
    margin-top: 94px;
    background-color: var(--secender-color);
    overflow: hidden;
}

.services .footer .srv {
    display: flex;
    justify-content: center;
    
}

.services .footer .srv .text {
    text-align: center;
    line-height: 20px;
}

.services .footer .srv .text .normal-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .footer .srv .text .normal-text h3 {
    font-size: 15px;
    font-weight: 500;
    color: white;
    padding: 18px;
}

.services .footer .srv .text .normal-text img {
    max-width: 40px;
}

.services .footer .srv .text .normal-text ul {
    list-style: none;
}

.services .footer .srv .text .normal-text ul h4{
    text-align: start;
    font-size: 25px;
    font-weight: 500;
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 12px;
    padding-top: 10px;
}

.services .footer .srv .text .normal-text ul a {
    color: white;
    font-weight: 500;
    transition: 0.4s;
}

.services .footer .srv .text .normal-text ul a:hover {
    color: var(--main-color);
}

.services .footer .srv .text .normal-text #fot-1 {
    margin-top: 10px;
}
.services .footer .srv .text .normal-text ul li {
    text-align: start;
}

.services .footer {
    background-color: var(--secender-color);
}
/* End Section footer*/
/* Start Cookies */
.container {
    width: 1600px;
    margin: auto;
}

.subcontainer {
    width: 85%;
    margin: auto;
}

#cookies {
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.726);
    z-index: 1;
    display: none;
}

.cookies {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 8px;
    line-height: 25px;
}

.cookies a {
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
}

#cookies-btn {
    border-radius: 20px;
    padding: 10px 15px 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: white;
    transition: 0.4s;
}

#cookies-btn:hover {
    background-color: transparent;
}

@media(max-width:1600px) {
    .container {
        width: 100%;
    }
}

@media(max-width:1024px) {
    .cookies {
        padding: 10px 0;
    }
}
/* End Cookies */


/* Start responsive */

@media (min-width: 1371px) and (max-width: 1445px){

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: white;
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 60px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 25px;
    }
    /* Start sec-1 */
    /* Start section SERVICE */
    section {
        max-width: 90%;
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }

    section .pig-title {
        color: var(--main-color);
        text-align: center;
        margin-top: 15px;
    }

    section .pig-title #why-us {
        padding-bottom: 50px;
    }

    section .title {
        text-align: center;
        font-weight: 400;
        color: var(--secender-color);
    }
    /* End section SERVICE */

    /* Start Section WHY US? */
    .services {
        width: 750px;
    }
    /* Start Section WHY US? */
    .services .services-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
        align-items: center;
        row-gap: 50px;
        column-gap: 50px;
    }

    .services .services-content .srv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--main-color);
        border-radius: 15px;
        height: 250px;
        padding: 0px 20px;
        transition: 0.4s;
    }

    .services .services-content .srv:hover {
        transform: scale(1.1);
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */

    .plan-for-you  {
        width: 100%;
    }

    .plan-for-you .plan-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        margin-top: 15px;
        align-items: center;
        column-gap: 1px;
        border-radius: 15px;
    }

    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 50%;
    }

    .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 45%;
    }
    /* End #1 IPTV */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 114.9%;
        margin-left: -8%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 60px;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 30px;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 18px;
    }
    /* End Section TUTORIAL */
    /* Start FAQ */
    .services .faq {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: 170px;
        margin-top: 15px;
        column-gap: 10px;
        row-gap: 0px;
    }
    /* End FAQ */
    /* Start Section CLIENTS REVIEW */

    .services .clients-review {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }
    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        column-gap: 30px;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 20px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 20px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    #footer-circle-bg {
        max-width: 100%;
        position: absolute;
        margin-top: -20px;
    }

    .services {
        max-width: 100%;
    }
    .services .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow-x: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: space-evenly;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 15px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 18px;
    }
    /* End Section footer */

    .slide img {
        width: 780px;
        overscroll-behavior: none;
        overflow: hidden;
    }

    .services .services-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 10px;
        margin-left: 10px;
        margin-top: -25px;
    }
    
    .services .services-content .srv {
        display: flex;
        
    }
}

@media (min-width: 1357px) and (max-width: 1370px){

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: white;
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar ul li a {
        display: block;
        color: white;
        font-size: 18px;
        padding: 10px 25px;
        border-radius: 50px;
        transition: 0.3s;
        margin: 0 5px;
        transition: color 0.4s ease-in-out;
    }

    .logo img{
        max-width: 60px;
    }

    .nav-bar ul li a {
        display: block;
        color: var(--secender-color);
    }
    
    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 60px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 25px;
    }
    /* Start sec-1 */
    /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */

    .plan-for-you  {
        width: 100%;
    }

    .plan-for-you .plan-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 110px;
    }

    .plan-for-you .plan-content .border-1 {
        width: 300px;
    }
    
    .plan-for-you .plan-content .border-2 {
        width: 300px;
    }
    
    .plan-for-you .plan-content .border-3 {
        border: 3px solid var(--main-color);
        border-radius: 20px;
        width: 300px;
    }
    
    .plan-for-you .plan-content .border-4 {
        width: 300px;
    }
    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 50%;
    }

    .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 45%;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 20px;
        padding-bottom: 8px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 12px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 115.4%;
        margin-left: -8%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 60px;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 30px;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 18px;
    }
    /* End Section TUTORIAL */
    /* Start FAQ */
    .services .faq {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        height: 170px;
        margin-top: 15px;
        column-gap: 10px;
        row-gap: 10px;
    }
    /* End FAQ */
    /* Start Section CLIENTS REVIEW */

    .services .clients-review {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }
    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        column-gap: 30px;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 20px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 20px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    .services {
        max-width: 100%;
    }
    .services .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow-x: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: space-evenly;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 15px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 18px;
    }
    /* End Section footer */

    .slide img {
        width: 780px;
        overscroll-behavior: none;
        overflow: hidden;
    }

    .services .services-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 10px;
        margin-top: -25px;
    }
    
    .services .services-content .srv {
        display: flex;
        
    }
}

/* Small */

@media (min-width: 767px) and (max-width: 1024px){
    .logo img{
        max-width: 150px;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }
    /* Start header */
    .logo img{
        width: 60px;
    }
    /* Start header */
    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 33px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 13px;
    }
    /* Start sec-1 */
    /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */
    /* Start #1 IPTV */
    .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 50%;
    }

    .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 45%;
    }
    /* End #1 IPTV */
    /* Start Section  #1 IPTV*/
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 60%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 60%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 30px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 20px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
        padding: 0px 15px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* Start Section  #1 IPTV*/
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 28px;
        padding-bottom: 8px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 18px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 115.4%;
        margin-left: -8%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 60px;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 30px;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 18px;
    }
    /* End Section TUTORIAL */

    /* Start Section Questions */
    .accordion {
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 100px;
    }

    .feedbacks {
        margin-top: 20px;
    }
    .Questions-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* End Section Questions */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        column-gap: 30px;
        padding-bottom: 50px;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 20px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 20px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    #footer-circle-bg {
        margin-top: -17px;
    }

    .services {
        width: 100%;
    }
    .services .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 250px;
        width: 105.5%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: center;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 12px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    /* End Section footer */

    .slide img {
        width: 780px;
        overscroll-behavior: none;
        overflow: hidden;
    }

    .services .services-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 10px;
        margin-top: -25px;
    }
    
    .services .services-content .srv {
        display: flex;
        
    }
}

@media (min-width: 768px) and (max-width: 1000px) {
    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }
    .logo img{
        max-width: 120px;
    }
    /* Start header */
    .logo img{
        width: 60px;
    }
    /* Start header */
    .nav-bar.active {
        height: 500px;
    }
    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 33px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 13px;
    }
    /* Start sec-1 */
     /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */

    .plan-for-you  {
        width: 60%;
    }
    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 18px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 14px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
        padding: 0px 15px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 25px;
        padding-bottom: 8px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 16px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 116.2%;
        margin-left: -8.1%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 50px;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 20px;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 15px;
    }

    .tutorial .tutorial-titel {
        margin-top: -25%;
    }
    /* End Section TUTORIAL */
    /* Start FAQ */
    .services .faq {
        display: grid;
        grid-template-columns: repeat(1, auto) repeat(1, 1fr);
        height: 170px;
        margin-top: 15px;
        column-gap: 10px;
        row-gap: 0px;
    }
    /* End FAQ */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        column-gap: 30px;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 20px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 20px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    .services .footer {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 200px;
        width: 102.4%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow: hidden;
    }
    /* End Section footer */
}

@media (min-width: 411px) and (max-width: 767px){
    .carousel_inner {
        width: 100%;
        overflow: hidden;
    }

    /* Start header */
    header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 50px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 25px;
        z-index: 10;
    }
    .hamburger .line {
        width: 20px;
        height: 2px;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar.active {
        height: 500px;
        margin-top: -30px;
    }
    /* End header */
    /* Start header */
    .logo img{
        width: 40px;
    }

    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    /* Start header */
    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 20px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 8px;
    }

    .sec-1 .img-text .text-sec-1 {
        position: absolute;
        margin-left: 15px;
    }
    /* Start sec-1 */

     /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */

    .plan-for-you  {
        width: 90%;
    }
    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 18px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 14px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
        padding: 0px 15px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 20px;
        padding-bottom: 8px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 12px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 120.5%;
        height: 200px;
        margin-left: -10.3%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel {
        width: 100%;
        text-align: center;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -170px;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton {
        text-align: center;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 18px;
        padding: 10px 15px;
    }
    /* End Section TUTORIAL */
    /* Start Section Questions */
    .accordion {
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }

    .feedbacks {
        margin-top: 20px;
    }
    .Questions-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .titel-section-questions h1 {
        font-size: 35px;
        color: var(--main-color);
        text-align: center;
    }

    .accordion .contentBX .label {
        position: relative;
        padding: 10px;
        border: 1.5px solid var(--main-color);
        color: var(--main-color);
        font-size: 15px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        cursor: pointer;
    }

    .Questions img {
        max-width: 150px;
        max-height: 84px;
    }
    
    .Questions-2 img {
        max-width: 150px;
        max-height: 84px;
    }
    /* End Section Questions */
    /* Start FAQ */
    .services .faq {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 320px;
        margin-top: 15px;
        row-gap: 10px;
    }
    /* End FAQ */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }

    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 15px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 15px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    .services {
        width: 100%;
    }
    .services .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: center;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 12px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    /* End Section footer */
}

@media (min-width: 317px) and (max-width: 391px){
    .carousel_inner {
        width: 100%;
        overflow: hidden;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    /* Start header */
    header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 50px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 25px;
        z-index: 10;
    }
    .hamburger .line {
        width: 25px;
        height: 2px;
    }

    .nav-bar.active {
        height: 500px;
        margin-top: -30px;
    }

    .logo img{
        width: 40px;
    }

    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    /* End header */
    /* Start sec-1 */
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 18px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 7px;
    }

    .sec-1 .img-text .text-sec-1 {
        position: absolute;
        margin-left: 15px;
    }
    /* Start sec-1 */
     /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .services .services-content {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-gap: 10px;
        margin-top: -25px;
    }
    
    .services .services-content .srv {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
    }

    .plan-for-you .plan-content .srv:hover {
        transform: scale(1);
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */
    .plan-for-you  {
        width: 100%;
    }

    .plan-for-you .plan-content .srv #month1-1 {
        color: white;
        display: flex;
        justify-content: center;
        position: relative;
        width: 250px;
    }

    .plan-for-you .plan-content .srv #month3-3 {
        color: white;
        display: flex;
        justify-content: center;
        position: relative;
        width: 250px;
    }

    .plan-for-you .plan-content .srv #month6-6 {
        color: white;
        display: flex;
        justify-content: center;
        position: relative;
        width: 250px;
    }

    .plan-for-you .plan-content .srv #month12-12 {
        color: white;
        display: flex;
        justify-content: center;
        position: relative;
        width: 250px;
    }
    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 18px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 14px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
        padding: 0px 15px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 20px;
        padding-bottom: 8px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 12px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 122%;
        height: 150px;
        margin-left: -10.9%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel {
        width: 100%;
        text-align: center;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -120px;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton {
        text-align: center;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 10px;
        padding: 6px 10px;
    }
    /* End Section TUTORIAL */
    /* Start Section Questions */
    .accordion {
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }

    .feedbacks {
        margin-top: 20px;
    }
    .Questions-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .titel-section-questions h1 {
        font-size: 28px;
        color: var(--main-color);
        text-align: center;
    }

    .accordion .contentBX .label {
        position: relative;
        padding: 10px 2px;
        border: 1.5px solid var(--main-color);
        color: var(--main-color);
        font-size: 12px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        cursor: pointer;
    }

    .Questions img {
        max-width: 150px;
        max-height: 84px;
    }
    
    .Questions-2 img {
        max-width: 150px;
        max-height: 84px;
    }

    .titel-section-questions .questions-p p {
        font-size: 15px;
        line-height: 23px;
        padding: 0PX 20px;
    }
    .titel-section-questions .questions-p p a {
        color: var(--main-color);
        font-size: 18px;
        font-weight: 500;
    }

    .accordion .contentBX.active .content {
        height: 180px;
        padding: 10px;
    }
    /* End Section Questions */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }

    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 15px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 15px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    .services {
        width: 100%;
    }
    .services .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--secender-color);
        overflow: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: center;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 12px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }

    #footer-circle-bg {
        max-width: 100%;
        position: absolute;
        margin-top: 5px;
    }
    /* End Section footer */
}

@media (min-width: 320px) and (max-width: 362px){
    .carousel_inner {
        width: 100%;
        overflow: hidden;
    }
    /* Start header */
    header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 50px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 25px;
        z-index: 10;
    }

    .hamburger .line {
        width: 25px;
        height: 2px;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar.active {
        height: 500px;
        margin-top: -30px;
    }

    .logo img {
        width: 40px;
    }

    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    /* End header */
    /* Start sec-1 */
    .sec-1 .img-text {
        margin-top: -30px;
    }

    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 15px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 6px;
    }

    .sec-1 .img-text .text-sec-1 {
        position: absolute;
        margin-left: 15px;
    }
    /* Start sec-1 */
    /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .services-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
        align-items: center;
        row-gap: 50px;
        column-gap: 50px;
    }
    
    .services .services-content .srv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--main-color);
        border-radius: 15px;
        height: 250px;
        padding: 0px 10px;
        transition: 0.4s;
    }
    
    .services .services-content .srv:hover {
        transform: scale(1);
    }

    .services .services-content .srv svg {
        width: 120px;
    }
    
    .services .services-content .srv #svg2 {
        width: 105px;
    }

    .services .services-content .srv #svg3 {
        width: 105px;
    }

    .services .services-content .srv #svg4 {
        width: 180px;
    }
    
    .services .services-content .srv #svg5 {
        width: 109px;
    }
    
    .services .services-content .srv #svg6 {
        width: 80px;
    }

    .services .services-content .srv .text .normal-text {
        text-align: center;
        font-size: 15px;
        color: var(--main-color);
    }
    
    .services .services-content .srv .text .smoll-text {
        text-align: center;
        font-size: 13px;
        font-weight: 100;
        color: var(--text-color);
        max-width: 400px;
    }
    /* Start Section PLANFOR YOU */
    .plan-for-you  {
        width: 100%;
    }

    .plan-for-you .plan-content {
        display: flex;
        flex-direction: column;
    }

    .plan-for-you .plan-content .srv #month1 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month3 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month6 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month12 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }

    section {
        max-width: 90%;
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }

    .services .services-content .srv {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
    }

    .plan-for-you .plan-content .srv:hover {
        transform: scale(1);
    }

    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 18px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 14px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 18px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 12px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 124%;
        height: 150px;
        margin-left: -12%;
        overflow: hidden;
    }

    .tutorial .tutorial-titel {
        width: 100%;
        text-align: center;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -110px;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton {
        text-align: center;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 10px;
        padding: 6px 10px;
    }
    /* End Section TUTORIAL */
    /* Start Seciton Questions */
    .Questions {
        margin-top: 20px;
    }
    /* Start Seciton Questions */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }

    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 15px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 15px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    .services {
        width: 100%;
    }
    .services .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--secender-color);
        overflow: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: center;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 12px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    /* End Section footer */
}

/* Pixal 5 */
@media (min-width: 392px) and (max-width: 410px){
    .carousel_inner {
        width: 100%;
        overflow: hidden;
    }
    /* Start header */
    header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 50px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 25px;
        z-index: 10;
    }

    .hamburger .line {
        width: 25px;
        height: 2px;
    }

    .hamburger .line {
        background-color: var(--main-color);
    }

    .hamburger.active .line.active {
        background-color: var(--main-color);
    }

    header.scrolled .hamburger.active .line.active {
        background-color: black;
    }

    .nav-bar.active {
        height: 500px;
        margin-top: -30px;
    }

    .logo img {
        width: 40px;
    }

    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    /* End header */
    /* Start sec-1 */
    .sec-1 .img-text {
        margin-top: -30px;
    }
    .sec-1 .img-text .text-sec-1 h1 {
        font-size: 18px;
    }

    .sec-1 .img-text .text-sec-1 p {
        font-size: 7px;
    }

    .sec-1 .img-text .text-sec-1 {
        position: absolute;
        margin-left: 15px;
    }
    /* Start sec-1 */
    /* Start Section WHY US? */
    .services {
        width: 750px;
    }

    .services .services-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
        row-gap: 50px;
        flex-wrap: wrap;
    }

    .services .pig-title #why-us{
        color: var(--main-color);
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .services .services-content .srv svg {
        width: 120px;
    }
    
    .services .services-content .srv #svg2 {
        width: 105px;
    }

    .services .services-content .srv #svg3 {
        width: 105px;
    }

    .services .services-content .srv #svg4 {
        width: 180px;
    }
    
    .services .services-content .srv #svg5 {
        width: 109px;
    }
    
    .services .services-content .srv #svg6 {
        width: 80px;
    }

    .services .services-content .srv .text .normal-text {
        font-size: 12px;
        display: flex;
        justify-content: center;
    }
    
    .services .services-content .srv .text .smoll-text {
        font-size: 10px;
        font-weight: 100;
        display: flex;
        justify-content: center;
    }
    /* End Section WHY US? */
    /* Start Section PLANFOR YOU */
    .plan-for-you  {
        width: 100%;
    }

    .plan-for-you .plan-content {
        display: flex;
        flex-direction: column;
    }

    .plan-for-you .plan-content .srv #month1 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month3 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month6 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }
    
    .plan-for-you .plan-content .srv #month12 {
        color: white;
        display: flex;
        justify-content: center;
        font-size: 25px;
    }

    section {
        max-width: 90%;
        height: auto;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }

    .plan-for-you .plan-content .srv {
        width: 300px;
    }

    .plan-for-you .plan-content .srv:hover {
        transform: scale(1);
    }

    /* End Section PLANFOR YOU */
    /* Start #1 IPTV */
    .continer-1 .iptv-1 .iptv1-title h1 {
        font-size: 20px;
    }

    #circle-bg {
        margin-top: 18px;
        height: 100px;
    }

    .continer-1 .iptv-1 .iptv1-title .iptv1-img img{
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img #img-watch-movies {
        max-width: 80%;
    }
    
    .continer-1 .iptv-1 .iptv1-title .iptv1-img .last-img {
        padding-bottom: 20px;
    }

    .continer-1 .iptv-1 .iptv1-title h2 {
        text-align: center;
        font-size: 18px;
        padding: 0px 15px;
        font-weight: 700;
        color: var(--main-color);
    }

    .continer-1 .iptv-1 .iptv1-title p {
        font-size: 14px;
        font-weight: 100;
        color: black;
        margin-bottom: 16px;
        padding: 0px 15px;
    }
    
    .continer-1 .iptv-1 .iptv1-title p span a {
        color: var(--main-color);
        font-weight: 600;
    }
    /* End #1 IPTV */
    /* Start Section Slider */
    .swiper {
        max-width: 80%;
        height: fit-content;
    }

    .swiper-slide img {
        width: 100%;
    }

    .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        position: absolute;
        padding: 20px;
        color: var(--main-color);
    }

    .swiper .swiper-pagination-bullet-active {
        background-color: var(--main-color);
    }

    .swiper .text-slide-pig {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 50px;
    }

    .swiper .text-slide-pig h1 {
        color: var(--main-color);
        font-size: 20px;
    }

    .swiper .text-slide-pig p {
        color: var(--text-color);
        font-size: 12px;
        padding: 0px 20px;
    }

    /* End Section Slider */
    /* Start Section TUTORIAL */
    .tutorial .img-tutorial img{
        max-width: 122.8%;
        margin-left: -12%;
        overflow: hidden;
    }
    .tutorial .tutorial-titel {
        width: 100%;
        text-align: center;
        position: absolute;
        margin-top: -22%;
    }

    .tutorial .tutorial-titel h1 {
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-p p {
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton {
        text-align: center;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tutorial .tutorial-titel .tutorial-botton a {
        font-size: 15px;
        padding: 6px 10px;
    }

    .tutorial .tutorial-titel {
        margin-top: -28%;
    }
    /* End Section TUTORIAL */
    /* Start Seciton Questions */
    .Questions {
        margin-top: 20px;
    }

    .accordion {
        max-width: 800px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }

    .feedbacks {
        margin-top: 20px;
    }
    .Questions-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .titel-section-questions h1 {
        font-size: 35px;
        color: var(--main-color);
        text-align: center;
    }

    .accordion .contentBX .label {
        position: relative;
        padding: 10px;
        border: 1.5px solid var(--main-color);
        color: var(--main-color);
        font-size: 15px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        cursor: pointer;
    }

    .Questions img {
        max-width: 150px;
        max-height: 84px;
    }
    
    .Questions-2 img {
        max-width: 150px;
        max-height: 84px;
    }
    /* Start Seciton Questions */
    /* Start Section CLIENTS REVIEW */
    .services .clients-review {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        column-gap: 50px;
    }

    .services .clients-review .srv {
        padding-bottom: 20px;
    }
    /* End Section CLIENTS REVIEW */
    /* Start Section START NOW */
    .services .start-now {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .services .start-now .srv .text .normal-text {
        font-size: 15px;
    }

    .services .start-now .srv .text .smoll-text {
        font-size: 15px;
    }
    /* End Section START NOW */
    /* Start Section footer */
    #footer-circle-bg {
        margin-top: 1px;
    }

    .services {
        width: 100%;
    }
    .services .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 250px;
        width: 100%;
        margin-top: 20px;
        background-color: var(--main-color);
        overflow: hidden;
        flex-wrap: wrap;
        column-gap: 10px;
        align-content: stretch;
        justify-content: center;
    }
    
    .services .footer .srv .text {
        text-align: start;
        line-height: 20px;
    }

    .services .footer .srv .text .normal-text h3 {
        font-size: 12px;
        font-weight: 500;
        color: white;
    }
    
    .services .footer .srv .text .normal-text ul a {
        color: white;
        font-weight: 700;
        font-size: 15px;
    }
    /* End Section footer */
}
/* End Pixal 5 */
/* Start responsiv Galaxy A51/71 */
@media (min-width: 410px) and (max-width: 420px) {
    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}
/* Start responsiv Galaxy A51/71 */

/* Small */

@media (min-width: 767px) {
    .services {
        width: 750px;
    }
    .nav-bar ul li a.active {
        color: white;
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}

/* Medium */

@media (min-width: 992px) {
    .services {
        width: 970px;
        
    }
    .nav-bar ul li a.active {
        color: var(--main-color);
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

/* Large */

@media (min-width: 1200px) {
    .services {
        width: 1670px;
    }

    .nav-bar ul li a.active {
        color: var(--main-color);
        border-bottom: 2px solid var(--main-color);
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

/* whatsapp */

#whatsapp .wtsapp {
    position: fixed;
    transform: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border-radius: 50%;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 70px;
    left: 20px;
    border: 0;
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

#whatsapp .wtsapp::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pluse-border 1500ms ease-out infinite;
}

#whatsapp .wtsapp:focus {
    border: none;
    outline: none;
}

@keyframes pluse-border {
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
    100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0;}
}