.getTouch {
    display: flex;
    align-items: center;
    border: 1px solid #EEE;
    position: relative;
}

.getTouch h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #252525;
    line-height: 2rem;
}

.getTouch p {
    color: #666;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

ul.callInformation {
    line-height: 1.5rem;
}

ul.callInformation li {
    display: block;
}

ul.callInformation li a {
    display: block;
    color: #252525;
    border: 1px solid #eee;
    border-radius: 9px;
    margin: 1rem 0;
    padding: 10px 15px;
    width: fit-content;
    min-width: 70%;
}

ul.callInformation li a:hover {
    margin-left: 1rem;
    background: #252525;
    color: white;
    box-shadow: 17px 17px 86px 10px rgb(102 95 130 / 10%);
}

.formData br {
    display: none;
}

.formData label>span {
    display: block;
    color: #252525;
    font-size: 16px;
}

.formData textarea {
    display: block;
    width: 100%;
    clear: both;
    height: 150px;
    resize: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 14px;
    text-transform: capitalize;
    background: #f9f9f9;
    border: 1px solid #EEE;
    outline: none;
}

.formData label {
    width: 100%;
}

.formData textarea:focus {
    border-color: var(--main);
}

.formData input {
    border: 1px solid #EEE;
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 14px;
    width: 100%;
}

.formData .inside p {
    display: flex;
    gap: 10px;
}

.getTouch:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #EEE;
    margin: auto;
}


#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--main);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

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

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

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.aboutUs {
    background: url(../images/back.svg);
    position: relative;
    background-size: 150px;
    opacity: .9;
}

.aboutUs:after {
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(45deg, #ffb9b9, #3F51B5);
    top: 0;
    right: 0;
    filter: blur(131px);
    z-index: -1;
    opacity: .5;
}

.aboutUs .title {
    margin: 2rem 0;
}

.aboutUs .title span {
    font-weight: bold;
    font-size: 3rem;
    line-height: 4rem;
    text-transform: uppercase;
    color: var(--main);
    letter-spacing: 7px;
}

.aboutUs .title h2 {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #252525;
    text-transform: uppercase;
}

.aboutUs p {
    font-size: 15px;
    line-height: 1.5rem;
    margin: 1rem 0;
    color: #666;
}

.fadeBottom {
    position: absolute;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, #FFF, transparent);
    right: 0;
    bottom: 0;
    z-index: -1;
}

.aboutUs .image img {
    max-width: 80%;
    display: block;
    float: right;
}

.videoFrame {
    margin: 2rem auto;
    display: flow-root;
    /* border: 2px solid #EEE; */
    border-radius: 16px;
    padding: 2rem 0;
    position: relative;
}

.videoFrame video {
    width: 100%;
    height: auto;
}

header nav {
    display: block;
}

header nav li {
    display: inline-flex;
}

header {
    display: flex;
    align-items: center;
}

header nav li a {
    display: block;
    margin: 10px;
    color: #252525;
    font-size: 16px;
    text-transform: capitalize;
}


header.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 17px 17px 86px 10px rgb(102 95 130 / 10%);
    transition: all .3s ease-in-out;
    border-bottom: 2px solid var(--main);
}


header .container {
    display: flex;
    align-items: center;
}



.content {
    /* position: absolute; */
    top: 30%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    height: 60px;
    overflow: hidden;
    font-family: "Lato", sans-serif;
    font-size: 35px;
    line-height: 40px;
    color: var(--main);
    width: fit-content;
    margin: 0 auto;
}

.content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;
    padding: 0 40px;
    position: relative;
}

.content__container:before {
    content: "[";
    left: 0;
}

.content__container:after {
    content: "]";
    position: absolute;
    right: 0;
}

.content__container:after,
.content__container:before {
    position: absolute;
    top: 0;
    color: var(--main);
    font-size: 42px;
    line-height: 40px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.content__container__text {
    display: inline;
    float: left;
    margin: 0;
    color: #252525;
}

.content__container__list {
    margin-top: 0;
    padding-left: 225px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.content__container__list__item {
    line-height: 40px;
    text-align: center;
    margin: 0;
}

@-webkit-keyframes opacity {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes change {

    0%,
    12.66%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
        transform: translate3d(0, -25%, 0);
    }

    33.32%,
    45.98% {
        transform: translate3d(0, -50%, 0);
    }

    49.98%,
    62.64% {
        transform: translate3d(0, -75%, 0);
    }

    66.64%,
    79.3% {
        transform: translate3d(0, -50%, 0);
    }

    83.3%,
    95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

@keyframes opacity {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes change {

    0%,
    12.66%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
        transform: translate3d(0, -25%, 0);
    }

    33.32%,
    45.98% {
        transform: translate3d(0, -50%, 0);
    }

    49.98%,
    62.64% {
        transform: translate3d(0, -75%, 0);
    }

    66.64%,
    79.3% {
        transform: translate3d(0, -50%, 0);
    }

    83.3%,
    95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

.homeData p {
    width: 40%;
    margin: 9px auto;
    line-height: 1.5rem;
    color: #666;
    text-align: center;
}

.smartPhone h2 {
    background-image: url("../images/background.png");
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 200px;
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Steelfish Rg', 'helvetica neue',
        helvetica, arial, sans-serif;
    font-weight: 800;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    /* background-position: center; */
    /* background-size: 100%; */
    width: 100%;
    margin: 5rem auto 0;
}

.smartPhone p {
    text-align: center;
    height: 60px;
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

/* #img-1 {
    width: 100%;
    transition: transform 0.5s ease;
} */

.active {
    transform: scale(.7);
    transition: transform 0.5s ease;
}

.fadeTop {
    position: absolute;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, #FFF, transparent);
    right: 0;
    top: 0;
    z-index: -1;
}

/* .meteorBack:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1017%26quot%3b)' fill='none'%3e%3cpath d='M1209 109L1208 441' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M457 431L456 581' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M45 111L44 306' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1343 461L1342 124' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1349 257L1348 32' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1314 534L1313 780' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1168 7L1167 232' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M864 51L863 449' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1088 2L1087 171' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M357 30L356 -112' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M603 552L602 254' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1167 305L1166 146' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M747 440L746 684' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1189 344L1188 654' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M740 316L739 693' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M543 51L542 349' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1381 515L1380 721' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M241 493L240 282' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M187 541L186 385' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M588 299L587 639' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M883 129L882 427' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M721 396L720 590' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M15 365L14 118' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M467 185L466 -87' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M373 229L372 568' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1438 211L1437 -56' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1028 502L1027 649' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1293 419L1292 573' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M103 502L102 709' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M882 5L881 370' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M975 152L974 -151' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M645 288L644 625' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M224 174L223 557' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M221 524L220 147' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1019%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M825 290L824 -47' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1214 128L1213 -231' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1018%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1017'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1018'%3e%3cstop stop-color='rgba(227%2c 227%2c 227%2c 0)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(227%2c 227%2c 227%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='0%25' y1='0%25' x2='0%25' y2='100%25' id='SvgjsLinearGradient1019'%3e%3cstop stop-color='rgba(227%2c 227%2c 227%2c 0)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(227%2c 227%2c 227%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .40;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
} */

.meteorBack {
    position: relative;
}

.productsSize img {
    display: block;
    margin: 0 auto;
    width: auto;
    vertical-align: middle;
}

.productsSize {
    margin-bottom: 6rem;
}

.gradientCenter:before {
    content: '';
    position: absolute;
    background-image: linear-gradient(45deg, #f35d5d, #4147ff);
    right: 0;
    left: 0;
    width: 30%;
    height: 160px;
    top: 0;
    filter: blur(311px);
    margin: auto;
    bottom: 0;
    z-index: -2;
}

.gradientCenter {
    position: relative;
    display: flow-root;
}

.videoFrame:before {
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    height: 300px;
    background: linear-gradient(45deg, #ff4545, #1000ff);
    left: 0;
    margin: auto;
    z-index: -1;
    top: -50px;
    filter: blur(80px);
    opacity: .5;
}


#videoData {
    transition: transform 0.5s ease;
}


.gray {
    background-color: #e4e7ee;
}

.smartPhone.gray {
    position: relative;
    padding: 5rem 0;
}

.boxProduct {
    background: white;
    box-shadow: 17px 17px 86px 10px rgb(102 95 130 / 10%);
    padding: 2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    transform: scale(.95);
}

.boxProduct span {
    display: block;
}

.boxProduct strong {
    display: block;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    line-height: 2rem;
    height: 60px;
}

.boxProduct p {
    display: block;
    text-align: left;
    line-height: 1.5rem;
    font-size: 15px;
}

.boxProduct img {
    width: 250px;
    object-fit: cover;
    /* aspect-ratio: 1/1; */
    display: block;
    margin: 0 auto;
}

.boxProduct:hover {
    transform: scale(1);
}

.i-size img {
    width: 20%;
}

.i-size {
    text-align: center;
    margin: 7rem 0;
}

.i-size img {
    transition: transform .7s ease-in-out;
}

.formData input[type=submit] {
    background: #232323;
    color: white;
    padding: 10px;
}

.formData input[type=submit]:hover {
    box-shadow: none;
}

.logo img {
    width: 150px;
}



.centerTitle {
    text-align: left;
    width: 50%;
}

.smartPhone .centerTitle h2 {
    text-align: left;
    padding: 0 0 0 2rem;
}

.smartPhone .centerTitle p {
    text-align: left;
    padding: 0 2rem;
}

.mobilelist {
    padding: 3rem 2rem;
}

.mobilelist .item {
    background: white;
    border-radius: 20px;
    min-height: 500px;
    overflow: hidden !important;
    position: relative;
    transform: scale(.9);
    transition: all .3s ease-in-out;
}

.mobilelist .item img {
    position: absolute;
    bottom: -100px;
    max-width: max-content;
    left: -80px;
    right: 0;
    margin: auto;
    width: 26vw;
}

.mobilelist .item span {
    padding: 1rem 1rem 0;
    display: block;
    color: #666;
    font-size: 17px;
    font-weight: bold;
}

.mobilelist .item p {
    display: block;
    text-align: left;
    padding: 1rem;
    line-height: 1.5rem;
    color: #333;
}

.mobilelist .item:hover {
    transform: scale(1);
    box-shadow: 17px 17px 86px 10px rgb(102 95 130 / 10%);
}

.mobilelist .item .data p {
    text-align: left;
    /* line-height: 1; */
    margin: 0;
    padding: 0;
    height: auto;
    font-size: 14px;
    color: #666;
}

.mobilelist .item .data {
    padding: 10px 1rem;
}

.mobileMenu button.close {
    background: #f5f5f5;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.mobileMenu.active {
    left: 0;
    transform: translate(0, 0);
}

header.mobile {
    display: none;
}