/* Navigation bar */

.bg-image {
    position: relative;
}

.bg-image .swis-png img {
    width: 77%;
    animation: rotatte 2s linear infinite alternate;
    animation-duration: 100s;
    position: absolute;
    top: -200px;
    left: -100px;
    z-index: -1;
}

@keyframes rotatte {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-2000deg);
    }
}

.navigation-bar {
    position: sticky !important;
    top: 0;
    background-color: #fff;
    border-radius: 0 0 50px 50px;
}

.navigation-bar img {
    width: 200px;
    height: auto;
}

.navigation-bar .navbar .nav-link a:active {
    border-bottom: 4px solid #ee1d23;
}

.navigation-bar a {
    color: #000;
    font-weight: 700;
}

.navigation-bar .btn {
    color: black;
    border: 2px dotted;
    padding: 4px 12px;
    font-weight: 600;
    background: none;
}

.navigation-bar .btn-contact {
    color: white;
    border: none;
    background-color: #ee1d23;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 600;
}

.navigation-bar .top-links {
    font-size: 25px;
}

.navigation-bar .top-links .fa {
    margin-right: 2px;
    color: #4e4f50;
}

/* Hero Section */
.hero-section .row .main-content p {
    margin-top: 30%;
    font-size: 40px;
    line-height: 42px;
    font-weight: 600;
}

.hero-section .row .text p {
    font-size: 33px;
    color: #6c6d70;
    line-height: 37px;
}

.hero-section .row .text .red {
    font-size: 40px;
    color: #ee1d23;
    font-weight: 900;
}

.hero-section .row .image {
    position: relative;
    z-index: -1;
}

.hero-section .row .image .burge-image {
    width: 100%;
    height: 100%;
    margin-top: 25px;
}

.hero-section .row .flag img {
    width: 20%;
    height: auto;
}

.all-stars img {
    width: 100px;
    height: 100px;
}

.star-1 {
    position: absolute;
    width: 140px;
    left: 48%;
    bottom: 66%;
    animation: shine linear infinite;
    animation-duration: 0.1s;
    transform: translate(-52%, -36%);
}

.star-2 {
    position: absolute;
    width: 150px;
    left: 50%;
    bottom: 38%;
    animation: shine linear infinite;
    animation-duration: 0.1s;
    transform: translate(-50%, -52%);
}

.star-3 {
    position: absolute;
    width: 150px;
    left: 50%;
    bottom: 26%;
    animation: shine linear infinite;
    animation-duration: 0.1s;
    transform: translate(-74%, -50%);
}

.star-4 {
    position: absolute;
    width: 150px;
    left: 51%;
    top: 71%;
    animation: shine linear infinite;
    animation-duration: 0.1s;
    transform: translate(-49%, -28%);
}

.star-5 {
    position: absolute;
    width: 150px;
    left: 44%;
    top: 79%;
    animation: shine linear infinite;
    animation-duration: 0.1s;
    transform: translate(-56%, -21%);
    ;
}

@keyframes shine {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.sticky-btn span {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

/* hading animation */
.main-content p {
    animation: color 5s linear infinite alternate;
}

@keyframes color {
    0% {
        color: #ec3237;
    }

    50% {
        color: #00a85a;
    }

    100% {
        color: #363435;
    }

}

/* About us */
.about-us {
    background-color: #000;
    color: #fff;
    padding: 65px;
}

.about-us .row .laptop-image img {
    width: 100%;
    height: 100%;
}

.full-sec {
    position: relative;

}

/* swiper for iphone */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile styling */
.mobile-center {
    text-align: -webkit-center;
}

.mobile {
    width: 100%;
    max-width: 155px;
    position: absolute;
    left: 79%;
    top: 62%;
    z-index: 1;
    transform: translate(-21%, -38%);
}

.iphone-14 {
    width: 100%;
    height: 315px !important;
    max-width: 185px !important;
    border: 7px solid;
    border-radius: 30px;
}

.iphone-front {
    width: 100%;
    height: 304px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
}

.speaker img {
    height: 20px;
    margin-bottom: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    border-radius: 20px 20px 0 0;
    width: 100%;
}

/* Swiper styling */
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.mySwiper-mbl .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
    margin-top: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: revert;
    height: 100%;
}

.heading .text .frist,
.heading .text .second {
    font-weight: 900;
    font-size: 45px;
    word-wrap: break-word;
}

.text::after {
    animation: leftright 1.5s linear infinite alternate;
    animation-delay: 1s;
    position: absolute;
}

@keyframes leftright {
    0% {
        width: 0%;
    }

    100% {
        width: 13%;
    }
}

.heading .text::after {
    content: "";
    display: block;
    width: 130px;
    height: 8px;
    margin-top: -11px;
    background-color: #ec3237;
}

.heading h5 {
    font-weight: 700;
}

.laptop {
    text-align: -webkit-center;
}

.laptop-screen {
    background-color: #000;
    width: 100%;
    max-width: 560px;
    height: 340px;
    border-radius: 25px 25px 0 0;
    border: 2px solid #9cc6d4;
    border-bottom: 0;
    padding: 10px 25px;
}

.stands {
    background-color: green;
    width: 100%;
    height: 25px;
    border-radius: 0 0 50px 50px;
    background: rgb(230, 230, 241);
    background: linear-gradient(165deg, rgba(230, 230, 241, 1) 0%, rgba(146, 146, 153, 1) 6%, rgba(204, 203, 203, 1) 20%, rgba(111, 118, 120, 1) 65%, rgba(171, 180, 182, 1) 83%, rgba(103, 115, 117, 1) 100%, rgba(0, 212, 255, 1) 100%);
    box-shadow: 0px -15px 16px 0px rgba(0, 0, 0, 0.56) inset;
    -webkit-box-shadow: 0px -15px 16px 0px rgba(0, 0, 0, 0.56) inset;
    -moz-box-shadow: 0px -15px 16px 0px rgba(0, 0, 0, 0.56) inset;
}

.click {
    width: 15%;
    height: 17px;
    border-radius: 0 0 45px 45px;
    background: rgb(74, 75, 75);
    background: linear-gradient(90deg, rgba(74, 75, 75, 1) 11%, rgba(195, 205, 207, 1) 48%, rgba(94, 101, 102, 1) 79%);
    border-radius: 0 0 55px 55px;
}

/* medis queries for Mobile size */
@media screen and (max-width:767px) {
    .hero-section .sticky-btn {
        width: 100% !important;
        max-width: 620px !important;
    }

    .laptop {
        display: none;
    }

    .mobile {
        position: relative;
        left: 0%;
        top: 0%;
        z-index: 0;
        transform: translate(-0, -0);
    }

    .bg-image .swis-png img {
        display: none;
    }

    .swiper-slide img {
        object-fit: cover;
    }

    .heading .text .frist,
    .heading .text .second {
        font-size: 40px;
    }

    .hero-section .row .main-content p {
        font-size: 26px;
        margin-top: 0;
        line-height: 29px;
    }

    .hero-section .row .text p {
        font-size: 26px;
        line-height: 30px;
    }

    .star-4 {
        position: absolute;
        width: 150px;
        left: 51%;
        top: 71%;
        animation: shine linear infinite;
        animation-duration: 0.1s;
        transform: translate(-49%, -28%);
    }

    .star-5 {
        position: absolute;
        width: 150px;
        left: 43%;
        top: 78%;
        animation: shine linear infinite;
        animation-duration: 0.1s;
        transform: translate(-56%, -22%);
    }
}

/* Media quries for Medium */
@media (max-width:992px) and (min-width:767px) {
    .swiper-slide img {
        object-fit: cover;
    }

    .mobile {
        display: none;
    }

    .bg-image .swis-png img {
        display: none;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .star-1 {
        left: 48%;
        bottom: 59%;
        transform: translate(-52%, -41%);
    }

    .star-2 {
        left: 50%;
        bottom: 30%;
        transform: translate(-50%, -70%);
    }

    .star-3 {
        left: 45%;
        bottom: 16%;
        transform: translate(-55%, -82%);
    }
}

@media (min-width:768px) and (max-width:991px) {
    .star-1 {
        left: 48%;
        bottom: 50%;
        transform: translate(-52%, -50%);
    }

    .star-2 {
        left: 50%;
        bottom: 16%;
        transform: translate(-50%, -84%);
    }

    .star-3 {
        left: 45%;
        bottom: 1%;
        transform: translate(-55%, -99%);
    }
}

@media (max-width:550px) {
    .star-2 {
        left: 50%;
        bottom: 16%;
        transform: translate(-50%, -84%);
    }

    .star-3 {
        left: 45%;
        top: 63%;
        transform: translate(-55%, -37%);
    }
}

/* 
.fixed .main-sec {
    top: 50%;
    right: -17%;
    position: fixed;
    transform: rotate(-90deg);
    z-index: 1;
} */


.fixed .main-sec .fa-phone {
    font-size: 18px;
    border: 1px solid #fff;
    padding: 5px 7px;
    color: #ee1d23;
    background-color: #fff;
    border-radius: 40px;
}

.fixed .main-sec .fa-whatsapp {
    font-size: 18px;
    padding: 5px 7px;
    color: #00a54f;
    background-color: #fff;
    border-radius: 40px;
}

.sticky-btn .btn-msge {
    color: black;
    border: none;
    font-size: 18px;
    border-radius: 25px;
    padding: 2px 12px;
    background-color: #c9d0df;
    margin-right: 12px;
}

.sticky-btn .btn-whatsapp {
    color: white;
    font-size: 18px;
    background-color: #00a54f;
    border: none;
    border-radius: 25px;
    margin-right: 12px;
    padding: 2px 12px;
}

.sticky-btn .btn-contact-us {
    color: white;
    font-size: 18px;
    background-color: #ee1d23;
    border: none;
    border-radius: 25px;
    padding: 2px 12px;
}

.btn-contact-us:hover {
    color: white;
    font-weight: 700;
    transition: 1s;
    background-color: #00a54f
}

.sticky-btn {
    width: 100%;
    max-width: 620px;
    border-radius: 30px;
    padding: 5px;
    background-color: #fcfdff;
    box-shadow: -1px 1px 21px -6px rgba(0, 0, 0, 0.81);
    -webkit-box-shadow: -1px 1px 21px -6px rgba(0, 0, 0, 0.81);
    -moz-box-shadow: -1px 1px 21px -6px rgba(0, 0, 0, 0.81);
}






























/* Buttons */


@media (min-width:250px) and (max-width:992px) {
    .social-icon {
        top: 40% !important;
        left: 80% !important;
        transform: translate(-20%, -60%) !important;
    }
}

.social-icon {
    top: 40%;
    left: 93%;
    position: fixed;
    transform: translate(-6%, -60%);
    z-index: 1;
}

.social-icon .fa {
    background-color: gray;
    color: #000;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 36px;

    border-radius: 50px;
    margin: 10px;
    border: 1px solid red;

}


.social-icon .fa-phone {
    background-color: red;
    color: white;
    padding: 15px 42px 47px 20px;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 36px;
    border-radius: 50px;
    margin: 0;
    animation-delay: 1s;
    animation: blink 1s infinite alternate;
}


.social-icon .fa-whatsapp {
    background-color: green;
    color: white;
    width: 40px;
    height: 40px;
    padding: 13px 45px 50px 17px;
    display: inline-block;
    text-align: center;
    font-size: 36px;
    border-radius: 50px;
    margin: 15px 0;
    animation-delay: 1.5s;
    animation: blink 1.5s infinite alternate;

}

@keyframes blink {
    0% {
        border: 1x solid black;
    }

    25% {
        border: 3px solid black;
    }

    50% {
        border: 5px solid black;
    }

    75% {
        border: 6px solid black;
    }

    100% {
        border: 8px solid black;
    }
}

.social-icon .fa-envelope-open {
    background-color: rgb(24, 64, 124);
    color: white;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    padding: 13px 50px 53px 14px;
    font-size: 36px;
    border-radius: 50px;
    animation-delay: 2s;
    animation: blink 2s infinite alternate;
}

.social-icon .fa:hover {
    color: #fff;
    transition: 1s;
    transform: rotate(-720deg);
}