 * {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
 }

 a {
     text-decoration: none;
     transition: all .4s ease-in-out;
     color: inherit;
 }

 a,
 button,
 input[type="button"] {
     cursor: pointer;
     transition: all .5s ease-in-out;
 }

 a:focus,
 a:hover {
     text-decoration: none;
     color: inherit;
 }

 button {
     background: transparent;
     border: none;
 }

 button:focus {
     outline: none
 }

 .list-inline-item:not(:last-child),
 ul {
     margin-right: 0;
 }

 ul {
     padding-left: 0;
     padding-right: 0;
     transition: all .4s ease-in-out;
     margin: 0;
 }

 ul li {
     list-style-type: none
 }

 :focus {
     outline: none;
 }

 .text-center {
     text-align: center;
 }

 .text-right {
     text-align: right
 }

 .text-left {
     text-align: left
 }

 .row {
     margin-left: 0;
     margin-right: 0;
 }

 .row2 {
     margin: 0 -15px;
 }

 .padd-0 {
     padding-left: 0;
     padding-right: 0
 }

 .padd-5 {
     padding-left: 5px;
     padding-right: 5px
 }

 .sec-marg {
     margin-top: 40px;
     margin-bottom: 40px
 }

 .sec-padd {
     padding-top: 40px;
     padding-bottom: 40px;
 }

 .pl-10 {
     padding-left: 10px;
 }

 .pr-10 {
     padding-right: 10px;
 }

 .pt-10 {
     padding-top: 10px;
 }

 .pb-10 {
     padding-bottom: 10px;
 }

 .pl-20 {
     padding-left: 20px;
 }

 .pr-20 {
     padding-right: 20px;
 }

 .pt-20 {
     padding-top: 20px;
 }

 .pb-20 {
     padding-bottom: 20px;
 }

 .ml-10 {
     margin-left: 10px;
 }

 .mr-10 {
     margin-right: 10px;
 }

 .mt-10 {
     margin-top: 10px !important;
 }

 .mb-10 {
     margin-bottom: 10px !important;
 }

 .ml-20 {
     margin-left: 20px;
 }

 .mr-20 {
     margin-right: 20px;
 }

 .mt-20 {
     margin-top: 20px;
 }

 .mb-20 {
     margin-bottom: 20px;
 }

 .m-20 {
     margin: 20px;
 }

 .p-15 {
     padding: 15px;
 }

 .r-0 {
     border-radius: 0 !important;
 }

 .p-0 {
     padding: 0 !important;
 }

 .f-b {
     font-weight: 600;
 }


 .mx-1 {
     margin-left: .25rem !important;
 }

 :focus {
     box-shadow: none !important;
     border-color: inherit;
 }


 .rounded-pill {
     border-radius: 100px !important
 }

 .rounded-pill1 {
     border-radius: 0 100px 100px 0 !important
 }

 .rounded-pill2 {
     border-radius: 100px 0 0 100px !important
 }


 .d-none {
     display: none
 }

 .d-block {
     display: block
 }

 .owl-carousel {
     direction: ltr
 }

 .dropdown-toggle::after {
     display: none
 }

 .dropdown {
     display: inline-block;
 }

 .dropdown-menu {
     float: none;
     text-align: start;
 }

 select.form-control:not([size]):not([multiple]) {
     height: calc(2.25rem + 20px);
     padding: 0 10px;
 }

 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 p {
     margin: 0;
 }

 .flex-grow-1 {
     flex-grow: 1
 }

 input[type=checkbox],
 input[type=radio] {
     position: relative;
     width: 20px;
     height: 20px;
     vertical-align: middle;
 }

 input[type=checkbox]:before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     border: 1px solid var(--main);
     content: "";
     position: absolute;
     background: var(--main);
     border-radius: 3px;
 }

 input[type=checkbox]:checked::after {
     background: transparent;
     border: 2px solid #fff;
     top: 0px;
     left: 7px;
     width: 7px;
     height: 15px;
     /* border: 1px solid #000; */
     content: "";
     position: absolute;
     border-top-color: transparent;
     border-left-color: transparent;
     transform: rotate(45deg);
 }

 input[type=radio]:before {
     top: 0;
     left: 0;
     width: 20px;
     height: 20px;
     border: 1px solid var(--main);
     content: "";
     position: absolute;
     background: #fff;
     border-radius: 50%;
 }

 input[type=radio]:checked::after {
     top: 50%;
     left: 50%;
     width: 12px;
     height: 12px;
     content: "";
     position: absolute;
     transform: translate(-50%, -50%);
     background: var(--main);
     border-radius: 50%;
 }

 :root {
     --main: #E1C361;
     --white: #ffffff;
     --gray: #858585;
 }

 .main-color {
     color: var(--main) !important;
 }

 .grey-color {
     color: var(--gray);
 }

 .font-11 {
     font-size: 11px;
 }

 .font-18 {
     font-size: 18px;
 }

 .font-20 {
     font-size: 20px;
 }

 .under-line {
     text-decoration: underline;
 }

 .btn-main {
     display: block;
     background: var(--main);
     color: var(--white);
     width: 250px;
     max-width: 100%;
     padding: 0;
     border-radius: 5px;
     text-align: center;
     text-shadow: 0 0;
     margin: 20px auto;
     height: 55px;
     line-height: 55px;
 }

 .btn-main-w {
     background: #fff;
     color: var(--main);
 }

 textarea {
     resize: none;
 }

 @font-face {
     font-family: "myFont";
     src: url(../fonts/JF-Flat-regular.ttf);

 }

 .rounded {
     border-radius: .25rem !important;
 }

 .po_R {
     position: relative;
     z-index: 1
 }

 body {
     direction: rtl;
     text-align: right;
     font-family: "myFont";
     word-spacing: 1px;
     color: #1D1E1E;
     font-size: 15px;
     text-shadow: 0 0
 }

 header {
     position: sticky;
     top: 0;
     z-index: 30
 }


 .top_header {
     background: var(--main);
     font-weight: 600;
     padding: 11px 0
 }


 .under-header {
     position: relative;
     background-image: url(../imgs/Mask%20Group%20266.png);
     background-size: 100% 100%;
     padding: 6px 0;
     color: #FFFFFF;
     z-index: 2
 }


 .cover_black::after {
     content: "";
     display: block;
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: rgba(0, 0, 0, 0.5);
     z-index: -1
 }


.the_logo {
    max-width: 75px;
    max-height: 75px;
}

 header .btn-main {
     width: auto;
     height: auto;
     line-height: normal;
     padding: 6px 23px;
     margin: 0;
     border-radius: 20px;
     font-size: 12px !important;
     color: #000;
 }


 .top_links li,
 .nav_bar li {
     margin-inline-start: 15px
 }


 .top_links a > span {
     width: 28px;
     height: 28px;
     display: inline-block;
     margin-inline-end: 7px;
     text-align: center;
     line-height: 28px;
     font-size: 16px;
     border-radius: 50%;
     color: var(--main);
     background: #FFFFFF;
 }

 .top_links li > a {
     display: flex;
     align-items: center;
     font-size: 13px
 }


 .nav_bar a.active {
     color: var(--main) !important;
     background: none
 }


 .dropdown-menu {
     padding: 5px;
     border: 1px solid var(--main);
     border-radius: 12px;
     top: 12px !important;
 }

 .dropdown-menu:after {
     content: "";
     position: absolute;
     border-width: 6px;
     border-style: solid;
     border-color: var(--main) transparent transparent var(--main);
     top: 0;
     left: 25px;
     transform: translateY(-50%) rotate(45deg);
 }

 .dropdown-menu .dropdown-item {
     border-radius: 12px;
     color: var(--gray);
 }


 .close-open-nav {
     width: 25px;
     height: 25px;
     margin-inline-start: 10px;
     position: relative;
     display: none;
 }

 .close-open-nav > div {
     display: flex;
     flex-direction: column;
     justify-content: space-around;
     width: 100%;
     height: 100%;
     cursor: pointer;
 }

 .close-open-nav > div span {
     width: 100%;
     height: 3px;
     background: var(--main);
     border-radius: 20px;
     display: block;
     transition: all 0.3s linear 0s;
 }

 .close-open-nav.active span:first-of-type {
     transform: translateY(7px) rotate(45deg);
 }

 .close-open-nav.active span:nth-child(2) {
     opacity: 0;
 }

 .close-open-nav.active span:last-of-type {
     transform: translateY(-9px) rotate(-45deg);
 }


 .noowl_index {
     width: 100%;
     height: 450px;
     background-image: url(../imgs/Mask%20Group%20267.png);
     background-size: 100% 100%;
     display: flex;
     padding: 20px 0;
     align-items: center;
 }

 .info-noowl {
     max-width: 500px;
     color: #FFF
 }

 .info-noowl p {
     line-height: 1.9;
     font-size: 17px;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .info-noowl .btn-main {
     height: 48px;
     line-height: 48px;
     margin: 0;
     margin-top: 20px;
     color: #000;
     border-radius: 50px;
 }



 .the_Title {
     font-size: 25px;
     margin-bottom: 25px;
     color: var(--main);
 }

 .paner_pags {
     width: 100%;
     height: 200px;
     position: relative;
     z-index: 2;
     color: #FFFFFF;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     font-size: 28px;
     font-weight: 600;
     z-index: 2;
     background-image: url(../imgs/Maskpaner.png);
     background-size: 100% 100%;
     text-align: center;
 }


 .paner_pags p {
     font-size: 16px;
     margin-top: 20px
 }


 .contant_W {
     padding: 30px 15px;
     background: #FFFFFF;
     border-radius: 5px;
     box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2)
 }


 .title_L {
     font-size: 22px;
     margin: 22px 0;
     text-align: center;
     color: var(--main);
     font-weight: 600
 }

 .form-content label {
     display: block;
     margin-bottom: 7px;
 }

 .form-group {
     margin-bottom: 23px;
 }


 .form-control {
     padding: 15px 10px;
     border-radius: 5px;
     background: #FFFEFC;
     font-size: 16px;
     box-shadow: -5px 0 12px 0 rgba(0, 0, 0, 0.1), 0 5px 12px 0 rgba(0, 0, 0, 0.1);
 }

 textarea.form-control {
     height: 140px
 }


 .icon_fa {
     position: absolute;
     left: 10px;
     color: var(--gray);
     top: 50%;
     transform: translateY(-50%)
 }

 .box_kher {
     border: 1px solid #EEE;
     box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
     border-radius: 10px;
     text-align: center;
     padding: 30px;
     margin: 12px 0
 }

 .box_kher img {
     width: 100px;
     height: 100px;
     object-fit: cover;
     border-radius: 50%;
     border: 1px solid var(--main);
     margin-bottom: 10px
 }

 .box_kher li {
     margin-top: 18px
 }


 .pagination-sm .page-link {
     padding: 0;
     border-radius: 50% !important;
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
     margin: 20px 5px !important;
     border-color: var(--main) !important;
     color: var(--main);
     margin-bottom: 0 !important
 }

 .page-item.active .page-link {
     background: var(--main)
 }

 .map_index {
     width: 100%;
     height: 450px;
 }


 .form_callUs {
     margin-top: -100px;
 }

 .form_callUs .btn-main {
     margin: 0;
     margin-top: 27px;
     border-radius: 6px;
     height: 45px;
     line-height: 45px;
     width: 160px
 }


 .info_callUs {
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between
 }

 .info_callUs li {
     display: flex;
     margin: 5px 0;
     align-items: center;
     font-size: 19px
 }

 .info_callUs img {
     width: 70px;
     height: 70px;
     object-fit: cover;
     margin-inline-end: 12px
 }

 .info_callUs aside {
     font-size: 15px;
     margin-bottom: 5px;
     color: var(--gray)
 }




 .boxsubscrip {
     background-image: url(../imgs/Mask%20Group%20253.png);
     background-size: 100% 100%;
 }


 .boxsubscrip .salary {
     font-size: 85px;
     margin: 15px 0;
 }

 .boxsubscrip li {
     margin: 0;
     font-size: 20px;
     color: var(--main)
 }

 .boxsubscrip ul {
     margin: 55px 0
 }


 .boxsubscrip .btn-main {
     margin: auto;
     width: 100%;
     height: 50px;
     color: #000;
     line-height: 50px;
     border-radius: 50px
 }


 .box-media-s {
     border: 1px solid #EEE;
     border-radius: 10px;
     overflow: hidden;
     margin: 12px 0
 }

 .box-media-s .cover_black::after {
     z-index: 2;
     background: rgba(0, 0, 0, 0.2);
     border-radius: 10px
 }


 .box-media-s .po_R > img {
     width: 100%;
     object-fit: cover;
     max-width: 100%;
     border-radius: 10px;
     height: 220px
 }

 .box-media-l .po_R > img {
     height: 500px;
 }


 .box-media-s .po_R > a {
     position: absolute;
     z-index: 5;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }


 .box-media-s > aside {
     padding: 8px 10px;
     color: var(--main);
 }


 .min_info {
     padding: 0 10px 10px;
 }

 .min_info p {
     margin-bottom: 5px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     color: var(--gray);
 }


 /*--------------------------------------------------------------------------------------*/

 .chose_anyPay {
     display: flex;
     align-items: center;
     justify-content: space-around;
     margin-bottom: 20px
 }

 .chose_anyPay button {
     padding: 10px;
     width: 205px;
     max-width: 100%;
     border: 1px solid var(--main);
     border-radius: 100px;
     color: var(--main);
     margin: 10px 5px
 }

 .chose_anyPay button.active {
     background: var(--main);
     color: #000
 }

 .cartflibe_pay {
     position: relative;
     transition: all 0.6s ease-in 0s;
     transform-style: preserve-3d;
     transform: perspective(1000px);
     background: #FFF;
     height: 400px;
 }

 .cartflibe_pay > .aside {
     position: absolute;
     left: 0px;
     top: 0px;
     width: 100%;
     backface-visibility: hidden;
     z-index: 1;
 }

 .cartflibe_pay > .form2 {
     z-index: 0;
     transform: rotatey(180deg);
 }

 .cartflibe_pay.rotate {
     transform: rotateY(180deg);
 }




 .Payment-type-img {
     position: absolute;
     top: 50%;
     left: 45px;
     transform: translateY(-50%);
     border: 1px solid #EEE;
     border-radius: 12px;
     height: 40px;
     width: 60px;
     display: none;
 }



 .images1-upload-block {
     width: 250px;
     height: 135px;
     border-radius: 10px;
     overflow: hidden;
     position: relative;
     margin: auto;
     border: 1px dashed #CCC;
 }


 .images1-upload-block .upload-img {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0
 }


 .images1-upload-block .image-uploader {
     display: block;
     width: 100%;
     height: 100%;
 }

 .images1-upload-block .uploaded-block .close {
     position: absolute;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background-color: crimson;
     overflow: hidden;
     display: flex;
     color: #FFFFFF;
     font-size: 10px;
     opacity: 1;
     justify-content: center;
     align-items: center;
     z-index: 3;
     left: 3px;
     top: 3px;
     margin: 0
 }


 .images1-upload-block img {
     border-radius: 10px;
     max-width: 100%;
     width: 100%;
     height: 100%;
     object-fit: cover
 }


 .images1-upload-block .uploaded-block {
     position: absolute;
     top: 0px;
     left: 0px;
     width: 100%;
     height: 100%;
     border-radius: 50%;
 }


 /*---------------------------------------------------------------------------------------*/


 .Paneer1 {
     background-image: url(../imgs/group1.png);
     background-size: cover
 }

 .Paneer2 {
     background-image: url(../imgs/group2.png);
     background-size: cover
 }

 .box_info_web {
     border-radius: 5px;
     box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
     padding: 50px 15px;
     background: #FFF;
     font-size: 24px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 12px 0
 }

 .box_info_web img {
     width: 115px;
     height: 80px;
     object-fit: contain;
     max-width: 100%;
     margin-right: auto;
 }


 .box-index {
     border-radius: 12px;
     box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
     margin: 12px 0;
     background: #FFF;
     background-image: url(../imgs/Mask%20Group%20253.png);
     background-size: cover;
     overflow: hidden;
 }


 .box-index .aside {
     padding: 6px 15px;
 }

 .icon_share {
     font-size: 24px;
     border: 1px solid #EEE;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--main);
     cursor: pointer;
     position: relative;
     z-index: 3;
     background: #FFF;
 }


 .social_share {
     display: flex;
     font-size: 21px;
     padding: 5px;
     border: 1px solid #EEE;
     border-radius: 10px;
     position: absolute;
     right: 55px;
     background: #FFF;
     top: 50%;
     transform: translateY(-50%);
     transition: all 0.3s linear 0s;
     opacity: 0;
 }


 .social_share.active {
     right: -185px;
     opacity: 1
 }


 .social_share:after {
     content: "";
     border-width: 6px;
     border-style: solid;
     position: absolute;
     left: -7px;
     top: 50%;
     transform: translateY(-50%) rotate(45deg);
     border-color: transparent transparent #EEE #EEE;
 }


 .social_share a {
     width: 35px;
     height: 35px;
     display: flex;
     margin: 0px 3px;
     border: 1px solid #EEE;
     justify-content: center;
     align-items: center;
     color: var(--main);
     border-radius: 10px
 }

 .box-index .img_Box {
     display: block;
     width: 100%;
     height: 270px;
     border-radius: 12px 12px 0 0;
     object-fit: cover;
 }


 .progress {
     height: 27px;
     background: #857A68;
     border-radius: 0
 }

 .progress-bar {
     background: var(--main);
     border-radius: 100px 0 0 100px
 }


 .info_box_index li {
     color: var(--gray);
     margin: 5px 0
 }

 .info_box_index span:first-child {
     color: var(--main);
 }


 .box-index .btn-main {
     border-radius: 100px;
     font-weight: bold;
     color: #000;
 }

 .box-index .btn-main-s {
     margin: 5px 0;
     width: 124px;
 }

 .box-index hr {
     margin: 0;
     border-color: var(--main)
 }


 .box-index2 .info_box_index li {
     flex-basis: 50%;
 }

 .box-index2 .info_box_index span {
     display: block
 }

 .info_box_index2 {
     background: #F8F1D9;
     background-image: url(../imgs/Mask%20Group%20105.png);
     background-repeat: no-repeat;
     background-position: right;
 }


 .img_Box + div {
     position: absolute;
     top: 0;
     right: 0
 }


 .info_box_index2 li,
 .img_Box + div {
     border: 1px solid var(--main);
     color: #FFF;
     background: var(--main);
     padding: 8px;
     overflow: hidden
 }

 .info_box_index2 li:first-child,
 .img_Box + div {
     border-radius: 0 12px !important;
 }

 .info_box_index2 li:last-child {
     border-radius: 12px 0;
     padding: 0
 }

 .info_box_index2 li img {
     height: 38px;
     width: 105px;
     object-fit: cover;
 }


 .info_box_index2 p {
     padding: 20px;
     background: #FFF;
     margin-top: 15px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
     background-image: url(../imgs/Mask%20Group%20105.png);
     background-repeat: no-repeat;
     background-position: right;
 }


 .imgbox_suport {
     display: block;
     margin: 12px auto;
     width: 180px;
     height: 180px;
     max-width: 100%;
     object-fit: cover;
     border-radius: 50%;
     border: 1px solid var(--main);
     padding: 10px
 }



 .filter_boxss a {
     display: block;
     margin: 5px 15px;
     padding: 10px 30px;
     border-radius: 100px;
     border: 1px solid var(--main);
     font-size: 16px;
     color: var(--main);
 }

 .filter_boxss a.active {
     color: #FFF;
     background: var(--main);
 }


 .counter {
     display: flex;
     align-items: center;
     width: 120px;
     padding: 2px;
     border: 1px solid #EEE;
     border-radius: 6px;
     box-shadow: 0 0 2px 0 rgb(0 0 0 / 10%);
 }

 .counter > a {
     border: 1px solid var(--main);
     border-radius: 5px;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 37px;
     width: 77px;
     color: #FFF;
     background: var(--main)
 }

 .counter .qty-val {
     width: 75%;
     background: none;
     border: none;
     color: var(--main);
     text-align: center;
 }

 .salary_box {
     width: 120px;
     display: flex;
     justify-content: space-between;
     color: var(--gray);
     height: 43px;
     padding: 0px 5px;
     line-height: 43px;
     align-items: center;
     border: 1px solid var(--main);
     border-radius: 6px;
     box-shadow: 0 0 2px 0 rgb(0 0 0 / 10%);
 }


 .box-details {
     border-radius: 12px;
     box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
     margin: 12px 0;
     background: #FFF;
     background-image: url(../imgs/Mask%20Group%20253.png);
     background-size: cover;
     overflow: hidden;
     padding: 20px 30px
 }


 .Data-details {
     display: none
 }

 .Choose-donation label {
     margin: 0;
     position: relative;
     width: 55px;
     height: 43px;
     margin-inline-end: 15px;
     border-radius: 5px;
     box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
     text-align: center;
     line-height: 43px;
     color: var(--gray);
 }

 .Choose-donation label input {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     opacity: 0;
     cursor: pointer;
 }

 .Choose-donation label span {
     position: absolute;
     display: none;
     width: 100%;
     height: 100%;
     border-radius: 5px;
     border: 1px solid var(--main);
     top: 0;
     left: 0;
 }

 .Choose-donation label input:checked + span {
     display: block;
 }


 .box-details > ul li {
     margin: 8px 0;
     font-size: 18px;
     color: var(--gray);
 }

 .box-details > ul li aside {
     color: var(--main);
     margin-bottom: 7px
 }


 .stips_present li {
     display: flex;
     flex: 1;
     align-items: center;
     margin: 0px 20px;
     color: #C2C2C2;
     flex-shrink: 0
 }

 .stips_present li hr {
     margin: 0;
     flex-grow: 1;
     margin-inline-start: 15px;
     border-top: 1px solid #C2C2C2;
 }


 .stips_present li span {
     margin-inline-end: 8px;
     display: block;
     width: 30px;
     height: 30px;
     background: #C2C2C2;
     font-size: 20px;
     text-align: center;
     border-radius: 50%;
     color: #FFF;
     flex-shrink: 0
 }

 .stips_present li.active {
     color: var(--main)
 }

 .stips_present li.active hr {
     border-color: var(--main)
 }

 .stips_present li.active span {
     background: var(--main)
 }


 .box_theStips {
     border-radius: 18px;
     box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
     margin: 12px 0;
     background: #FFF;
     background-image: url(../imgs/Mask%20Group%20105.png);
     background-size: 150px 150px;
     background-repeat: no-repeat;
     background-position: right bottom;
     overflow: hidden;
     padding: 20px 30px;
     height: 300px;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative
 }


 .box_theStips aside {
     position: absolute;
     font-size: 22px;
     background: var(--main);
     color: #FFF;
     top: 0;
     right: 0;
     padding: 10px;
     width: 200px;
     border-radius: 0 18px;
     text-align: center;
 }


 .box_theStips img {
     max-width: 140px;
 }


 .Choose-the-card label {
     width: 105px;
     height: 165px;
     overflow: hidden;
     border-radius: 25px 0;
     margin-bottom: 5px;
 }

 .Choose-the-card label span {
     border-radius: 26px 0
 }

 .iti {
     width: 100%
 }

 .iti__selected-flag {
     border-radius: 100px 0 0 100px
 }

 .iti__country-list {
     width: 300px;
     left: 0;
     white-space: normal;
     text-align: start
 }

 .iti__country-name,
 .iti__flag-box {
     margin: 0 6px;
 }

 .phone_card {
     display: none
 }


 .card_info {
     border-radius: 140px 0;
     box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
     background: #FFF;
     background-image: url(../imgs/Mask%20Group%20241.png);
     background-size: 100% 100%;
     overflow: hidden;
     padding: 20px 25px 40px;
     position: relative
 }


 .card_info li,
 .Gifting-Summary li {
     font-size: 18px;
     margin: 45px 0;
     color: var(--gray)
 }

 .card_info li span,
 .Gifting-Summary li span:last-of-type {
     color: var(--main)
 }

 .Gifting-Summary li {
     display: flex
 }

 .Gifting-Summary li span {
     flex-basis: 50%
 }

 .btns_Tabs {
     padding: 0 15px;
     margin-top: 35px;
     display: flex;
     justify-content: space-between
 }

 .btns_Tabs .btn-main {
     margin: 0;
     font-weight: bold;
     height: 50px;
     line-height: 50px;
     border: 1px solid var(--main);
     width: 120px;
     border-radius: 100px;
 }


 .all_item_stips > div:not(:first-child) {
     padding: 15px;
     box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
     border-radius: 20px;
     display: none
 }

.method_pays{
    display: flex;
    gap: 10px;
    flex-wrap:wrap;
    align-items: center;
    justify-content: center;
}

    .method_pays button {
        font-weight: bold;
        border: 1px solid #EEE;
        width: 160px;
        height: 100px;
        border-radius: 5px;
        background: #fbfbfb
    }

    .method_pays img {
        width: 100px;
        height: 45px;
        object-fit: contain;
        margin-bottom: 6px;
    }



    footer {
        background: #FFF9EF;
        padding: 15px 0 0 0;
    }

 .logo_F {
     max-width: 135px;
     max-height: 135px;
 }


 .title_F {
     margin: 12px 0;
     font-weight: 600;
     margin-inline-start: 10px
 }

 .info_footer p {
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
/*     overflow: hidden;
*/     margin: 20px 0;
     color: var(--gray);
 }


 .links_footer li {
     margin: 13px 0
 }

 .undr_footer {
     padding: 15px 0;
     text-align: center;
     margin-top: 15px;
     background: #857A68;
     color: var(--white);
 }








 /*Extra small devices (portrait phones, less than 576px)*/
 @media (max-width: 575.98px) {

     .contant_W {
         padding: 30px 5px
     }

     .imgbox_suport {
         width: 150px;
         height: 150px
     }


     .all_item_stips > div:not(:first-child) {
         padding: 10px 0
     }

     .Choose-the-card label {
         width: 95px
     }

     .card_info li,
     .Gifting-Summary li {
         margin: 20px 0
     }

     .card_info {
         padding: 15px;
     }




 }

 /*Small devices (landscape phones, less than 768px)*/
 @media (max-width: 767.98px) {

     .sec-marg {
         margin-top: 20px;
         margin-bottom: 20px;
     }

     .sec-padd {
         padding-top: 20px;
         padding-bottom: 20px;
     }

     .the_logo {
         max-width: 75px;
         max-height: 75px;
     }

     .noowl_index {
         height: 300px;
     }

     .info-noowl p {
         font-size: 15px;
         -webkit-line-clamp: 3;
     }

     .the_Title {
         margin-bottom: 15px
     }

     .box_info_web {
         font-size: 16px;
         padding: 20px 15px
     }

     .paner_pags {
         height: 140px
     }

     .paner_pags p {
         margin-top: 10px;
         font-size: 14px;
         font-weight: normal;
         padding: 0px 10px
     }

     .map_index {
         height: 300px
     }

     .form_callUs {
         margin-top: -50px;
     }

     .info_callUs {
         margin-top: 25px;
         height: auto;
         margin-left: auto;
     }

     .font-18 {
         font-size: 15px
     }

     .boxsubscrip ul {
         margin: 20px 0;
     }

     .boxsubscrip .salary {
         margin: 0;
         font-size: 60px
     }

     .title_L {
         margin: 10px 0
     }

     .box-media-l .po_R > img {
         height: 220px
     }

     .filter_boxss a {
         margin: 5px;
     }

     .box_theStips {
         height: 220px;
         padding: 0
     }

     .box_theStips img {
         max-width: 105px;
     }

     .stips_present li {
         margin: 0;
         font-size: 13px;
         justify-content: center;
     }

     .stips_present li hr {
         display: none
     }
 }

 /*Medium devices (tablets, less than 992px)*/

 @media (max-width: 991.98px) {

     .close-open-nav {
         display: block;
     }

     .nav_bar {
         display: block !important;
         position: fixed;
         right: 0;
         top: 0;
         width: 300px;
         height: 100%;
         background: #857a68;
         z-index: 40;
         color: #FFFFFF;
         transform: translateX(100%);
         overflow: auto;
     }

     .nav_bar.active {
         transform: translateX(0px)
     }

     .nav_bar li {
         margin: 15px 20px;
         transition: all 0.3s linear 0s
     }

     .nav_bar li a {
         position: relative
     }

     .nav_bar li > a:after {
         content: "";
         display: block;
         width: 10px;
         height: 10px;
         background: var(--main);
         position: absolute;
         right: -15px;
         top: 50%;
         transform: translateY(-50%);
         border-radius: 50%;
     }

     .nav_bar .dropdown-menu {
         position: relative !important;
         top: 0 !important;
         transform: none !important;
         padding: 0;
         margin: 0;
         background: none;
         border: none;
         margin-top: 5px;
         display: block;
     }

     .nav_bar .dropdown-menu .dropdown-item {
         border-radius: 2px;
         color: #FFF;
         margin: 0;
         padding: 3px 12px;
     }

     .nav_bar .dropdown-menu .dropdown-item:after {
         content: "";
         border: 1px dashed var(--main);
         display: block;
         width: 16px;
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         right: -8px;
     }


     .nav_bar .dropdown-menu .dropdown-item:hover {
         background: none
     }

     .nav_bar .dropdown-menu:after {
         border-width: 1px;
         height: calc(100% - 14px);
         top: 0;
         transform: none;
         border-color: var(--main);
         right: -11px;
         left: unset;
         border-style: dashed;
     }

     .box-details {
         padding: 15px
     }

     .Choose-donation label {
         margin-inline-end: 8px
     }


     .nav_bar li {
         margin-inline-start: 22px !important;
         font-size: 15px !important;
     }

 }

 /*Large devices (desktops, less than 1200px)*/
 @media (max-width: 1199.98px) {

     .top_links li,
     .nav_bar li {
         margin-inline-start: 5px;
         font-size: 13px;
     }

     header .btn-main {
         padding: 6px 15px
     }

 }














 /*============================ start loader================================== */



 .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 9999999999;
     background: rgba(0, 0, 0, 0.9);
     overflow: hidden;
     display: -webkit-flex;
     display: -moz-flex;
     display: -ms-flex;
     display: -o-flex;
     display: flex;
     -ms-align-items: center;
     align-items: center;
     justify-content: center;
 }

 .loader img {
     animation: logoeffect2 0.9s linear 0s infinite;
     position: relative;
     width: 80px;
 }


 @keyframes logoeffect2 {


     100% {

         transform: rotateY(360deg)
     }

 }


 /*============================ end loader================================== */
 ::-webkit-scrollbar,
 body::-webkit-scrollbar,
 .scroll::-webkit-scrollbar {
     width: 6px;
     height: 6px;

 }

 ::-webkit-scrollbar-track,
 body::-webkit-scrollbar-track,
 .scroll::-webkit-scrollbar-track {
     box-shadow: inset 0 0 6px #FFFFFF;
     background: #FFFFFF
 }

 ::-webkit-scrollbar-thumb,
 body::-webkit-scrollbar-thumb,
 .scroll::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.3);
     border-radius: 20px;
 }

 ::-webkit-scrollbar-thumb:hover,
 body::-webkit-scrollbar-thumb:hover,
 .scroll::-webkit-scrollbar-thumb:hover {
     background: rgba(0, 0, 0, 0.5);
 }