@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: "pauza";
    src: url('../fonts/woff2/Pauza-Black.woff2') format('woff2'), 
    url('../fonts/woff/Pauza-Black.woff') format('woff'), 
    url('../fonts/ttf/Pauza-Black.ttf') format('truetype'); 
    font-weight: bolder;
}
@font-face {
    font-family: "pauza";
    src: url('../fonts/woff2/Pauza-Bold.woff2') format('woff2'), 
         url('../fonts/woff/Pauza-Bold.woff') format('woff'), 
         url('../fonts/ttf/Pauza-Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: "pauza";
    src: url('../fonts/woff2/Pauza-Medium.woff2') format('woff2'), 
         url('../fonts/woff//Pauza-Medium.woff') format('woff'), 
         url('../fonts/ttf/Pauza-Medium.ttf') format('truetype');
    font-weight: normal;
}
@font-face {
    font-family: "pauza";
    src: url('../fonts/woff2/Pauza-Regular.woff2') format('woff2'), 
         url('../fonts/woff/Pauza-Regular.woff') format('woff'), 
         url('../fonts/ttf/Pauza-Regular.ttf') format('truetype'); 
    font-weight: 600;
}

@font-face {
    font-family: "pauza";
    src: url('../fonts/woff2/Pauza-Light.woff2') format('woff2'), 
         url('../fonts/woff/Pauza-Light.woff') format('woff'), 
         url('../fonts/ttf/Pauza-Ligh.ttf') format('truetype');
    font-weight: lighter;
}

*{
    font-family: 'Heebo', sans-serif;
    font-weight: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: 0;
    scroll-behavior: smooth;
}

:root {
    --pink: #F06292;
    --blue: #0B1B38;
    --Gradient: linear-gradient(270deg, #F06292 0%, #0B1B38 98.39%);
}

body{
    margin: 0;
    padding: 0; 
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

h1{
    font-family: 'pauza';
    padding: 0;
    margin: 0;
    font-size: 3.5em;
    text-align: center;
    line-height: 50px;
    color: var(--blue);
    font-weight: bolder;
}

h2{
    font-family: 'heebo';
    font-weight: normal;
    padding: 0;
    margin: 0;
    font-size: 25px;
    color: var(--blue);
    text-align: center;
}

h2 span{
    font-weight: bold;
}

p{
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    color: var(--black);
    line-height: 23px;
}

p span{
    font-weight: bold;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: var(--black);
}

section{
    margin: 0;
    padding: 0; 
}

div{
    margin: 0;
    padding: 0; 
}
/* הגדרות אתר */


/* header */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999999999999999999999999999999999;
}
  
#loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--blue);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

  
.share{
    background-color: #128C7E;
    z-index: 999999999;
    color: white;
    padding: 5px 15px;
    position: fixed;
    bottom: 150px;
    left: -60px;
    transform: rotate(-90deg);
    border-radius: 0px 0px 10px 10px;
    transition: .3s;
    cursor: pointer;
    border: 1px solid #128C7E;
}

.share:hover{
    background-color:transparent;
    color: #128C7E;
}

.share i{
    margin-right: 10px;
}

.btnBuy{
    background-color: var(--pink);
    width: 100%;
    color: white;
    display: flex;
    justify-content: flex-end;
    border-radius: 50px;
    padding: 18px 5px;
    margin-top: 20px;
    position: relative;
    transition: .3s;
}

.btnBuy:hover{
    transition: .5s;
    background-color: var(--blue);
}

.btnBuy:hover .circle{
    transition: .5s;
    right: 65%;
    transform: translate(-100%, -50%);
}

.btnBuy:hover .text{
    transition: .5s;
    opacity: 0;
}


.btnBuy .circle{
    background-color: white;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0%, -50%);
    transition: .3s;
}

.btnBuy .circle i{
    color: var(--pink);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
}

.btnBuy .text{
    font-weight: bold;
    margin-left: 30px;
    font-size: 20px;
    transition: .3s;
}

header{
    width: 100%;
    height: 70px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 80px;
    position: fixed;
    top: 0;
    z-index: 999999;
    transition: .3s;
    background-color: #0B1B38;
}

header .toogle{
    display: none;
    cursor: pointer;
}

.navbar-div{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background-color: var(--blue);
    width: 100%;
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    display: none;
}

.navbar-div .items{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space;
    height: 100%;
    margin-top: 250px;
    gap: 50px;
}

.navbar-div .btn{
    position: absolute;
    bottom: 70px;
    width: 70%;
}

.navbar-div .items li{ 
    font-size: 30px;
    font-weight: bold;
    transition: .3s;
}

.navbar-div .items li:hover{
    transition: .3s;
    transform: scale(.9);
}

header .toogle i{
    font-size: 25px;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

header .logo{
    font-family: 'pauza';
    font-weight: 600;
    font-size: 28px;
}

header .logo span{
    font-family: 'pauza';
    font-weight: bold;
    font-size: 28px;
}

header ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

header ul li{
    transition: .3s;
    font-weight: bold;
}

header ul li:hover{
    cursor: pointer;
    transform: scale(.9);
    transition: .3s;
}

.hero{
    width: 100%;
    padding: 50px;
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--blue);
}

.hero .right .title .labelText{
    font-family: 'pauza';
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 5px;
}

.hero .right .title .text{
    font-family: 'pauza';
    font-weight: bolder;
    font-size: 130px;
    line-height: 80px;
    letter-spacing: -1px;
}

.hero .right .title img{
    display: block;
    width: 350px;
}

.hero .right .content{
    margin-top: 40px;
}

.hero .right .content p{
    width: 70%;
    font-weight: 400;
}

.hero .right .content a{
    background-color: var(--pink);
    width: 300px;
    color: white;
    display: flex;
    justify-content: flex-end;
    border-radius: 50px;
    padding: 18px 5px;
    margin-top: 20px;
    position: relative;
    transition: .3s;
}

.hero .right .content a:hover{
    transition: .5s;
    background-color: var(--blue);
}

.hero .right .content a:hover .circle{
    transition: .5s;
    right: 65%;
    transform: translate(-100%, -50%);
}

.hero .right .content a:hover .text{
    transition: .5s;
    opacity: 0;
}


.hero .right .content a .circle{
    background-color: white;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0%, -50%);
    transition: .3s;
}

.hero .right .content a .circle i{
    color: var(--pink);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
}

.hero .right .content a .text{
    font-weight: bold;
    margin-left: 30px;
    font-size: 20px;
    transition: .3s;
}

.hero .left{
    width: 400px;
}

.hero .left .hero-slider{
    width: 100%;
    height: auto;
    position: relative;
}

.hero-slider .circle
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--pink);
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.hero-slider .next
{
    position: absolute;
    top: 50%;
    right: 35px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.579);
    cursor: pointer;
    z-index: 88;
}

.hero-slider .prev
{
    position: absolute;
    top: 50%;
    left: 35px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.579);
    cursor: pointer;
    z-index: 88;
}

.hero-slider .hero-wrapper
{
    direction: ltr;
    width: 100%;
    height: auto;
    margin: 0px auto;
    overflow: hidden;
    padding: 10px 0px 10px 0px;
}

.hero-slider .hero-wrapper .card
{
    direction: rtl;
    height: 400px;
    width: auto;
    margin: 0px 10px;
    display: inline-block;
    border-radius: 5px;
    margin: 0px 10px;
    position: relative;
}

.hero-slider .hero-wrapper .card img
{
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px;    
}

.advantage{
    margin-bottom: 200px;
    padding: 0px 20px;
    padding-top: 100px;
}

.advantage .boxs{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 140px;
    margin-top: 65px;
    color: var(--pink);
}

.advantage .boxs .box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    text-align: center;
}

.advantage .boxs .box .text{
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.intro{
    padding: 0px 30px;
    background-color: var(--blue);
    position: relative;
    margin-top: 300px;
    padding-top: 230px;
    padding-bottom: 60px;
    color: white;
    text-align: center;
}

.intro .intrImages{ 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.intro .intrImages .intrImage{ 
    width: 200px;
    height: auto;
}

.intro .intrImages .intrImage img{ 
    width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px;
    transition: .3s;
}

.intro .intrImages .intrImage img:hover{ 
    box-shadow: none;
    transition: .3s;
}

.intro h1{
    color: white;
}

.intro p{
    margin-top: 20px;
    line-height: 30px;
}


.transition, ul li i:before, ul li i:after, p {
    transition: all 0.25s ease-in-out;
}
  
.no-select, h2 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.qAnda{
    margin-bottom: 100px;
    padding: 0px 20px;
    padding-top: 100px;
}

.qAnda ul{
    width: 60%;
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: auto;
    margin-top: 50px;
}

.qAnda ul li h2 {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    display: block;
    margin: 0;
    cursor: pointer;
    color: var(--pink);
    text-align: right;
}
  
.qAnda ul li p{
    color: rgba(48, 69, 92, 0.8);
    font-size: 17px;
    line-height: 26px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 14px;
    z-index: 2;
    padding: 10px 0px;
    font-weight: normal;
}

.qAnda ul li p strong{
    font-weight: bold;
}

.qAnda ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-bottom: 1px dotted #dce7eb;
}
.qAnda .advantageul li:last-of-type {
    padding-bottom: 0;
}
.qAnda ul li i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    left: 0;
}
.qAnda ul li i:before, ul li i:after {
    content: "";
    position: absolute;
    background-color: var(--pink);
    width: 3px;
    height: 9px;
}
.qAnda ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
}
.qAnda ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
}
.qAnda ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}
.qAnda ul li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
}
.qAnda ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
}
.qAnda ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
}


.banner{
    margin: auto;
    margin-bottom: 100px;
    width: 80%;
    height: 250px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: 25px;
    transition: .3s;
}

.banner:hover{
    box-shadow: none;
    transition: .3s;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}


.reports-slider{
    width: 75%;
    height: auto;
    position: relative;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.reports-slider .next
{
    position: absolute;
    top: 50%;
    right: 0px;
    font-size: 20px;
    color:var(--blue);
    cursor: pointer;
    z-index: 88;
}

.reports-slider .prev
{
    position: absolute;
    top: 50%;
    left: 0px;
    font-size: 20px;
    color:var(--blue);
    cursor: pointer;
    z-index: 88;
}

.reports-slider .reports-wrapper
{
    direction: ltr;
    width: 100%;
    height: auto;
    margin: 0px auto;
    overflow: hidden;
    padding: 10px 0px 10px 0px;
}

.reports-slider .reports-wrapper .report
{
    direction: rtl;
    min-height: 300px;
    width: auto;
    margin: 0px 10px;
    display: inline-block;
    border-radius: 5px;
    margin: 0px 10px;
    position: relative;
    text-align: center;
}

.reports-slider .reports-wrapper .report .card-container
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.reports-slider .reports-wrapper .report .logo
{
    width: 80px;
    border: 2px solid var(--blue);
    border-radius: 50px;
    overflow: hidden;
    margin: auto;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.reports-slider .reports-wrapper .report .logo img
{
    width: 100%;
    height: auto;
}

.reports-slider .reports-wrapper .report .name
{
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

.reports-slider .reports-wrapper .report .name img
{
    width: 20%;
    display: block;
    margin: auto;
}

.reports-slider .reports-wrapper .report p
{
    font-size: 15px;
    margin-top: 20px;
    padding: 0px 40px;
}

footer{
    padding-top: 100px;
}

footer .btn{
    width: 300px;
    margin: auto;
    margin-bottom: 70px;
}

.copy{
    text-align: center;
    background-color: var(--blue);
    color: white;
    padding: 10px 0px;
}

.copy a{
    color: white;
}

/* payment */

.payment{
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 70px;
    color: var(--blue);
}

.payment .top{
    width: 100%;
    height: 130px;
    margin: auto;
    text-align: center;
    margin-bottom: 55px;
}

.payment .top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment .title{
    width: 100%;
    height: 130px;
    margin: auto;
    text-align: center;
    margin-bottom: 55px;

    font-family: 'pauza';
    font-weight: bolder;
    font-size: 100px;
    letter-spacing: -1px;
}

.payment h2{
    font-weight: 600;
    font-size: 25px;
    font-weight: 500;
    margin-top: -80px;
}

.payment .price{
    font-family: 'pauza';
    font-weight: bolder;
    font-size: 150px;
    width: 100%;
    padding: 50px;
    position: relative;
}

.payment .price .circle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--pink);
    z-index: -111111;
    transition: .3s;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    width: 180px;
    height: 180px;
  }
  50% {
    width: 150px;
    height: 150px;
  }
  100% {
    width: 180px;
    height: 180px;
  }
}

.payment .pay{
    margin-top: 20px;
    padding: 0px 30px;
}

.payment .pay .infoTitle{
    font-weight: bold;
    font-size: 35px;
}

.payment .pay .info{
    background-color: #f5f5f5;
    margin: 20px auto;
    width: 70%;
    padding: 50px;
    text-align: right;
}

.payment .pay .info p{
    line-height: 30px;
}

.payment .pay .payBox{
    width: 200px;
    margin: auto;
    margin-top: 60px;
}

.payment .pay .payBox img{
    width: 100%;
    height: auto;
}

.payment .pay .btnForm{
    width: 330px;
    margin: auto;
}

.contact{
    margin-top: 100px;
    background-color: var(--blue);
    text-align: center;
    padding: 70px 20px;
}

.contact h1{
    color: white;
}

.contact h1 br{
    display: none;
}

.contact h2{
    color: white;
    font-family: 'pauza';
    font-weight: bold;
}

.contact .contactForm{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 30px;
    width: 500px;
    margin: auto;
    margin-top: 50px;
}

.contact .contactForm input{
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 18px;
    border: 1px solid var(--pink);
    padding: 10px 15px;
    width: 100%;
    border-radius: 5px;
    transition: .3s;
}

.contact .contactForm input[type=number]::-webkit-outer-spin-button,
.contact .contactForm input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact .contactForm button{
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: var(--pink);
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    width: 50%;
    border-radius: 5px;
    transition: .3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-top: 10px;
    border: 1px solid var(--pink);
}

.contact .contactForm button:hover{
    cursor: pointer;
    transform: scale(.9);
    background-color: var(--blue);
}

.contact .contactForm button i{
    font-size: 25px;
}

.contact .contactForm a{
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    margin-top: 70px;
    background-color: #128C7E;
    border: 1px solid #128C7E;
    width: 100%;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    transition: .3s;
}

.contact .contactForm a:hover{
    background-color: transparent;
    box-shadow: none;
    transform: scale(.9);
    transition: .3s;
}

.contact .contactForm a i{
    font-size: 25px;
}

.ovarlay{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999999999999;
    background-color: #00000095;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    transition: opacity 0.3s ease-out;

    display: none;
}

.ovarlay .popPay{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999999999999999;
    margin: 0;
    background-color: white;
    padding: 50px 70px;
}

.ovarlay .popPay .fa-circle-xmark{
    color: var(--blue);
    font-size: 25px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.ovarlay .popPay .fa-circle-xmark:hover{
    cursor: pointer;
    opacity: .7;
}

.ovarlay .popPay h1, .ovarlay .popPay h2{
    color: var(--blue);
}

.ovarlay .popPay h2{
    margin-top: 10px;
}

.ovarlay .popPay .contactForm input{
    color: var(--blue);
    font-weight: bold;
}


@media all and (max-width: 950px) {

    header {
        padding: 0px 40px;
    }

    .hero {
        padding: 25px;
    }
    
    .hero .right .title .text {
        font-size: 100px;
        line-height: 65px;
    }

    .hero .right .title .labelText {
        font-size: 25px;
    }

    .hero .left {
        width: 350px;
    }

    .hero-slider .hero-wrapper .card
    {
        height: 300px;
    }

    .hero-slider .circle {
        width: 300px;
        height: 300px;
    }

    .advantage .boxs {
        gap: 80px;
    }

    .intro .intrImages .intrImage img {
        width: 70%;
    }

    .intro .intrImages {
        gap: 0px;
    }
    
    .qAnda ul{
        width: 80%;
        margin-top: 30px;
    }

    .banner{
        width: 90%;
        height: 200px;
    }

    .reports-slider {
        width: 85%;
    }

    .payment .pay .info {
        width: 90%;
    }
}

@media all and (max-width: 770px) {

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 18px;
    }

    .share{
        left: -58px;
        font-size: 15px;
    }

    .hero {
        padding: 30px;
        flex-wrap: wrap;
        gap: 80px;
        text-align: center;
    }

    header ul {
        display: none;
    }

    header {
        justify-content: space-between;
        padding: 0px 30px;
    }

    header .toogle{
        display: block;
    }

    .show{
        display: flex;
        transition: .3s;
        opacity: 0;
        animation: fade-in-top 0.3s ease-out forwards;
    }

    @keyframes fade-in-top {
        from {
            opacity: 0;
            left: 0%;
            transform: translate(-50%, -50%);
        }
        to {
            opacity: 1;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }

    .hero .right .title img {
        width: 60%;
        margin: auto;
    }

    .hero .right .content p{
        width: 100%;
        font-size: 23px;
        line-height: 30px;
    }

    .hero .right .content {
        margin-top: 45px;
    }

    .hero .right .content a {
        width: 85%;
        margin: auto;
        margin-top: 30px;
    }

    .hero .right .content a:hover .circle{
        transition: .5s;
        right: 60%;
        transform: translate(-100%, -50%);
    }

    .advantage .boxs{
        flex-direction: column;
        gap: 50px;
        margin-top: 50px;
        padding: 0px 30px;
    }

    .advantage .boxs .box {
        flex-direction: row-reverse;
        text-align: right;
        border-bottom: 3px solid #f5f5f5;
        padding-bottom: 50px;
    }

    .advantage .boxs .box .text {
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
    }

    .intro .intrImages{
        width: 90%;
        gap: 20px;
        flex-wrap: wrap;
    }

    .intro .intrImages .intrImage img {
        width: 100%;
    }

    .intro .intrImages .intrImage {
        width: 35%;
        height: auto;
    }

    .intro p {
        margin-top: 20px;
        font-size: 18px;
        line-height: 30px;
    }
    .qAnda ul{
        width: 90%;
    }

    .banner{
        width: 90%;
        height: 150px;
        border-radius: 10px;
    }

    footer{
        padding-top: 0px;
    }

    .reports-slider {
        width: 85%;
        margin-top: 25px;
    }

    .reports-slider .reports-wrapper .report p {
        padding: 0px 20px;
    }

    .reports-slider .next{
        display: none;
    }

    .reports-slider .prev {
        display: none;
    }

    .copy{
        padding: 12px 0px;
        font-size: 13px;
    }

    .payment .top {
        height: 80px;
    }

    .payment .title {
        margin-bottom: 0px;
        font-size: 50px;
    }

    .payment .pay .btnForm {
        width: 95%;
        margin: auto;
    }

    .payment .pay .btnForm .btnBuy .text {
        font-size: 16px;
    }

    .payment h2 {
        font-size: 18px;
    }

    .payment .pay .infoTitle {
        font-size: 30px;
    }

    .payment .pay .info {
        width: 100%;
        padding: 40px 20px;
    }

    .payment .pay .info p {
        font-size: 18px;
        line-height: 30px;
        font-weight: 400;
    }

    .contact .contactForm {
        gap: 20px;
        width: 90%;
    }
    
    .contact .contactForm a{
        margin-top: 40px;
    }

    .contact h1{
        line-height: 35px;
        margin-bottom: 15px;
    }

    .contact h1 br{
        display: block;
    }

    .ovarlay .popPay {
        width: 90%;
        padding: 40px;
    }

    .contact .contactForm button {
        width: 100%;
    }
}