
/* @import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700); */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
   
}
/* ::-webkit-scrollbar {
    width: 5px;
} */
:root {
    --body: #000;
        --red: #00453a;
        --orange: #04ffbce9;
        --white: #fff;
        --lightRed: #036e48;
        --linear-action: linear-gradient(142deg, rgba(255, 64, 0, 1) 0%, rgba(229, 11, 11, 1) 25%);
    
}
body{
    background-color: var(--body);
    
        overflow-x: hidden; /* Disable horizontal scrolling */
        overflow-y: auto;   /* Enable vertical scrolling */
    
   
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
h5{
    line-height: 30px !important;
        font-size: 20px !important;
}
.devider{
    width: 90%;
    height: 5px;
    margin: 15px auto;
    background-color: var(--orange);
}
a{
    text-decoration: none;
}
header{
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
 
}


header .sliderr {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider  10s linear infinite; 
    transition: 0.5s linear;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

header .sliderr img {
   flex: 1;
    
}



@keyframes slider {
    0%{
        opacity: 0;
        transform: scale(1);
    }
    20%{
        opacity: 0.2;
    }
    40%{
        opacity: 0.3;
    }
    50%{
        opacity: 0.4;
    }

    60%{
        opacity: 0.5;
    }
    
    100%{
        opacity: 0;
        transform: scale(1.4);
    }
}

header .content{

    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

header .content nav{
    width: 100%;
    height: 10%;
    background-color: rgba(46, 42, 42, 0.489);
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
}
header .content nav .logo,
header .content nav .links,
header .content nav .action{
    height: 100%;
}
header .content nav .logo {
    width: 205px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  header .content nav .logo img {
    width: 100%;
  }   

header .content nav .links {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    padding: 5px;
    margin: 0 auto;

}
header .content nav .links a{
    color: var(--white);
    font-size: 15px;
    transition: 0.2s ease;
   
}
header .content nav .links a::after{
    content: '';
    width: 0%;
    background-color: var(--orange);
    height: 3px;
    display: block;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.2s ease;
    
}
header .content nav .links a:hover::after{
    width: 100%;
}

header .content nav .action {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}
header .content nav .action a {
    width: 80%;
    height: 250%;
    background-color: var(--red);;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    border-radius:8px ;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
}

header .content .message{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    
}

header .content .message h1{
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0; /* Start with 0 opacity */
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Start opacity */
        transform: translateY(-20px); /* Start position */
    }
    to {
        opacity: 1; /* End opacity */
        transform: translateY(0); /* End position */
    }
}
header .content .message h2{
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}
header .content .message h1{
    color: var(--orange);
    height: 40px;
    margin-bottom: 10px;
}

header .content .message p{
    font-size: 15px;

    text-align: center;
    color: var(--white);
    opacity: 0.9;
    width:50%
}
header .content .message a {
    width: 150px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--red);
    color: var(--white);
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 40px;
    transition: 0.2 ease;
   
}
header .content .message a:hover,
header .content nav .action a:hover
{
   background-color: var(--lightRed);
}

header .content .message a:active ,
header .content nav .action:active{
    transform: scale(0.97);
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: calc(4px * 3 + 11px * 2);
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: calc(4px / 2);
    background: var(--white);
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

/***** Collapse Animation *****/

.bar--top {
    bottom: calc(50% + 11px + 4px/ 2);
    transition-property: bottom, margin, transform;
    transition-delay: calc(0s + 0.35s), 0s, 0s;
}

.bar--middle {
    top: calc(50% - 4px/ 2);
    transition-property: top, opacity;
    transition-duration: 0.35s, 0s;
    transition-delay: calc(0s + 0.35s * 1.3), calc(0s + 0.35s * 1.3);
}

.bar--bottom {
    top: calc(50% + 11px + 4px/ 2);
    transition-property: top, transform;
    transition-delay: 0s;
}

#checkbox:checked+.toggle .bar--top {
    bottom: calc(50% - 11px - 4px);
    margin-bottom: calc(11px + 4px/ 2);
    transform: rotate(45deg);
    transition-delay: calc(0s + 0.35s * .3), calc(0s + 0.35s * 1.3), calc(0s + 0.35s * 1.3);
}

#checkbox:checked+.toggle .bar--middle {
    top: calc(50% + 11px);
    opacity: 0;
    transition-duration: 0.35s, 0s;
    transition-delay: 0s, calc(0s + 0.35s);
}

#checkbox:checked+.toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-45deg);
    transition-delay: calc(0s + 0.35s * 1.3), calc(0s + 0.35s * 1.3);
}




.menu{
    opacity: 0;
    height:0;
    background-color: var(--white);
    position: absolute;
    top:16%;
    z-index: 40;
    width: 100%;
    padding: 20px;
    transition: 0.5s ease;
}
.menu ul{
    list-style: none;
}
.menu ul li{
    margin: 10px;
}
.menu ul li a{
    text-transform: uppercase;
    color: var(--black);
    font-weight: bold;
}

#checkbox:checked+.menu {
    height: 0;
    background-color: var(--red);
}

.channels {
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
    width: 100%;
    margin: 10px auto;
}

.channels-3{
    padding: 10px 0;
    width: 60%;
}

.channels-slider{
    animation: 25s channelsSlider infinite linear;
    display: inline-block;
}


/* .channels-slider  img ,
{
    width: 105px;
    height: 48px;
    margin: 0 40px;
   
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
        
   
} */
.channels-slider img,
.reversed-channels-slider img{
    width: 150px;
    height: 48px;
    margin: 0 25px;
}
.sports-channels-slider img{
    width: 90px;
    height: 48px;
    margin: 0 25px;
}
.bein{
    height: 46px;
    width:150px;
}

@keyframes channelsSlider {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.reversed-channels-slider {
    animation: 25s channelsSliderReversed infinite linear;
    display: inline-block;
}

@keyframes channelsSliderReversed {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}
.swiper-packs-container {
    height: min-content;
    width: 100%;
    overflow: hidden;
    /* margin: 20px 0; */
   
  }
  .swiper-packs-container h5,
  .promo-video h5 {
    text-align: center;
    font-weight: 600;
    line-height: 25px;
  }
  .swiper-packs-container h5 span,
  .promo-video h5 span {
    /* color: var(--secondary-color); */
    opacity: 1;
    font-weight: bold;
    font-size: 8 px;
  }
  .swiper {
    scale: 0.9;
    opacity: 1;
  }
  
  .swiper-packs-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--secondary-color);
    padding: 1px;
    border-radius: 2px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 70vh !important;
    scale: 0.9;
    box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
    -webkit-box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
    /* width: 100px; */
    margin: 0 0px;
  }
  
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    border-radius: 10px;
  }
.promo-video h5 {
    margin-bottom: 30px;
}

.iframe{
    opacity: 1;
    width: 100% !important;
    height: 700px !important ;
    /* max-height: 450px !important; */
    margin: 0 auto;
    outline: none;
    border: none;
    box-shadow: var(--black) 5px 5px 5px 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border: 5px var(--red) solid;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0px 9px 12px 3px rgba(0, 0, 0, 0.43);
        -webkit-box-shadow: 0px 9px 12px 3px rgba(0, 0, 0, 0.43);
        -moz-box-shadow: 0px 9px 12px 3px rgba(0, 0, 0, 0.43);
    
}

.statistics{
    opacity: 1;
    width: 90%;
    height: fit-content;
    margin: 10px auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
     background-color: var(--lightRed);
     border-radius: 10px;
     user-select: none;
     cursor: pointer;
}

.st-item{
    width: calc(25% - 20px);
    padding: 10px;
}
.st-number-container{
    display: flex ;
    gap: 4px;
    justify-content: center;
    align-items: center;
    /* border: 1px solid lime; */
}

.st-number,.st-title{
    text-align: center;
    color: var(--white);
}

.st-number{
    font-weight: bold;
    font-size: 26px;
}
.st-title{
    opacity: 1;
}

.promotional-section-container{
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0px;
    color: var(--white);
    overflow: hidden;
    border-radius: 10px;
    opacity: 0.95;
}
.promotional-section-container >*
{
    width: 50%;
    transition: 0.8s ease;
}

.promotional-section-container .poster{
        display: flex;
        align-items: center;
        justify-content: center;
}
.promotional-section-container .poster img{
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}


.promotional-section-container article *{
    margin-bottom: 40px;
    width: 80%;
    margin: 40px auto;
    line-height: 33px;
    
}
.promotional-section-container h4 {
    line-height: 45px;
    font-weight: bold;
}

.promotional-section-container h6 {
    margin: 0px auto !important;
    font-weight: bold;
    color: var(--red);
    font-size: 30px;
}
.promotional-section-container p{
    font-size: 20px;
}
.promotional-section-container span{
    color: var(--red);
    font-weight: 600;
    padding: 0 10px;
    font-size: 40px;
    border-bottom: 2px solid var(--white);
   
}
.section-title{
    color: var(--white);
    text-align: center;
    font-weight: 600;
    line-height: 40px;
    margin-top: 90px;
    padding: 0 20px;
}
.section-title span{
    color: var(--orange);
    
}
.how-image{
    transform: scale(1.3);
}
.instructions{
    padding: 10px;
    border: 2px var(--red) solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    padding: 5px 40px;
    
}
.step-items{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.step-item{
    display: flex;
    gap: 20px;
    text-align: center;
    margin: 40px auto !important;
    
}


.step-instructions h5{
    font-weight: 600;
}

.step-numbers{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 auto;
    align-items: center;
}
.step-number{
    width: 40%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.step-number span {
    background-color: var(--red);
    color: var(--white);
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    text-align: center;
    display: grid;
    place-items: center;
}


.pricing-container {
    width: 100%;
    margin-top: 80px;
  
}

.pricing-container h4 {
    color: var(--white);
    text-align: center;
    font-weight: bold;
}

.pricing-container h4 span{
    color: var(--orange);
}




.snip1517 {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    /* text-align: left; */
    font-size: 16px;
    width: 93%;
    max-width: 93%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;

}
.snip1517 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.snip1517 img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.snip1517 .plan {
    margin: 0 0.5%;
    width: calc(25% - 40px);
    margin:  20px;
    padding-top: 10px;
    position: relative;
    /* float: left; */
    overflow: hidden;
    background-color: var(--red);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.6s ease all;
}
.snip1517 .plan:hover{
    transform: scale(1.01);
    box-shadow: -2px 6px 9px -6px rgba(0, 0, 0, 0.93);
        -webkit-box-shadow: -2px 6px 9px -6px rgba(0, 0, 0, 0.93);
        -moz-box-shadow: -2px 6px 9px -6px rgba(0, 0, 0, 0.93);
}


.attention  {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -15px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
}

.attention::before {
    content: '64% off';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    animation: 1s promotion-animation linear infinite;
}


.attention::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    animation: 1s promotion-animation linear infinite ;
}

@keyframes promotion-animation {
    from{
         background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    }
    to{
        background-color: #fff;
    }
}   
.snip1517 header {
    color: var(--white);
}

.snip1517 .plan-title {
    line-height: 60px;
    position: relative;
    margin: 0;
    padding: 0 20px;
    font-size: 1.6em;
    letter-spacing: 2px;
    font-weight: bold;
}

.snip1517 .plan-title:after {
    position: absolute;
    display: block;
    content: '';
    top: 100%;
    left: 20%;
    width: 60%;
    height: 3px;
    margin: 0 auto;
    background-color: var(--white);
}

.snip1517 .plan-cost {
    padding: 0 20px;
    margin: 0;
}

.snip1517 .plan-price {
    display: inline-block;
    font-weight: 600;
    font-size: 2.8em;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  
    
}

.snip1517 .plan-type {
    opacity: 1;
    font-size: 0.9em;
    text-transform: uppercase;
}

.snip1517 .plan-features {
    padding: 0 0 20px;
    margin: 0;
    list-style: outside none none;
    font-size: 1.1em;
}

.snip1517 .plan-features li {
    padding: 8px 20px;
    
}



.snip1517 .plan-select {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}

.snip1517 .plan-select a {
    background-color: var(--white);
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    /* background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%); */
    background-color: var(--white);
}

.snip1517 .plan-select a:hover {
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%) !important;
    color: var(--white) !important;
}

.snip1517 .featured {
    margin-top: -10px;
    z-index: 1;
    border-radius: 8px;
   
    background-color: var(--red);
}

.snip1517 .featured .plan-select {
    padding: 30px 20px;
}

.snip1517 .featured .plan-select a {
    background-color: var(--white);
    color: #000;
    font-weight: bold;
    background-color: var(--white);
}

.snip1517 .plan header{
        height: min-content;
}

.plan-features  li{
    display: flex;
    gap: 10px;
}
.plan-features li svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color:var(--white);
}
.featured h5{
    text-align: center;
    color: var(--white);
    padding: 0px;
    font-size: medium;
}

.featured h5  span {
    display: inline-block;
    font-weight: 600;
    color: var(--white);
    background-image:linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%); 
    border-radius: 5px;
    padding: 5px;
    margin: 0px 5px;
    font-size: 0.8em;
    animation: 1s promotion-animation linear infinite;
}


.sports-image{
    transform: scale(0.8);
}



.why-us-container{
    margin: 10px auto;
    overflow: hidden;
    width: 100%;
    height: fit-content;
    
    padding: 20px 10px;
    transition: 1s ease;
    overflow: hidden;
}
.all-devices {
    width:100%;
    max-height: 252;
    margin: 0px auto;
    display: grid;
    place-items: center;
}
.all-devices img{
    vertical-align: middle;
    object-fit:contain;
    max-width: 100%;
}
.why-us-container h4{
    color: var(--white);
    text-align: center;
    font-weight: 600;
        line-height: 40px;
        margin-top: 90px;
}
.why-us-items{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.why-us-item{
    height:250px ;
    width: calc(100% / 3 - 50px);
    margin: 20px 0;
    border: 1px solid rgb(255, 255, 255,0.8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    column-gap: 20px;
    color: var(--white);
    padding: 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: pointer;

    
}
.why-us-item:hover {
    transform: scale(1.01);
    background-color: rgba(241, 143, 104,0.3);
}
.why-us-item svg{
    scale: 1;
    height: 60px;
    width: 60px;
}
.why-us-item h5 {
    text-align: center;
    font-weight: 600;
}
.why-us-item p{
    opacity: 0.8;
    text-align: center;
    font-size: 0.9em;
}


.whatsapp-screenshots-container{
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    height: min-content;
    margin-bottom: 50px;
}




.whatsapp-screenshots-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white);
    padding: 2px;
    border-radius: 10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 70vh !important;
    box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
    -webkit-box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0px 9px 12px -1px rgba(0, 0, 0, 0.43);
}



.subscribe{
   
    padding: 5px 10px;
    height: 50px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px !important;
    font-size: 1.2em;
    margin-left: 70px !important;
    transform: scale(1.1);
    transition: 0.3s ease;
}
.subscribe:hover{
    background-color: var(--lightRed);
}




footer{
    width: 100%;
    overflow: hidden;
    padding: 10px 40px;
}

.top-footer{
    display: flex;
   
    gap: 20px;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.top-footer> *{
    width: calc(100% / 3 - 50px);
    height: 100px;
}



.payment-methods{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ramix-iptv-logo a{
    display: inline-block;
    height: 100%;
    width: 100%;
}
.ramix-iptv-logo a img
{
    max-width: 100%;
    max-height: 100%;
    object-fit:contain;
}
.payment-methods img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.top-footer .links{
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: no-wrap;
}
.top-footer .links a,
.bottom-footer .links a
{
    color: var(--white);
    white-space: nowrap;
    /* margin: 0 10px; */
    text-decoration: underline;
    transition: 0.3s ease;
}

.top-footer .links a:hover{
color: var(--orange);
}

.bottom-footer{
    width: 100%;
    height: 80px;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.bottom-footer .links {
    padding: 10px;
    margin: 0 auto;
}
.bottom-footer .links a{
    font-weight: 600;
    margin: 0 50px;
    text-align: center;
    font-size: 20px;
}
.bottom-footer .links a:hover{
    transform: scale(1.2);
   text-indent: 10px;
}

.call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: min-content;
}

.call-to-action a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 80px;
    padding:10px 20px ;
    background: var(--linear-action);   
    color: var(--white);
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 19px;
    animation: 2s promotion-animation linear infinite;
}
.call-to-action a:hover{
    transform: scale(0.95);
}

.contact-button{
   
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}
.contact-button svg{
width: 55px;
height: 55px;
}
.contact-button svg{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: 1s whatsapp-animation linear infinite ;
}

.index-faq{
    scale: 0.9;
}
.swiper-packs-container h3
,.promo-video h3
{
    text-align: center;
    color: var(--white);
    font-weight: 600;
    line-height: 25px;
    font-size: 1.6em;
    line-height: 2em;
    width: 100% !important;
    background-color: transparent !important;
    padding:0;
}
.swiper-packs-container h3 span,
.promo-video h3 span
{
    color: var(--orange);
    opacity: 1;
    font-weight: bold;
    font-size: 8 px;
}
@keyframes whatsapp-animation{
    0%{
        transform: translateX(0);
        transform: translateY(0);
    }
    50%{
        transform: translateX(-10px);
        transform: translateY(-2px);
    }
    80%{
        transform: translateX(10px);
        transform: translateY(2px);
    }
    100%{
        transform: translateX(0px);
        transform: translateY(0);
    }
}
.opacity-0{
    filter: blur(2px) !important;
    opacity: 0 !important;
}

.opacity-1{
    filter: blur(0px) !important;
    opacity: 1 !important;
   
}
.-translateX100{
    transform: translateX(-100%) !important;
}
.translateX100 {
    transform: translateX(100%) !important;
}

.translateX0 {
    transform: translateX(0%) !important;
}



@media only screen and (max-width: 1200px) {
    .snip1517 .plan {
        width: 49%;
        margin: 2.5% 0.5%;
    }

    .snip1517 .plan-title,
    .snip1517 .plan-select a {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .snip1517 .plan-select,
    .snip1517 .featured .plan-select {
        padding: 20px;
    }

    .snip1517 .featured {
        margin-top: 0;
    }

    .snip1517 .featured header {
        line-height: 70px;
    }
}

@media only screen and (max-width: 440px) {
            
    .snip1517 .plan {
        margin: 5% 0;
        width: 100%;
    }
}

@media only screen and (min-width: 700px) {
            
    #lg {
        max-width: 60%;
            max-height: 60%;
    }
    #lg2 {     margin: 0 auto;

        width: 60%;
        height: 60%;
    }
}

@media only screen and (max-width: 700px) {
            
    #lg {     margin: 0 auto;

        max-width: 100%;
            max-height: 100%;
    }
    #lg2 {
        width: 80%;
            height: 80%;
    }
}









@media screen and (max-width: 1300px) and (min-width : 900px) {
    .swiper-packs-container .swiper-slide{
        height: 390px !important;
    }

    .whatsapp-screenshots-container .swiper-slide {
        height: 450px !important;
    }
    
}




@media screen and (min-width: 790px) {

    #menuToggle,
    .menu {
        display: none;
    }
    
    
}




@media screen and (max-width: 790px) {
    .promotional-section-container .poster img{
        /* max-width: 85%; */
        /* scale: 1.3; */
    }
    .instructions{
        padding: 10px;
    }
        .promotional-section-container p {
            font-size: 14px;
        }

        .step-number{
            margin-right: 10px;
            width: 60%;
           gap: 10px;
        }
    header .content .message h1,
        header .content .message h2 {
            font-size: 26px;
           
        }
header .content .message a {
    width: 130px;
    height: 50px;
}
    header .content .message {
        justify-content: flex-start;
    }
    
    header {
        height: 550px;
    }
    header .content nav{
        height: 17%;
        padding: 5px ;
    }
    header .content nav .links,
    header .content nav .action a {
        display: none;
    }

    header .content nav .logo,.menuToggle {
        scale: 0.8;
    }
    .message p {
        width: 96% !important ;
        font-size: 11px !important;
    }

    .channels {
        width: 100%;
    }

    .channels-slider img {
        margin: 0 10px;
    }

    .swiper-packs-container .swiper-slide {
        padding: 1px;
        height: 32vh !important;
    }
    .whatsapp-screenshots-container .swiper-slide{
        height: 40vh !important;
    }

    /* .promo-video {
        height: 380px;
        max-width: 350px;
    } */

    .iframe {
        height: 300px !important;
        /* max-height: 200px !important; */
    }

    .st-item {
        width: calc(50% - 20px);
    }
    .why-us-item {
        width: calc(100% - 40px);
    
    }
    .promotional-section-container>* {
        width: 100%;
    }
    .subscribe{
        margin:50px auto !important;
    }
    .ramix-iptv-logo a img,
    .payment-methods img{
        max-width: 100%;
        max-height: 100%;
    }
    .top-footer{
        justify-content: space-between;
    }
    .top-footer>* {
        width:30%
    }
    .top-footer .links{
        flex-direction: column;
    }
    .top-footer .links a{
        font-size: 15px;
        margin: 0 0;
    }
    .bottom-footer .links a{
        margin: 0 20px;
        font-size:12px;
        text-align: right;
    }
}

@media(prefers-reduced-motion){
    *{
        transition: none !important;
    }
}
@media screen and (min-width:1200px) {

    .top-footer .links a{
        font-size: 19px;
        margin: 0 10px;
    }
    
}














/* Tabs */
.tabs-container {
    background-color: var(--white);
    /*max-width: 900px;*/
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin-bottom: 50px;
    overflow:hidden;
}

.tabs-container .tab_box {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgba(229, 229, 229);
    /* font-size: 18px; */
}

.tabs-container .tab_btn {
    font-size: 17px;
    color: #919191;
    color: var();
    background: none;
    border: none;
    padding: 18px;
    position: relative;
    cursor: pointer;
}

.tabs-container .tab_btn.active {
    color: var(--red);
}

.tabs-container .tab_btn.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -2px;
    background-color: var(--red);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.tabs-container .content_box {
    /*padding: 20px;*/
}

.tabs-container .content {
    display: none;
    animation: moving 0.5s ease;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.tabs-container .content.active {
    display: block;
}

.tabs-container .content img {
    width: 100%;
}

.tabs-container .content h2 {
    /* background-color: #e4e9fd; */
    background-color: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 8px 5px;
    border-radius: 20px;
    font-size: 2.5rem;
}

.tabs-container .content strong {
    font-weight: bold;
}

.tabs-container .content p {
    margin: 30px 0;
    font-size: 17px;
}

.tabs-container .content a {
    color: var(--orange);
    font-weight: 600;
    word-break: break-all;
}

@media (max-width: 662px) {
    .tabs-container .tab_box {
        justify-content: space-between;
        flex-direction: column;
    }

    .tabs-container .tab_btn {
        font-size: 16px;
    }
}