@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "almoni";

    src: url('../fonts/woff2/almoni-tzar-medium-aaa.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/woff/almoni-tzar-medium-aaa.woff') format('woff'), 
         url('../fonts/ttf/AnyConv.com__almoni-tzar-medium-aaa.ttf') format('truetype'); /* Fallback */
         

    font-weight: normal;
}
@font-face {
    font-family: "almoni";

    src: url('../fonts/woff2/almoni-tzar-demibold-aaa.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/woff/almoni-tzar-demibold-aaa.woff') format('woff'), /* Older Browsers */
         url('../fonts/ttf/AnyConv.com__almoni-tzar-demibold-aaa.ttf') format('truetype'); /* Fallback */

    font-weight: 600;
}
@font-face {
    font-family: "almoni";

    src: url('../fonts/woff2/almoni-tzar-bold-aaa.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/woff/almoni-tzar-bold-aaa.woff') format('woff'), /* Older Browsers */
         url('../fonts/ttf/AnyConv.com__almoni-tzar-bold-aaa.ttf') format('truetype'); /* Fallback */

    font-weight: 700;
}

*{
    font-family: almoni;
    font-weight: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: 0;
}

:root {
    --blue: #0763E8;
    --blueDark: #00489F;
    --blueGradient: linear-gradient(270deg, #0763E8 0%, #00489F 98.39%);
    --red: #FF1B1C;
    --redSoft: #F75F41;
    --redGradient: linear-gradient(270deg, #FF1B1C 0%, #F75F41 98.39%);
    --white: #ffffff;
    --gray: #E9E9EE;
}

body{
    margin: 0;
    padding: 0; 
    background-color: white;
}

h2{
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: 45px;
    color: black;
    line-height: 50px;
}

h2 span{
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 3vw;
    color: black;
}

h3{
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: 4vh;
    color: black;
}

p{
    font-family: 'Rubik', sans-serif;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 1.6vw;
    color: black;
}

p span{
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    font-size: 20px;
}

a{
    text-decoration: none;
    color: black;
    cursor: pointer;
}

section{
    margin: 0;
    padding: 0; 
}

div{
    margin: 0;
    padding: 0; 
}
/* הגדרות אתר */

.header-shadow {
    box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
}

.header{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    position: sticky;
    z-index: 999999;
    top: 0px;
    transition: box-shadow 0.3s ease;
    position: relative;
    padding: 0px 7%;
    position: sticky;
}

.header a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header a .logo{
    width: 85px;
    margin-left: 15px;
}

.header a{
    font-size: 30px;
    font-weight: 600;
    -webkit-transition: color 3s; 
    transition: color .3s;
}

.header .btns{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    width: 200px;
}

.header .btns a{
    width: 100%;
}

.btn{
    background-color: var(--redSoft);
    padding: 20px 20px;
    padding-left: 60px;
    font-size: 25px;
    color: var(--white);
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    width: 100%;
    border: none;
}

.btn:hover{
    cursor: pointer;
    background: linear-gradient(270deg, #FF1B1C 0%, #F75F41 98.39%);
}

.btn:hover img{
    left: 30;
    transition: .3s;
}

.btn img{
    position: absolute;
    top: 50%;
    left: 35;
    transform: translate(0, -50%);
    transition: .3s;
}

.hero{
    width: 100%;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero .content{
    padding: 50px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero .content .cardLogin{
    background-color: var(--white);
    padding: 60px 0px;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    width: 520px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(17, 17, 26, 0.04) 0px 4px 16px, rgba(17, 17, 26, 0.04) 0px 8px 32px;
}

.hero .content .cardLogin .openRegister{
    background-color: var(--blue);
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: 3px 0px;
}

.hero .content .cardLogin .openRegister h2{
    color: var(--white);
    font-size: 40px;
}

.alert{
    color: var(--redSoft);
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.alert i{
    margin-left: 3px;
}

.alert--sec{
    color: #07E46D;
}

.hero .content .cardLogin .title .subtitle{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.hero .content .cardLogin .loginForm{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

input[type=tel]{
    direction: rtl;
}

.hero .content .cardLogin .loginForm input[type=tel], .hero .content .cardLogin .loginForm input[type=file]{
    height: 46px;
    width: 70%;
    background: #FEFEFE;
    border: 1px solid #E0E0E0;
    border-radius: 15px;

    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 21px;
    padding-right: 20px;
}

.hero .content .cardLogin .loginForm input[type=tel], .hero .content .cardLogin .loginForm input[type=text]{
    height: 46px;
    width: 70%;
    background: #FEFEFE;
    border: 1px solid #E0E0E0;
    border-radius: 15px;

    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 21px;
    padding-right: 20px;
}

.hero .content .cardLogin .loginForm button[type=submit]{
    background: linear-gradient(270deg, #0763E8 0%, #0763E8 98.39%);
    border-radius: 136px;
    width: 60%;
    font-size: 28px;
    border: none;
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero .content .cardLogin .loginForm button[type=submit]:hover{
    background: linear-gradient(270deg, #00489F 0%, #0763E8 98.39%);
    border-radius: 136px;
    width: 60%;
    font-size: 28px;
    border: none;
    margin-top: 40px;
}

.hero .content .cardLogin .loginForm button[type=button]{
    background: linear-gradient(270deg, #0763E8 0%, #0763E8 98.39%);
    border-radius: 136px;
    width: 60%;
    font-size: 28px;
    border: none;
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero .content .cardLogin .loginForm button[type=button]:hover{
    background: linear-gradient(270deg, #00489F 0%, #0763E8 98.39%);
    border-radius: 136px;
    width: 60%;
    font-size: 28px;
    border: none;
    margin-top: 40px;
}

.hero .content .cardRegister{
    background-color: #0762E4;
    color: white;
    overflow: hidden;
}

.hero .content .cardRegister .loginForm button[type=submit]{
    background: linear-gradient(270deg, #F75F41 0%, #F75F41 98.39%);
}

.hero .content .cardRegister .loginForm button[type=submit]:hover{
    background: linear-gradient(270deg, #FF1B1C 0%, #F75F41 98.39%);
}

.hero .content .cardRegister .title h2{
    color: white;
}

.hero .content .cardLogin .registerInfo{
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 21px;
    position: absolute;
    bottom: 20px;
    left: 25px;
    font-weight: 500;
}

.hero .content .cardLogin .registerInfo span{
    font-family: 'Rubik', sans-serif;
   text-decoration: underline;
   font-weight: 500;
   font-size: 18px;
}

.hero .content .cardLogin .registerInfo span:hover{
    color: #363636;
}

.hero .content .cardRegister .registerInfo span{
    font-family: 'Rubik', sans-serif;
   text-decoration: underline;
   font-weight: 500;
   font-size: 18px;
   color: white;
}

.hero .content .cardRegister .registerInfo span:hover{
    color: var(--gray);
}

.heroFull{
    width: 100%;
    height: auto;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: start;
    text-align: center;
    padding: 50px 80px;
    gap: 40px;
    position: relative;
}

.heroFull .right{
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.heroFull .right .box{
    width: 100%;
    text-align: center;
    background: #FEFEFE;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;

    box-shadow: rgba(17, 17, 26, 0.04) 0px 4px 16px, rgba(17, 17, 26, 0.04) 0px 8px 32px;
}

.heroFull .right .boxLink{
    align-items:center;
    justify-content: space-between;
    justify-self: flex-end;
    padding: 0;
    position: relative;
    padding: 15px 0px;

    position: relative;
    margin-top: -40;
}

.heroFull .right .boxLink .LinkForm{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}



.heroFull .right .boxLink .LinkForm input[type=checkbox]{
    width: 70px;
    height: 70px;
    text-align: center;
    margin: auto;
    cursor: pointer;
}

.heroFull .right .boxLink .LinkForm button[type=submit]{
    background-color: #07E46D;
    border: 0;
    font-size: 25px;
    color: var(--white);
    width: 100%;

    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    cursor: pointer;

    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 20px;
    transition: .3s;
}

.heroFull .right .boxLink .LinkForm button[type=submit]:hover{
    opacity: .7;
    transition: .3s;
}

.heroFull .right .boxLink .LinkForm label{
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 60px;
}

.heroFull .right .boxLink .closePopup{
    font-size: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px;
}

.heroFull .right .boxLink .closePopup:hover{
    opacity: .7;
    cursor: pointer;
}

.heroFull .right .box .title{
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #535353;
}

.heroFull .right .box .btnCall{
    background: linear-gradient(270deg, #0763E8 0%, #0763E8 98.39%);
    color: white;
    font-size: 31px;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.heroFull .right .box .btnCall:hover{
    background: linear-gradient(270deg, #00489F 0%, #0763E8 98.39%);
}

.heroFull .right .box .btnCall img{
    margin-right: 35px;
}

.heroFull .right .box .afterForm{
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.heroFull .right .boxLink .LinkForm{
    margin: 0;
}

.heroFull .right .box .afterForm input{
    margin: 0;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 20px 0px;
    height: 70px;
    outline: 0;
    border: 0;
    background: #E7E7E7;
    color: #535353;
}

.heroFull .right .boxLink .title{
    margin-bottom: 25px;
}

.heroFull .right .box .afterForm input[type=time]{
    padding: 0px 20px;
    cursor: pointer;
}

.heroFull .right .box .afterForm input[type=submit]{
    background: #E4A607;
    border-radius: 50px 0px 0px 50px;
    color: var(--white);
    transition: .3s;
}

.heroFull .right .box .afterForm input[type=submit]:hover{
    cursor: pointer;
    background-color: #E7E7E7;
    color: #535353;
    transition: .3s;
}

.heroFull .right .box .afterForm input:focus {
    outline:0;
}

.heroFull .right .box .targets{
    width: 100%;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.heroFull .right .box .targets a{
    width: 35%;
    background: #F75F41;
    padding: 12px 30px;
    color: var(--white);
    transition: .3s;
    opacity: 1;
}

.heroFull .right .box .targets .secno{
    background: #A0A0A0;
    border-radius: 0px;
}

.heroFull .right .box .targets .secno .row1{
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.heroFull .right .box .targets .sec{
    background: #07E46D;
}

.heroFull .right .box .targets a .row2{
    display: flex;
    align-content: center;
    justify-content: space-between;

    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.heroFull .right .box .targets a .row2 i{
    margin-top: 2px;
}

.heroFull .right .box .targets a:hover{
    cursor: pointer;
    opacity: .7;
    transition: .3s;
}


.heroFull .left{
    width: 35%;
    background: #0762E4;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
}

.heroFull .left .box{
    position: relative;
}

.heroFull .left .box .title{
    font-weight: 700;
    font-size: 45px;
    line-height: 66px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 100px;
}

.heroFull .left .box .boxes{
    background: #FEFEFE;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #535353;
    padding: 12px 0px;
    width: 70%;
    margin: auto;
    margin-bottom: 25px;
}

.heroFull .left .box .status{
    position: absolute;
    bottom: -60;
    left: 50%;
    transform: translate(-50%, 0);

    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #07E46D;
}

.heroFull .left .box .status:before{
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #07E46D;
    content: '';
    display: inline-block;

    position: absolute;
    top: 50%;
    right: -25px;
    transform: translate(0, -50%);
    animation: flash 1s infinite;
}

.heroFull .left .box .statusNo{
    color: #E4A607;
}

.heroFull .left .box .statusNo:before{
    background-color: #E4A607;
    animation: none;
}

.heroFull .right .box .getNumBtn{
    width: 35%;
}

.heroFull .right .box .getNumBtn .btn{
    background: linear-gradient(270deg, #0763E8 0%, #0763E8 98.39%);
    border-radius: 50px;
}

.heroFull .right .box .getNumBtn:hover .btn{
    background: linear-gradient(270deg, #00489F 0%, #0763E8 98.39%);
}

.banner{
    z-index: 8888;
    width: 70%;
    height: auto;
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.heroFull .right .boxAdmin{
    height: 450px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    direction: ltr;

    width: 100%;
    text-align: right;
    background: #FEFEFE;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 20px 55px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
    position: relative;
    box-shadow: rgba(17, 17, 26, 0.04) 0px 4px 16px, rgba(17, 17, 26, 0.04) 0px 8px 32px;
}

.heroFull .right .line{
    direction: rtl;

    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: right;
    font-size: 21px;
    position: relative;
    border-bottom: 1px solid var(--gray);
}

.heroFull .right .line:hover .targetsAdmin{
    display: flex;
    opacity: 1;
    transition: .3s;
}

.heroFull .right .line .phoneData{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.heroFull .right .line .statusData::before{
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background-color: #07E46D;
    content: '';
    display: inline-block;

    margin-left: 10px;
    animation: flash 1s infinite;
}

.heroFull .right .line .statusDatano::before{
    background-color: #F75F41;
    animation: none;
}

.heroFull .right .line .statusDataWait::before{
    background-color: #E4A607;
    animation: none;
}

.heroFull .right .info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: right;
    font-size: 21px;
    position: relative;
    border-bottom: 1px solid var(--gray);
    padding: 0 55px;
}

.heroFull .right .info .statusData::before{
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background-color: #07E46D;
    content: '';
    display: inline-block;

    margin-left: 10px;
    animation: none;
}

.heroFull .right .info .statusDatano::before{
    background-color: #F75F41;
}

.heroFull .right .info .statusDataWait::before{
    background-color: #E4A607;
}


.heroFull .right .line .targetsAdmin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: none;
    justify-content: space-around;
    width: 100%;
    opacity: 0;
    transition: .3s;
}

.heroFull .right .line .targetsAdmin a{
    width: 100%;
}

.heroFull .right .line .targetsAdmin a .row2{
    width: 100%;
    background-color: #F75F41;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 25px;
    transform: scale(1);
    transition: .3s;
}

.heroFull .right .line .targetsAdmin a .row2:hover{
    transform: scale(1.02);
    transition: .3s;
}

.heroFull .right .line .targetsAdmin .sec .row2{
    width: 100%;
    background-color: #07E46D;
}

#dropzone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    margin: 50px auto;
    width: 500px;
    height: 300px;
}
#dropzone.highlight {
    border-color: #666;
}
  
.uploadStatus{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #E4A607;
    margin-bottom: 20px;
    font-weight: bold;
}

.uploadStatus:before{
    width: 12;
    height: 12;
    border-radius: 50px;
    background-color: #E4A607;
    content: '';
    display: inline-block;
    margin-left: 5px;
    
    animation: flash 1s infinite;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
}

.btnUp {
    border: 2px solid var(--blue);
    color: var(--blue);
    background-color: white;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 25px;
    font-weight: bold;
    font-weight: 500;
}

#file-upload{
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    padding: 0;
    height: 100%;
    cursor: pointer;
}

#file-upload:hover{
    cursor: pointer;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1100px){
    .heroFull {
        flex-wrap: wrap;
        padding: 50px 20px;
        gap: 70px;
    }

    .heroFull .right {
        width: 90%;
    }

    .heroFull .left {
        width: 90%;
    }

    .banner{
        width: 100%;
    }

    .heroFullAdmin{
        flex-wrap: wrap-reverse;
    }

    .heroFullAdmin .right {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 800px){
    .hero .content .cardLogin .loginForm button[type=submit]:hover{
        background: linear-gradient(270deg, #00489F 0%, #0763E8 98.39%);
        border-radius: 136px;
        width: 80%;
        font-size: 28px;
        border: none;
    }

    .hero .content .cardLogin {
        width: 90%;
    }

    .header{
        padding-left: 0;
        flex-direction: row-reverse;
        padding: 0;
    }

    .nav{
        display: none;
    }

    .header .btns {
        gap: 0;
        width: 170px;
    }

    .btns .btn {
        font-size: 25px;
        padding-left: 0px;
        padding-right: 0px;
        height: 80px;
        text-align: center;
    }

    .btns .btn img{
       display: none;
    }   

    .hero .content .cardLogin .loginForm input[type=tel], .hero .content .cardLogin .loginForm input[type=file]{
        width: 85%;
    }

    .hero .content .cardLogin .loginForm input[type=tel], .hero .content .cardLogin .loginForm input[type=text]{
        width: 85%;
    }

    .hero .content .cardLogin .loginForm button[type=submit]{
        width: 80%;
    }

    .heroFull .left .box .status {
        position: absolute;
        top: -30;
        left: 50%;
        transform: translate(-50%, 0);
        font-family: 'Rubik', sans-serif;
        font-weight: 400;
        font-size: 17px;
        color: #07E46D;
    }

    .heroFull .left .box .status:before {
        width: 15px;
        height: 15px;
        border-radius: 50px;
        background-color: #07E46D;
        content: '';
        display: inline-block;
        position: absolute;
        top: 4px;
        left: 50%;
        transform: translate(-5%, 0);
        animation: flash 1s infinite;
    }

    .heroFull .left .box .statusNo{
        color: #E4A607;
    }
    
    .heroFull .left .box .statusNo:before{
        background-color: #E4A607;
        animation: none;
    }
}

@media screen and (max-width: 680px){
    .heroFull {
        flex-wrap: wrap;
        padding: 50px 10px;
        gap: 70px;
    }

    .heroFull .right {
        width: 95%;
    }

    .heroFull .left {
        width: 95%;
    }

    .heroFull .right .box {
        padding-bottom: 0;
    }

    .heroFull .right .box .title {
        font-size: 18px;
    }

    .heroFull .right .box .afterForm {
        width: 90%;
        margin-bottom: 60px;
    }

    .heroFull .right .box .afterForm input[type=submit] {
        border-radius: 0;
    }

    .heroFull .right .box .targets {
        position: inherit;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        color: white;
        font-family: 'Rubik', sans-serif;
        font-weight: 600;
        font-size: 20px;
        gap: 5px;
    }

    .heroFull .right .box .targets a{
        width: 100%;
        text-align: right;
        padding: 15px 30px;
    }

    .heroFull .right .boxLink .closePopup {
        font-size: 25px;
        top: 0;
        left: 10;
        padding: 10px;
    }

    .heroFull .right .boxLink .LinkForm label {
        margin-bottom: 85px;
    }

    .heroFull .left .box .title{
        font-weight: 700;
        font-size: 45px;
        line-height: 66px;
        text-align: center;
        color: #FFFFFF;
        margin-bottom: 20;
    }

    .heroFull .right .boxGet {
        padding-bottom: 50px;
    }

    .heroFull .right .boxGet .getNumBtn {
        width: 65%;
    }

    .heroFull .right .boxAdmin {
        height: 500px;
        padding: 20px 20px;
        gap: 20px;
    }

    .heroFull .right .line {
        font-size: 18px;
    }
    
    .heroFull .right .info {
        font-size: 18px;
        padding: 0 20px;
    }

    .heroFullAdmin{
        flex-wrap: wrap-reverse;
    }

    .heroFullAdmin .right {
        flex-direction: column-reverse;
    }

    .heroFullAdmin .right .line .phoneData {
        left: 45%;
    }

    .hero .content{
        padding: 30px 15px;
    }
}