/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #161616;
    --secondary-color: #FAFAFA;
    --text-color: #161616;
    --accent-color: #D9F07F;.home .our-faqs
    --dark-color: #161616;
    --white-color: #FFFFFF;
    --divider-color: #E3E3E3;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "New_hero_Medium";
    --accent-font: "New_hero_Regular";
}

@font-face {
    font-family: New_hero_Medium;
    src: url('/assets/fonts/hero-new/Hero-New-Medium.otf');
}

@font-face {
    font-family: New_hero_Regular;
    src: url('/assets/fonts/hero-new/Hero-New-Regular.otf');
}

@font-face {
    font-family: New_hero_extrabold;
    src: url('/assets/fonts/hero-new/Hero-New-ExtraBold.otf');
}

@font-face {
    font-family: New_hero_semibold;
    src: url('/assets/fonts/hero-new/Hero-New-SemiBold.otf');
}

@font-face {
    font-family: New_hero_light;
    src: url('/assets/fonts/hero-new/Hero-New-Light.otf');
}

@font-face {
    font-family: New_hero_bold;
    src: url('/assets/fonts/hero-new/Hero-New-Bold.otf');
}


/************************************/


/*** 	   02. General css		  ***/


/************************************/

html,
body {
    background-color: #F6F6F1 !important;
}

.hero {
    background-image: url('/assets/images/new/bg-01.webp');
    padding: 100px 0 0;
    margin-top: -140px;
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.checkout-payment-method .checkout-option img {
    border-right: .3px solid #70707073;
    padding-right: 17px;
}

.toggle-switch img {
    width: 40px
}

.google-button-container,
.apple-button-container {
    width: 50%;
    margin: auto;
}

.home .header-sticky .sticky-logo {
    display: none;
}

.home .view-all-btn-wrapper a {
    margin: 0 auto;
    margin-top: 48px;
    /* width: fit-content; */
    width: 305px;
}

.home .section-title {
    gap: 26px;
}

.home .header-sticky .logo {
    display: block;
}

.header-sticky.active .logo {
    display: none;
}

.header-sticky.active .sticky-logo {
    display: block;
}

.header-sticky .sticky-logo {
    display: block;
}

.header-sticky .logo {
    display: none;
}

.esim-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.esim-data>div {
    max-width: 100%;
    width: 100%;
    height:fit-content;
}

body {
    font-family: var(--default-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: var(--white-color);
}

p {
    line-height: 1.8em;
    /* margin-bottom: 1.6em; */
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    width: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    width: 92%;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    /* padding-right: 15px; */
    /* padding-left: 15px; */
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 12px 25px;
    border: none;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn-default:hover {
    background-color: transparent;
    color: var(--white-color);
}

.btn-default:hover::before {
    filter: brightness(0) invert(1);
    transform: translate(-22px, -50%);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn-default.contact-btn {
    padding: 16px 25px 16px 55px;
}

.btn-default.contact-btn::before {
    right: auto;
    left: 0;
    transform: translate(25px, -50%);
    background: url('../images/icon-contact-btn.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px auto;
}

.btn-highlighted {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
    text-align: center;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 19px 25px;
    border: none;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn-highlighted:hover {
    background-color: transparent;
    color: var(--white-color);
}

.btn-highlighted::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-highlighted:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

#magic-cursor {
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 8px !important;
    height: 8px !important;
    background: var(--accent-color);
    margin: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1 !important;
}

.about-simply .main {
    /* margin-left: 50px; */
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-simply .main .section-title h4 {
    color: #161616;
    font-family: New_hero_extrabold;
    font-size: 21px;
}

.about-simply .main .section-title h3 {
    color: #161616;
    font-family: New_hero_extrabold;
    font-size: 23px;
    margin-top: 15px;
    opacity: .55;
}

.about-simply .features-content .section-title .highlight {
    padding-right: 5px;
}

.about-simply .blog-featured-image img {
    height: 308px;
    max-width: 467px;
    object-fit: cover;
    border-radius: 48px;
}

.support-page.static-data .content {
    text-align: left;
}

.code-card {
    position: relative;
    display: inline-block;
}

.copy-icon-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.toast {
    position: fixed;
    top: 80px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}


.copy-icon-btn i {
    color: #000; 
    transition: 0.2s;
}

.copy-icon-btn:hover i {
    transform: scale(1.1);
}


.support-page.static-data .content ul {
    padding-bottom: initial;
}

.about-simply .main .col-lg-6 p {
    margin: 0px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 30px;
    font-family: 'New_hero_Regular';
    font-size: 13px;
    line-height: 20px;
}

.about-simply .img-section img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 31px;
}

img.aboutimg {
    max-width: 90%;
    border-radius: 32px;
}

.about-simply .img-section .col-lg-7 {
    padding-right: 0px;
}

.about-simply .together .section-title {
    display: flex;
    justify-content: center;
}

.about-simply .together .section-title h2 {
    margin-top: 0px;
}

.about-simply .together .col-lg-6 p:nth-child(1) {
    /* margin-top: 100px; */
}

.about-simply .together .col-lg-6 p:nth-child(2) {
    margin-top: 25px;
    margin-bottom: 25px;
}

.about-simply .main hr {
    color: #70707059;
    width: 85%;
    margin-left: 50px;
    margin-bottom:80px;
}

.about-simply .main .cta-box-image.qr-box {
    background: transparent;
    padding: 0px;
    width: auto;
    height: auto;
}

.about-simply .main .cta-box-content .section-title p {
    font-size: 13px;
    opacity: 1;
    line-height: 20px;
    margin-top: 40px;
}

#searchResults img{
    border-radius:10px;
}

.about-simply .main .cta-box-content .section-title {
    margin-bottom: 30px;
}

.cta-box.support.container{
    margin-bottom: 36px;
}

.about-simply .main .cta-box-btn .store-btn img {
    height: 50px;
}

.about-simply .main .cta-box-content {
    margin-left: 50px;
}

.about-simply .main .cta-box-image img {
    border: none;
    height: 400px;
    width: 80%;
    object-fit: cover;
}

.about-simply .col-lg-5 p{
    font-family: 'New_hero_Regular';
    font-size: 14px;
}

.about-simply .our-features.bg-section {
    background: #FFFFFF;
    padding: 50px 140px;
    /* margin: 30px 0px; */
}

.about-simply .our-features .section-title p {
    font-size: 14px;
    margin-top: 30px;
}

.about-simply .features-content .section-title h2 {
    font-size: 37px;
    margin-top: 0px;
}

.about-simply .view-all-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
}

.about-simply .view-all-btn2,
.about-simply .view-all-btn {
    font-family: 'New_hero_semibold';
    /* margin-top: 20px !important; */
}

.about-simply .our-faqs {
    /* margin-top: 48px; */
    border: none;
    padding: 107px 0 107px 0;
    margin-bottom: 0px;
}

.about-simply .post-featured-image a {
    position: relative;
    display: block;
    border-radius: 31px;
    height: 550px;
    overflow: hidden;
}

.about-simply .post-item p {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #F6F6F1;
    opacity: .61;
    font-family: 'New_hero_regular';
    font-size: 16px;
}

.about-simply .post-meta {
    margin-bottom: 20px;
}

.about-simply .post-meta .small {
    font-size: 12px;
    font-family: 'New_hero_Regular';
    color: #F6F6F1;
    opacity: .61;
}

.about-simply .post-item .post-title {
    width: 60%;
}

.about-simply .post-item .post-title a {
    color: #F6F6F1;
    font-size: 35px;
    font-family: 'New_hero_extrabold';
}

.about-simply .main .blog .section-title {
    margin-bottom: 40px;
}

.about-simply .blog .blog-content h3 {
    font-family: 'New_hero_extrabold';
    margin-bottom: 15px;
    color: #161616;
}

.about-simply .blog .blog-content p {
    font-family: 'New_hero_regular';
    font-size: 15px;
    color: #161616;
    opacity: .61;
    margin-bottom: 20px;
}

.about-simply .blog-item-body {
    margin-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.main-blog .main-footer.bg-section {
    padding-top: 20px;
}

.single-blog .post-title {
    margin-top: 40px !important;
    margin: auto;
    text-align: center;
    font-size: 51px;
    width: 50% !important;
    font-family: 'New_hero_Extrabold';
    margin-bottom: 20px;
}

.single-blog .img-fluid {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 31px;
}

.about-simply.single-blog .post-meta .small {
    color: #161616 !important;
    display: flex;
    justify-content: center;
}

.single-blog .section-title {
    margin-bottom: 40px;
}

.blog-h p {
    font-size: 20px;
    font-family: 'New_hero_Regular';
    text-align: left;
}

.desc p {
    opacity: 0.7;
}

.desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blogpost {
    padding-bottom: 100px;
}

.blog-h {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.features-content.reading-time {
    gap: 8px;
}

.features-content.reading-time>* {
    font-size: 12px;
    line-height: normal;
}

.single-blog .reading-time p {
    margin: 0px !important;
}

.single-blog .reading-time .block {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.single-blog .reading-time .reading {
    opacity: .61;
}

.single-blog .reading-time .block img {
    margin-right: 5px;
}

.single-blog.about-simply .single-blog-title {
    font-family: 'New_hero_Regular';
    font-size: 16px;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.single-blog .main .col-lg-6 .desc {
    font-size: 16px !important;
    opacity: .61;
    padding-bottom: 100px;
}

.blog-container {
    max-width: 81%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.device-check-form {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 550px;
    justify-content: center;
}

.device-check-form input[type="text"]::placeholder {
    color: #1616164f;
}

.device-check-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 44px;
    outline: none;
    font-family: 'New_hero_Medium';
    color: #161616;
    z-index: 99;
}

.device-check-form button {
    padding: 0 40px;
    padding-left: 100px;
    background-color: #D9F07F;
    color: #000;
    font-family: 'New_hero_Medium';
    font-size: 16px;
    height: 60px;
    border: none;
    border-radius: 44px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    left: -50px;
    z-index: 1;
}

.device-check-form button:hover {
    background-color: #d6eb70;
}

.about-simply .our-features.device .section-title p {
    margin-left: 0px;
    margin-bottom: 50px;
}

.about-simply .device-title {
    margin: 30px 0px;
    display: flex;
    justify-content: center;
}

.device-category strong{
    display:flex;
    align-items:center;
    max-width: 100%;
}

.responsive-menu .slicknav_menu{
    background: white !important
}

.about-simply .device-title h2 {
    text-align: center;
    font-family: 'New_hero_extrabold';
}

.privacy-cont .content strong{
    font-size: 20px;
    font-family: 'New_hero_Medium';
}

.privacy-cont .content li{
    font-size:15px;
    padding-bottom: 5px;
    margin-top: 10px;
}

.device-menu {
    background: #EFEFEF;
    padding: 42px;
    border-radius: 43px;
}

.device-menu .device-category:last-child{
    display:none;
}

.device-category {
    margin-bottom: 20px;
    cursor: pointer;
    font-family: 'New_hero_Medium';
    font-size: 18px;
}

.device-category img {
    margin-left: 20px;
}

.device-category.active img {
    transform: rotate(90deg);
}

.device-category:last-child {
    margin: 0px;
}

.device-category ul.sub-menu {
    margin-top: 10px;
    padding-left: 15px;
    display: none;
    list-style: none;
}

.device-category ul.sub-menu li,
.device-content.restrictions ul {
    cursor: pointer;
    opacity: .61;
    color: #161616;
    margin: 5px 0;
    font-family: 'New_hero_regular';
    font-size: 18px;
}

.restrictions ul{
    list-style:disc;
    opacity:1 !important;
    padding-left:0px;
}

.restrictions li{
    gap: 5px;
    padding: 0px;
}

.device-content {
    display: none;
}

.device-content.active {
    display: block;
}

.device-content ul li {
    list-style: disc;
    margin-bottom: 14px;
    font-size: 16px;
}

.device-content ul li .dot {
    width: 8px;
    height: 8px;
    background: #d9f276;
    border-radius: 50%;
}

.device .col-lg-8 {
    padding-left: 75px;
}

.device .col-lg-8 h2 {
    font-size: 30px;
    font-family: 'New_hero_extrabold';
    margin-bottom: 40px;
    margin-top: 30px;
}

.device .col-lg-8 h4 {
    font-size: 20px;
    font-family: 'New_hero_medium';
    margin-bottom: 25px;
}

.device .col-lg-8 ul {
    padding: 0;
    font-family: 'New_hero_Regular';
    color: #161616;
    opacity: .61;
    font-size: 16px;
}

.device-content.restrictions {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.device-content.restrictions h2 {
    margin-bottom: 20px;
}

.device-content.restrictions h4 {
    font-family: 'New_hero_Regular';
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.our-features.device p {
    font-family: 'New_hero_Regular';
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
}

.device-menu .sub-menu li.active {
    font-weight: 600;
    opacity: 1;
}

.device-check-form img {
    position: absolute;
    z-index: 9999;
    left: 20px;
    width: 30px;
}

.compatibilive .device-check-form input[type="text"] {
    padding-left: 70px;
}

.support-page .support {
    margin-top: 30px !important;
}

.my-account .cta-box-content{
   margin-top: 50px; 
}

.support-page .main-wrapp {
    margin-top: 48px;
}

.support-page .highlight3 {
    color: #000000;
    display: inline;
    background: linear-gradient(to top, #daef7f 45%, transparent 45%);
    padding: 0px;
}

.support-page .faq-item {
    border-bottom: none;
    padding: 25px 80px !important;
    background: #FFFFFF;
    border-radius: 21px;
    margin-bottom: 10px;
}

.support-page .our-faqs-box {
    width: 80%;
    margin: auto;
}

.support-page .our-faqs-box .faq-answer p {
    text-align: left;
}

.myesim {
    padding: 72px 154px 69px 170px !important;
    /* padding: 123px 177px !important; */
    border-radius: 0;
}

.my-esim .header {
    text-align: left;
}

.my-esim .header .tab-nav {
    justify-content: center;
}

.my-esim #h2title {
    font-size: 37px;
    font-family: 'New_hero_extraBold';
    font-weight: 800;
}

.my-esim .section-title p {
    margin-top: 35px;
    font-size: 14px;
    font-family: 'New_hero_Regular';
}

.no-esim{
    display: grid;
    justify-content: center;
    margin: auto;
}

.no-esim img{
    margin: auto;
}

.my-esim .view-all-btn {
    margin-left: 0px;
    margin-top: 0px;
    font-family: 'New_hero_medium';
    width: 389px !important;
}

.ml-30 {
    margin-left: 25px;
}

.my-esim .pb {
    padding-bottom: 150px;
}

.esim-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 15px;
}

.esim-plans .plan-box .coins{
    position:relative;
    left:10px;
}

.esim-plans .plan-box .coins img{
    width: 15px;
    height: 15px;
}

.esim-plans .plan-box .coins span{
    font-size: 8px;
    font-family: 'New_hero_Medium';
}

.plan-box {
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.plan-box.active {
    background: #D9F07F;
    border: 1px solid #000000;
}

.plan-box.active .plan-gb {
    border: none;
    background: #FFFFFF;
}

.plan-box.active input[type="radio"] {
    border: none;
    background: white;
}

.plan-box.active input[type="radio"]:checked::before {
    background: #D9F07F;
    border: 1px solid #707070;
}

.plan-box.active .plan-duration {
    background-color: white;
}

.plan-box.active .plan-price {
    font-family: 'New_hero_bold';
}

.plan-box input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin-left: auto;
    margin-right: 10px;
    position: relative;
}

.plan-box input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
}

.plan-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.plan-gb {
    border: 1px solid #24282B;
    padding: 6px 9px;
    border-radius: 9px;
    font-size: 17px;
    font-family: 'New_hero_extrabold';
    display: flex;
    line-height: 1.3;
    align-items: center;
    /* height: fit-content; */
}

.plan-price {
    font-size: 14px;
    font-family: 'New_hero_light';
    line-height: 1;
}

.plan-duration {
    font-size: 8px;
    font-family: 'New_hero_regular';
    background: #0000001b;
    line-height: 1;
    /* display: flex; */
    padding: 4px 8px;
    /* align-items: center; */
    border-radius: 4px;
    font-weight: 500;
    width: fit-content;
    /* max-height: 16px; */
}

.best-badge {
    position: absolute;
    right: 75px;
    height: 25px;
    top: 10px;
}

.plan-box.best-value .coins{
    position: relative;
    top: 15px;
    left: 10px;
}

.view-all-btn.active {
    background: #000000 !important;
    pointer-events: all !important;
}

.plan-data {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.esim-photo {
    width: fit-content;
    /* margin: 0 auto; */
}

.esim-wrapper .features-content {
    max-width: 715px;
    margin: 0 auto;
    padding-top: 60px;
}

.plan-data hr {
    margin-top: 0;
    color: black;
    margin-bottom:0px;
}

.esim .our-features .col-lg-7 {
    /* padding-left: 30px; */
}

.esim .our-features .col-lg-7 p {
    /* font-size: 15px; */
    /* margin-top: 20px; */
    /* margin-bottom: 35px; */
    /* margin-bottom: 35px; */
    font-family: 'New_hero_Regular';
}

.about-simply.esim .our-features.bg-section {
    background: transparent;
    /* margin: 0px; */
}

.esim.about-simply.r .our-services {
    padding-bottom: 77px;
}

.our-services.esim-work.regional {
    background: white !important;
    border-radius: 0 !important;
}

.regional-container .country-grid {
    gap: 36px;
    margin-top: 12px;
}

.regional-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.regional-container .section-heading {
    margin: 0 !important;
}


/* install esim*/

.success_footer {
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin-top: 82px;
}

.success_footer p {
    font-size: 15px !important;
}

.success_footer .buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.success_footer .buttons a {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
}

.our-faqs-box.in {
    margin-top: 28px;
}

.our-faqs-box.in .faq-item .faq-question h3 {
    font-size: 15px;
}

.our-faqs-box.in .faq-answer p {
    font-size: 14px;
    margin-top: 24px;
    color: #161616;
    margin-left: 13px;
}

.our-faqs-box.in .faq-item {
    padding: 16px;
    margin: 10px auto;
    border-bottom: none;
    background: white;
    border-radius: 16px;
}

.features-content.in {
    margin-bottom: 48px;
}


h2.text-anime-style-3.privacy-title span {
    padding-left: 0 !important;
}

h2.text-anime-style-3.privacy-title {
    font-size: 2rem !important;
}
.features-content.in h4 {
    font-size: 37px;
    font-weight: 800;
    font-family: 'New_hero_extrabold';
}

.checkout-container.in {
    padding: 40px 0;
}

.checkout-container.in .checkout-right {
    max-width: 455px;
    margin: 0 auto;
}

.checkout-container.in .checkout-subtitle {
    font-size: 20px;
    font-weight: 500;
    font-family: 'New_hero_Regular';
    color: #161616;
}

.checkout-container.in .checkout-left h5 {
    font-size: 15px;
}

p.note-txt {
    font-size: 12px !important;
    margin: 42px 0 60px 0;
}

.regional-container .country-grid {
    width: 100%;
    margin: 0;
}

.about-simply.esim .view-all-btn-wrapper {
    margin-top: 0px;
    /* margin-bottom: 40px; */
    gap: 28px;
    margin-top: 48px;
}

.about-simply.esim .view-all-btn,
.about-simply.esim .view-all-btn2 {
    width: 100%;
    font-family: 'New_hero_medium';
    margin-bottom: 0px;
    padding: 18px 0;
    /* font-size: 21px; */
}

.about-simply.esim .esim-block .our-faqs {
    padding: 0px;
    /* padding-top: 40px; */
}

.about-simply.esim .line {
    color: #7070704f;
    margin: 0px;
}

.about-simply.esim .esim-block .faq-item {
    padding: 0px;
}

.about-simply.esim .esim-block .faq-answer {
    display: block;
}

.esim-block figure img {
    border-radius: 32px;
}

.about-simply.esim .esim-block .faq-answer ul {
    padding-left: 0rem;
    list-style: none;
    font-size: 16px;
    font-family: 'New_hero_Regular';
    margin-left: 20px;
}

.about-simply.esim .esim-block .tab-content.device-content {
    display: block;
    margin-top: 20px;
}

.about-simply.esim .esim-block .our-faqs .tab-nav {
    margin-bottom: 20px;
    margin-top: 0;
}

.about-simply.esim .our-services {
    background: #D9F07F;
    border-radius: 32px;
    padding: 77px 84px;
    padding-bottom: 100px;
}

.about-simply.esim .our-services p {
    font-size: 15px;
    font-family: 'New_hero_Regular';
}

.about-simply.esim .our-services .section-heading {
    margin-bottom: 25px;
}

.about-simply.esim .our-services .country-card {
    background-color: #F6F6F1;
}

.about-simply.esim .our-services .country-card .country-name {
    width: auto;
}

.about-simply.esim .our-services .country-card .flag {
    width: 44px;
    border-radius: 22px;
    flex-shrink: 0;
    background: #E4E4E4;
    padding: 10px;
}

.about-simply.esim .activate {
    /* padding-top: 100px; */
    /* padding-bottom: 100px; */
    padding: 100px;
}

.bg-green {
    background-color: #D9F07F !important;
}

.esim .activate .cta-box-image img {
    border: none;
    height: 500px;
}

.esim .activate .cta-box-image {
    position: relative;
    top: -70px;
}

.esim .activate .section-title h2 {
    /* margin-top: 54px; */
    margin: 54px 0 16px 0;
}

.esim .activate .section-title p {
    /* margin-top: 25px; */
    font-size: 15px;
    /* margin-bottom: 25px; */
    margin: 18px 0 18px 0;
}

.esim .activate .section-title {
    margin-bottom: 0px;
}

.esim .activate .cta-box-btn .store-btn img {
    height: 55px;
}

.about-simply.esim .our-faqs {
    padding-top: 24px !important;
}

.esim .esim-block .col-lg-5 {
    /* padding-left: 50px; */
}

.modal.fade {
    background-color: #b5b5b200;
    overflow: hidden;
}

.header-sticky {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.7s ease-in-out;
}

.header-sticky.active {
    background: white !important;
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

.header-sticky.active .main-menu ul li a {
    color: black;
}

.header-sticky.active .main-menu .nav-menu-wrapper {
    border-color: black;
}

.header-sticky.active .header-btn .btn-login.lang span {
    color: black;
}

.header-sticky.active .header-btn .btn-login {
    color: black;
    border-color: black;
}


/*home banner*/

.qr-and-title {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.qr-img {
    width: 160px;
    height: auto;
    outline: 1px solid #707070;
    padding: 5px;
    background: white;
    border: 5px solid #D9F07F;
}

.hero-text h1 {
    color: white;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
    font-family: New_hero_extrabold;
    letter-spacing: 2px;
    margin: 0;
}

.hero-text h2 {
    color: white;
    font-size: 25px;
    font-weight: 400;
    margin: 10px 0 20px;
    margin-bottom: 0px;
    font-family: 'New_hero_Regular';
}

.hero-text img {
    margin-top: 20px;
}

.hero-text h2 span {
    margin-left: 5px;
    font-family: 'New_hero_extrabold';
}

.search-icon p {
    margin: 0px;
    font-family: 'New_hero_Regular';
    opacity: .68;
}

.search-icon img {
    padding: 5px;
    background: #6f6d6d38;
    border-radius: 37px;
    width: 30px;
    height: 30px;
}

.hero-text h2 strong {
    font-family: 'New_hero_extrabold';
}

.hero-text p {
    font-size: 16px;
    max-width: 500px;
    margin: 0;
    color: #333;
}

.hero .cta-box-btn {
    margin-top: 10px;
    gap: 15px;
    justify-content: center;
}

.hero form{
    margin-bottom:20px;
}

.home .hero .cta-box-btn img {
    width: 170px;
    height: 70px;
}


/* Search Bar */

.search-bar {
    /* background-image: url('https://simplyesim.app/assets/images/img/search_bg3.png');
    background-size: cover;
    background-position: center; */
    background: white;
    padding: 10px;
    padding-left: 35px;
    border-radius: 37px;
    max-width: 500px;
    margin: auto;
    margin-top: 25px;
    z-index: 1
}

.search-icon {
    background: transparent;
    border: none;
    pointer-events: none;
}

.qr-text p {
    margin: 10px 0px;
    font-family: 'New_hero_Regular';
    color: white;
    opacity:.7;
}

.qr-text p  b{
    -webkit-text-stroke: .4px;
    opacity:1;
}

.search-bar input {
    border: none;
    font-size: 14px;
    opacity: .5;
    width: 100%;
    outline: none;
    font-family: 'New_hero_Regular';
    color: #161616;
    background: transparent;
}

.search-bar {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.search-results {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    /* background-image: url('https://simplyesim.app/assets/images/img/search_bg3.png');
    background-size: cover;
    background-position: center; */
    z-index: 100;
    display: none;
    padding: 10px 0;
    border-radius: 37px;
    padding-top: 60px;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999999;
    width: 100%;
}

.search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    padding-left: 20px;
}

.search-results li {
    padding: 8px 15px;
    cursor: pointer;
    color: #333;
}

.search-results li a {
    color: black;
    font-family: 'New_hero_Regular';
    font-size: 15px;
}

.search-results li:hover {
    background-color: #ffffff30;
    width: 98%;
    border-radius: 100px;
}

.search-results .category-heading {
    font-weight: bold;
    padding: 10px 15px 5px;
    color: #666;
    font-size: 0.9em;
}

.phones-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-right: 50px;
}

.data-plan-section {
    background: #f8f7f2;
    padding: 50px 20px;
    padding-top: 15px;
    padding-bottom: 80px;
    text-align: center;
}

.home .data-plan-section {
    padding-top: 50px;
}

.section-heading {
    font-size: 37px;
    margin-bottom: 40px;
    font-family: 'New_hero_extrabold';
}

.highlight {
    display: inline;
    background: linear-gradient(to top, #D9F07F 45%, transparent 45%);
    padding: 0px;
    padding-left: 0px;
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 15px 0 15px 0;
}

.tab-btn {
    padding: 12px 70px;
    font-size: 16px;
    border: none;
    border-radius: 32px;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    font-family: 'New_hero_Regular';
    opacity: .6;
    border: none;
    color:black;
}

.tab-border {
    display: flex;
    border: 1px solid #16161617;
    border-radius: 999px;
}

.my-esim .tab-border {
    border-radius: 10px;
}

.tab-btn.active {
    background: black;
    color: #d8f47a;
    opacity: 1;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1450px;
    /* justify-items: center; */
    margin: 0 auto;
}

.country-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: 0.3s;
    color: black;
}

/* Search box */
 .country-search {
     position: relative;
     margin-bottom: 15px;
 }

 .country-search input {
     width: 100%;
     padding: 10px 40px 10px 15px;
     border: 1px solid #ccc;
     border-radius: 25px;
     font-size: 12px;
     font-family: 'New_hero_Regular';
     margin-top: 15px;
 }
 
 .su-wrap .tab-nav{
     width: 100%;
 }
 
 .support-page .tab-nav-wrapper {
    display: grid;
    justify-content: center;
    gap: 20px;
}

 /* Country list */
 .country-list {
     list-style: none;
     padding: 0;
     margin: 0;
     padding-left: 20px;
 }

 .country-list li {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 12px 10px;
     border-bottom: 1px solid #eee;
     font-size: 16px;
     cursor: pointer;
     transition: background 0.2s;
     font-family: 'New_hero_Regular';
 }

 .country-list li:hover {
     background: #f5f5f5;
 }

 .country-list img {
     width: 20px;
     height: 14px;
     border-radius: 2px;
     object-fit: cover;
 }

.flag {
    width: 35px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #1616161f;
}

.info {
    flex: 1;
    margin-left: 12px;
    text-align: left;
}

.country-name {
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 8px;
    font-family: 'New_hero_semibold';
}

.price-row {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-family: 'New_hero_Regular';
    font-weight: 400;
}

.price-row strong {
    font-family: 'New_hero_semibold';
}

.price-row span {
    background: #eaeae6;
    padding: 4px 10px;
    border-radius: 8px;
}

.arrow {
    font-size: 20px;
    color: #999;
}

.view-all-btn-wrapper {
    /* margin-top: 67px; */
}

.about-simply .view-all-btn {
    width: 100%;
}

.view-all-btn {
    background: #e1fd77;
    color: #000;
    border-radius: 77px;
    font-weight: 500;
    font-size: 21px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'New_hero_Medium';
    width: 300px;
    /* height: 62px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* width: 100%; */
    margin: 0;
}

.view-all-btn:hover {
    opacity: 0.8;
}

.view-all-btn2 {
    background: transparent;
    border: 1px solid #161616;
    color: #000;
    border-radius: 77px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'New_hero_Medium';
    width: 300px;
    /* height: 62px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: auto; */
    padding: 18px 0;
    font-size: 21px;
    width: 100%;
}

.view-all-btn2:hover {
    background: #e1fd77;
    border: none;
}

.our-services {
    background: #fff;
    padding: 77px 84px;
    padding-bottom: 100px;
    border-radius: 43px;
    /* margin:0px 60px; */
}

.our-services .section-title h2 {
    font-size: 35px;
    font-family: 'New_hero_extrabold';
}

.step-thumbs {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-simply.esim .esim-block .view-all-btn {
    margin-top: 0 !important;
    background-color: #767674;
    color: #D3F26A;
    pointer-events: none;
    outline: none;
    border: 1px solid gray;
    font-size: 16px;
}

.step-thumbs li {
    flex: 1;
}

.step-thumbs .tab-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 0px;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 28px;
    opacity: 1;
}

.step-thumbs img {
    width: 220px;
    height: 258px;
    border-radius: 28px;
    display: block;
    object-fit: cover;
}

#step-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

#step-content p {
    font-size: 16px;
    max-width: 400px;
    margin-top: 0px !important;
    color: #1f2021;
    opacity: .73;
    font-family: 'New_hero_Regular';
}

.esim-work .step-thumbs {
    margin: 0px;
}

.esim-work .section-title.dynamic {
    display: flex;
    align-items: center;
}

.esim-work .section-title.dynamic h2 {
    margin-bottom: 0px !important;
    margin-right: 8px;
    font-family: 'New_hero_semibold';
    color: #1f2021;
    opacity: .73;
}

.step-thumbs .tab-btn.active img {
    border: 1px solid #D9F07F;
}

.esim .step-thumbs .tab-btn.active img {
    border: 1px solid #13131330;
}

.esim .our-services.esim-work.container .highlight {
    background: transparent;
    padding: 0px;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--dark-divider-color) transparent var(--dark-divider-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#logout {
    color: red;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    /* width: 100%; */
    /* max-width: 1540px; */
    margin: 0 auto;
    border-radius: 40px;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
    margin-right: 20px;
}

.section-btn {
    text-align: end;
}

.section-title {
    /* margin-bottom: 60px; */
}

.section-title-content p {
    margin: 0;
}

.section-title h1 {
    font-size: 56px;
    margin-bottom: 0;
    cursor: default;
}

#app-download {
    scroll-margin-top: 200px;
}

.section-title h2,
.secondary .section-title h2 {
    font-size: 35px;
    font-family: New_hero_extrabold;
    margin-bottom: 0;
    cursor: default;
}

.section-title p {
    /* margin-top: 30px; */
    /* margin-bottom: 0; */
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}


/************************************/


/**** 	   03. Header css		 ****/


/************************************/

.topbar {
    position: relative;
    background-color: var(--accent-color);
    padding: 10px 0;
    z-index: 2;
}

.topbar-info-content {
    text-align: center;
}

.topbar-info-content p {
    margin: 0;
    color: var(--primary-color);
}

.topbar-info-content p img {
    max-width: 20px;
    margin-right: 4px;
}

.topbar-info-content p a {
    color: inherit;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.topbar-info-content p a:hover {
    color: var(--dark-color);
}

header.main-header {
    border-bottom: 1px solid var(--dark-divider-color);
    position: relative;
    z-index: 100;
}

.home header.main-header {
    border: none;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--dark-color);
    border-bottom: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 1s ease-out;
}

.navbar {
    padding: 15px 60px;
    align-items: center;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 80px;
}

.navbar>.container {
    width: 100%;
    max-width: 100%;
    padding: 0px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    margin-left: 40px;
}

.home .main-menu .nav-menu-wrapper {
    margin-left: 30px;
    border-left: 1px solid #ffffff52;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 6px;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 500;
    padding: 3px 14px !important;
    color: #1F2021;
    transition: all 0.3s ease-in-out;
}

.home .main-menu ul li a {
    color: white;
}

.home .main-menu ul li a:hover {
    color: #D9F07F !important;
}

.main-menu ul li a:hover {
    color: #1F2021 !important;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: black;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--primary-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--white-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-btn {
    align-items: center;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector .btn-login.lang {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 5px;
    top: 100%;
    /* Position right below the main language button */
    left: 0;
    /* REMOVED: margin-top: 5px; <--- This often creates the gap */
    overflow: hidden;
}

.language-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.language-dropdown-content a:hover {
    background-color: #ddd;
}

.language-dropdown-content a img {
    width: 20px;
    height: 20px;
}

.language-selector:hover .language-dropdown-content {
    display: block;
}

.header-btn .btn-login {
    font-family: var(--accent-font);
    font-size: 13px;
    font-weight: 500;
    color: #1F2021;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    border: 1px solid #16161652;
    border-radius: 58px;
    padding: 7px 40px;
    margin-right: 15px;
    text-transform: none;
    transition: all 0.3s ease-in-out;
}

.btn-login.header-coins.coins-active{
    width:auto;
}

.home .header-btn .btn-login {
    color: white;
    border-color: white;
}

.home .header-btn .btn-login img {
    background: #ffffff6b;
    padding: 5px;
    border-radius: 50px;
}

.header-btn .btn-login.lang span {
    opacity: .45;
    text-transform: none;
}

.home .header-btn .btn-login.lang span {
    opacity: 1;
    color: white;
}

.header-btn .btn-login.lang {
    border: none;
    padding: 0px;
    margin-left: 15px;
    gap: 5px;
}

.header-btn .btn-login.lang .arrow {
    margin-left: 5px;
}

.header-btn .btn-login:hover {
    opacity: .7;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: black;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--accent-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--white-color);
}


/*Auth pop up design*/

.signup-modal {
    border-radius: 32px;
    background: #fff;
    padding: 40px;
    border: none;
    position: relative;
}

.signup-modal .modal-title {
    font-family: 'New_hero_extrabold';
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.signup-modal .custom-input {
    background: #f8f8f2;
    color: #1f2021;
    border: none;
    border-radius: 33px;
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.modal.show .modal-dialog {
    max-width: 600px;
    margin-top: 50px;
}

.modal.show .modal-dialog .country-list{
    height: 500px;
    overflow: scroll;
}

.signup-modal .custom-input::placeholder {
    color: #1f20215d;
    font-family: 'New_hero_medium';
}

.signup-modal .btn-signup {
    background-color: #e1fd77;
    border-radius: 30px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 18px;
    border: none;
    color: #000;
}

.signup-modal .close-btn,
#EsimDetailsModal .close-btn,
.signup-modal .close-btn,
#CountryDetailsModal .close-btn {
    position: absolute;
    top: -60px;
    right: 0px;
    background: #FFFFFF;
    width: 50px;
    height: 50px;
    display: flex;
    line-break: auto;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: none;
}

.signup-modal .divider {
    position: relative;
    text-align: center;
    width: 75%;
    margin: 30px auto !important;
}

.signup-modal .divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.social-login {
    gap: 20px;
}

.signup-modal .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #ccc;
    z-index: 0;
}

.social-login .social-btn {
    flex: 1;
    padding: 15px;
    font-size: 14px;
    border-radius: 23px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    font-weight: 500;
    transition: 0.3s ease;
    font-family: 'New_hero_Medium';
    color: black;
}

.social-login .social-btn img {
    width: 20px;
    height: 20px;
}

.signup-modal .forgot-password a {
    font-size: 13px;
    color: #000;
}

.signup-modal .terms-text {
    font-size: 14px;
    color: #999;
    font-family: 'New_hero_light';
    margin-top: 40px;
}

.signup-modal .terms-text a {
    color: #3A54FF;
    text-decoration: none;
}

.otp-inputs input.otp-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fafaf3;
    border: none;
    font-size: 28px;
    text-align: center;
    font-weight: 500;
    outline: none;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    font-family: 'New_hero_Medium';
}

.resend-info {
    font-size: 12px;
    color: #1F2021;
    margin-top: 15px;
    margin-bottom:15px;
    font-family: 'New_hero_Medium';
    opacity: .63;
}

.static-data .support {
    margin-top: 35px;
    padding: 30px 0 30px 0;
}

.support.cb {
    padding: 54px;
}

.static-data .section-heading {
    margin-bottom: 40px;
    font-size: 32px;
}

.static-data .data-plan-section .date {
    position: absolute;
    right: 80px;
    opacity: .42;
    font-family: 'New_hero_Regular';
}

.static-data .data-plan-section {
    border: 1px solid #7070705e;
    /* max-width: 1350px; */
    /* margin: auto; */
    border-radius: 23px;
    margin-top: 34px;
    /* text-align: left; */
    padding-left: 80px;
    padding-right: 80px;
}

.static-data .data-plan-section .content p {
    font-family: 'New_hero_regular';
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.static-data .data-plan-section .content h2 {
    font-family: 'New_hero_extrabold';
    font-size: 25px;
    margin-bottom: 20px;
}

.static-data .data-plan-section .content ul,
.static-data .data-plan-section .content li {
    font-size: 16px;
    font-family: 'New_hero_Regular';
    padding-bottom: 5px;
}


/************************************/


/***        04. Hero css	      ***/


/************************************/

.hero .col-md-12 {
    text-align: center;
    margin-top: 80px;
}

.hero.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-image.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide {
    position: relative;
    padding: 250px 0 155px;
}

.hero.hero-image.hero-slider-layout .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 60px;
    text-align: center;
    z-index: 2;
}

.hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero.hero-image .hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero.hero-image .hero-content .section-title h1 {
    font-size: 62px;
}

.hero.hero-image .hero-content .hero-content-btn .btn-default {
    margin-right: 30px;
}

.hero-content {
    position: relative;
    margin-right: 20px;
    z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-content .section-title h3 {
    color: var(--accent-color);
}

.hero-content .section-title h3::before {
    background: url('../images/icon-sub-heading-accent.svg');
}

.hero-content-form .form-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.hero-content-form .form-group .form-control {
    width: 60%;
    padding: 14px 25px;
    background: transparent;
    border: none;
    color: var(--white-color);
}

.hero-content-form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.hero-content-form .form-group .form-control::placeholder {
    color: var(--white-color);
}

.hero-images {
    position: relative;
}

.hero-counter-box {
    margin-left: 30px;
}

.hero-counter-item {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.hero-counter-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.hero-counter-item h2 {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.hero-counter-item p {
    color: var(--white-color);
    margin: 0;
}


/************************************/


/***       06. About Us css	      ***/


/************************************/

.about-us {
    border-radius: 0;
    padding: 100px 0 50px;
}

.about-company-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.about-company-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about-company-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 16px;
}

.about-company-item:hover .icon-box:before {
    transform: scale(1);
}

.about-company-item .icon-box img {
    position: relative;
    max-width: 40px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-company-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-company-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-company-content p {
    margin: 0;
}

.about-video-image {
    position: relative;
    margin-top: 30px;
}

.about-us-video {
    height: 600px;
}

.about-us-video figure {
    position: relative;
    border-radius: 40px;
    height: 100%;
    overflow: hidden;
}

.about-us-video figure::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
}

.about-us-video video {
    width: 100%;
    border-radius: 40px;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}


/************************************/


/***     07. Our Services css	  ***/


/************************************/

.our-services .col-lg-4:nth-child(even) .service-box {
    background: var(--dark-color);
}

.service-box {
    background: var(--secondary-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px 30px 0 30px;
}

.service-box-header {
    margin-bottom: 30px;
}

.service-box-tag {
    margin-bottom: 20px;
}

.service-box-tag a {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.2em;
    text-transform: capitalize;
    padding: 10px 20px;
}

.service-box-title h3 {
    font-size: 20px;
}

.our-services .col-lg-4:nth-child(even) .service-box .service-box-title h3 {
    color: var(--white-color);
}

.service-box-image img {
    border-radius: 43px;
    width: 346px;
    height: 471px;
    object-fit: cover;
}

.esim-work .section-title {
    margin-bottom: 35px;
}


/************************************/


/***     08. Our Expertise css	  ***/


/************************************/

.our-expertise.bg-section {
    background-color: var(--secondary-color);
    overflow: hidden;
    padding: 100px 0;
}

.our-tab-nav {
    margin-bottom: 60px;
    text-align: center;
}

.our-tab-nav .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    border: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-tab-nav ul li {
    width: calc(25% - 22.5px);
}

.our-tab-nav ul li .nav-link {
    width: 100%;
    background-color: var(--white-color);
    border: none;
    border-radius: 100px;
}

.our-tab-nav ul li .nav-link:hover {
    border: none;
}

.our-tab-nav ul li .nav-link.btn-highlighted:before {
    background-color: var(--dark-color);
}

.our-tab-nav ul li .nav-link.active {
    background-color: var(--dark-color);
    color: var(--white-color);
    border: none;
}

.expertise-content {
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 40px;
}

.expertise-content-header {
    margin-bottom: 40px;
}

.expertise-content-header h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.expertise-content-header p {
    margin: 0;
}

.expertise-content-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.expertise-list-item {
    width: 100%;
    display: flex;
    align-items: center;
}

.expertise-list-item .icon-box {
    margin-right: 20px;
}

.expertise-list-item .icon-box img {
    max-width: 24px;
}

.expertise-list-content {
    width: calc(100% - 44px);
}

.expertise-list-content p {
    color: var(--primary-color);
    text-transform: capitalize;
    margin: 0;
}

.expertise-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/***     09. Why Choose Us css	  ***/


/************************************/

.why-choose-us {
    padding: 100px 0 70px;
}

.why-choose-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.why-choose-image {
    position: relative;
}

.why-choose-image figure {
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.1);
}

.why-choose-no {
    position: absolute;
    top: 20px;
    left: 20px;
}

.why-choose-no h3 {
    background-color: var(--accent-color);
    border-radius: 50%;
    font-size: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .why-choose-no h3 {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.why-choose-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.why-choose-body::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

.why-choose-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.why-choose-content p {
    color: var(--white-color);
    margin: 0;
}

.why-choose-btn {
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.why-choose-item:hover .why-choose-btn {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    height: 50px;
}

.readmore-btn {
    display: inline-block;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    background-color: var(--dark-color);
}

.readmore-btn img {
    max-width: 24px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img {
    filter: brightness(0) invert(1);
}


/************************************/


/***     10. Our Approach css	  ***/


/************************************/

.our-approach.bg-section {
    background: var(--dark-color) url('../images/approach-bg-shape.svg');
    background-repeat: no-repeat;
    background-position: top 220px center;
    background-size: 100% auto;
    overflow: hidden;
    padding: 100px 0;
}

.our-approach.bg-section .section-row {
    margin-bottom: 100px;
}

.our-approach.bg-section .section-title h3 {
    color: var(--accent-color);
}

.our-approach.bg-section .section-title h3::before {
    background: url(../images/icon-sub-heading-accent.svg);
}

.our-approach.bg-section .section-title-content p,
.our-approach.bg-section .section-title h2 {
    color: var(--white-color);
}

.approach-item {
    background-color: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
}

.approach-btn {
    display: flex;
    justify-content: end;
}

.approach-tags a {
    display: inline-block;
    background-color: var(--accent-color);
    border-radius: 50px;
    line-height: 1.2em;
    color: var(--primary-color);
    text-transform: capitalize;
    padding: 8px 20px;
}

.approach-content h3 {
    font-size: 20px;
}

.approach-content p {
    margin: 0;
}

.approach-image img {
    width: 100%;
}

.approach-item.approach-box-1 .approach-image::before,
.approach-item.approach-box-4 .approach-image::before {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, var(--white-color) 5%, transparent 55%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.approach-item.approach-box-1 {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 20px;
}

.approach-item.approach-box-1 .approach-image {
    position: relative;
    padding-bottom: 20px;
}

.approach-item.approach-box-1 .approach-tags {
    margin-bottom: 20px;
}

.approach-item.approach-box-1 .approach-content h3 {
    margin-bottom: 10px;
}

.approach-item.approach-box-2 .approach-content {
    margin-bottom: 10px;
    padding: 20px;
}

.approach-item.approach-box-3 .approach-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.approach-item.approach-box-3 .approach-content {
    margin-bottom: 10px;
}

.approach-item.approach-box-3 .approach-btn {
    margin-left: 10px;
}

.approach-item.approach-box-4 .approach-body,
.approach-item.approach-box-4 .approach-btn {
    padding: 20px;
}

.approach-item.approach-box-4 .approach-image {
    position: relative;
}

.approach-item.approach-box-4 .approach-image img {
    width: auto;
}


/************************************/


/***    11. Company Wisdom css	  ***/


/************************************/

.company-wisdom {
    padding: 100px 0;
}

.company-wisdom-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.company-wisdom-item,
.company-wisdom-image {
    width: calc(25% - 22.5px);
}

.company-wisdom-image figure {
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.company-wisdom-image img {
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 30px;
}

.company-wisdom-box .company-wisdom-item {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background: var(--accent-color);
    border-radius: 30px;
    padding: 30px;
}

.company-wisdom-box .company-wisdom-item:nth-child(7),
.company-wisdom-box .company-wisdom-item:nth-child(2) {
    background: url('../images/company-wisdom-bg.svg') no-repeat;
    background-position: center center;
    background-size: cover;
}

.company-counter-title {
    width: 100%;
    margin-bottom: 10px;
}

.company-counter-title h3 {
    font-size: 20px;
}

.company-wisdom-counter {
    width: 100%;
}

.company-wisdom-counter h2 {
    font-size: 56px;
}


/************************************/


/***    12. Our Features css	  ***/


/************************************/

.our-features.bg-section {
    background: #F6F6F1;
    overflow: hidden;
    padding: 90px 0;
}

.features-content form {
    margin: 0;
}

.features-content .section-title h3 {
    color: var(--accent-color);
}

.features-content .section-title {
    display: flex;
    flex-direction: column;
}

.activate .view-all-btn-wrapper {
    margin-top: 0 !important;
}

.activate .view-all-btn-wrapper a {
    font-size: 21px !important;
}

.features-content .section-title h3::before {
    background: url('../images/icon-sub-heading-accent.svg');
}

.features-content .section-title h2 {
    color: #161616;
    font-family: New_hero_extrabold;
    font-weight: 800;
    font-size: 37px;
}

.features-content .section-title .highlight {
    padding-right: 60px;
}

.home .features-content .section-title .highlight {
    padding-right: 0px;
}

.col-lg-6.right {
    text-align: right;
}

.our-features .section-title p,
.our-features .section-title .spantext {
    font-size: 18px;
    font-family: 'New_hero_Regular';
    width: 100%;
}

.our-features .section-title p {
    /* margin-bottom: 50px; */
    font-size: 18px;
    color: #161616;
    font-weight: 400;
}

.our-features .section-title .spantext a {
    text-decoration: underline;
    color: #2D78F9;
}

.our-features .view-all-btn {
    /* margin: inherit; */
}


/************************************/


/***   	 13. Our Prcing css	      ***/


/************************************/

.our-pricing {
    padding: 100px 0;
}

.pricing-box {
    background-color: var(--secondary-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}

.pricing-box.highlighted-box {
    background-color: var(--dark-color);
}

.pricing-box-header {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-box.highlighted-box .pricing-box-header {
    border-color: var(--dark-divider-color);
}

.pricing-box-title {
    margin-bottom: 20px;
}

.pricing-box-title p {
    color: var(--primary-color);
    text-transform: capitalize;
    margin: 0;
}

.pricing-box.highlighted-box .pricing-box-title p {
    color: var(--white-color);
}

.pricing-box-price {
    margin-bottom: 20px;
}

.pricing-box-price h2 {
    font-size: 56px;
}

.pricing-box.highlighted-box .pricing-box-price h2 {
    color: var(--white-color);
}

.pricing-box-price h2 sub {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    bottom: 0;
}

.pricing-box-content p {
    margin: 0;
}

.pricing-box.highlighted-box .pricing-box-content p {
    color: var(--white-color);
}

.pricing-box-body {
    margin-bottom: 30px;
}

.pricing-box-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-box-body ul li {
    position: relative;
    color: var(--primary-color);
    padding-left: 35px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-box-body ul li {
    color: var(--white-color);
}

.pricing-box-body ul li:last-child {
    margin-bottom: 0;
}

.pricing-box-body ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-box-footer .btn-highlighted {
    width: 100%;
}


/************************************/


/***   	   14. CTA Box css	      ***/


/************************************/

.cta-box {
    background-color: #D9F07F;
    padding-bottom: 30px;
}

.cta-box-image.qr-box {
    width: 357px;
    height: 450px;
    margin: auto;
    background: #fff;
    border-radius: 38px;
    padding: 76px 40px;
    text-align: center;
    position: relative;
    top: -30px;
    left: 50px;
}

.cta-box-image.qr-box p {
    font-size: 18px;
    color: #161616;
    font-weight: 500;
    font-family: 'New_hero_Regular';
    margin: 0px !important;
}

.cta-box-content .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.cta-box-content p {
    font-size: 16px;
    color: #222;
    max-width: 500px;
    margin-top: 20px;
}

.highlight2 {
    display: inline;
    background: linear-gradient(to top, #fff 45%, transparent 45%);
    padding: 0 5px;
    padding-left: 0px;
}

.cta-box-btn {
    display: flex;
    gap: 24px;
    margin-top: 44px;
}

.cta-box-image.qr-box .cta-box-btn {
    margin: auto;
}

.cta-box .section-title {
    margin-bottom: 50px;
}

.cta-box-btn .store-btn img {
    transition: 0.3s;
}

.cta-box-btn .store-btn:hover img {
    transform: scale(1.05);
}

.cta-box-image img {
    border-radius: 30px 30px 0 0;
}

.cta-box-content {
    margin-left: 30px;
}

.cta-box-content .section-title h3 {
    color: var(--accent-color);
}

.cta-box-content .section-title h3::before {
    background: url('../images/icon-sub-heading-accent.svg');
}

.cta-box-content .section-title h2 {
    color: #161616;
    font-family: New_hero_extrabold;
    font-size: 35px;
}

.cta-box-content .section-title p {
    color: #161616;
    font-family: New_hero_Regular;
    font-size: 18px;
    opacity: .74;
    line-height: 25px;
    /* margin-top: 40px; */
}

.cta-box-btn .btn-highlighted.btn-cta-2 {
    background: var(--white-color);
    margin-left: 30px;
}

.cta-box-btn .btn-highlighted.btn-cta-2:hover {
    background: transparent;
}


/************************************/


/***    15. Our Testimonial css	  ***/


/************************************/

.our-testimonial {
    padding: 100px 0;
}

.testimonial-slider {
    position: relative;
}

.swiper-slide {
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 1;
}

.swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.testimonial-item {
    padding: 35px 40px;
    border-radius: 23px;
    min-height: 160px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide.swiper-slide-active .testimonial-item {
    background-color: #040404;
}

.swiper-slide.swiper-slide-active .testimonial-content p {
    color: white;
}

.swiper-slide:not(.swiper-slide-active) .testimonial-item {
    background-color: #D9F07F;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.testimonial-body {
    margin-top: 0px;
    margin-left: 40px;
    gap: 20px;
    position: relative;
    top: -25px;
}

.testimonial-body img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 13px;
    max-width: max-content;
}

.testimonial-body h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.testimonial-body p {
    font-size: 14px;
    margin: 0;
}


/* Arrows */

.testimonial-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-button-prev,
.testimonial-button-next {
    background: #e1fd77;
    color: #000;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}


/* Dots */

.testimonial-pagination {
    text-align: center;
    margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
    background-color: #000;
    width: 15px;
    height: 5px;
    border-radius: 5px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 50px;
}

.testimonial-header {
    margin-bottom: 35px;
}

.testimonial-content p {
    font-family: var(--accent-font);
    font-size: 18px;
    color: var(--primary-color);
    font-family: New_hero_light;
    margin: 0;
}

.testimonial-body {
    display: inline-flex;
    align-items: center;
}

.author-image {
    margin-right: 20px;
}

.author-content {
    text-align: left;
    width: calc(100% - 100px);
    margin-top: 30px;
}

.author-content h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: New_hero_Regular;
}

.author-content p {
    font-family: New_hero_Regular;
    text-transform: capitalize;
    margin: 0;
    opacity: .51;
}

.testimonial-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 30px;
    z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
    margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
    background-color: var(--secondary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/icon-arrow.svg") no-repeat center center;
    background-size: 26px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
    transform: rotate(180deg);
}

.testimonial-counter-box {
    margin-left: 100px;
}

.testimonial-counter-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.testimonial-counter-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.testimonial-counter-item h2 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-counter-item p {
    color: var(--text-color);
    margin: 0;
}


/************************************/


/***       16. Our FAQs css  	  ***/


/************************************/

.our-faqs.bg-section {
    background: var(--secondary-color);
    overflow: hidden;
    padding: 100px 0;
}

.client-logo {
    text-align: center;
}

.client-logo img {
    max-width: 200px;
    max-height: 40px;
}

.faqs-client-slider {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.our-faqs .tab-nav {
    justify-content: start;
}

.faqs-item {
    width: calc(50% - 15px);
}

.faqs-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faqs-item-content p {
    margin: 0;
}

.our-faqs {
    border: 1px solid #70707059;
    border-radius: 43px;
    padding: 80px 100px;
    /* margin:0px 60px; */
    margin-bottom: 120px;
}

.home .our-faqs{
    margin-top:50px !important;
}

.our-faqs .tab-nav {
    gap: 127px;
}

.our-faqs .tab-btn {
    background: transparent;
    padding: 0px;
    color: black;
}

.our-faqs .tab-btn.active {
    display: inline;
    background: linear-gradient(to top, #e1fd77 45%, transparent 45%);
}

.navbar-nav .nav-link.active {
    display: inline;
    background: linear-gradient(to top, #e1fd77 45%, transparent 45%);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 18px;
    height: 8px;
    width: 0;
    background-color: #D9F07F;
    transition: width 0.3s ease;
    margin: 0px 10px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.faq-item {
    border-bottom: 1px solid #7070702b;
    padding: 24px 0;
}

.faq-item:last-child {
    border: none;
    padding-bottom: 0px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 21px;
    font-family: 'New_hero_Regular';
    margin: 0;
    font-weight: 500;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0px;
    margin-top: 30px;
    font-family: 'New_hero_Regular';
    font-size: 14px;
    color: #161616;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-question .arrow {
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(90deg);
}


/************************************/


/***     17. Latest Posts css     ***/


/************************************/

.latest-posts {
    padding: 100px 0 70px;
}

.post-item {
    position: relative;
    height: auto;
    margin-bottom: 30px;
}

.post-featured-image a {
    position: relative;
    display: block;
    border-radius: 30px;
    cursor: default;
    overflow: hidden;
}

.post-featured-image a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-body {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    padding: 20px;
    z-index: 1;
}

.why-choose-body::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.post-meta {
    margin-bottom: 10px;
}

.post-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-meta ul li a {
    color: var(--white-color);
    text-transform: capitalize;
}

.post-meta ul li a i {
    font-size: 16px;
    margin-right: 5px;
}

.post-item-content h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
}

.post-item-content h3 a {
    color: inherit;
}

.post-btn {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-btn {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    height: 50px;
}

.support {
    padding: 30px 50px;
    border-radius: 23px;
    margin: auto;
}

.support h2 {
    font-size: 3.2rem;
    line-height: 45px;
    font-family: 'New_hero_extrabold';
}

.support p {
    margin: 0;
    font-size: 16px;
    line-height: 21px;
    font-family: 'New_hero_light';
}

.support .view-all-btn-wrapper {
    margin-top: 0px !important;
}

.home .support .view-all-btn-wrapper a {
    margin-top: 0px !important;
    float: right;
}

.support .view-all-btn {
    background: #161616;
    color: #D9F07F;
    font-family: 'New_hero_Regular';
    margin-right: 0px;
    margin-left: auto;
}

#regional .flag {
    border: none;
}

.no-padding {
    padding: 0px;
}


/************************************/


/***     18. Our Footer css       ***/


/************************************/

.main-footer.bg-section {
    background: transparent;
    padding: 80px 0 0;
}

.main-footer hr {
    margin-bottom: 50px;
    color: #7070708f;
    margin-left: 100px;
    width: 80%;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 130px;
    width: 100px;
}

.about-footer-content p {
    color: black;
    margin: 0;
}

.footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    font-family: 'New_hero_bold';
    color: #161616;
    margin-bottom: 30px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: #161616;
    transition: all 0.3s ease-in-out;
    font-family: 'New_hero_Regular';
    font-size: 18px;
    opacity:.9;
    text-transform:none;
}

.footer-links ul li a span {
    color: #1A75F0;
    text-decoration: underline;
}

.footer-links ul li:hover a {
    color: #000000;
    opacity: .7;
}

.footer-copyright {
    padding: 15px 0;
    margin-top: 45px;
    background: #D9F07F;
}

.footer-copyright-text p {
    color: #161616;
    margin: 0;
    text-align: left;
    margin-left: 60px;
    font-size: 15px;
    font-family: 'New_hero_Regular';
}

.footer-social-links.pay img {
    margin-right: 23.4px;
}

.footer-social-links.pay ul {
    justify-content: end;
    margin-right: 80px;
}

.footer-social-links {
    text-align: right;
}

.footer-social-links ul {
    display: flex;
    list-style: none;
    line-height: 1em;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 6px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    border: none;
    background: black;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    border-color: var(--white-color);
    color: var(--white-color);
}

.footer-social-links ul li a i {
    font-size: 14px;
    color: inherit
}


/************************************/


/***     19. About Us Page css    ***/


/************************************/

.page-header {
    position: relative;
    background: radial-gradient(50.37% 27.86% at 49.08% 54.61%, rgba(17, 74, 67, 0) 0.01%, #114A43 100%), url('../images/section-bg.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 220px 0 120px;
    margin-top: -100px;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 56px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-family: var(--accent-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.about-approach {
    padding: 50px 0 100px;
}

.about-approach-images {
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 40px;
    margin-right: 70px;
    padding: 55px 60px;
}

.about-approach-chart {
    margin-bottom: 100px;
}

.about-approach-chart img {
    border-radius: 20px;
}

.approach-counter-box {
    width: 200px;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 15px;
    display: inline-block;
    text-align: center;
}

.approach-counter-box h2 {
    font-size: 46px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.approach-counter-box p {
    text-transform: capitalize;
    margin: 0;
}

.esim-works .section-title h2 {
    font-size: 51px;
}

.about-approach-investment {
    position: absolute;
    bottom: 0;
    right: -70px;
    transform: translateY(-100%);
    animation: investmentmoveobject 4s infinite linear alternate;
}

@keyframes investmentmoveobject {
    50% {
        right: -20px;
    }
}

.about-approach-investment img {
    border-radius: 20px;
}

.our-tab-nav.vision-mission-tab .nav-tabs .nav-item {
    width: calc(33.33% - 20px);
}

.our-tab-nav.vision-mission-tab ul li .nav-link {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.btn-highlighted:hover {
    color: var(--white-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.btn-highlighted::before {
    background: var(--dark-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.active {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.about-approach-box-title {
    margin-bottom: 30px;
}

.about-approach-box-title p {
    margin: 0;
}

.about-approach-content-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-approach-info-list {
    width: calc(50% - 15px);
}

.about-approach-info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-approach-info-list ul li {
    position: relative;
    color: var(--primary-color);
    padding-left: 35px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-approach-info-list ul li:last-child {
    margin-bottom: 0;
}

.about-approach-info-list ul li:before {
    content: '\f058';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'FontAwesome';
    color: var(--accent-color);
    font-size: 20px;
}

.about-approach-image-counter {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.about-approach-progress-circle {
    width: 40%;
    margin-right: 20px;
}

.about-approach-progress-circle img {
    max-width: 120px;
}

.about-approach-progress-counter {
    width: 60%;
}

.about-approach-progress-counter h2 {
    font-size: 46px;
}

.about-approach-progress-counter p {
    text-transform: capitalize;
    margin: 0;
}

.our-benefits.bg-section {
    background-color: var(--secondary-color);
    overflow: hidden;
    padding: 100px 0 70px;
}

.benefits-item {
    background-color: var(--white-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}

.benefits-item-content {
    margin-bottom: 30px;
}

.benefits-item.benefits-box-2 .benefits-item-content {
    margin-bottom: 0;
    margin-top: 30px;
}

.benefits-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.benefits-item-content p {
    margin: 0;
}

.benefits-item-image img {
    border-radius: 20px;
}

.company-success {
    padding: 100px 0;
}

.company-success-body {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.company-client-images {
    display: flex;
    margin-right: 30px;
}

.company-client-images .client-image {
    display: inline-block;
    margin-left: -20px;
    border: 1px solid var(--white-color);
    border-radius: 100px;
    overflow: hidden;
}

.company-client-images .client-image:first-child {
    margin: 0;
}

.company-client-images .client-image img {
    max-width: 60px;
}

.client-image.add-client a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    height: 60px;
    width: 60px;
}

.client-image.add-client a i {
    font-size: 30px;
    color: var(--primary-color);
}

.company-success-info h3 {
    font-size: 20px;
}

.company-success-images {
    position: relative;
    margin-left: 40px;
}

.company-success-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.company-success-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.073;
    border-radius: 40px;
}

.company-success-chart {
    position: absolute;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 2;
    animation: successmoveobject 3s infinite linear alternate;
}

@keyframes successmoveobject {
    50% {
        right: 70px;
    }
}

.company-success-chart img {
    width: 100%;
    max-width: 260px;
    border-radius: 15px;
}

.our-team {
    padding: 100px 0 70px;
}

.team-item {
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a {
    position: relative;
    display: block;
}

.team-image a::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 32, 46, 0) 68.44%, rgba(20, 32, 46, 0.5) 83.58%);
    z-index: 0;
}

.team-image figure,
.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
}

.team-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: center;
    z-index: 1;
}

.team-content h3 {
    font-size: 20px;
    color: var(--white-color);
    text-transform: capitalize;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    font-family: var(--accent-font);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--accent-color);
    margin-bottom: 0;
}

.team-social-list {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(0);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.team-social-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-list ul li {
    display: inline-block;
    margin-right: 10px;
}

.team-social-list ul li:last-child {
    margin-right: 0;
}

.team-social-list ul li a {
    color: var(--primary-color);
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li a:hover {
    background: var(--dark-color);
    color: var(--accent-color);
}

.team-social-list ul li a i {
    font-size: 24px;
}

.our-process.bg-section {
    background: radial-gradient(53.2% 49.55% at 49.2% 49.75%, rgba(17, 74, 67, 0) 0.01%, #114A43 100%), url('../images/section-bg.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-process-content .section-title h3 {
    color: var(--accent-color);
}

.our-process-content .section-title h3::before {
    background: url(../images/icon-sub-heading-accent.svg) no-repeat;
}

.our-process-content .section-title p,
.our-process-content .section-title h2 {
    color: var(--white-color);
}

.process-counter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 60px;
    margin-bottom: 60px;
}

.process-counter-item {
    width: calc(33.33% - 40px);
    position: relative;
    text-align: center;
}

.process-counter-item::before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: var(--dark-divider-color);
}

.process-counter-item:last-child::before,
.process-counter-item:nth-of-type(3n+3)::before {
    display: none;
}

.process-counter-item h2 {
    font-size: 46px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.features-images img {
    width: 100%;
    object-fit: cover;
    max-height: 280px;
    border-radius: 30px;
}

.process-counter-item p {
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.our-process-steps {
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
}

.process-step-item {
    width: 100%;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 20px 55px 20px 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.process-step-item:nth-of-type(odd) {
    margin-left: 120px;
}

.process-step-item:nth-of-type(even) {
    margin-right: 120px;
}

.step-item-number {
    background-color: var(--accent-color);
    height: 56px;
    width: 56px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-item-number h2 {
    font-size: 20px;
    color: var(--primary-color);
}

.step-item-content {
    width: calc(100% - 76px);
}

.step-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.step-item-content p {
    margin-bottom: 0;
}


/************************************/


/***     20. Services Page css    ***/


/************************************/

.page-services {
    padding: 100px 0 70px;
}

.service-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.service-image {
    position: relative;
}

.service-image figure {
    border-radius: 30px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.service-body::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--white-color);
    margin: 0;
}

.service-btn {
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item:hover .service-btn {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    height: 50px;
}

.company-success.bg-section {
    background: var(--secondary-color);
    overflow: hidden;
}


/************************************/


/***    21. Service Single css    ***/


/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.service-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.service-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-catagery-list ul li {
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.service-catagery-list ul li a {
    display: block;
    position: relative;
    text-transform: capitalize;
    line-height: normal;
    background-color: var(--white-color);
    color: var(--text-color);
    border-radius: 10px;
    padding: 16px 40px 16px 16px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.service-catagery-list ul li a::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: normal;
    background: url('../images/icon-arrow.svg') no-repeat;
    background-position: right center;
    background-size: 18px auto;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
    filter: brightness(0) invert(1);
}

.sidebar-cta-box {
    background: var(--dark-color);
    border-radius: 30px;
    padding: 30px;
}

.sidebar-cta-content {
    margin-bottom: 30px;
}

.sidebar-cta-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.service-featured-image {
    margin-bottom: 30px;
}

.service-featured-image figure {
    display: block;
}

.service-featured-image img {
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry .section-title h2 {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0px;
}

.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-entry ul li {
    position: relative;
    width: 100%;
    color: var(--primary-color);
    padding-left: 30px;
}

.service-entry ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.service-list-image {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    margin-top: 20px;
}

.service-List-img figure {
    display: block;
}

.service-List-img img {
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry-title {
    margin-bottom: 30px;
}

.why-choose-service-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.why-choose-service-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 20px;
}

.why-choose-service-no h3 {
    background-color: var(--accent-color);
    height: 56px;
    width: 56px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 0;
}

.why-choose-service-no h2 {
    font-size: 20px;
    color: var(--primary-color);
}

.why-choose-service-content {
    width: calc(100% - 76px);
}

.why-choose-service-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.why-choose-service-content p {
    margin-bottom: 0;
}

.service-features {
    margin-bottom: 40px;
}

.service-features-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.service-features-list ul li {
    position: relative;
    width: calc(33.33% - 13.33px);
    color: var(--primary-color);
    padding-left: 30px;
}

.service-features-list ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.service-entry-img figure {
    display: block;
    border-radius: 20px;
}

.service-entry-img img {
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: 20px;
}

.our-faqs-box.service-faqs-box .faqs-item {
    width: 100%;
}

.our-faqs .section-title h2 {
    font-size: 37px;
}


/************************************/


/***    22. Blog Archive css      ***/


/************************************/

.page-blog {
    padding: 100px 0;
}

.blog-item {
    height: calc(100% - 40px);
    /* margin-bottom: 40px; */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-featured-image {
    /* margin-bottom: 30px; */
    border-radius: 48px;
}

.blog-container .section-title h4 {
    font-size: 37px;
    font-family: 'New_hero_extrabold';
}

.blog-content p {
    font-size: 15px;
    font-weight: 400;
    font-family: 'New_hero_Regular';
}

.blog-featured-image a {
    cursor: default;
}

.blog-featured-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    transition: all 0.4s ease-in-out;
}

.blog-item:hover .blog-featured-image img {
    transform: scale(1.1);
}

.blog-meta {
    /* margin-bottom: 15px; */
}

.blog-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-meta ul li {
    position: relative;
    display: inline-block;
    padding: 0 16px 0 8px;
}

.blog-meta ul li:last-child {
    padding-right: 0;
}

.blog-meta ul li:first-child {
    padding-left: 0;
}

.blog-meta ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.blog-meta ul li:last-child::before {
    display: none;
}

.blog-meta ul li a {
    color: #161616;
    font-family: 'New_hero_semibold';
    font-size: 12px;
    text-transform: uppercase;
}

.blog-content {
    /* margin-bottom: 20px; */
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.blog-content h3 {
    font-size: 24px;
    font-family: 'New_hero_bold';
}

.blog-content h3 a {
    color: inherit;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}


/************************************/


/***      23. Blog Single css	  ***/


/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 40px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
    font-weight: 400;
}

.post-entry h1 {
    font-size: 56px;
}

.post-entry h2 {
    font-size: 46px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat;
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}


/************************************/


/***      24. Project Page Css	  ***/


/************************************/

.page-project {
    padding: 100px 0 70px;
}

.project-nav {
    margin-bottom: 60px;
}

.project-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.project-nav ul li {
    display: inline-block;
}

.project-nav ul li a {
    position: relative;
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    padding: 0 30px;
    overflow: hidden;
}

.project-nav ul li:first-child a {
    padding-left: 0;
}

.project-nav ul li:last-child a {
    padding-right: 0;
}

.project-nav ul li a::before {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    height: 100%;
    z-index: 0;
    color: var(--divider-color);
}

.project-nav ul li:last-child a::before {
    display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
    color: var(--accent-color);
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-image a {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    cursor: default;
}

.project-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.09;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-item-body {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100%);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-item-body {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.project-item-body::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 20%;
}

.project-item-content {
    position: relative;
    z-index: 1;
}

.project-item-content a {
    color: inherit;
}

.project-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--white-color);
}

.project-item-btn {
    position: relative;
    text-align: right;
    margin-left: 20px;
    z-index: 1;
}


/************************************/


/***    25. Project Single Css    ***/


/************************************/

.page-project-single {
    padding: 100px 0;
}

.project-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.project-detail-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.project-deatil-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.project-deatil-item:last-child {
    margin: 0;
}

.project-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.project-detail-header .icon-box {
    margin-right: 10px;
}

.project-detail-header .icon-box img {
    max-width: 24px;
}

.project-detail-title {
    width: calc(100% - 34px);
}

.project-detail-title h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.project-detail-body p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-featured-image {
    margin-bottom: 30px;
}

.project-featured-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.project-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 30px;
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry .section-title h2 {
    margin-bottom: 0;
}

.project-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0px;
}

.project-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-entry ul li {
    position: relative;
    width: 100%;
    color: var(--primary-color);
    padding-left: 30px;
}

.project-entry ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.quality-project-title {
    margin-bottom: 40px;
}

.quality-project-list-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.quality-project-item {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 20px;
}

.quality-project-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    height: 80px;
    width: 80px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.quality-project-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.quality-project-item:hover .icon-box::before {
    transform: scale(1);
}

.quality-project-item .icon-box img {
    position: relative;
    max-width: 40px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.quality-project-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.quality-project-content {
    width: calc(100% - 100px);
}

.quality-project-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.quality-project-content p {
    margin-bottom: 0;
}


/************************************/


/***   26. Case Study Page Css    ***/


/************************************/

.page-case-study {
    padding: 100px 0 70px;
}

.case-study-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.case-study-image {
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.case-study-image a {
    cursor: default;
}

.case-study-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-study-content {
    width: 100%;
    max-width: 250px;
}

.case-study-content a {
    color: inherit;
}

.case-study-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.case-study-btn {
    margin-left: 20px;
    text-align: right;
}


/************************************/


/***   27. Case Study Single Css  ***/


/************************************/

.page-case-study-single {
    padding: 100px 0;
}

.case-study-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.case-study-detail-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.case-study-deatil-content {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.case-study-deatil-content:last-child {
    margin-bottom: 0;
}

.case-study-deatil-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.case-study-deatil-content p {
    margin: 0;
}

.case-study-featured-image {
    margin-bottom: 30px;
}

.case-study-featured-image figure {
    display: block;
}

.case-study-featured-image img {
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
    border-radius: 30px;
}

.case-study-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.case-study-entry h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.case-study-entry p {
    margin-bottom: 20px;
}

.case-study-entry p:last-child {
    margin-bottom: 0px;
}

.case-study-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.case-study-entry ul li {
    position: relative;
    width: 100%;
    color: var(--primary-color);
    padding-left: 30px;
}

.case-study-entry ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.case-study-approch-box {
    margin: 40px 0 60px 0;
}

.case-study-approch-title {
    margin-bottom: 30px;
}

.case-study-approch-item {
    margin-bottom: 30px;
}

.case-study-approch-item:last-child {
    margin-bottom: 0px;
}

.case-study-approch-item h3 {
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 30px;
}

.case-study-approch-item h3:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}


/************************************/


/***      28. Team Page css       ***/


/************************************/

.page-team {
    padding: 100px 0 70px;
}


/************************************/


/***     29. Team Single css      ***/


/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-member-details {
    background-color: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    margin-right: 20px;
}

.team-member-image img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.team-member-intro {
    padding: 40px;
}

.team-member-body,
.team-member-info,
.team-member-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.team-member-title h2 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-member-title p {
    color: var(--accent-color);
    text-transform: capitalize;
    margin: 0;
}

.team-member-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.team-member-info ul li:last-child {
    margin-bottom: 0;
}

.team-member-info ul li span {
    width: 40%;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
}

.team-member-skillbar-title {
    margin-bottom: 20px;
}

.team-member-skillbar-title h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.skills-progress-bar .skillbar {
    margin-bottom: 30px;
}

.skills-progress-bar .skillbar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title {
    text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
    color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 14px;
    background: var(--white-color);
    border-radius: 99px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--accent-color);
    border-radius: 99px;
}

.member-social-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-social-list ul li {
    display: inline-block;
    margin-right: 10px;
}

.member-social-list ul li:last-child {
    margin-right: 0;
}

.member-social-list ul li a {
    color: var(--primary-color);
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover {
    background: var(--dark-color);
    color: var(--accent-color);
}

.member-social-list ul li a i {
    font-size: 24px;
}

.team-member-entry {
    margin-bottom: 60px;
}

.team-member-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.team-member-entry h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.team-member-entry p {
    margin-bottom: 20px;
}

.team-member-entry p:last-child {
    margin-bottom: 0px;
}

.team-member-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.team-member-entry ul li {
    position: relative;
    width: 100%;
    color: var(--primary-color);
    padding-left: 30px;
}

.team-member-entry ul li:before {
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.team-member-Capabilities {
    margin: 40px 0 0px 0;
}


/************************************/


/*** 30. Company History Page css ***/


/************************************/

.page-company-history {
    padding: 100px 0;
}

.company-history-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -6px;
}

.company-history-item:first-child {
    padding-top: 50px;
}

.company-history-item:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 6px);
    background: url('../images/icon-company-history.svg') no-repeat;
    background-position: top center;
    background-size: cover;
    width: 64px;
    height: 64px;
}

.company-history-item:last-child {
    padding-bottom: 10px;
}

.company-history-item:last-child::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.company-history-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.company-history-info {
    border: 6px solid var(--accent-color);
    border-right: none;
    border-radius: 500px 0 0 500px;
    padding: 85px;
}

.company-history-item:nth-of-type(even) .company-history-info {
    border-right: 6px solid var(--accent-color);
    border-left: none;
    border-radius: 0 500px 500px 0;
}

.company-history-info {
    width: 50%;
}

.company-history-year {
    margin-bottom: 10px;
}

.company-history-year h2 {
    font-size: 60px;
    color: var(--white-color);
    background: -webkit-linear-gradient(270deg, #1D4E49 0%, rgba(255, 255, 255, 0) 127.56%);
    -webkit-text-stroke: 2px transparent;
}

.company-history-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.company-history-content p {
    margin: 0;
}

.company-history-image {
    width: 50%;
}

.company-history-image {
    text-align: right;
    padding-left: 190px;
}

.company-history-item:nth-of-type(even) .company-history-image {
    text-align: left;
    padding-left: 0px;
    padding-right: 190px;
}

.company-history-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.company-history-image img {
    width: 100%;
    aspect-ratio: 1 / 0.56;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/***     31. Pricing Page css     ***/


/************************************/

.page-pricing {
    padding: 100px 0 70px;
}


/************************************/


/***     32. Client Page css      ***/


/************************************/

.page-client {
    padding: 100px 0 70px;
}

.company-logo {
    height: calc(100% - 30px);
    background-color: var(--secondary-color);
    border-radius: 30px;
    text-align: center;
    padding: 70px 75px;
    margin-bottom: 30px;
}

.company-logo img {
    width: 100%;
    height: 60px;
}


/************************************/


/***   33. Testimonial Page css   ***/


/************************************/

.page-testimonial {
    padding: 100px 0;
}

.page-testimonial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 40px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 100px;
}

.page-testimonial-item:last-child {
    margin-bottom: 0;
}

.page-testimonial-item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-testimonial-content {
    width: calc(60% - 20px);
}

.page-testimonial-header {
    margin-bottom: 40px;
}

.page-testimonial-header p {
    font-size: 18px;
    margin-bottom: 0;
}

.page-testimonial-author h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.page-testimonial-author p {
    font-family: var(--accent-font);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.page-testimonial-image {
    width: calc(40% - 20px);
    background: url(../images/testimonial-quotes.svg);
    background-repeat: no-repeat;
    background-position: left 3% top 42%;
    background-size: 158px auto;
    text-align: end;
    max-width: 425px;
}

.page-testimonial-item:nth-of-type(even) .page-testimonial-image {
    background-position: left 3% top 43%;
    text-align: start;
}

.page-testimonial-image img {
    width: 100%;
}


/************************************/


/***     34. Image Gallery css    ***/


/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: default;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 30px;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/***     35. Video Gallery css    ***/


/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    border-radius: 30px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: default;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 40px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 30%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: 'play';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/***      36. FAQs Page css       ***/


/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-section {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 100px;
    padding-bottom: 100px;
}

.faq-section:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}


/************************************/


/***    37. Contact us Page css   ***/


/************************************/

.page-contact-us {
    padding: 100px 0;
}

.contact-us.bg-section {
    background: var(--secondary-color);
    padding: 70px 0;
    margin-bottom: 100px;
}

.contact-information {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 140px;
}

.contact-info-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(33.33% - 93.33px);
}

.contact-info-item::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: -70px;
    bottom: 0;
    height: 100%;
    width: 1px;
    background-color: var(--divider-color);
}

.contact-info-item:nth-of-type(3n+3):before,
.contact-info-item:last-child:before {
    display: none;
}

.contact-info-item .icon-box {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 16px;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
}

.contact-info-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 16px;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    max-width: 40px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-content {
    width: calc(100% - 100px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-content p {
    margin-bottom: 0;
}

.google-map {
    height: 650px;
    margin-right: 40px;
}

.google-map iframe {
    width: 100%;
    height: 650px;
    border-radius: 40px;
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map iframe:hover {
    filter: grayscale(0);
}

.contact-form-title {
    margin-bottom: 40px;
}

.contact-form-title h2 {
    font-size: 30px;
}

.contact-form .form-control {
    font-family: var(--default-font);
    font-size: 15px;
    line-height: 1.2em;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: none;
    box-shadow: none;
    padding: 16px;
    border-radius: 10px;
}

.contact-form form .btn-highlighted {
    width: 100%;
}


/************************************/


/*** 	   38. 404 Page css       ***/


/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page .error-page-content {
    text-align: center;
}

.error-page-content-heading {
    margin-bottom: 30px;
}

.error-page-content-heading h2 {
    font-size: 40px;
    cursor: default;
}

.error-page-content-heading h2 span {
    font-weight: 700;
    color: var(--accent-color);
}

.error-page-content-body p {
    margin-bottom: 30px;
}

.checkout .section-title .highlight {
    font-size: 35px;
}

.checkout-container {
    background: #f7f6f2;
    padding: 40px;
    font-family: 'Helvetica Neue', sans-serif;
}

.checkout-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.checkout-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'New_hero_extrabold';
}

.checkout-left h5 {
    font-family: 'New_hero_Regular';
    font-size: 14px;
    margin-bottom: 10px;
}

.checkout-left p strong {
    font-family: 'New_hero_Regular';
    font-size: 14px;
    font-weight: 600;
}

.checkout-left p {
    font-family: 'New_hero_Regular';
    font-size: 10px;
}

.checkout-payment-method label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 17px;
    padding: 15px 25px;
    margin-bottom: 10px;
    gap: 10px;
    cursor: pointer;
}

.checkout-option span {
    font-size: 15px;
    font-family: 'New_hero_Regular';
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #7070704a;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #D8FF36;
    border-radius: 50%;
}

.checkout-promo input:focus {
    border: 1px solid D8FF36 !important;
    outline: none !important;
}

.checkout-payment-method label.active {
    border: .3px solid #707070;
}

.checkout-add-card {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    background: #D9F07F;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    justify-content: center;
    font-family: 'New_hero_semibold';
    font-size: 18px;
}

.checkout-card-form {
    margin-top: 20px;
}

.checkout-card-form label {
    font-family: 'New_hero_regular';
    font-size: 15px;
    opacity: .6;
    margin-bottom: 10px;
}

.checkout-card-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f7f6f2;
}

.checkout-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
    position: relative;
}

.checkout-promo input {
    font-size: 14px;
    flex: 1;
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    font-family: 'New_hero_Regular';
    padding-left: 50px;
    position: relative;
}

.checkout-promo input::placeholder {
    font-family: 'New_hero_Regular';
    color: #1F2021
}

.checkout-promo img {
    position: absolute;
    left: 15px;
    z-index: 999;
}

.checkout-promo button {
    background: #D9F07F;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    display: none;
    height:54px;
}

.about-simply.checkout.thank-you .checkout-subtitle {
    margin-bottom: 20px;
    font-family: 'New_hero_regular';
    font-weight: 500;
}

.about-simply.checkout.thank-you .checkout-left h5 {
    font-family: 'New_hero_regular';
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-simply.checkout.thank-you .checkout-left p {
    font-family: 'New_hero_regular';
    font-size: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-simply.checkout.thank-you .checkout-left p span {
    opacity: .5;
}

.checkout.thank-you .faq-item {
    background: #FFFFFF;
    padding: 18px 25px;
    border-radius: 12px;
    border: none;
    margin-bottom: 7px;
}

.checkout.thank-you .faq-question h3 {
    font-size: 15px;
    font-family: 'New_hero_medium';
}

.checkout.thank-you .faq-question span {
    margin-right: 22px;
}

.checkout.thank-you .faq-item.open .faq-question {
    border-bottom: .3px solid #707070;
    padding-bottom: 14.5px;
}

.checkout.thank-you .row .faq-answer p {
    margin-top: 14.5px;
    margin-bottom: 14.5px;
    font-size: 14px
}

.checkout.thank-you .row .success_footer p {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 15px;
}

.checkout.thank-you .faq-item:last-child {
    margin: 0px;
}

.checkout.thank-you .buttons {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout.thank-you .buttons .btn-esim {
    width: 100%;
    display: flex;
    align-items: center;
    color: #000000;
    background: #D9F07F;
    padding: 17px 0px;
    justify-content: center;
    gap: 22px;
    font-size: 14px;
    font-family: 'New_hero_Regular';
    border-radius: 25px;
}

.checkout.thank-you .buttons .btn-support {
    width: 100%;
    display: flex;
    align-items: center;
    color: #000000;
    background: transparent;
    border: .6px solid #161616;
    padding: 17px 0px;
    justify-content: center;
    gap: 22px;
    font-size: 14px;
    font-family: 'New_hero_Regular';
    border-radius: 25px;
}

html .toggle_active .checkout-coin-amount {
    background: #D9F07F !important;
    border: .6px solid #707070;
    font-family: 'New_hero_bold' !important;
}

.simply_coin {
    display: flex;
    align-items: center;
    background: #D9F07F;
    border-radius: 9px;
    gap: 5px;
    padding: 7px 4px;
    padding-right: 10px;
}

.simply_coin img {
    width: 25px;
}

.simply_coin .price {
    font-family: 'New_hero_bold';
    font-size: 13px;
    margin: 0px;
}

.checkout-coins {
    margin-top: 20px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: none;
    justify-content: space-between;
}

.toggle-switch img {
    position: relative;
    left: -4px;
}

.toggle-switch span {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'New_hero_Regular';
    margin-right: 50px;
}

.toggle-switch .toggle-btn {
    margin-right: 0px;
    margin-left: auto;
}


/* Hide the checkbox but keep it functional */

.toggle-wrapper input {
    display: none;
}

.toggle-btn {
    width: 50px;
    height: 26px;
    border-radius: 999px;
    background: #ccc;
    position: relative;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.3s;
    display: inline-block;
}

.toggle-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}


/* Checked state â†’ same as .toggle_active */

.toggle-wrapper input:checked+.toggle-btn {
    background: #D9F07F;
}

.toggle-wrapper input:checked+.toggle-btn::before {
    left: 26px;
}

.checkout-promo input::placeholder{
    opacity:.5;
}

.checkout .checkout-coin-amount {
    background: #e0e0e0;
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'New_hero_Regular' !important;
}

.terms-text p,
.terms-text a {
    margin-top: 20px;
    font-family: 'New_hero_Regular';
    font-size: 13px;
    color: #10101B;
    opacity: .53;
    margin-bottom: 0px;
}

.col-md-6.checkout-right {
    padding-left: 100px;
    margin-top: -34px;
}

.terms-text a {
    text-decoration: underline;
    opacity: 1;
}

.checkout-summary {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.header-coins {
    padding-left: 10px !important;
    padding-right:3px !important;
}

.header-coins .coins {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #daef7f;
    padding: 0px 5px;
    border-radius: 99px;
}

.header-coins .coins span {
    font-family: 'New_hero_semibold';
    font-size: 10px;
    color: black;
}

.header-coins .coins img {
    width: 15px;
}

.home .header-coins .coins img {
    background: transparent;
    padding: 0px;
}

.checkout-flag {
    display: flex;
    justify-content: center;
}

.checkout-flag img {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
    position: relative;
    top: 10px;
    max-width: 100px;
    z-index: revert-layer;
}

.checkout-details .data {
    display: flex;
    align-items: center;
    background: #F6F6F1;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    justify-content: space-between;
    color: #000000;
}

.checkout-details .data.without-bg {
    background: transparent;
    font-family: 'New_hero_Regular';
    color: #000000;
    border-bottom: .5px solid #70707029;
    border-radius: 0px;
    margin: 0px 30px;
    padding: 10px 0px;
}

.checkout-details .data.without-bg:last-child {
    border: none;
}

.qr-scan {
    display: grid;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-scan svg {
    width: auto;
    margin: auto;
    margin-bottom:5px;
}

.checkout-details .data strong {
    font-size: 13px;
    font-family: 'New_hero_Regular';
    opacity: .66;
}

.checkout-details .data img {
    margin-right: 10px;
}

.checkout-details .data span {
    font-size: 13px;
    font-family: 'New_hero_bold';
}

.checkout-pay-button {
    width: 100%;
    margin-top: 20px;
    background: #D9F07F;
    padding: 15px;
    border: none;
    border-radius: 77px;
    font-size: 18px;
    font-family: 'New_hero_semibold';
}

.business .features-content .section-title .highlight {
    padding-right: 0px;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.business {
    /* font-family: Arial, sans-serif; */
    /* margin-top: 48px; */
}

section.business {
    margin-top: 48px;
}


/* Why Choose Section */

.business-choose {
    padding: 0 92px;
    text-align: center;
}

.business-choose h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.business-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.feature-card img {
    width: 50px;
}

.feature-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.feature-card p {
    font-size: 13px;
}

.partner-form div form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-form div input {
    background: #F6F6F1;
    padding: 28px 20px;
    border-radius: 12px;
    font-size: 16px;
    max-height: 74px;
}

.partner-form div form button {
    margin: 0 auto;
    border-radius: 28px;
    padding: 20px;
    width: 400px;
}


/* Trusted Section */

.business-trusted {
    background: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.partner-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 70px;
    margin-bottom: 50px;
}

.partner-track {
    display: flex;
    gap: 40px;
    will-change: transform;
}

.partner-track img {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}


/* Partner With Us */

.business-partner {
    background: #D9F07F;
    padding: 170px 200px;
    border-radius: 36px;
}

.partner-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 128px;
}

.partner-left {
    height: -webkit-fill-available;
    flex: 1;
    max-width: 575px;
    height: 658px;
    border-radius: 20px;
    flex: 1;
    gap: 64px;
}

.partner-form {
    max-width: 735px;
    /* margin-top: 48px; */
    flex: 1;
}

.partner-form .section-title {
    margin-bottom: 48px;
}

.business .our-faqs {
    margin-bottom: 0;
    margin-top: 96px;
    border: none;
}

.form-row {
    display: flex;
    gap: 10px;
    /* margin-bottom: 15px; */
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

.privacy-note {
    font-size: 13px;
    margin-top: 10px;
}

.submit-btn {
    background: black;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}


/* Contact Section */

.business-contact {
    padding: 40px 20px;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.esim-card {
    background: #fff;
    padding: 12px 8px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.esim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.esim-info {
    display: grid;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
}

.esim-info .esim-label {
    display: flex;
    align-items: center;
    gap: 10px
}

.esim-info .esim-label #status {
    background: #daef7f;
    font-family: 'New_hero_Regular';
    font-size: 10px;
    display: flex;
    align-items: center;
    width: 120px;
    justify-content: center;
    border-radius: 99px;
    gap:5px
}

.esim-info .esim-label #status-text {
    font-family: 'New_hero_Regular';
    font-size: 10px;
    opacity: .5;
    line-height: 14px;
    text-align: left;
}

#inactive .esim-segments-group,
#inactive .circle-text {
    opacity: .5;
}

#inactive .esim-info .esim-label #status {
    background: #ededed;
    color:#ef5a5b;
}

.esim-card.expired .esim-data-circle .esim-background circle{
    stroke: #f7f7ef;
}

.esim-card.expired .esim-data-circle .esim-segments-group rect{
    fill: #dcdcd4;
}

.esim-data .expired #status svg:nth-child(1){
    display:none;
}

.esim-data .active #status svg:nth-child(2){
    display:none;
}

.esim-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.esim-country .left-side {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #00000069;
    padding-right: 10px;
}

.esim-country .right-side .valid {
    background: #ededed;
    font-size: 10px;
    padding: 5px;
    border-radius: 4px;
    font-family: 'New_hero_Regular';
}

.esim-buttons .btn-light {
    background: #ededed !important;
}

.esim-flag {
    width: 24px;
    border-radius: 50%;
}

.esim-name {
    font-size: 16px;
    font-family: 'New_hero_Medium';
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.my-esim .inactive.active {
    background: black;
    color: #D9F07F;
}

.esim-data-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-bg,
.circle-progress {
    fill: none;
    stroke-width: 0;
    /* Make these invisible as segments will define the circle */
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Arial, sans-serif;
}

.circle-text .used {
    font-size: 14px;
    color: #222;
    font-family: 'New_hero_extrabold';
}

.circle-text hr {
    margin: 0px 0;
    border: none;
    height: 1px;
    background: #ccc;
    width: 30px;
}

.circle-text .total {
    font-size: 10px;
    color: #26282B;
    font-family: 'New_hero_Medium';
}

.circle-text div {
    font-weight: bold;
}

.esim-valid {
    font-size: 14px;
    color: #161616;
    text-align: left;
    font-family: 'New_hero_Regular';
}

.esim-valid span {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #707070;
    color: black;
}

.countries-list p {
    opacity: .5;
    font-family: 'New_hero_Regular';
    font-size: 14px;
    margin-top: 10px;
}

.countries-list {
    display: none;
    width: 200px;
}

.esim-valid.countries.active .countries-list {
    display: block;
}

.esim-valid .expired {
    color: #EF5A5A;
}

.esim-valid .duration {
    opacity: 1;
}

.esim-buttons {
    display: flex;
    gap: 6px;
}

.btn-light {
    flex: 1;
    background: #F6F6EE;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'New_hero_Medium';
    color: #1F2021;
}

.btn-install {
    background: #D9F07F;
    border: none;
    padding: 14px;
    width: 100%;
    margin-top: 0px;
    border-radius: 15px;
    font-family: 'New_hero_Medium';
    font-size: 15px;
    cursor: pointer;
    color: black;
}

.refer {
    background-color: #ceec5a;
    padding: 121px 84px;
    border-radius: 37px;
    display: flex;
    align-items: center;
    margin: 100px auto;
    margin-bottom: 0px;
}

.refer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.refer-left {
    /* flex: 1; */
    /* max-width: 40%; */
}

.refer-left img {
    width: 551px;
    height: 294px;
}

.refer-right {
    display: flex;
    flex-direction: column;
    gap: 51px;
    width: 100%;
    max-width: 864px;
}

.refer-right h2 {
    font-size: 37px;
    font-family: 'New_hero_extrabold';
}

.refer-right p {
    font-size: 14px;
    max-width: 500px;
    font-family: 'New_hero_Regular';
}

.referral-code-wrapper {
    display: flex;
    border-radius: 37px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 100%;
    padding-left: 30px;
}

.referral-input-container {
    flex-grow: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.referral-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 5px;
    font-family: 'New_hero_Regular';
}

.referral-code-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    color: #333;
    padding: 0;
    width: 100%;
    font-family: 'New_hero_semibold';
}

.copy-button {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 37px;
    padding: 10px 50px;
    font-size: 14px;
    font-family: 'New_hero_semibold';
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #333;
}

.copy-button .copy-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}


/*My account*/

.simply-account-page-container {
    display: flex;
    border-radius: 12px;
    width: 100%;
    max-width: 1768px;
    margin-top: 40px;
    gap: 56px;
    overflow: hidden;
}

.simply-info-row {
    background: white;
    height: 76px;
    padding: 14px 22px 14px 26px;
    max-width: 517px;
    display: flex;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* height:60px; */
}

.simply-info-label {
    font-size: 16px;
    font-weight: 500;
    color: black;
    width: 0%;
}

.simply-select {
    width: 100%;
    font-size: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 16px;
    border: none;
    display: flex;
    padding-right: 35px !important;
    border: 1px solid #00000078;
    padding: 4px;
    border-radius: 8px;
    cursor: pointer;
    color: black;
}

.simply-account-sidebar {
    width: auto;
    background-color: transparent;
    padding: 24px 33px 24px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    flex-shrink: 0;
    border-radius: 24px;
}

.simply-account-sidebar-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.simply-account-sidebar-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #AEE800;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    margin-right: 12px;
    flex-shrink: 0;
}

.simply-account-sidebar-info .simply-account-email {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 4px;
}

.simply-account-sidebar-info .simply-account-balance {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.simply-account-balance p {
    font-size: 19px;
    line-height: normal;
}

.simply-account-nav-item .simply-account-balance {
    border: 1px solid #0000006e;
    border-radius: 13px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #D9F07F;
}

.code-card {
    background: #D9F07F;
    border-radius: 25px;
    padding: 32px;
    text-align: center;
    position: relative;
    width: 390px;
    /* height: 168px; */
}

.code-card small {
    font-size: 0.55rem;
    color: #222;
}

.code-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 20px;
    letter-spacing: 2px;
    cursor: pointer;
}

.share-btn {
    display: inline-block;
    position: absolute;
    background: #000;
    color: #D9F07F;
    font-weight: 400;
    padding: 16px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 22px;
    transition: 0.3s;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid #F6F6F1;
    bottom: -30px;
    width: 212px;
}

.share-btn:hover {
    background: #222;
}

.nav-item-left {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 21px;
    font-family: 'New_hero_Regular';
    font-weight: 400;
}

.nav-item-right {
    display: flex;
    align-items: center;
    gap: 42px
}

.simply-account-balance-currency-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.simply-account-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.simply-account-nav-item {
    width: 495px;
    margin-bottom: 8px;
}

.simply-account-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-size: 14px; */
    padding: 29px;
    border-radius: 18px;
    text-decoration: none;
    min-height: 100;
    color: #555;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.simply-account-nav-link {
    background-color: white;
    color: #333;
}

.simply-account-nav-link.active {
    background-color: #D9F07F;
    color: #1a1a1a;
}

.my-account .simply-app {
    margin-top: 130px;
}

.simply-account-nav-icon {
    width: 24px;
}

.simply-account-content {
    /* flex-grow: 1; */
    padding: 42px 48px;
    border: 1px solid #eee;
    border-radius: 32px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.simply-account-section {
    display: none;
    animation: fadeIn 0.3s ease-out;
    /* min-height: 400px; */
}

.simply-account-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simply-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 29px;
    margin-bottom: 30px;
}

.simply-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    border-radius: 10px;
    padding: 12px 26px;
    height: 76px;
}

label[for="languageSelect"],
label[for="currencySelect"] {
    /* margin-left: 20px; */
    font-size: 16px;
    color: black;
}

.simply-info-label {
    font-size: 14px;
    color: #888;
    font-family: 'New_hero_Regular';
    font-weight: 800;
}

.simply-info-value {
    font-size: 16px;
    color: #333;
    font-family: 'New_hero_Regular';
    /* margin-right: 22px; */
}

.simply-info-value input {
    width: 200px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
    font-size: 20px;
    font-weight: 800;
}

.simply-info-value .simply-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #555;
    font-size: 16px;
}

.simply-info-value .simply-dropdown-trigger img {
    width: 24px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
}

.simply-info-value .simply-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.simply-info-value .simply-dropdown-trigger.active svg {
    transform: rotate(180deg);
}

.simply-toggle-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.simply-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin-right: 15px;
}

.simply-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.simply-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 28px;
}

.simply-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.simply-toggle-switch input:checked+.simply-toggle-slider {
    background-color: #daef7f;
}

.simply-toggle-switch input:checked+.simply-toggle-slider:before {
    transform: translateX(22px);
}

.simply-save-changes-btn {
    background-color: #D9F07F;
    color: #1a1a1a;
    padding: 20px;
    border-radius: 37px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin: auto;
    color: #161616;
    font-weight: 500;
    width: 305px;
    font-family: 'New_hero_Regular';
}

.simply-save-changes-btn:hover {
    background-color: black;
    color: white;
}

.delete-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delete-text h2 {
    font-size: 20px;
    font-family: 'New_hero_Medium';
}

.simply-delete-account-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

.simply-delete-account-text {
    color: #555;
    max-width: 620px;
    font-size: 13px;
    margin-bottom: 15px;
    font-family: 'New_hero_Regular';
}

.simply-delete-account-btn {
    color: #ff4a4a;
    text-decoration: none;
    font-weight: 500;
    padding: 17px 60px;
    cursor: pointer;
    display: flex;
    border: 1px solid #EF5A5A;
    border-radius: 36px;
    text-wrap: nowrap;
    font-family: 'New_hero_Regular';
}

.simply-custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    margin-top: 5px;
    overflow: hidden;
    right: 0;
}

.simply-custom-dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.simply-custom-dropdown-content a:hover {
    background-color: #f0f0f0;
}

.simply-custom-dropdown-content a img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.simply-billing-cards-section {
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.simply-billing-cards-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.simply-billing-card-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease;
}

.simply-billing-card-item.default-card {
    border-color: #a1a19d;
    background-color: transparent;
}

.simply-billing-card-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.simply-billing-card-info .simply-card-icon {
    width: 35px;
    height: 25px;
    object-fit: contain;
}

.simply-billing-card-details {
    display: flex;
    flex-direction: column;
}

.simply-billing-card-details .simply-card-type {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.simply-billing-card-details .simply-card-number {
    font-size: 14px;
    color: #777;
}

.simply-billing-card-actions {
    display: flex;
}

.simply-billing-card-actions .simply-card-delete-btn {
    color: #ff4a4a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.simply-billing-card-actions .simply-card-delete-btn:hover {
    color: #cc0000;
}

.simply-custom-radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.simply-custom-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.simply-custom-radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.simply-account-nav-link.simply-logout-trigger{
    color:#ef5a5a;
}

.simply-account-nav-link.simply-logout-trigger img{
    filter: brightness(0) saturate(100%) invert(53%) sepia(45%) saturate(2807%) hue-rotate(326deg) brightness(99%) contrast(89%);
}

.simply-account-sidebar .simply-account-nav-item:nth-child(2){
    display:none;
}

.simply-custom-radio-container input:checked~.simply-custom-radio-checkmark {
    background-color: #daef7f;
}

.simply-custom-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.simply-custom-radio-container input:checked~.simply-custom-radio-checkmark:after {
    display: block;
}

.simply-custom-radio-container .simply-custom-radio-checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.simply-billing-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.simply-billing-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: transparent;
    border-radius: 58px;
}

.simply-billing-btn.simply-select-default {
    background-color: #daef7f;
    color: #1a1a1a;
    border:none;
}

.simply-billing-btn.simply-select-default:hover {
    background-color: #daef7f;
}

.simply-billing-btn.simply-add-new-card {
    background-color: #e0e0e0;
    color: #333;
}

.simply-billing-btn.simply-add-new-card:hover {
    background-color: #ccc;
}

.simply-add-card-form {
    display: none;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.simply-add-card-form h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simply-add-card-form h3 i {
    margin-right: 10px;
    color: #D9F07F;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simply-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.simply-form-group label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.input-container {
    position: relative;
}

.input-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.simply-form-group input {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    font-size: 16px;
    color: #2d3748;
    background-color: white;
    width: 100%;
    transition: all 0.2s ease;
}

.simply-form-group input:focus {
    outline: none;
    border-color: #D9F07F;
    /* box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15); */
}

.simply-form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.expiry-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.simply-add-card-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.simply-billing-btn {
    padding: 12px 20px;
    border-radius: 24px;
    margin: 0 auto;
    border: none;
    font-weight: 500;
    color: black;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border:1px solid #a1a19e;
}

.simply-cancel-btn {
    background-color: #f1f1f1;
    color: #4a5568;
}

.simply-cancel-btn:hover {
    background-color: #e2e8f0;
}

.simply-submit-btn {
    background-color: #667eea;
    color: white;
}

.simply-submit-btn:hover {
    background-color: #5a67d8;
}

.error-wrapper {
    padding: 10px;
    border-radius: 8px;
    background-color: #fed7d7;
    color: #c53030;
    display: none;
}

.card-preview {
    background: linear-gradient(to right, #D9F07F, #d7ed7f);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-preview .card-number {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 30px;
    color: black;
}

.card-preview .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.card-preview .card-holder {
    font-size: 14px;
    color: black;
}

.card-preview .card-expiry {
    font-size: 14px;
    color: black;
}

.card-chip {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 30px;
    background: linear-gradient(to bottom right, #D9F07F, #ffffff);
    border-radius: 5px;
    color: black;
}

@media (max-width: 600px) {
    .device-check-form {
        margin-left: 50px;
    }

    .simply-form-row {
        grid-template-columns: 1fr;
    }
}

.my-account .cta-box {
    margin-top: 70px;
    padding: 34px 0 46px 0;
    border-radius: 23px;
    margin: auto;
    background-color: #D9F07F;
    /* margin-right: 40px; */
    /* margin-bottom: 30px; */
}

.simply-account-nav-item .simply-account-nav-item {
    border: 1px solid #0000007d;
    padding: 5px 10px;
    margin-left: 25px !important;
    border-radius: 10px;
}

.my-account .cta-box h2 {
    font-size: 3.2rem;
    text-transform: capitalize;
    /* line-height: 45px; */
    font-family: 'New_hero_extrabold';
    text-align: center;
}

.simply-add-card-buttons .simply-cancel-btn {
    background-color: transparent;
    color: #555;
    font-family: 'New_hero_Medium';
}

.simply-add-card-buttons .simply-submit-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
}

.simply-coins-gifts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.simply-coin-gift-card {
    /* background-color: #fcfcfc; */
    padding: 17px 24px;
    border-radius: 24px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: max-content;
    text-align: center;
}

.simply-coin-gift-card p {
    font-family: 'New_hero_Regular';
    font-size: 15px;
}

.simply-coin-gift-card-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    /*border-bottom: 1px solid #eee;*/
}

.simply-coin-gift-card-header img {
    /* max-width: 100%; */
    width: 100%;
    height: 230px;
    border-radius: 18px;
    object-fit: cover;
}

.simply-coin-gift-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 15px;
    margin-bottom: 12px;
}

.simply-coin-gift-balance {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    display: flex;
    align-self: flex-start;
    justify-content: center;
    width: 100%;
}

.simply-progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}

.simply-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #D9F07F;
    border-radius: 5px;
    margin-bottom: 14px;
    position: relative;
}

.simply-progress-labels {
    padding: 10px;
    display: flex;
    justify-content: center;
    border: 1px solid #707070;
    font-size: 12px;
    color: #666;
    margin-bottom: 0px;
    width: 100%;
    gap: 5px
}

.progress-names {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.progress-names span {
    font-size: 10px;
}

.simply-progress-labels {
    font-size: 12px;
    border-radius: 8px;
    color: #000;
}

.gift-txt {
    font-size: 13px;
    color: #555;
    width: 100%;
    text-align: left;
}

.simply-history-toggle {
    margin: 24px 0;
    display: flex;
    align-items: center;
    align-self: flex-start;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    gap: 8px;
    transition: color 0.2s ease;
}

.simply-history-toggle:hover {
    color: black;
    opacity:.8;
}

#toggleArrow {
    transition: transform 0.3s ease;
    cursor: pointer;
}

#toggleArrow.rotated {
    transform: rotate(180deg);
}

#dataHistory .country_list{
    font-size: 12px;
    opacity: .5;
    margin-top: 5px;
}

.simply-history-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.simply-history-toggle.active svg {
    transform: rotate(180deg);
}

.simply-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: none;
}

.simply-history-list.active {
    display: block;
}

.simply-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 19px;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    border-radius: 18px;
    margin-bottom: 12px;
    background: #ffffff;
    color: black;
}

.simply-history-item span:nth-child(1) {
    font-size: 14px;
    font-weight: 500;
}

.simply-history-item span:nth-child(2) {
    padding: 9px 18px;
    background-color: #D9F07F;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #161616;
}

.simply-account-content:has(#coins-gifts.active) {
    height: max-content;
    border: none;
    padding: 0;
}

.simply-history-item:last-child {
    border-bottom: none;
}

.simply-history-item-value {
    font-weight: 600;
    color: #1a1a1a;
}

.simply-explore-plans-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 16px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    width: 343px;
    font-family: 'New_hero_Medium';
}

.simply-referral-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    text-align: center;
}

.simply-referral-intro-card {
    background-color: #fcfcfc;
    /* padding: 25px; */
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    /* gap: 25px; */
    width: 100%;
    max-width: 928px;
    text-align: left;
}

.simply-referral-intro-card-img {
    width: 343px;
    height: -webkit-fill-available;
    max-height: 250px;
    border-radius: 18px;
    flex-shrink: 0;
    /* position: relative; */
    max-height: 215px;
}

.simply-referral-intro-text {
    padding: 44px 70px;
}

.simply-referral-intro-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    /* margin-bottom: 10px; */
}

.simply-referral-intro-text p {
    margin: 12px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    /* margin-bottom: 10px; */
}

.simply-referral-intro-text a {
    color: #2D60FD;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.simply-referral-code-wrapper {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-width: 100%;
}

.simply-referral-input-container {
    flex-grow: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simply-referral-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 2px;
}

.simply-referral-code-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 47px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    color: #000;
    padding: 0;
    width: 100%;
}

.simply-copy-button {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.simply-copy-button:hover {
    background-color: #333;
}

.simply-copy-button .copy-icon-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.simply-orders-section {
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.simply-no-orders-illustration {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
}

.simply-no-orders-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.simply-no-orders-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 400px;
    margin-bottom: 25px;
}

.simply-orders-list-container {
    width: 100%;
}

.simply-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    margin-top: 20px;
}

.simply-order-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f6f1;
    padding: 8px 20px;
    padding-left: 10px;
    border-radius: 10px;
    width:250px;
}

.simply-order-flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
}

.simply-order-details span {
    display: block;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.slicknav_menu.activemenu{
    height:100vh;
}

.simply-order-details small {
    font-size: 12px;
    color: black;
    background: #eaeae6;
    padding: 4px 5px;
    border-radius: 0px;
    margin-right: 5px;
    font-family: "New_hero_Regular";
}

.simply-order-details small:nth-child(1){
    font-family: "New_hero_bold";
}

.simply-order-price-date {
    text-align: right;
}

.simply-order-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.simply-order-date {
    font-size: 10px;
    color: #777;
}

.simply-custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.simply-custom-modal-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 742px;
    height: auto;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simply-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
}

.esim .esim-top img {
    border: none;
}

.simply-modal-icon-wrapper {
    width: 100px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 40px auto;
}

.simply-logout-modal-icon-wrapper {
    background-color: #e0f0ff;
    border-radius: 25px;
}

.simply-modal-icon {
    width: 30px;
    height: 30px;
    color: #ff4a4a;
}

.simply-logout-modal-icon {
    color: #4a90ff;
}

.simply-modal-title {
    font-size: 20px;
    font-family: 'New_hero_Medium';
    color: #161616;
    margin-bottom: 15px;
}

.simply-modal-text {
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-family: 'New_hero_Medium';
    color: #161616;
    line-height: 1.5;
}

.simply-modal-buttons,
.simply-modal-buttons form {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 64px;
}

.simply-modal-btn {
    padding: 18px 44px;
    line-height: 1;
    font-size: 18px;
    border-radius: 16px;
    color: black;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.simply-modal-btn.simply-confirm-btn {
    background-color: #ff8181;
    color: black;
}

.simply-modal-btn.simply-confirm-btn:hover {
    background-color: #cc0000;
}

.simply-modal-btn.simply-cancel-btn {
    background-color: transparent;
    border: 1px solid #707070;
    color: #555;
}

.simply-modal-btn.simply-cancel-btn:hover {
    background-color: #ccc;
}


/*how to use*/

.simply-esim-guide-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    overflow: hidden;
}

.simply-esim-guide-left {
    flex: 1;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.simply-esim-guide-left-image {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.simply-esim-guide-right {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.simply-esim-guide-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.simply-esim-guide-step-text {
    font-size: 16px;
    font-weight: 600;
    color: #AEE800;
    margin-bottom: 10px;
    padding: 8px 15px;
    background-color: #f0f8d9;
    border-radius: 20px;
    display: inline-block;
}

.simply-esim-guide-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.simply-esim-guide-navigation {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
}

.simply-esim-guide-nav-button {
    background-color: #AEE800;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    min-width: 120px;
    text-align: center;
}

.simply-esim-guide-nav-button:hover {
    background-color: #9cd600;
}

.simply-esim-guide-nav-button.back {
    background-color: #e0e0e0;
    color: #333;
}

.simply-esim-guide-nav-button.back:hover {
    background-color: #ccc;
}

.simply-esim-guide-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Affiliate */

.benefit-wrapper .card {
    border-radius: 16px;
    border: 1px solid #70707033;
    padding: 70px 40px 90px 40px;
}

.card-benefit {
    display: flex;
    flex-direction: column;
    gap: 52px;
    /* padding: 60px 80px 80px 80px; */
    align-items: center;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #1616169c;
}

.card-title {
    margin: 0;
    font-size: 21px;
    color: #161616;
    font-weight: 600;
    font-family: 'New_hero_extrabold';
}

#su-howto .su-title {
    font-size: 22px !important;
    font-family: 'New_hero_Regular' !important;
}

.card-text {
    font-size: 15px;
    font-weight: 400;
}

.how-esim-swiper .section-title.dynamic {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    gap: 20px;
}


/************************************/


/***      39. Responsive css	  ***/


/************************************/

.esim .our-features .col-lg-7 .section-title p,
.esim .our-features .col-lg-7 .section-title h2 {
    margin: 0;
    font-weight: 800;
}

.esim-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.esim-valid.ptp span{
    text-decoration:none;
}

.esim-valid.ptp b{
    font-weight: 400;
    font-family: 'New_hero_Regular';
    color: #0000007d;
}

.esim-top .section-title p {
    margin-top: 0 !important;
}

.why-h2 {
    font-size: 37px !important;
    padding: 0 64px;
}


/* ESIM MODAL*/

.modal-body.esim-popup {
    background-color: #f5f5f0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    overflow: scroll;
    max-height: 680px;
}

.data-main .item.expiration h4, .data-main .item.expiration span{
    color:#ef5a5a;
}

.data-main.top,
.data-main.bottom {
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    /* gap: 23px; */
    padding: 24px 32px 18px 32px;
    background-color: #fff;
}

.data-main .item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #00000016;
}

.data-main .item .content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}

.data-main .item .content h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'New_hero_Medium';
    font-weight: 700 !important;
}

.data-main .item .content p {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    font-weight: 200 !important;
    font-family: 'New_hero_Regular';
}

@media screen and (min-width: 1700px) {
    .container {
        max-width: 1920px !important;
        /* padding: 0 92px !important; */
    }

    .container.inner-hero {
        max-width: 1540px !important;
        padding: 0 !important;
    }

    .navbar>.container {
        padding: 0 !important;
    }
}


/*Mobile Responsive*/

@media only screen and (max-width: 1600px) {
    .navbar {
        padding: 18px 60px;
    }
}

@media screen and (min-width: 1600px) {
    .business-features {
        flex-wrap: nowrap;
    }

    .feature-card {
        /* width: 320px; */
    }
}

@media only screen and (max-width: 1540px) {
    .modal-body.esim-popup {
        zoom: 0.9;
    }

    .esim-wrapper .features-content {
        padding-top: 36px;
    }

    .single-blog .post-title {
        font-size: 37px;
    }

    .blog-h p {
        font-size: 16px;
    }

    .view-all-btn-wrapper a {
        font-size: 16px;
    }

    .about-simply .blog-featured-image img {
        height: 258px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content {
        gap: 14px;
    }

    .about-simply .blog .blog-content p {
        font-size: 12px;
    }

    .blog-container .section-title h4 {
        font-size: 28px;
    }

    .refer {
        padding: 64px;
    }

    .refer-left img {
        width: 451px;
    }

    .refer-right {
        max-width: 600px;
        gap: 32px;
    }

    .refer-right h2 {
        font-size: 27px;
    }

    .referral-label {
        font-size: 9px;
        line-height: 1.3;
    }

    .referral-code-input {
        line-height: 1;
        font-size: 14px;
    }

    .copy-button {
        padding: 4px 44px;
    }

    .referral-input-container {
        padding: 18px 24px;
    }

    .refer-right p {
        font-size: 13px;
        max-width: 500px;
    }

    .our-features.bg-section.esim-block .container:nth-child(1) {
        zoom: 0.9;
        width:100%;
    }

    .simply-select {
        font-size: 12px;
    }

    .simply-coin-gift-card h3 {
        font-size: 16px;
        margin-top: 10px;
    }

    .simply-coin-gift-card-header {
        margin-bottom: 4px;
    }

    .gift-txt {
        font-size: 11px;
    }

    .simply-history-toggle {
        margin: 12px auto;
        font-size: 12px;
    }

    .simply-history-item {
        padding: 12px;
    }

    .simply-history-item span:nth-child(2) {
        padding: 6px 12px;
        font-size: 13px;
    }

    .simply-history-item span:nth-child(1) {
        font-size: 12px;
    }

    .simply-explore-plans-btn {
        width: 240px;
    }

    .simply-coin-gift-card-header img {
        height: 160px;
    }

    .simply-coin-gift-balance {
        font-size: 20px;
    }

    .my-account .cta-box {
        margin-top: 48px;
        padding: 34px 0 42px 0;
    }

    .my-account .cta-box h2 {
        font-size: 28px;
    }

    .simply-account-nav-item {
        width: 374px;
    }

    .nav-item-left {
        gap: 12px;
        font-size: 14px;
    }

    .simply-account-balance p {
        font-size: 16px;
    }

    .simply-info-label {
        font-size: 12px !important;
    }

    .simply-info-value {
        font-size: 16px;
    }

    .simply-info-item {
        gap: 4px;
        padding: 6px 12px;
        height: 62px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .simply-info-row {
        background: white;
        height: 62px;
        padding: 6px 12px;
        width: 100%;
        max-width: none;
    }

    .simply-account-nav-link {
        min-height: 75px;
        padding: 15px 20px;
    }

    .simply-save-changes-btn {
        padding: 16px;
        font-size: 18px;
    }

    .delete-text h2 {
        font-size: 16px;
    }

    .simply-delete-account-text {
        max-width: 420px;
        font-size: 11px;
    }

    .simply-referral-intro-text {
        padding: 20px 44px;
    }

    .simply-referral-intro-text h3 {
        font-size: 16px;
    }

    .simply-referral-intro-text p {
        margin: 8px 0;
        font-size: 12px;
    }

    .simply-delete-account-btn {
        font-size: 12px;
        padding: 12px 48px;
    }

    .simply-referral-intro-text a {
        font-size: 12px;
    }

    .simply-referral-intro-card-img {
        width: 243px;
        height: 165px;
    }

    .share-btn {
        font-size: 18px;
    }

    .simply-referral-code-input {
        font-size: 35px;
    }

    .code-card {
        padding: 24px;
    }

    .simply-info-value input {
        font-size: 12px;
        text-align: right;
        margin-right: 0px;
    }

    .esim .activate .section-title p {
        margin: 12px 0 12px 0;
    }

    .bg-section {
        max-width: 100%;
        border-radius: 0px;
    }

    .container.cb {
        padding: 32px;
    }

    .container.cb .container {
        gap: 32px;
    }

    .steps-text p {
        font-size: 14px !important;
        font-family: 'New_hero_Regular';
    }

    .steps-text h5 {
        font-size: 21px !important;
        font-family: 'New_hero_extrabold';
    }

    .activate .view-all-btn-wrapper a {
        font-size: 16px !important;
    }

    .about-simply.esim .esim-block .our-faqs .tab-nav {
        margin: 0;
    }

    .our-faqs .tab-nav {
        gap: 100px;
    }

    .esim .our-features .col-lg-7 {
        padding-left: 45px;
    }

    .esim .activate .cta-box-image {
        top: 0;
    }

    .esim .activate .cta-box-image img {
        height: auto;
    }

    .why-h2 {
        font-size: 3 7px !important;
        padding: 0 64px;
    }

    .about-simply.esim .view-all-btn,
    .about-simply.esim .view-all-btn2 {
        font-size: 16px;
    }

    .business-partner {
        padding: 85px 100px;
    }

    .support div .row {
        /* zoom: 0.75; */
    }

    .card-benefit {
        zoom: 0.75;
    }

    .benefit-wrapper .card {
        padding: 48px 24px;
    }

    .partner-container {
        /* flex-direction: column; */
        /* padding: 32px 48px; */
        zoom: 0.7
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 1240px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1200px) {

    .esim.about-simply.r .esim-block figure {
        display: none;
    }
    
    .hero{
        background-image:url('/assets/images/img/new/mob-bg.webp');
    }
    
    .hero .hero-text img{
        display:none;
    }
    
    .hero .hero-text h1{
        display:none;
    }

    .esim .our-features .col-lg-7 {
        width: 100%;
    }

    .simply-coin-gift-card-header img {
        height: auto;
    }

    /* PROFILE */
    .simply-account-page-container {
        flex-direction: column;
    }

    .simply-info-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .simply-account-nav-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .simply-account-nav-list::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar in Chrome/Safari */
    }

    .simply-account-nav-item {
        flex: 0 0 auto;
        width: auto;
        min-width: 140px;
        margin-right: 12px;
    }

    .simply-account-nav-link {
        display: flex;
        flex-direction: column;
        /* stack icon and text */
        align-items: center;
        text-align: center;
        padding: 12px 16px;
        min-height: auto;
    }

    .simply-delete-account-section {
        flex-direction: column;
    }

    .simply-account-content {
        width: 100%;
        border: 0;
        padding: 0;
    }

    .delete-left {
        gap: 0;
    }

    .simply-add-card-form {
        padding: 24px;
    }

    .simply-coins-gifts-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .simply-referral-intro-card {
        padding: 18px;
    }

    .code-card {
        margin-bottom: 48px;
    }

    .simply-referral-wrapper {
        gap: 24px
    }

    .simply-custom-modal-content {
        max-width: 90%;
    }

    .simply-modal-buttons,
    .simply-modal-buttons form {
        gap: 32px;
    }

    .nav-item-left {
        display: flex;
        align-items: center;
    }

    .simply-account-sidebar {
        padding: 0;
        border: none;
    }

    .simply-add-card-buttons {
        flex-direction: row-reverse;
    }

    .nav-item-right {
        display: none;
        /* hide balance/extra on mobile */
    }

    /* END PROFILE*/
}


@media screen and (min-width: 991px) and (max-width: 1200px){
    .dev-com{
        flex-direction: column;
    }
    .dev-com .col-lg-6, .dev-com .col-lg-4, .dev-com .col-lg-8{
        width: 100%;
    }
    
    .row.align-items-center.dev-com .device-check-form {
        max-width: 100%;
    }
    
.section-title.dev-com-t p {
    margin-bottom: 0 !important;
    }
}
@media only screen and (min-width: 1024px) {
    .header-coins .coins {
        background: #daef7f !important;
        padding: 0px 10px !important;
    }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px){
    .esim-data {
        grid-template-columns: repeat(2, 1fr);
    }
}
.success_footer.mobile{
    display:none;
}
@media only screen and (max-width: 1024px) {
    .about-simply .view-all-btn{
        width:100% !important;
        margin-bottom: 25px;
    }
    .about-simply .main hr{
        margin-bottom:0px !important;
    }
    .why-h2.text-left{
        margin-bottom:30px;
            margin-top: 10px;
        padding:0px;
    }
    .success_footer.mobile{
        display: flex !important;
        margin: 20px !important;
    }
    .checkout .section-title .highlight {
        font-size: 30px !important;
    }
    .about-simply .together .col-lg-6 p:nth-child(2) {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .success_footer.desktop{
        display:none !important;
    }
    .signup-modal .modal-body{
        padding:15px 50px;
    }
    .tab-btn{
        font-size:15px !important;
    }
    .header-coins .coins{
        background: white;
        padding: 5px 12px;
    }
    .about-simply.esim .our-faqs {
        padding-top: 24px !important;
    }

    .in .checkout-summary {
        margin-top: 30px;
    }

    .features-content.in {
        margin-bottom: 5px !important;
    }

    .checkout-container.in .checkout-right {
        margin-bottom: 30px;
    }

    .footer-social-links.pay li:last-child img {
        margin-right: 0px;
    }

    .about-simply.checkout .section-title h4 {
        margin-bottom: 40px;
    }

    .checkout-flag img {
        display: none;
    }

    .about-simply.checkout .checkout-promo {
        margin-top: 30px;
    }
    
    .checkout-promo button{
        margin-top:15px;
        position: absolute;
        right: 0px;
        top: -15px;
    }

    .checkout-promo img{
        top:13px;
    }
    
    .checkout-promo input{
        width:100%;
    }
    
    .esim.about-simply.r .esim-top {
        gap: 0px;
    }

    .esim.about-simply.r .esim-top .text-anime-style-3 {
        text-align: left;
    }

    .slicknav_menu .mobile-login-btn a {
        display: flex !important;
        align-items: center;
        gap: 5px;
        background:#daef7f;
        border: none;
        height: 35px;
        width: fit-content;
        margin-left: 15px;
        margin-bottom: 10px;
        border-radius: 99px !important;
        padding-left: 20px !important;
    }
    
    .responsive-menu .slicknav_menu ul{
        margin-bottom:100px;
    }
    
    .responsive-menu .logout-link{
        color:#ff8181;
    }
    
    .menu-icons{
        display: flex !important;
        align-items: center;
        position: absolute;
        bottom: 120px;
        left: 20px;
        gap: 10px;
    }
    
     .menu-icons li a{
        padding: 5px 10px !important;
        background: #868686;
        border-radius: 99px !important;
    }
    
    .menu-icons li a i{
        color:white !important;
    }

    .slicknav_menu .mobile-login-btn [data-target="#exampleModal"] {
        width: fit-content;
    }

    .slicknav_menu .slicknav_nav li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        top: 18px;
        height: 8px;
        width: 0;
        background-color: white;
        transition: width 0.3s ease;
        margin: 0px 10px;
    }

    .container.blog.install {
        margin-bottom: 24px;
    }

    #su-howto .su-copy .su-title,
    #su-howto .su-copy .su-chip,
    #su-howto .su-copy .su-desc {
        display: none;
    }

    .check-device .position-relative.w-100 {
        max-width: 350px;
        margin-left: 50px;
        margin-top: 20px;
    }

    .home .country-grid .country-card:nth-child(n+6) {
        display: none;
    }

    .navbar.navbar-expand-lg {
        background: white;
    }

    .navbar.navbar-expand-lg .logo {
        display: none;
    }

    .navbar.navbar-expand-lg .sticky-logo {
        display: block;
    }

    .signup-modal {
        padding: 20px 0px !important;
    }

    .social-login {
        gap: 10px !important;
        display:block !important;
    }
    
    .social-login .social-btn{
        margin-bottom:15px;
    }

    .slicknav_menu .slicknav_nav li a {
        display: block;
        padding: 12px 18px;
        text-align: left;
        padding-left: 24px;
        text-transform: none;
    }

    .slicknav_menu .slicknav_nav li a img {
        vertical-align: middle;
    }

    .slicknav_menu .slicknav_nav li a:hover {
        background: transparent;
        color: black;
    }
    
    .slicknav_menu .slicknav_nav .menu-icons li a:hover{
        background:#868686 !important;
    }

    .step-thumbs {
        display: none !important;
    }

    .main-footer .footer-links {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .main-footer .row {
        flex-direction: column;
        padding: 0px 10px;
    }

    .main-footer.bg-section .col-6 {
        width: 100%;
        padding-left: 0px;
    }

    .main-footer .footer-links h3 {
        margin-bottom: 10px;
    }

    .footer-links h3 {
        position: relative;
        cursor: pointer;
        padding-right: 25px;
        font-size: 16px;
    }

    .footer-links h3 {
        position: relative;
        cursor: pointer;
        padding-right: 25px;
    }

    .footer-links h3::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .footer-links.active h3::after {
        transform: translateY(-50%) rotate(-135deg);
    }

    .footer-links ul {
        display: none;
        padding-left: 10px;
        margin-top: 8px;
    }

    .footer-links.active ul {
        display: block;
        padding-left: 0px;
    }

    .esim-data {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .esim-card {
        width: 100%;
        max-width: 100% !important;
    }

    .my-esim .header .tab-nav {
        justify-content: center;
    }

    .my-esim .section-title p {
        margin-top: 0;
    }

    .refer.container {
        padding: 24px;
        margin-top: 24px;
    }

    .my-esim #h2title {
        margin-top: 0;
    }

    .container {
        max-width: 90%;
        width: 100%;
    }

    .esim-block .container .row {
        flex-direction: column;
    }

    .esim-block figure {
        width: fit-content;
        margin: 0 auto;
    }

    .esim-wrapper form {
        width: 100%;
    }

    .esim-wrapper .features-content {
        gap: 24px;
    }

    .about-simply.esim .esim-block .our-faqs {
        width: 100%;
    }

    .about-simply.esim .activate {
        padding: 24px;
        /* padding-top: 0 !important; */
    }

    .about-simply .our-features.bg-section {
        padding: 24px;
    }

    .activate .view-all-btn-wrapper {
        width: 100%;
    }

    .activate .view-all-btn-wrapper a {
        font-size: 12px !important;
    }

    .business-partner {
        padding: 36px;
    }

    .hero .col-md-12 {
        margin-top: 20px;
    }

    .hero-text h1 {
        font-size: 35px;
    }

    .hero-text h2,
    .section-heading,
    .our-services .section-title h2 {
        font-size: 25px;
    }

    .qr-text p {
        margin: 20px 0px;
        font-size: 14px;
    }

    .hero {
        background-position: left
    }

    .hero .cta-box-btn {
        margin-top: 40px;
    }

    .search-bar input {
        font-size: 12px;
    }

    .search-icon img {
        width: 30px;
        height: 30px;
    }

    .search-icon {
        gap: 10px;
    }

    .data-plan-section .tab-btn {
        padding: 12px 25px;
        border-radius: 10px;
    }

    .country-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .esim-work .section-title {
        margin-bottom: 25px;
        margin-top: 25px;
    }

    #step-content p {
        font-size: 14px;
    }

    .our-services.esim-work .step-thumbs li {
        flex: none;
    }

    .our-services.esim-work .step-thumbs .tab-btn {
        width: auto;
    }

    .our-services.esim-work .step-thumbs img {
        width: 80px;
        height: 80px;
    }

    .features-content .section-title h2 {
        font-size: 25px !important;
        margin-bottom: 15px;
    }

    .view-all-btn-wrapper {
        /* margin: 0 auto; */
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .features-images img {
        margin-top: 50px;
    }

    .our-faqs {
        padding: 32px 16px !important;
        margin-bottom: 50px;
        margin: 0 25px !important;
    }

    .our-faqs .tab-nav {
        gap: 40px;
    }

    .faq-question h3,
    .our-features .section-title p,
    .our-features .section-title .spantext {
        font-size: 14px;
    }

    .cta-box {
        padding-top: 30px;
        margin-top: 50px;
    }

    .cta-box-content .section-title h2 {
        font-size: 24px !important;
    }
    
    .support.container.about{
        margin: 0px !important;
    }

    .cta-box-content .section-title p {
        margin-top: 25px;
        font-size: 15px !important;
    }

    .cta-box .section-title {
        margin-bottom: 25px;
    }

    .cta-box-image.qr-box {
        display: none;
    }

    .support h2 {
        font-size: 25px;
        line-height: 35px;
        text-align: center;
    }

    .support p {
        margin-left: 0px;
        font-size: 15px;
        margin: 15px 0px;
        text-align: center;
    }

    .support p br {
        display: none;
    }

    .support .view-all-btn {
        width: 250px;
        height: 50px;
        margin-left: 0px;
        font-size: 16px;
    }

    .support {
        padding: 30px 15px;
    }

    .footer-links h3 {
        font-size: 15px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .features-content {
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .partner-container {
        padding: 0;
        flex-direction: column;
        gap: 48px;
    }

    .partner-form div input {
        padding: 24px 12px;
        font-size: 14px;
    }

    .main-menu ul li {
        margin: 0;
    }

    .su-wrap {
        max-width: 90%;
        margin: 0 auto
    }

    section.business {
        margin-top: 24px;
    }

    img.aboutimg {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .about-simply .img-section img {
        margin-top: 24px;
    }
    
    .about-simply .main{
        gap:30px !important
    }
    
    .regional-container.container .price-row{
        font-size:11px;
    }
    
    .simply-order-price{
        font-size:14px !important;
    }
    
    .container.privacy-cont{
        padding:20px !important;
    }
    
    .copy-icon-btn{
        right:5px !important;
    }

    .about-simply .main .section-title h4 {
        font-size: 28px;
        text-align: center;
    }

    .about-simply .view-all-btn-wrapper {
        width: 100%;
    }

    .col-lg-6.right {
        text-align: right;
        margin-top: 32px;
    }

    .col-md-6.checkout-right {
        padding: 0;
        margin: 40px auto 0 auto;
    }

    .features-content form {
        margin: 24px auto;
    }

    .esim.about-simply .features-content form {
        zoom: 1;
    }

    .toggle-switch {
        zoom: 0.7;
        padding: 24px;
    }

    .checkout-container {
        padding: 0 24px;
    }

    .about-simply .main .cta-box-content {
        margin-left: 0;
    }

    .about-simply .view-all-btn-wrapper {
        flex-direction: column;
    }

    .support-page .faq-item {
        padding: 16px 24px !important;
    }

    .support-page .our-faqs-box {
        width: 100%;
    }

    .main-footer hr {
        margin-left: 0;
        width: 100%;
    }

    .support-page .faq-item {
        width: 100%;
    }

    .support-page .faq-question {
        gap: 16px
    }

    .support-page .faq-question h3 {
        text-align: left;
    }

    .device .col-lg-8 h2 {
        font-size: 24px;
    }

    .device .col-lg-8 {
        padding: 0 24px;
    }

    .navbar {
        padding: 24px;
    }


    .service-box-image.large-image {
        width: fit-content;
        margin: 0 auto;
    }

    .activate figure {
        width: fit-content;
        margin: 0 auto;
    }

    .support .container .row {
        zoom: 1;
    }

    .support .view-all-btn-wrapper {
        justify-content: center;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }


    .header-btn {
        display: none;
    }

    .btn-highlighted {
        padding: 15px 20px;
        border: none;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
        z-index: 1;
    }

    .section-row {
        margin-bottom: 50px;
    }

    .section-row .section-title {
        margin-right: 0px;
    }

    .section-title {
        /* margin-bottom: 40px; */
    }

    .section-title h3 {
        margin-bottom: 15px;
    }

    .section-title h1 {
        font-size: 46px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        margin-top: 20px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 140px 0 0;
        margin-top: 0px !important;
        height: 550px;
        padding-top: 50px;
    }

    .hero.hero-image {
        padding: 180px 0 100px;
    }

    .hero.hero-image .hero-content .section-title h1 {
        font-size: 44px;
    }

    .hero.hero-image.hero-slider-layout .hero-slide {
        padding: 180px 0 100px;
    }

    .hero.hero-image.hero-slider-layout .hero-pagination {
        bottom: 40px;
    }

    .hero-content {
        margin-right: 0;
    }

    .hero-content-form .form-group .form-control {
        width: 50%;
        padding: 10px 15px;
    }

    .hero-counter-box {
        margin-left: 0px;
    }

    .hero-counter-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .hero-counter-item h2 {
        font-size: 46px;
        margin-bottom: 5px;
    }

    .hero-images {
        width: 100%;
        max-width: 55%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .hero-img img {
        aspect-ratio: 1 / 1.3;
    }

    .scrolling-ticker-box {
        --gap: 20px;
    }

    .our-scrolling-ticker {
        padding: 20px 0;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .scrolling-content span img {
        max-width: 16px;
        margin-right: 20px;
    }

    .about-us {
        padding: 50px 0 25px;
    }

    .about-company-item .icon-box {
        margin-bottom: 20px;
    }

    .about-company-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .about-video-image {
        margin-top: 10px;
    }

    .about-us-video {
        height: 400px;
    }

    .video-play-button a {
        width: 80px;
        height: 80px;
    }

    .our-services {
        padding: 50px 25px !important;
        /* margin: 0 25px; */
        border-radius: 32px;
    }

    .service-box {
        padding: 20px 20px 0 20px;
    }

    .service-box-header {
        margin-bottom: 20px;
    }

    .service-box-tag {
        margin-bottom: 15px;
    }

    .service-box-tag a {
        padding: 8px 15px;
    }

    .our-expertise.bg-section {
        padding: 50px 0;
    }

    .our-tab-nav {
        margin-bottom: 40px;
    }

    .our-tab-nav .nav-tabs {
        gap: 10px;
    }

    .our-tab-nav ul li {
        width: calc(25% - 7.5px);
    }

    .our-tab-nav ul li .nav-link.btn-highlighted {
        font-size: 14px;
        padding: 15px 6px;
    }

    .expertise-content {
        padding: 30px;
        margin-bottom: 30px;
    }

    .expertise-content-header {
        margin-bottom: 30px;
    }

    .expertise-content-header h3 {
        margin-bottom: 15px;
    }

    .expertise-content-body {
        margin-bottom: 30px;
    }

    .expertise-image img {
        aspect-ratio: 1 / 0.55;
    }

    .why-choose-us {
        padding: 50px 0 20px;
    }

    .why-choose-no h3 {
        font-size: 18px;
        width: 46px;
        height: 46px;
    }

    .why-choose-body {
        padding: 15px;
    }

    .readmore-btn {
        width: 40px;
        height: 40px;
    }

    .readmore-btn img {
        max-width: 20px;
    }

    .why-choose-content h3 {
        font-size: 18px;
    }

    .our-approach.bg-section {
        padding: 50px 0 20px;
    }

    .our-approach.bg-section .section-row {
        margin-bottom: 50px;
    }

    .approach-item {
        margin-bottom: 30px;
    }

    .approach-item.approach-box-1 .approach-tags {
        margin-bottom: 15px;
    }

    .company-wisdom {
        padding: 50px 0;
    }

    .company-wisdom-item,
    .company-wisdom-image {
        width: calc(33.33% - 20px);
    }

    .company-wisdom-box .company-wisdom-item {
        padding: 20px;
    }

    .company-wisdom-counter h2 {
        font-size: 46px;
    }

    .our-features.bg-section {
        /* padding: 50px 0; */
    }

    .features-item {
        padding: 20px;
    }

    .features-body {
        margin-bottom: 30px;
    }

    .features-item .icon-box {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }

    .features-item .icon-box img {
        max-width: 45px;
    }

    .features-item-content {
        width: calc(100% - 100px);
    }

    .features-images {
        margin-left: 0px;
        max-width: 80%;
        margin: 0 auto;
    }

    .our-pricing {
        padding: 50px 0;
    }

    .pricing-box {
        padding: 20px;
    }

    .pricing-box-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .pricing-box-title {
        margin-bottom: 15px;
    }

    .pricing-box-price h2 {
        font-size: 46px;
    }

    .pricing-box-body {
        margin-bottom: 20px;
    }

    .pricing-box-body ul li {
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .pricing-box-body ul li:before {
        font-size: 18px;
    }

    .cta-box.bg-section {
        padding: 50px 0 0;
    }

    .cta-box-content {
        margin-left: 0px;
        margin-bottom: 30px;
    }

    .cta-box-image {
        text-align: center;
    }

    .our-testimonial {
        padding: 24px 0;
    }

    .testimonial-slider {
        margin-bottom: 40px;
    }

    .testimonial-header {
        margin-bottom: 30px;
    }

    .testimonial-content p {
        font-size: 20px;
    }

    .author-image img {
        width: 70px;
        height: 70px;
    }

    .author-content {
        width: calc(100% - 90px);
    }

    .testimonial-counter-box {
        margin-left: 0px;
    }

    .testimonial-counter-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .testimonial-counter-item h2 {
        font-size: 46px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 46px;
        height: 46px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        background-size: 22px auto;
    }

    .our-faqs.bg-section {
        padding: 50px 0;
    }

    .faqs-client-slider {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .faqs-item-content::before {
        background-size: 20px auto;
        width: 40px;
        height: 40px;
    }

    .our-faqs-box {
        gap: 30px 20px;
    }

    .faqs-item {
        width: calc(50% - 10px);
    }

    .faqs-item-content {
        padding-left: 50px;
    }

    .faqs-item-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .latest-posts {
        padding: 50px 0 20px;
    }

    .post-featured-image img {
        aspect-ratio: 1 / 1.1;
    }

    .post-item-body {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .main-footer.bg-section {
        padding: 50px 0 0;
        margin-bottom: 0px;
    }

    .about-footer {
        margin-bottom: 40px;
    }

    .footer-links h3 {
        margin-bottom: 20px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 40px;
    }

    .page-header {
        padding: 160px 0 80px;
    }

    .page-header-box h1 {
        font-size: 46px;
    }

    .about-approach {
        padding: 25px 0 50px;
    }

    .about-approach-images {
        margin-right: 50px;
        padding: 25px 30px;
        margin-bottom: 30px;
    }

    .about-approach-chart {
        margin-bottom: 50px;
    }

    .about-approach-investment {
        right: -30px;
        transform: translateY(-100%);
    }

    @keyframes investmentmoveobject {
        50% {
            right: 20px;
        }
    }

    .approach-counter-box h2 {
        font-size: 36px;
    }

    .about-approach-progress-counter h2 {
        font-size: 36px;
    }

    .our-benefits.bg-section {
        padding: 50px 0 20px;
    }

    .benefits-item {
        padding: 20px;
    }

    .benefits-item-content {
        margin-bottom: 20px;
    }

    .benefits-item.benefits-box-2 .benefits-item-content {
        margin-top: 20px;
    }

    .benefits-item-content h3 {
        margin-bottom: 10px;
    }

    .company-success {
        padding: 50px 0;
    }

    .company-success-content {
        margin-bottom: 30px;
    }

    .company-success-body {
        margin-bottom: 40px;
    }

    .company-success-images {
        margin-left: 0px;
    }

    .company-success-image img {
        aspect-ratio: 1 / 0.8;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .our-process.bg-section {
        padding: 50px 0;
    }

    .our-process-content {
        margin-bottom: 30px;
    }

    .process-counter {
        margin-bottom: 40px;
    }

    .process-counter-item h2 {
        font-size: 36px;
    }

    .our-process-steps {
        margin-left: 0px;
        gap: 30px 0;
    }

    .process-step-item:nth-of-type(odd) {
        margin-left: 80px;
    }

    .process-step-item:nth-of-type(even) {
        margin-right: 80px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .service-body {
        padding: 15px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        padding: 20px;
        margin-bottom: 40px;
    }

    .service-catagery-list h3 {
        margin-bottom: 20px;
    }

    .sidebar-cta-box {
        padding: 20px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-list-image {
        padding: 30px;
        margin-bottom: 40px;
        margin-top: 10px;
    }

    .service-entry-title {
        margin-bottom: 20px;
    }

    .why-choose-service-box {
        margin-bottom: 40px;
    }

    .why-choose-service-item {
        padding: 15px;
    }

    .service-features-list ul {
        gap: 20px 10px;
    }

    .service-features-list ul li {
        width: calc(33.33% - 6.66px);
        color: var(--primary-color);
        padding-left: 20px;
    }

    .service-features-list ul li:before {
        font-size: 16px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .blog-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .blog-featured-image {
        margin-bottom: 20px;
    }

    .blog-meta {
        margin-bottom: 10px;
    }

    .blog-content {
        margin-bottom: 15px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-tags .tag-links a {
        font-size: 16px;
        padding: 8px 15px;
    }

    .page-project {
        padding: 50px 0 20px;
    }

    .project-nav {
        margin-bottom: 40px;
    }

    .project-nav ul li a {
        padding: 0 20px;
    }

    .project-item-body {
        padding: 15px;
    }

    .project-item-content h3 {
        font-size: 18px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-sidebar {
        position: initial;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .project-detail-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .project-deatil-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .project-featured-image {
        margin-bottom: 20px;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .quality-project-item {
        padding: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .page-case-study {
        padding: 50px 0 20px;
    }

    .case-study-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .case-study-image {
        margin-bottom: 20px;
    }

    .page-case-study-single {
        padding: 50px 0;
    }

    .case-study-sidebar {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .case-study-detail-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .case-study-deatil-content {
        padding: 15px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .case-study-approch-box {
        margin: 30px 0 30px 0;
    }

    .case-study-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .case-study-approch-item {
        margin-bottom: 20px;
    }

    .case-study-entry ul {
        gap: 15px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-member-details {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .team-member-image img {
        aspect-ratio: 1 / 1.13;
    }

    .team-member-intro {
        padding: 30px;
    }

    .team-member-body,
    .team-member-info,
    .team-member-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .team-member-info ul li {
        margin-bottom: 20px;
    }

    .member-social-list ul li a {
        width: 40px;
        height: 40px;
    }

    .member-social-list ul li a i {
        font-size: 20px;
    }

    .team-member-entry {
        margin-bottom: 40px;
    }

    .team-member-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .team-member-entry p {
        margin-bottom: 15px;
    }

    .team-member-Capabilities {
        margin: 10px 0 0px 0;
    }

    .page-company-history {
        padding: 50px 0;
    }

    .company-history-info {
        width: 55%;
        padding: 40px 20px 40px 70px;
    }

    .company-history-year h2 {
        font-size: 50px;
    }

    .company-history-image {
        width: 45%;
        padding-left: 0;
    }

    .company-history-item:nth-of-type(even) .company-history-image {
        padding-right: 0px;
    }

    .company-history-image img {
        max-width: 100%;
    }

    .company-history-item:first-child {
        padding-top: 30px;
    }

    .company-history-item:first-child::before {
        left: 50%;
        transform: translate(65%, -15%);
        width: 50px;
        height: 50px;
    }

    .company-history-item:last-child::after {
        transform: translateX(50%);
    }

    .page-pricing {
        padding: 50px 0 20px;
    }

    .page-client {
        padding: 50px 0 20px;
    }

    .company-logo {
        padding: 20px 30px;
    }

    .company-logo img {
        width: 100%;
        height: 60px;
    }

    .page-testimonial {
        padding: 50px 0;
    }

    .page-testimonial-item {
        margin-bottom: 50px;
    }

    .page-testimonial-content {
        width: calc(55% - 20px);
    }

    .page-testimonial-header {
        margin-bottom: 30px;
    }

    .page-testimonial-header p {
        font-size: 16px;
    }

    .page-testimonial-image {
        width: calc(45% - 20px);
        background-size: 120px auto;
        background-position: left 3% top 43%;
    }

    .page-testimonial-image img {
        max-width: 345px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.8;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .video-gallery-image img {
        aspect-ratio: 1 / 0.8;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-section {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .page-contact-us {
        padding: 50px 0;
    }

    .contact-us.bg-section {
        padding: 50px 0;
        margin-bottom: 50px;
    }

    .contact-information {
        gap: 30px;
    }

    .contact-info-item {
        display: block;
        text-align: center;
        width: calc(33.33% - 20px);
    }

    .contact-info-item::before {
        right: -15px;
    }

    .contact-info-item .icon-box {
        height: 60px;
        width: 60px;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .contact-info-item .icon-box img {
        max-width: 34px;
    }

    .contact-info-content {
        width: 100%;
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .google-map {
        height: 500px;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .google-map iframe {
        height: 500px;
    }

    .contact-form-title {
        margin-bottom: 30px;
    }

    .contact-form-title h2 {
        font-size: 26px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }

    .error-page-content-heading {
        margin-bottom: 20px;
    }

    .error-page-content-heading h2 {
        font-size: 34px;
    }

    .error-page-content-body p {
        margin-bottom: 20px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1600px) {
    .our-services.esim-work.regional {
        padding: 36px 0;
    }

    .regional-container .section-heading {
        font-size: 27px;
    }

    .regional-container p {
        font-size: 13px;
    }

    .main-footer.bg-section .container {
        margin: 0px 63px;
    }

    .home .cta-box-image.qr-box {
        width: 269px;
        height: 340px;
        padding: 57px 40px;
        left: 0px;
    }

    .cta-box .cta-box-btn {
        width: 40%;
    }

    .cta-box-image.qr-box .section-title {
        margin-bottom: 35px;
    }

    .home .cta-box-image.qr-box img {
        margin-bottom: 21px;
    }

    .cta-box-image.qr-box p {
        font-size: 15px;
    }

    .our-faqs {
        padding: 30px 40px !important;
    }

    .our-faqs .tab-nav {
        margin-top: 36px;
        margin-bottom: 0px;
    }

    .price-row span {
        font-size: 10px;
    }

    .home .hero .col-md-12 {
        /* margin-top: 100px; */
    }

    .home .flag {
        width: 35px;
    }

    .footer-links ul li {
        margin-bottom: 5px;
    }

    .our-services {
        padding: 60px;
        /* height: 487px; */
    }

    .service-box-image img {
        width: 260px;
        height: 350px;
    }

    .step-thumbs img {
        width: 130px;
        height: 175px;
    }

    .step-thumbs .tab-btn.active {
        width: 130px;
        height: 175px;
    }

    .esim .step-thumbs .tab-btn.active {
        height: auto;
    }

    .esim-works {
        gap: 30px
    }

    .home .view-all-btn-wrapper {
        margin-top: 40px;
    }

    .home .country-card {
        padding: 15px;
    }

    .home .country-grid {
        margin: auto;
        /* justify-items: center; */
    }

    .home .features-content p br {
        display: none;
    }

    .header-btn .btn-login {
        font-size: 12px;
        height: 30px;
        align-items: center;
        justify-content: center;
        display: flex;
        margin-right: 10px;
        padding: 0px;
        width:100px;
    }

    .header-btn .btn-default {
        font-size: 12px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        width: 130px;
        font-family: 'New_hero_Medium';
    }

    .main-menu ul li a {
        font-size: 12px;
    }

    .data-plan-section .tab-btn {
        font-size: 16px;
        padding: 12px 65px !important;
    }

    .my-esim .data-plan-section .tab-btn {
        border-radius: 10px;
    }

    .country-name {
        font-size: 14px;
    }

    .price-row {
        font-size: 12px;
    }

    .view-all-btn {
        font-size: 16px;
        /* width:250px; */
        /* height:50px; */
    }

    .our-services .section-title h2,
    .features-content .section-title h2,
    .section-title h2,
    .cta-box-content .section-title h2,
    .support h2 {
        font-size: 24px !important;
        /* text-align: center; */
    }

    .why-h2 {
        padding: 0;
    }

    #step-content p {
        font-size: 14px;
    }

    .our-features .section-title p,
    .our-features .section-title .spantext,
    .cta-box-content .section-title p,
    .support p {
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .footer-links h3 {
        font-size: 15px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }
}



@media only screen and (max-width: 768px) {
    
    .blog-container{
        gap: 12px;
    }
    .privacy-cont{
        padding: 5%;
    }

    .about-simply.main-blog .section-title:nth-child(1) {
        margin-bottom: 24px !important;
    }

    .activate .container .row {
        gap: 48px
    }

    .simply-referral-intro-card {
        flex-direction: column;
    }

    .simply-referral-intro-card-img {
        width: max-content;
    }

    .simply-referral-intro-text {
        padding: 16px 0;
    }

    .code-card {
        width: 100%;
    }

    .simply-modal-btn.simply-confirm-btn,
    .simply-modal-btn.simply-cancel-btn {
        padding: 16px;
        font-size: 14px;
        display: flex;
        align-items: center;
        height: fit-content;
    }

    p.note-txt {
        margin: 18px 0;
    }

    .simply-modal-buttons form {
        margin: 24px 0 0 0;
    }

    .success_footer {
        margin-top: 36px;
        gap: 24px
    }

    .partner-container {
        align-items: center;
    }

    .steps-box {
        width: 100%;
    }

    .features-content.bsn {
        gap: 24px;
    }

    .features-content.bsn h2,
    .features-content.bsn p,
    .features-content.bsn .section-title {
        margin: 0 !important;
    }

    .benefits.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nav-item-left:nth-child(1) img {
        width: 14px;
    }

    .nav-item-left img {
        width: 18px;
    }

    .simply-account-content {
        border: none;
    }

    .how-esim-swiper .swiper-button-prev {
        left: 0;
    }

    .how-esim-swiper .swiper-button-next {
        right: 0;
    }

    .about-simply .blog-item-body {
        margin-left: 0;
    }

    .blog-container {
        padding-top: 12px !important;
    }

    .about-simply .post-item .post-title {
        font-size: 27px;
        margin: 0;
        width: 100% !important;
    }

    .about-simply .blog .blog-content p {
        margin-bottom: 0;
    }

    .blogpost {
        padding-bottom: 24px;
    }

    .blog-item {
        margin-top: 24px;
    }

    .blog-h {
        gap: 24px
    }

    .device-check-form input[type="text"] {
        width: 200px;
    }

    .data-plan-section {
        padding: 24px 0;
    }

    .device-content.restrictions {
        margin-top: 24px;
    }

    .about-simply .device-title {
        margin: 36px auto;
    }

    .about-simply .our-features.device .section-title p {
        margin-bottom: 0;
    }

    .col-lg-6.right {
        margin-top: 12px;
    }

    #su-howto .su-pill {
        padding: 12px 24px;
        font-size: 18px;
    }

    #su-howto .su-body {
        gap: 24px;
    }

    #su-howto .su-title {
        text-align: center;
        font-size: 24px;
        margin: 24px 0;
    }

    #su-howto .su-chip {
        padding: 16px;
        width: 100%;
    }

    #su-howto .su-desc {
        margin: 12px 0;
    }

    #su-howto .su-btn {
        font-size: 18px;
        padding: 12px 24px;
    }

    .esim .activate .section-title h2 {
        margin: 0 0 12px 0;
    }

    .esim-wrapper .features-content {
        padding-top: 24px;
    }

    .benefits .container .row {
        margin-top: 16px;
    }

    .our-faqs .tab-nav {
        margin: 24px auto;
    }

    .faq-item {
        padding: 20px 0;
    }

    .tab-content {
        margin-top: 24px;
    }

    .data-plan-section {
        padding-bottom: 36px;
    }

    .data-plan-section .tab-btn {
        font-size: 16px;
    }
    


    section.cta-box.support.container.cb {
        margin-top: 36px !important;
    }

    .home .view-all-btn-wrapper a {
        margin-top: 24px;
    }

    .features-images img {
        margin: 18px auto;
    }

    .esim .our-features .col-lg-7 {
        padding: unset;
    }

    .about-simply.esim .view-all-btn-wrapper {
        flex-direction: column;
    }

    .esim .activate .section-title {
        margin-bottom: 24px;
    }

    h2.why-h2.text-left.mb-5 {
        width: 100%;
        margin: 0 auto 12px auto;
        padding: 0;
        text-align: center;
        /* margin-bottom: 0 !important; */
    }

    .about-simply.esim .view-all-btn,
    .about-simply.esim .view-all-btn2 {
        font-size: 16px !important;
    }

    .esim-plans {
        grid-template-columns: repeat(1, 1fr);
    }

    .topbar-info-content p {
        font-size: 14px;
    }

    .topbar-info-content p img {
        max-width: 16px;
        margin-right: 0px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        margin-top: 24px !important;
        margin-bottom: 0 !important;
        margin-bottom: 0;
        /* margin-left: 24px; */
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    .section-title h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 22px !important;
    }

    .section-title p {
        margin-top: 10px;
        font-size: 16px !important;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .hero.hero-image .hero-content .section-title h1 {
        font-size: 30px;
    }

    .hero.hero-image .hero-content .hero-content-btn .btn-default {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .hero-counter-item h2 {
        font-size: 36px;
    }

    .hero-images {
        max-width: 100%;
    }

    .payment-method-image {
        left: 60px;
    }

    @keyframes paymentmoveobject {
        50% {
            left: 30px;
        }
    }

    .our-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-content span {
        font-size: 18px;
    }

    .about-company-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .about-company-item .icon-box img {
        max-width: 34px;
    }

    .about-us-video {
        height: 300px;
    }

    .service-box-title h3 {
        font-size: 18px;
    }

    .our-tab-nav {
        margin-bottom: 30px;
    }

    .our-tab-nav .nav-tabs {
        gap: 15px 10px;
    }

    .our-tab-nav ul li {
        width: calc(50% - 5px);
    }

    .our-tab-nav ul li .nav-link.btn-highlighted {
        font-size: 12px;
        padding: 12px 6px;
    }

    .expertise-content {
        padding: 20px;
    }

    .expertise-content-header {
        margin-bottom: 20px;
    }

    .expertise-content-header h3 {
        font-size: 18px;
    }

    .expertise-list-item .icon-box {
        margin-right: 10px;
    }

    .expertise-list-content {
        width: calc(100% - 34px);
    }

    .expertise-list-content p {
        font-size: 13px;
    }

    .expertise-image img {
        aspect-ratio: 1 / 0.7;
    }

    .approach-tags a {
        font-size: 13px;
        padding: 6px 15px;
    }

    .approach-content h3 {
        font-size: 18px;
    }

    .company-wisdom-item,
    .company-wisdom-image {
        width: calc(50% - 15px);
    }

    .company-wisdom-box .company-wisdom-item {
        padding: 15px;
    }

    .company-counter-title h3 {
        font-size: 16px;
    }

    .company-wisdom-counter h2 {
        font-size: 36px;
    }

    .features-item {
        display: block;
        padding: 15px;
    }

    .features-item .icon-box {
        width: 60px;
        height: 60px;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .features-item .icon-box img {
        max-width: 35px;
    }

    .features-item-content {
        width: 100%;
        margin-bottom: 15px;
    }

    .features-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .features-images {
        max-width: 100%;
    }

    .pricing-box-price h2 {
        font-size: 36px;
    }

    .cta-box-btn .btn-highlighted.btn-cta-1 {
        margin: 0 10px 10px 0;
    }

    .cta-box-btn .btn-highlighted.btn-cta-2 {
        margin-left: 0;
    }

    .testimonial-slider {
        margin-bottom: 30px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

    .author-image img {
        width: 60px;
        height: 60px;
    }

    .author-content {
        width: calc(100% - 80px);
    }

    .author-content h3 {
        font-size: 18px;
    }

    .testimonial-slider .testimonial-button-next,
    .testimonial-slider .testimonial-button-prev {
        width: 36px;
        height: 36px;
    }

    .testimonial-slider .testimonial-button-next::before,
    .testimonial-slider .testimonial-button-prev::before {
        background-size: 18px auto;
    }

    .testimonial-counter-item h2 {
        font-size: 36px;
    }

    .client-logo img {
        max-width: 130px;
    }

    .faqs-item {
        width: 100%;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h3 {
        margin-bottom: 15px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        padding: 15px 0;
        margin-top: 10px;
    }

    .footer-copyright-text {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-social-links {
        text-align: center;
    }

    .page-header-box h1 {
        font-size: 36px;
    }

    .about-approach-images {
        margin-right: 0px;
        padding: 20px 20px 80px 20px;
        margin-bottom: 90px;
    }

    .about-approach-investment {
        right: 70px;
        transform: translate(0%, 50%);
    }

    @keyframes investmentmoveobject {
        50% {
            right: 30px;
        }
    }

    .skills-progress-bar .skillbar {
        margin-bottom: 20px;
    }

    .about-approach-content-info {
        display: block;
    }

    .about-approach-info-list {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-approach-image-counter {
        width: 100%;
    }

    .about-approach-progress-counter h2 {
        font-size: 28px;
    }

    .benefits-item-content h3 {
        font-size: 18px;
    }

    .company-success-body {
        display: block;
        margin-bottom: 30px;
    }

    .company-client-images {
        display: block;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .company-success-info h3 {
        font-size: 18px;
    }

    .company-success-chart {
        bottom: 20px;
        right: 20px;
    }

    @keyframes successmoveobject {
        50% {
            right: 50px;
        }
    }

    .company-success-image img {
        aspect-ratio: 1 / 1.1;
    }

    .company-success-chart img {
        max-width: 200px;
    }

    .team-image figure,
    .team-image img {
        aspect-ratio: 1 / 1.14;
    }

    .team-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .process-counter {
        gap: 20px;
        margin-bottom: 30px;
    }

    .process-counter-item {
        width: calc(33.33% - 13.33px);
    }

    .process-counter-item::before {
        right: -10px;
    }

    .process-counter-item h2 {
        font-size: 26px;
    }

    .process-counter-item p {
        font-size: 12px;
    }

    .process-step-item:nth-of-type(odd) {
        margin-left: 20px;
    }

    .process-step-item:nth-of-type(even) {
        margin-right: 20px;
    }

    .process-step-item {
        padding: 15px;
    }

    .step-item-number {
        height: 46px;
        width: 46px;
        margin-right: 14px;
    }

    .step-item-number h2 {
        font-size: 18px;
    }

    .step-item-content {
        width: calc(100% - 60px);
    }

    .step-item-content h3 {
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-catagery-list {
        margin-bottom: 30px;
    }

    .service-catagery-list ul li a {
        padding: 14px 40px 14px 16px;
    }

    .service-featured-image {
        margin-bottom: 20px;
    }

    .service-featured-image img {
        aspect-ratio: 1 / 0.75;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry ul {
        gap: 15px;
    }

    .service-list-image {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-List-img {
        margin-bottom: 20px;
    }

    .why-choose-service-box {
        gap: 20px;
        margin-bottom: 30px;
    }

    .why-choose-service-item {
        width: 100%;
    }

    .why-choose-service-content h3 {
        font-size: 18px;
    }

    .service-features {
        margin-bottom: 30px;
    }

    .service-features-list ul {
        gap: 10px;
    }

    .service-features-list ul li {
        width: 100%;
        padding-left: 25px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 20px;
    }

    .project-nav {
        margin-bottom: 30px;
    }

    .project-detail-title h3 {
        font-size: 18px;
    }

    .project-featured-image img {
        aspect-ratio: 1 / 0.75;
    }

    .project-entry {
        margin-bottom: 30px;
    }

    .project-entry h2 {
        font-size: 26px;
    }

    .quality-project-item {
        display: block;
    }

    .quality-project-title {
        margin-bottom: 30px;
    }

    .quality-project-item .icon-box {
        height: 70px;
        width: 70px;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .quality-project-item .icon-box img {
        max-width: 36px;
    }

    .quality-project-content {
        width: 100%;
    }

    .quality-project-content h3 {
        font-size: 18px;
    }

    .case-study-content {
        max-width: 220px;
    }

    .case-study-content h3 {
        font-size: 18px;
    }

    .case-study-deatil-content h3 {
        font-size: 18px;
    }

    .case-study-featured-image {
        margin-bottom: 20px;
    }

    .case-study-featured-image img {
        aspect-ratio: 1 / 0.75;
    }

    .case-study-entry h2 {
        font-size: 26px;
    }

    .case-study-approch-item h3 {
        font-size: 18px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .team-member-intro {
        padding: 20px;
    }

    .team-member-title h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .team-member-info ul li {
        margin-bottom: 10px;
    }

    .team-member-skillbar-title h3 {
        font-size: 18px;
    }

    .team-member-entry {
        margin-bottom: 30px;
    }

    .team-member-entry h2 {
        font-size: 26px;
    }

    .company-history-item {
        display: block;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .company-history-item:last-child,
    .company-history-item:first-child {
        padding: 0px;
    }

    .company-history-item:last-child::after,
    .company-history-item:first-child::before {
        display: none;
    }

    .company-history-info {
        width: 100%;
        padding: 0;
        border: none;
        margin-bottom: 20px;
    }

    .company-history-item:nth-of-type(even) .company-history-info {
        border: none;
    }

    .company-history-year h2 {
        font-size: 40px;
    }

    .company-history-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .company-history-image {
        width: 100%;
    }

    .company-logo {
        border-radius: 15px;
        padding: 15px 20px;
    }

    .company-logo img {
        height: 100%;
    }

    .page-testimonial-item {
        display: block;
    }

    .page-testimonial-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .page-testimonial-header {
        margin-bottom: 20px;
    }

    .page-testimonial-author h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .page-testimonial-image {
        max-width: 100%;
        width: 100%;
    }

    .page-testimonial-image,
    .page-testimonial-item:nth-of-type(even) .page-testimonial-image {
        text-align: center;
        background-position: left 5% top 42%;
    }

    .faq-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-info-item {
        width: 100%;
    }

    .google-map {
        height: 350px;
    }

    .google-map iframe {
        height: 350px;
    }

    .contact-form-title h2 {
        font-size: 22px;
    }

    .error-page-content-heading h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 575px) {
    
    .main.container.dev-compatability {
    max-width: 100%;
}
    .footer-social-links.pay ul {
        margin: 0;
        justify-content: center;
    }

    .footer-copyright-text p {
        margin: 0;
        text-align: center;
    }

    .partner-form div form button {
        width: 95%;
        margin: 0 auto;
    }

    .partner-left {
        width: 100%;
        flex: none;
        height: auto;
    }

    .privacy-note {
        width: 90%;
        margin: 0 auto;
    }

    .our-features.bg-section {
        padding: 30px 0;
    }

    .home .view-all-btn-wrapper {
        /* margin-top: 24px; */
        /* zoom: 0.9; */
        margin-left: 0;
    }

    .view-all-btn-wrapper {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
        /* max-width: 90%; */
        width: 100%;
        margin: 0 auto;
    }

    .esim-work .step-thumbs {
        flex-wrap: wrap;
    }

    .container {
        max-width: 95%;
    }

    .our-faqs {
        margin: auto !important;
    }

    .hero {
        margin-top: -87px;
    }
}

@media screen and (max-width: 380px) {
    .country-card {
        zoom: 0.9;
    }
}


/*Tablet Responsive*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .header-sticky .main-menu ul li a {
        color: black !important;
    }

    .header-sticky .header-btn .btn-login,
    .header-sticky .header-btn .btn-login.lang span {
        color: black;
        border-color: black;
    }
    
    .home .our-services.esim-work.container{
        margin-bottom:50px;
    }

    .home .our-features.bg-section .features-content {
        justify-content: start;
        align-items: start;
    }

    .home .our-features.bg-section .features-images {
        max-width: 100%;
    }

    .home .our-features.bg-section .features-content form {
        margin: 0px;
    }

    .device-check-form {
        max-width: 450px;
        margin-left: 0px;
    }

    .device-check-form input[type="text"] {
        width: 500px;
    }

    .home .section-title {
        gap: 10px;
    }

    .home .our-faqs {
        padding: 50px !important;
    }

    .cta-box {
        margin-bottom: 40px;
    }

    .main-footer .footer-links h3 {
        margin-bottom: 20px;
    }

    .footer-copyright-text p {
        margin-bottom: 4px;
        text-align: center;
        margin-left: auto;
    }

    .footer-social-links.pay ul {
        justify-content: center;
        margin-right: 0px;
    }

    .coins-wrapper .features-content .section-title {
        margin-bottom: 0px !important;
        margin-top: 50px;
    }

    .steps-box {
        width: 100%;
    }

    .card-text {
        font-size: 16px;
    }

    .my-account .cta-box-image {
        width: 75%;
        margin: auto;
        margin-top: 20px;
    }

    .my-account .cta-box-content {
        margin-top: 30px;
    }

    .my-account .simply-coin-gift-card {
        width: 70%;
        margin: auto;
    }

    .my-account .container.activate hr {
        margin-top: 50px;
    }

    .refer-left img {
        width: 400px;
        object-fit: contain;
    }

    .checkout-container.in .checkout-subtitle {
        font-size: 17px;
    }

    .checkout-container.in .checkout-left h5 {
        font-size: 13px;
    }

    p.note-txt {
        font-size: 11px !important;
        margin: 30px 0 40px 0;
    }

    .success_footer {
        gap: 30px;
        margin-top: 40px;
    }

    .success_footer .buttons {
        display: grid;
    }

    .checkout-container.in .checkout-right {
        width: auto;
    }

    .checkout-container.in {
        padding-top: 80px;
    }

    .esim .our-features .col-lg-7 {
        padding-left: 0px;
    }

    .esim-wrapper .features-content {
        margin: 0px;
    }

    .simply-toggle-container span {
        font-size: 13px;
    }

    .about-simply.checkout .main-footer.bg-section {
        padding-top: 120px;
    }

    .footer-links ul li:last-child {
        margin-bottom: 10px;
    }

    .about-simply .col-lg-6.right {
        text-align: left;
    }

    .main-blog .features-content {
        justify-content: start;
        align-items: start;
    }

    .col-lg-7.esim-wrapper .features-content {
        margin: 0 auto;
    }

    .partner-left,
    .partner-form {
        margin: 0 auto;
    }

    .our-features.bg-section.indx {
        padding: 0 0 90px 0;
    }

    .home .hero .col-md-12 {
        margin-top: 20px;
    }

    .home .data-plan-section {
        /* padding-bottom: 48PX; */
    }

    .home .view-all-btn-wrapper a {
        margin-top: 0;
    }

    .home .our-faqs {
        margin: 0 auto !important;
    }

    .cta-box .col-lg-4.order-lg-1.order-2.dw-n {
        display: none;
    }

    .features-content.bsn {
        align-items: flex-start;
    }

    .cta-box-content {
        margin-left: 12px;
    }

    .our-faqs {
        margin: 36px auto 0 auto !important;
    }

    .support-page .col-lg-3.order-lg-1.order-2 {
        width: 50% !important;
    }

    /* checkout */
    .row.tabl {
        flex-direction: column-reverse;
        align-items: center;
        gap: 36px;
    }

    .row.tabl .checkout-left,
    .row.tabl .checkout-right {
        width: 100%;
    }

    .row.tabl .checkout-right {

        margin-top: 0;
    }


}

@media only screen and (max-width: 991px) {

    .home .data-plan-section {
        padding-bottom: 50px;
    }

    .support-page .col-lg-3.order-lg-1.order-2 {
        width: auto !important;
    }


    .features-content.bsn {
        align-items: center;
    }

    .device-check-form {
        max-width: 1000px;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

}


@media (min-width: 1025px) {
    .dm-md-block {
        display: block !important;
    }
    
    .dm-md-none {
        display: none !important;
    }
}


@media screen and (min-width: 600px){
    .marg{
    margin-top: 0 !important;
}
}