@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    background-color: #000;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
}

p {
    color: #e1e1e1;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Navbar section */

.nav {}

nav.nav div.logo {
    width: auto;
    height: 64px;
    flex: 0 0 auto;
}

nav.nav.nav div.logo img {
    height: 100%;
    width: auto;
}

section {
    padding: 80px 0;
}

nav .container,
.signup-btn-cart ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 15px;
    list-style: none;
    padding: 0;
}

nav.nav.nav div.logo a:hover {
    color: #00E676;
}

.nav-man {
    display: flex;
    align-items: center;
    gap: 50px;
}


.nav div.main_list ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    padding: 0;
position: relative;

}
.nav div.main_list ul ul.dropdown {
    position: absolute;
    top: 50px; 
    display: none;
    background: #000;
    right: 0;
    box-shadow: 0 0 11px #ffffff59;
    border-radius: 7px;
}
ul.dropdown li a {
    display: block;
    padding: 13px 20px !important;
    border-bottom: 1px solid #3d3d3d !important;
}

.nav div.main_list ul li:last-child {
    padding-right: 0rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #E3E3E3;
    line-height: normal;
    font-size: 16px;
    border-right: 1px solid #707070;
    padding: 0 20px;
}

.nav div.main_list ul li:last-child a {
    border: 0;
}

.nav div.main_list ul li a:hover {
    color: #075A97;
}


.comne-btn {
    background-color: #075A97;
    color: #fff;
    border-radius: 10px;
    padding: 8px 30px;
    border: 1px solid #075A97;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.bord-btn {
    background-color: transparent;
    color: #fff;
    border-radius: 10px;
    padding: 8px 30px;
    border: 1px solid #075A97;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.light-btn {
    background-color: #D9E5EE;
    color: #075F9A;
    border-radius: 10px;
    padding: 10px 30px;
    border: 1px solid #D9E5EE;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.bord-btn:hover {
    background-color: #075A97;
    color: #fff;
}

.comne-btn:hover {
    background-color: #fff;
    color: #075A97;
}


.navTrigger {
    display: none;
}

nav.nav {
    padding-top: 30px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-bottom: 1px solid #363433;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}



/* Media qurey section */



@media screen and (max-width:992px) {
    .navTrigger {
        display: block;
    }

    nav.nav div.logo{
        margin-left: 0;
        height: 44px;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
        display: none;
    }

    .nav div.show_list {
        height: auto;
        display: block;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: #000;
        /*same background color of navbar*/
        background-position: center top;
        padding-top: 30px;
        border-bottom: 1px solid #000;
        position: fixed;
        top: 85px;
        left: 0;

    }

        .nav div.main_list ul li {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: left;
        border-bottom: 1px solid #4a4a4a;
    }

    .nav div.main_list ul li a { 
        width: 100%;

        font-size: 16px;
padding: 16px 6px;
    }

    .nav div.media_button {
        display: block;
    }
    .signup-btn-cart ul {
        padding-right: 60px;
        gap: 5px;
    }
    nav.nav .comne-btn, nav.nav .bord-btn {
        padding: 4px 10px;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 40px;
    bottom: 0;
}

.navTrigger i {
    background-color: #075A97;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

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

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

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

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 15px;
    background-color: #000;
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
}




.hero-section-main {
    padding: 180px 0;
    background-image: url(../images/slider-img.png);
    background-size: cover;
    position: relative;
}

.hero-section-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000054;
}

.hero-section-main h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    text-align: center;
}

.hero-section-main p {
    color: #fff;
    font-size: 30px;
    text-align: center;
}

.search-form {
    background: #363636 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 15px #00000014;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.form-group {
    position: relative;
}

.search-form input {
    width: 100%;
    background-color: transparent;
    border: 0;
    padding: 10px;
}

.input-icon-left {
    position: absolute;
    top: 12px;
    left: 3px;
    height: 21px;
}

.fltr-list {
    display: flex;
    gap: 15px;
    color: #fff;
}

.fltr-list input {
    width: auto;
}

.fltr-list label {
    font-size: 16px;
    font-weight: 300;
    color: #AEAEAE;
}

.search-form .form-group {
    border-right: 1px solid #767676;
}

.hero-section-main p.normal-size {
    font-size: 16px;
    color: #e1e1e1;
}

.traval-esim {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.box-esim {
    text-align: center;
    background: #075F9A;
    border-radius: 15px;
    width: 100%;
    padding: 20px 0;
}

.box-esim img {
    height: 40px;
    margin-bottom: 15px;
}

.box-esim p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 600;

    margin: 0;
}

.section-heading p {
    font-size: 20px;
    font-weight: 300;
}

.sim-select-device {
    background: #111111 0% 0% no-repeat padding-box;
    border: 1px solid #565656;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.sim-select-device h3 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}

.sim-select-device select {
    background-color: #363636;
    border-radius: 26px;
    color: #AEAEAE;
    padding: 10px;
    width: 100%;
    border: 0;
}

select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/down_arrow.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 97% 17px;
}

.app-section h3 {
    color: #0A84D6;
    font-size: 20px;
    margin-bottom: 20px;
}

.app-link {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.video-play-home {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.tag-esim {
    position: absolute;
    right: 15px;
    bottom: 15px;
    max-width: 100%;
}

.video-play-home button {
    padding: 0;
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-letter {
    background: #075A97;
    padding: 50px 40px;
    position: relative;
    border-radius: 10px;
}

.news-letter::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/union.svg);
    background-repeat: no-repeat;
    background-position: bottom;
}

.subscribe-news .form-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.subscribe-news input {
    width: 100%;
    border: 1px solid #fff;
    border: 1px solid #FFFFFF;
    border-radius: 26px;
    padding: 10px;
    background-color: transparent;
}

.subscribe-news input::placeholder {
    color: #9BBDD5;
}

.subscribe-news label {
    color: #fff;
}

form.subscribe-news {
    position: relative;
    padding-right: 41px;
    padding-bottom: 50px;
}

form.subscribe-news::before {
    position: absolute;
    content: "";
    bottom: 0;
    top: 0;
    background-image: url(../images/newsletter-element-left.svg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 100% 40px;
}

.form-check-input[type=checkbox] {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 1px solid #008FA4;
    border-radius: 3px;
}

.form-check-input:checked[type=checkbox] {
    background-color: #075A97;
    border-color: #075A97;
    background-size: 10px;
    background-image: url(../images/check.svg);
    background-position: center;
}

.form-check {
    position: relative;
}

.subscribe-news .form-check-input[type=checkbox] {
    border: 1px solid #ffffff;
}

footer {
    padding-top: 80px;
}

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

footer ul li a {
    margin-bottom: 10px;
    display: inline-block;
}

footer a {
    font-size: 16px;
    font-weight: 300;
    color: #e1e1e1;
}

footer h3 {
    font-size: 16px;
    color: #e1e1e1;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 40px;
}

footer .logo {
    height: 50px;
    margin-bottom: 20px;
}

footer .logo img {
    height: 100%;
}

.bootom-ftr {
    margin-top: 60px;
    border-top: 1px solid #707070;
    padding: 20px 0;
}

.bootom-ftr p {
    margin-bottom: 0;
}

.login-user-section {
    background-image: url(../images/login-bg.png);
    position: relative;
    height: 100vh;
}

.login-user-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000ad;
}

.logo-header {
    background-color: #040f2d;
    text-align: center;
    padding: 10px 0;
}

.logo-header img {
    height: 70px;
}

.blur-main {
    border: 1px solid #AEAEAE;
    background: #d5d5d52e;
    border: 1px solid #AEAEAE;
    border-radius: 15px;
    opacity: 1;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    text-align: center;
    overflow: hidden;

}

.login-user-section h1 {
    margin-top: 50px;
}

.login-user-section form {
    margin-bottom: 100px;
}

.login-frm {
    padding: 0 60px;
}

.login-frm input,
.login-frm select,
.login-frm textarea {
    width: 100%;
    color: #fff;
    padding: 14px;
    background-color: #363636;
    border-radius: 10px;
    border: 1px solid #363636;
}

.login-tag-line {
    color: #AEAEAE;
    margin-bottom: 20px;
}

.frgt-pss a {
    color: #ededed;
    font-size: 12px;
}

.signup-line {
    text-align: center;
    font-size: 14px;
    color: #9D9D9D;
}

.signup-line a {
    color: #008FA4;
    font-weight: 600;
}

.input-right-icon {
    position: absolute;
    right: 10px;
    top: 20px;
}

.check-trems label {
    color: #fff;
}

.check-trems label a {
    color: #008FA4;
    font-weight: 600;
}

.otp-filds {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.otp-filds input {
    width: 60px;
}

.hero-section {
    margin-top: 70px;
    text-align: center;
}

table {
    width: 100%;
    font-size: 16px;
    border-collapse: separate;
    border-spacing: 0 16px;
}

table span {
    font-size: 12px;
}

table thead th {
    padding: 6px 10px;
    color: #DFDFDF;
}

table .comne-btn {
    width: 120px;
    padding: 8px 10px;
}

table td {
    vertical-align: middle;
    position: relative;
    padding: 6px 10px;
}

/* table td:after {
    content: "";
    width: 1px;
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    background-color: #eee;
  } */
table td:last-child:after {
    content: none;
}

table tbody td {
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
    color: #DFDFDF;
}

table tbody td:first-child {
    border-left: 1px solid #4d4d4d;
    border-radius: 10px 0px 0px 10px;
}

table tbody td:last-child {
    border-right: 1px solid #4d4d4d;
    border-radius: 0px 10px 10px 0px;
}

table tbody tr:hover {
    background-color: #262626;
}

table tbody td.data-size {
    color: #00C1DE;
}

.cuntry-flag {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    object-fit: cover;
}

.plan-detail-main {
    position: relative;
    background-image: url(../images/location-bg.png);
    background-size: cover;
    padding-top: 160px;
}

.plan-detail-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #000000d1;
}

.plan-detail-main::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    background: transparent linear-gradient(180deg, #11111100 0%, #000 100%);
}

.plan-detail-box {
    position: relative;
    z-index: 1;
    background: #363636;
    padding: 15px;
    border: 1px solid #ABABAB;
    border-radius: 16px;
    margin-bottom: 20px;
}

.plan-detail-box img.location-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 16px;
}

.plan-detail-box span {
    float: right;
}

.plan-detail-box h3 {
    font-size: 20px;
}

.plan-type-tag {
    background: #008FA4;
    border-radius: 40px;
    font-size: 14px;
    padding: 4px 8px;
}

.plan-detail-box h2 {
    color: #00C1DE;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-detail-box h2 span {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.plan-detail-box h4 {
    color: #F9F930;
    font-size: 18px;
    font-weight: 600;
}

.list-arrow-type {
    padding: 0;
    list-style: none;
}

.list-arrow-type li {
    color: #e0e0e0;
    font-size: 18px;
    padding-left: 43px;
    margin-bottom: 15px;
    font-weight: 300;
    background-image: url(../images/ul-arrow.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 10px 6px;
}

.two-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.two-btns label {
    font-size: 16px;
    color: #e0e0e0;
    display: inline-block;
    margin-bottom: 10px;
}

.network-coverage .accordion-item {
    background: #363636 0% 0% no-repeat padding-box;
    border: 1px solid #ABABAB;
    border-radius: 16px;
    overflow: hidden;
}

.network-coverage .accordion-button:focus {
    background: #363636;
    box-shadow: inset 0 -1px 0 #ABABAB;
    color: #FFFFFF;
}

.network-coverage .accordion-button:not(.collapsed) {
    background: #363636;
    box-shadow: inset 0 -1px 0 #ABABAB;
    color: #FFFFFF;
}

.network-sim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
}

.network-sim span {
    display: inline-block;
    width: 40px;
    flex: 0 0 auto;
    text-align: center;
}

.network-sim h6 {
    font-weight: 500;
    color: #7D7D7D;
    font-size: 16px;
    width: 150px;
    flex: 0 0 auto;
}

.border-b {
    box-shadow: inset 0 -1px 0 #ABABAB;
}

.network-sim h5 {
    font-weight: 500;
    color: #d9d9d9;
    font-size: 16px;
    width: 150px;
    flex: 0 0 auto;
}

.accordion-button::after {
    background-image: url(../images/down_arrow.svg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/down_arrow.svg);
}

.avable-device h2 {
    font-size: 30px;
    margin: 20px 0 40px;
}

.avable-device-tabs {
    margin-bottom: 40px;
    background: #363636;
    border: 1px solid #ABABAB;
    border-radius: 50px;
    max-width: 560px;
    flex-wrap: nowrap;
}

.avable-device-tabs button {
    background-color: transparent;
    padding: 10px 50px;
    color: #AEAEAE;
    border: 0;
}


.avable-device-tabs button.active img,
.avable-device-tabs button:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7476%) hue-rotate(328deg) brightness(94%) contrast(106%);
}

.avable-device-tabs button.active,
.avable-device-tabs button:hover {
    background: #AEAEAE;
    border-radius: 50px;
    color: #000;
}

.brnad-logo {
    margin-bottom: 20px;
}

.multipal-itema {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.custom-next-pre-btn button {
    background-color: transparent;
    padding: 0;
    border: 0;
}

.custom-next-pre-btn button.next-btn {
    transform: rotate(180deg);
}

.similr-plan-section .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slick-slide img {
    display: inline-block;
}

.step-data-plan h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 30px;
}

.steps-box {
    margin-top: 20px;
    padding: 20px;
    background: #363636;
    border: 1px solid #ABABAB;
    border-radius: 16px;
}

.steps-box img {
    max-width: 100%;
    margin-bottom: 20px;
}

.input-btn {
    position: absolute;
    right: 6px;
    top: 6px;
}

.faq-box {
    background: #363636 0% 0% no-repeat padding-box;
    border: 1px solid #ABABAB;
    border-radius: 16px;
    margin-bottom: 20px;
}

.faq-box h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 26px;
    gap: 15px;
    padding: 20px;
    margin: 0;
}

.faq-box h2 img {
    height: 40px;
}

.faq-box h2 a {
    font-size: 16px;
    color: #008BF1;
}

ul.faq-list {
    padding: 0;
    list-style: none;
}

ul.faq-list li a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #545454;
    color: #fff;
    background-image: url(../images/a-right.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: 98% 15px;
}

ul.faq-list li:last-child a {
    border-bottom: 0;
}


.heading-text {
    text-align: center;
    margin-bottom: 40px;
}

.heading-text h2 {
    font-size: 30px;
    font-weight: 600;
}

.heading-text p {
    margin: 0;
}

.upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.bg-img-section {
    padding: 160px 0;
    background-image: url(../images/bg-hero.png);
    position: relative;
    background-size: cover;
    background-position: center;
}

.bg-img-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #000000d1;
}

.bg-img-section a {
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
}

.section-heading h3 {
    font-size: 24px;
}

.video-box {
    background: #363636;
    border: 1px solid #ABABAB;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}

.video-box img {
    width: 100%;
    height: 240px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
}

.video-box h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
}

.video-box p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.top-up-hero h1 {
    font-size: 60px;
    font-weight: 600;
}

.e-sim-heighlight {
    margin-top: -70px;
    position: relative;
    margin-bottom: 50px;
}

.heighlight-box {
    background: #363636;
    border: 1px solid #ABABAB;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    margin-bottom: 20px;
}

.heighlight-box img {
    height: 40px;
    margin-bottom: 15px;
}

.heighlight-box p {
    margin: 0;
}


#stepper-mob {
    display: none;
}

#top-up .fullContainer {
    padding: 0 6.5rem;
    background: url(/wp-content/uploads/sites/11/2022/02/banner-top-up.png) right 0 no-repeat;
    background-position: 140% 44%;
    background-position: right center;
    background-size: cover;
}

.head {
    position: relative;
}

.badges-group {
    display: flex;
    margin-bottom: 2.5rem;
}

.badge-header {
    margin-right: 3.8rem;
}

.badges-tp {
    display: flex;
    position: relative;
}

.badge-tp {
    margin-right: 3rem;
}

.badge-tp img {
    max-width: none;
}

/* .apple {
background: white;
} */
.border-white {
    border: 1px solid white;
}

.google-hover,
.apple-hover {
    display: none;
}

.badge-tp:hover img.google,
.badge-tp:hover img.apple {
    display: none;
}

.badge-tp:hover img.google-hover,
.badge-tp:hover img.apple-hover {
    display: inline-block;
    /* border: 1px solid black;
border-radius: 0.5rem; */
}

.icons {
    display: flex;
    position: relative;
    text-align: center;
    width: auto;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.group-icon {
    display: flex;
}

.icon-header {
    width: 24.5rem;
    margin-right: 6rem;
}

.icon-header img {
    height: 6rem;
    width: auto;
}

.payment-text {
    font-size: 3.6rem;
    line-height: 4rem;
    margin-bottom: 0px;
}

.payment-icons {
    padding: 4rem 0 1rem;
    margin-left: 3rem;
    text-align: center;
}

.payment-group {
    display: inline-flex;
}

.payment-icon {
    margin-right: 4rem;
    margin-bottom: 3rem;
}

/* .badge-rounded {
border: 1px solid white;
border-radius: 1rem;
} */
.sub-text {
    font-size: 1.4rem;
    margin: 3rem 0 3rem -2.5rem;
}

#stepper {
    top: 9.7rem;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.05);
}

.admin-bar #stepper {
    top: 12.9rem;
}

#stepper .fullContainer {
    z-index: 1;
    overflow: initial;
}

#stepper .step-content>p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

#stepper p.off {
    color: #bebebe;
}



.steps .row>div>div>a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.steps .row>div>div>a+p {
    display: none;
}

.steps .step-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.steps .step-content img {
    width: 4rem;
    max-width: 4rem;
    position: relative;
    top: -2px;
}



.active .img-complete,
.active .img-inactive,
.complete .img-active,
.complete .img-inactive,
.inactive .img-complete,
.inactive .img-active {
    display: none;
}



.step-4 .step-content,
.step-4-mob .step-content {
    background: none !important;
}

.step-1,
.step-2,
.step-3,
.step-4 {
    position: relative;
}

.step-1-tab,
.step-2-tab,
.step-3-tab,
.step-4-tab {
    position: relative;
}

.step-1-tab::before,
.step-2-tab::before,
.step-3-tab::before {
    content: "";
    position: absolute;
    width: 103%;
    height: 2px;
    background-color: #fff;
    left: 100%;
    top: -40%;
    transform: translate(-50%, -50%);
}

.step-1-tab.col-on::before,
.step-2-tab.col-on::before,
.step-3-tab.col-on::before {
    background-color: #075A97;
}



.step-1-text,
.step-2-text,
.step-3-text,
.step-4-text {
    width: 100%;
    text-align: center;
}

.tooltip {
    display: inline-block;
    position: relative;
    text-align: left;
    opacity: 1;
}

.step-content::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    left: 50%;
    top: -70%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
}

.step-content::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000;
    border: 1px solid #fff;
    left: 50%;
    top: -70%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
}

.step-content.active::after {
    background-color: #075A97;
}

.step-content.active::before {
    border: 1px solid #075A97;
}


.tooltip .bottom {
    width: auto;
    top: 6rem;
    padding: 1rem;
    color: #FFF;
    background-color: #000000 !important;
    text-align: center;
    border-radius: 0.8rem;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
    width: 30rem;
}

.tooltip .bottom p,
.popup-title p {
    font-family: 'open_sansregular', "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
}

.popup-title p {
    text-align: center;
    padding: 3rem 5rem;
}

.bundle-item.pop-up {
    display: table !important;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: 85%;
    max-width: 35.5rem;
    height: initial !important;
    z-index: 700;
    padding: 0;
    margin: 0 auto;
}

.bundle-item-popup-close {
    top: 0.5rem;
    right: 0.5rem;
}

.steps .row>div>div:hover .tooltip .bottom {
    visibility: visible;
    opacity: 1;
}

.tooltip .bottom a {
    display: inline-block;
}

.tooltip .bottom i {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -1.2rem;
    width: 2.4rem;
    height: 1.2rem;
    overflow: hidden;
}

.tooltip .bottom i::after {
    content: '';
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    background-color: #000000;
}

#head-stepper {
    padding: 10.3rem 0 0 0;
}

#head-stepper .container {
    padding: 0;
    max-width: 100%;
}

#head-stepper .fullContainer {
    left: initial;
    right: initial;
    margin: 0;
    overflow: none;
    width: 100%;
    background: #f9f9f9;
}

#head-stepper .fullContainer a {
    font-family: 'open_sansregular', "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 2.4rem;
}

#head-stepper .banner {
    height: 38.5rem;
    background: url(/wp-content/uploads/sites/11/2021/09/esim-install-iphone.png) right center no-repeat;
    background-size: cover;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#head-stepper .banner h2 {
    margin-bottom: 1.4rem !important;
}

#head-stepper .banner h3 {
    width: auto;
}

#head-stepper .banner .play {
    margin-left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#head-stepper .banner .play .play-icon {
    padding: 0 2rem 0 0;
}

#head-stepper>.container .banner+div {
    display: flex;
    align-items: center;
    padding-left: 6%;
}

#head-stepper>.container .content {
    max-width: 56rem;
    padding-right: 1.5rem;
}

#head-stepper .exc-cont {
    display: flex;
    align-items: top;
}

#head-stepper .exc {
    width: 6rem;
}

#ubigi-slider {
    overflow: hidden;
}

#ubigi-slider .container .row>div+div {
    margin-bottom: -1px;
}



#ubigi-slider .slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

#ubigi-slider .slider .row {
    margin: 0;
    align-items: center;
}

#ubigi-slider .slider .row>div {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0;
}



#ubigi-slider .slider .head {
    margin-top: 3.5rem;
    margin-bottom: 2.8rem;
}

#ubigi-slider .slider .content-info {
    max-width: 54rem;
}

#ubigi-slider .slider p {
    margin-bottom: 2.4rem;
}

#ubigi-slider .slider .download div+div {
    margin: 0 2.8rem;
}

#anchor-step-4 .content-info {
    width: auto !important;
}



.slider .owl-item,
.slider .owl-item .item {
    float: left;
}



.slider .owl-dots {
    position: absolute;
    bottom: 0;
    top: initial;
    text-align: center;
    width: 100%;
}

.slider .owl-dots .owl-dot {
    background-color: transparent;
    border: 2px solid #707070;
    width: 16px;
    border-radius: 5rem;
    height: 16px;
    margin: 0 6px;
}

.slider .owl-dots .owl-dot.active,
.slider .owl-dots .owl-dot.active:hover {
    border: none;
    background-color: #008FA4;
    width: 32px;
}

.slider .owl-dots .owl-dot:hover {
    border: 0.2rem solid #008FA4;
    background-color: #000000;
    cursor: pointer;
}

.slider .next-arrow-step {
    width: 6rem;
    height: 6rem;
    right: 5rem;
    position: absolute;
    z-index: 10;
}

.slider .next-arrow-step a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.slider .owl-nav .owl-prev.disabled {
    display: none !important;
}

.slider .owl-nav .owl-next.disabled {
    display: block !important;
}

.slider.sl-s3-en .owl-nav .owl-next.disabled,
.slider.sl-s3-fr .owl-nav .owl-next.disabled,
.slider.sl-s3-jp .owl-nav .owl-next.disabled {
    display: none !important;
}

.slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
    height: 6rem;
    width: 3.1rem;
    border: none;
    position: absolute;
    z-index: 3;
    cursor: pointer;
}

.slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -3rem;
    z-index: 1;
}

.slider .owl-nav .owl-prev {
    background: url(/wp-content/uploads/sites/11/2021/09/arrow-left-slider.png) 0 0 no-repeat transparent;
    left: 6rem;
    background-size: cover;
}

.slider .owl-nav .owl-next {
    background: url(/wp-content/uploads/sites/11/2021/09/arrow-right-slider.png) 0 0 no-repeat transparent;
    right: 6rem;
    background-size: cover;
}

.slider .owl-nav span {
    display: none;
}

.screen {
    position: relative;
    display: inline-block;
}

.screen img {
    width: 24.1rem;
}

.screen p {
    display: none;
}

.screen img+img {
    position: relative;
    z-index: -1;
    margin-left: -24rem;
}

.top {
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

@keyframes slide {
    100% {
        margin-left: -12rem;
    }
}

/* .circle {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 0.8rem solid #e41c68;
    background-color: #e41c68;
    position: absolute;
} */

@keyframes circle {
    from {
        transform: scale(0.2);
    }

    to {
        transform: scale(0.5);
        opacity: 0.2
    }
}

.one {
    animation: circle 0.8s infinite ease-in-out;
}

.blk {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.blk a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.modal-title {
    display: none;
}

.modal-dialog {
    display: flex;
    align-items: center;
    height: 100%;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: none;
    opacity: 1;
    position: relative;
    top: 0;
    right: 0;
}

.close:hover,
.close:focus {
    color: #FFFFFF;
}

.modal-content {
    background-color: #000000;
}

.modal-header {
    border-bottom: none;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.modal-body {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 2.5rem;
    height: 0;
}

.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-body+p {
    display: none;
}

#payment-block .fullContainer {
    margin-top: -4rem;
}


.steps-dtl h2 {
    font-size: 50px;
    font-weight: 600;
}

@media screen and (max-width: 1650px) {
    #top-up .fullContainer {
        background-position: 90% 44%;
    }
}

@media screen and (max-width: 1544px) and (-webkit-max-device-pixel-ratio: 1.2) {
    .desktop-text-on {
        display: inline;
    }






}

@media screen and (max-width:1500px) and (-webkit-max-device-pixel-ratio: 1.25) {
    .icons {
        display: block;
    }

    .group-icon {
        margin-bottom: 4rem;
    }

    #top-up .fullContainer {
        padding: 0 6.5rem;
        background: url(/wp-content/uploads/sites/11/2022/02/top-up-tab.jpg) right 0 no-repeat;
        background-position: 90% 44%;
        background-position: right center;
        background-size: cover;
    }

}

@media screen and (min-width: 1133px) {
    .br-header-jp {
        display: none;
    }
}

@media screen and (min-width: 1043px) {
    .icon-header {
        margin-right: 4rem;
    }

    .br-french {
        display: none;
    }
}

@media screen and (min-width: 1260px) {
    .content-info {
        width: 45rem;
    }
}

@media screen and (max-width:1200px) {
    #stepper .steps .row>div:first-child {
        flex: 0 0 42%;
        max-width: 42%;
    }

    #stepper .steps .row>div+div {

        flex: 0 0 42%;
        max-width: 42%;
    }

    #stepper .steps .row>div:last-child {

        flex: 0 0 6%;
        max-width: 6%;
    }

    #head-stepper .exc {
        width: 12rem;
    }

    /* body.hidden-header #stepper .steps .row .step-content > div + p {
    top:70px;
} */



    .tooltip .bottom {
        display: none;
    }
}

@media screen and (max-width: 1260px) {
    #ubigi-slider .slider .content-info {
        width: 41rem;
    }
}

@media screen and (min-width: 1040px) {
    .br-header-1 {
        display: none;
    }
}

@media screen and (max-width: 1150px) and (min-width: 901px) {
    h1 {
        margin-top: 5.4rem;
    }

    .badges-tp,
    .badge-tp {
        display: inline;
    }

    .cta-tp {
        margin-top: 1.5rem;
        margin-right: 33.5%;
    }
}

@media screen and (max-width:1070px) {
    #top-up .fullContainer {
        background-position: 83% 44%;
    }
}

@media screen and (min-width:1024px) {
    .modal-dialog {
        max-width: 900px;
        margin: 1.75rem auto;
    }
}

@media screen and (max-width: 1090px) {
    #ubigi-slider .slider .content-info {
        width: 39.8rem;
    }
}

@media screen and (max-width:900px) {
    .min-900-block {
        display: none;
    }

    .max-900-block {
        display: block;
        margin: 0 auto;
        position: relative;
        margin-top: -3rem;
        bottom: initial;
    }

    .tooltip .bottom {
        display: none;
    }

    #top-up {
        padding-top: 11rem;
    }

    #top-up .fullContainer {
        background: url(/wp-content/uploads/sites/11/2020/06/download-ubigi-app-mobile.jpg) no-repeat;
        background-size: cover;
        background-position: 83%;
        text-align: center;
    }

    .filter {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        left: 0;
        top: 0;
    }

    .icons {
        margin-left: 10%;
    }

    .badges-group {
        display: inline-block;
    }

    .badge-header {
        margin-right: 0;
    }

    .apple-header {
        width: 22.2rem !important;
    }

    #stepper {
        display: none;
    }

    #stepper-mob {
        display: inline-flex;
        z-index: 100;
    }

    #stepper-mob .fullContainer {
        padding: 0 1rem 0 4rem;
    }

    #stepper-mob .steps .row {
        margin-left: 0;
    }

    #stepper-mob .steps .row>div:nth-child(4) {
        flex: 0 0 6%;
    }

    .mob-text-on {
        display: block;
        position: fixed;
        color: #008fa4;
        width: 100%;
        text-align: center !important;
        top: 17rem;
        background: transparent;
        left: 0;
        z-index: 100;
        margin: 0 auto;
        padding: 0 6% 0 6%;
    }

    .mob-text-off {
        display: none;
    }

    /* body.hidden-header #stepper-mob {
    top:-1px;
} */
    .logo-ubigi-download-app {
        margin-right: 0 !important;
    }

    #head-stepper {
        overflow: hidden;
    }

    #head-stepper>.container .content {
        max-width: 100%;
    }

    #head-stepper>.container .banner+div {
        order: 1;
        flex-basis: 100%;
        max-width: 100%;
        padding: 4rem;
        margin: 0 1rem;
    }

    #head-stepper .banner {
        order: 2;
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
    }

    #head-stepper .banner h2 {
        padding: 0 2rem;
    }

    #head-stepper .banner .play {
        margin: 0 auto;
        transform: none;
    }

    .play-icon img {
        width: 5rem;
    }

    .owl-item>div>div {
        display: flex !important;
        width: 103%;
    }

    .owl-stage {
        transform: translate3d(0px, 0px, 0px) !important;
    }

    #ubigi-slider .slider {
        overflow: hidden;
        margin-bottom: 4.5rem;
        padding-bottom: 0.8rem;
    }

    #ubigi-slider .slider .head {
        display: block !important;
        margin-top: 0;
    }

    #ubigi-slider .slider .row>div {
        order: 2;
        max-width: 100%;
        flex-basis: 100%;
        margin-left: 0;
        margin-bottom: 1.5rem;
    }

    #ubigi-slider .slider .content-info {
        max-width: 100%;
    }

    #ubigi-slider .slider .row>div+div {
        order: 1 !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        padding: 0 !important;
        margin-left: 1.5rem !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .step-1 {
        padding-left: 1rem !important;
    }

    #ubigi-slider .slider .step-1-1,
    #ubigi-slider .slider .step-1-2,
    #ubigi-slider .slider .step-1-3,
    #ubigi-slider .slider .step-1-4 {
        background: none;
    }

    #ubigi-slider .active {
        margin-top: 0px;
    }

    .owl-item {
        padding-top: 0;
    }

    .slider .owl-item {
        float: none;
    }

    .slider .owl-nav {
        display: none;
    }

    .slider .owl-dots {
        position: absolute;
        top: initial;
        bottom: 0;
        display: none;
    }

    .slider .download {
        display: block !important;
        margin-top: 4.5rem;
    }

    .slider .download div:first-child {
        margin-bottom: 2.5rem;
    }

    .slider .inactive {
        display: none;
    }

    .slider .screen {
        margin-bottom: 0;
    }

    .slider .btns {
        position: relative;
        bottom: initial;
        left: initial;
        margin-top: 3.5rem;
        display: none;
    }

    .slider .min-900-block {
        display: none !important;
    }

    .slider .owl-item:last-child .btns {
        margin-bottom: -1.5rem;
        margin-top: 4.5rem;
        display: block;
        width: auto;
        left: initial;
        right: initial;
    }

    #ubigi-slider .slider .content-info {
        width: auto;
    }

    .badges-tp {
        display: inline-flex;
        margin: 1rem 0;
    }

    .badge-tp {
        margin: 0 3rem 2rem 0;
    }

    #payment-block .fullContainer {
        margin-top: 0;
    }
}

@media screen and (min-width:860px) {
    .modal-header {
        position: absolute;
        right: -4.5rem;
        z-index: 10;
        top: -2.5rem;
    }
}

@media screen and (max-width:768px) {
    .modal-dialog {
        max-width: 100%;
        margin: 1.75rem auto;
    }
}

@media screen and (min-width:768px) {
    .modal-dialog {
        max-width: 700px;
        margin: 1.75rem auto;
    }
}

@media screen and (max-width: 670px) {
    .badges-tp {
        display: block;
    }

    .badge-tp {
        margin: 0 auto 2rem auto;
        width: fit-content;
    }

    .icons {
        display: inline-block;
        margin-left: 0;
    }

    .group-icon {
        display: initial;
    }

    .icon-header {
        margin-right: 0;
        margin-bottom: 4rem;
    }
}

@media screen and (max-width:480px) {
    .mob-text-on {
        top: 14.4rem;
    }

    /* body.hidden-header .mob-text-on {
    top: 78px;
} */
    #stepper-mob {
        top: 6.5rem;
    }

    #stepper-mob .fullContainer {
        padding: 0 1rem 0 4rem;
    }

    #stepper {
        top: 6.4rem;
    }

    #stepper .steps .row .step-content>div+p {
        top: 13.5rem;
    }
}

@media screen and (max-width:360x) {
    #stepper .steps .row>div:first-child {
        flex: 0 0 40%;
        max-width: 40%;
    }

    #stepper .steps .row>div+div {
        flex: 0 0 40%;
        max-width: 40%;
    }

    #stepper .steps .row>div:last-child {
        flex: 0 0 20%;
        max-width: 20%;
    }
}






.outerbox {
    background: #0C0C0C 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    border-radius: 30px;
    overflow: hidden;
}

.bord-right {
    border-right: 1px solid #707070;
}


.user-prfile {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #707070;
}

.user-prfile h2 {
    font-size: 20px;
}

.user-prfile a {
    color: #9E9E9E;
}

.user-img {

    width: 200px;
    height: 200px;
    padding: 20px;
    background-color: #343434;
    border-radius: 60px;
    margin: 0 auto 20px;
}

.user-img img {
    width: 100%;
    height: 100%;
    border-radius: 60px;
}
.account-menu-items{
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.account-menu-items li a{
    display: block;
    padding: 14px;
    color: #fff;
}
.account-menu-items li a.active{
    background-color: #363636;
}

.page-heading h2{
    font-size: 20px;
    margin: 30px 0 20px;
}


.form-switch .form-check-input {
    width: 40px;
    height: 20px;
    margin-left: -2.5em;
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
}


.notification-update{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-right: 60px;
}
.notification-update h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.notification-update h3 span{
    font-size: 14px;
    font-weight: 300;
    display: block;
    margin-top: 10px;
}



img.nav-img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 8px;
}
.containt-section{
    margin-top: 100px;
}
.containt-section h2{
    font-size: 30px;
}
.containt-section h3{
    font-size: 20px;
    font-weight: 600;
}
.containt-section p{
    margin-bottom: 40px;
    font-weight: 200;
}















@media only screen and (max-width: 1200px) {
    nav .container {
        max-width: 100%;
        padding: 0 15px;
        gap: 0px;
    }

    .nav div.main_list ul li a {
        padding: 0 6px;
    }
    .bg-img-section h1{
        font-size: 40px;
    }
    .nav div.main_list ul li a { 
    border-right: 0px solid #707070; 
}

}

@media only screen and (max-width: 992px) {
    .hero-section-main h1 {
        font-size: 36px;
    }

    .search-form {
        display: block;
        text-align: center;
        padding: 40px 20px;
    }

    .search-form input {
        border: 1px solid #767676;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .search-form .form-group {
        border-right: 0px solid #767676;
    }

    .search-form button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
       .input-icon-left {
    position: absolute;
    top: 14px;
    left: 6px;
    height: 19px;
    width: 20px;
}
.login-frm {
    padding: 0 20px !important;
}
    .signup-btn-cart ul {
        padding-right: 60px;
    }

    .hero-section-main h1 {
        font-size: 27px;
    }

    .hero-section-main h1 br {
        display: none;
    }

    .hero-section-main p {
        font-size: 18px;
    }

    .traval-esim {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .subscribe-news .form-group{
        display: block;
    }
    .subscribe-news .form-group button{
        margin-top: 15px;
        width: 100%;
    }form.subscribe-news::before {
        top: 100px;

    }
    .steps-dtl h2 {
        font-size: 28px; 
    }
    #ubigi-slider .slider p{
        margin-bottom: 15px;
    }
    .multipal-itema{
        grid-template-columns: repeat(1, 1fr);
    }
    .section-heading h2 {
        font-size: 28px; 
    }
    .container, .container-sm {
        max-width: 100%;
    }
    .avable-device-tabs button { 
    padding: 10px 30px; 
}
.two-btns{
    display: block;
}
.avatar-upload { 
    margin: 0px auto 50px;
}
section {
    padding: 50px 0;
}
.outerbox{
    padding-bottom: 20px;
}
.page-heading h2{
    padding-left: 20px;
}
.notification-update { 
    padding-right: 10px;
    padding-left: 20px;
}
.bootom-ftr .text-end{
    text-align: left !important;
    margin-top: 20px;
}
.app-link{
    margin-bottom: 20px;
}
}

@media only screen and (max-width: 400px) {
    nav.nav div.logo {
        margin-left: 0;
        height: 35px;
    }
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    max-height: 205px;
    margin: 50px auto;
  }
  .avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    bottom: 24px;
  }
  .avatar-upload .avatar-edit input {
    display: none;
  }
  .avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%; 
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
  } 
 
  .avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 60px;
    border: 12px solid #363636;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  :focus-visible {
    outline: #075A97 auto 1px;
    box-shadow: none;
    outline: 0;
}
  