* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #031b4e;
    --bg_color_2: #00bde0;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--bg_color);
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: var(--bg_color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    width: 160px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--white);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
    display: none;
}

.navbar_nav ul .dropdown li {
    padding: 10px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color_2);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    color: var(--white);
    border-radius: 50%;
    padding: 6px 10px;
    cursor: pointer;
    border: 2px solid #fff;
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.magnifying {
    background-color: #a8a8a8;
    padding: 10px 15px;
    cursor: pointer;
}

.magnifying:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}


.banner_item {
    position: relative;
}

.nextarrow {
    position: absolute;
    right: 3%;
    top: 50%;
    color: var(--bg_color);
    font-size: 18px;
    cursor: pointer;
    border: 2px solid #031b4e;
    border-radius: 50%;
    padding: 9px 15px;
}

.prevarrow {
    position: absolute;
    left: 3%;
    top: 50%;
    color: var(--bg_color);
    font-size: 18px;
    z-index: 9;
    cursor: pointer;
    border: 2px solid #031b4e;
    border-radius: 50%;
    padding: 9px 15px;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 2px 40px;
}

.all_btn {
    background: var(--bg_color_2);
    padding: 13px 40px;
    color: var(--white);
    font-size: 16px;
    position: relative;
    transition: 0.25s ease-in-out;
    border: none;
    z-index: 2;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: rgba(253, 253, 253, 0.467) 0px 2px 8px 0px;
}

.all_btn:before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: 0.5s ease-in-out;
}

.all_btn span {
    position: relative;
    z-index: 2;
}

.all_btn:hover:before {
    width: 100%;
}

.icon-content a,
.icon-content p {
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.icon-content span {
    color: var(--bg_color_2);
}

.top_details .icon img {
    width: 37px;
}

.socal_media a {
    font-size: 15px;
    color: var(--white);
    background-color: var(--bg_color);
    padding: 4px 8px;
    border-radius: 2px;
}

.hero {
    background-color: transparent;
    background-image: linear-gradient(180deg, #ffffff 0%, #93d3fd 100%);
    padding: 60px 0;
    position: relative;
}

.bg_img {
    position: absolute;
    top: 0;
    right: 0;
}

.bg_img img {
    width: 100%;
}

.banner_head_1 {
    background-color: var(--bg_color);
    display: inline-block;
    color: var(--white);
    padding: 2px 30px 4px;
    border-radius: 8px;
}

.banner_head_2 {
    font-size: 60px;
    font-weight: 700;
    display: block;
}

.bg_img_2 {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: .2;
}

.bannre_img img {
    margin: auto;
}

.head_banner .bannre_img {
    position: relative;
}

.cs_section_img {
    position: absolute;
    left: 5%;
    top: 1%;
    width: 12%;
}

.cs_section_img img {
    animation: spinAnimaiton 6s linear infinite;
}

@keyframes spinAnimaiton {
    0% {
        transform: rotateX(-20deg) rotateY(0deg);
    }

    75% {
        transform: rotateX(-20deg) rotateY(360deg);
    }

    100% {
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

.big_head {
    font-size: 35px;
    font-family: sans-serif;
    font-weight: 600
}

.features {
    padding: 100px 0 60px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.features_box {
    background-color: #fff;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.features_box span {
    display: block;
    font-size: 22px;
    margin: 10px 0;
    font-weight: 600;
}

.features_box img {
    width: 50px;
}

.products {
    padding: 80px 0;
    background-position: 70%;
}

.pro_head {
    display: block;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pro_img {
    position: relative;
}

.pro_img::after {
    content: "";
    position: absolute;
    bottom: 5%;
    right: 10%;
    border: 60px solid transparent;
    border-radius: 50%;
    background:
        linear-gradient(to right, rgb(255, 255, 255), white),
        linear-gradient(to right, #031b4e, #00bde0);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    width: 230px;
    height: 230px;
    padding: 12px;
}

.pro_img img {
    position: relative;
    z-index: 9;
}

.pro_img_small img {
    height: 150px;
    object-fit: contain;
    cursor: pointer;
    margin: auto;
}

.pro_img img {
    margin: auto;
}

.pro_item .pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.hot_img {
    position: relative;
}

.hot_text {
    position: absolute;
    width: 100%;
    top: 4%;
    text-align: center;
    font-size: 30px;
    padding: 0 30px;
    color: var(--bg_color);
    font-weight: 600;
    font-family: emoji;
}

.why_box {
    display: flex;
    text-align: right;
    margin-bottom: 70px;
}

.why_box .icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    background-color: var(--bg_color_2);
    border-radius: 50%;
    border: 2px solid var(--bg_color);
}

.d_choosetext {
    width: calc(100% - 105px);
    margin-right: 20px;
}



.why_box span {
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.why_box_left {
    margin-right: 80px;
}


.why_box2 {
    display: flex;
    margin-bottom: 70px;
}

.why_box2 .icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    background-color: var(--bg_color_2);
    border-radius: 50%;
    border: 2px solid var(--bg_color);
}

.d_choosetext {
    width: calc(100% - 105px);
    margin-left: 20px;
}


.why_box2 span {
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.why_box_right {
    margin-left: 80px;
}

.pro_right {
    background-color: #f4f7fc;
    padding: 15px;
}

.pro_name {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--bg_color);
    margin: 5px 0;
}

.pro_right a {
    color: var(--bg_color_2);
    font-size: 17px;
    font-weight: 600;
}

.pro_right img {
    height: 250px;
}

.left_img {
    position: sticky;
    top: 100px;
}

.contact_head {
    display: block;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    color: var(--bg_color);
}

.contact_head::after {
    content: "";
    width: 15%;
    height: 1.5px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--bg_color);
}

.contact input,
.contact select,
.contact textarea {
    background-color: transparent;
    width: 100%;
    margin-bottom: 15px;
    color: var(--d-text-color);
    border-style: solid;
    border-width: 1px;
    border-color: rgb(212, 212, 212);
    padding: 15px 20px;
    border-radius: 10px;
}

.contact_details {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 60px 80px;
    text-align: center;
    position: relative;
}

.contact_details::after {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    left: 0;
    background-color: var(--bg_color_2);
    border-radius: 0 30px 30px 0;
}

.contact_details::before {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    right: 0;
    background-color: var(--bg_color_2);
    border-radius: 30px 0 0 30px;
}

.contact_details li {
    text-align: left;
    margin: 40px 0;
    padding-bottom: 30px;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #d9d9d958;
    font-size: 18px;
}

.contact_details li a {
    color: var(--white);
}

.information span {
    font-size: 25px;
    font-weight: 600;
}

.contact_details li i {
    margin-right: 30px;

}

.main_head {
    padding: 0 25%;
}

.pro_item {
    margin: 5px;
}

.testmoinal {
    position: relative;
    background-color: #f7f7f7;
    padding: 90px 0;
}

.test_item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.test_item p {
    font-size: 20px;
    line-height: 35px;
}

.test_item {
    padding: 0 2%;
}

.testname {
    font-size: 20px;
    display: block;
    color: var(--bg_color);
    font-weight: 700;
}

.avatar1 {
    position: absolute;
    top: 9%;
    left: 26%;
    animation: move7 5s infinite linear;
}

.avatar2 {
    position: absolute;
    top: 25%;
    left: 15%;
    animation: move7 5s infinite linear;
    filter: blur(5px);
}

.avatar3 {
    position: absolute;
    bottom: 25%;
    left: 6%;
    animation: move7 5s infinite linear;
}

.avatar4 {
    position: absolute;
    bottom: 10%;
    left: 15%;
    animation: move7 6s infinite linear;
}

.avatar5 {
    position: absolute;
    top: 9%;
    right: 26%;
    animation: move7 5s infinite linear;
}

.avatar6 {
    position: absolute;
    top: 25%;
    right: 15%;
    animation: move7 5s infinite linear;
    filter: blur(5px);
}

.avatar7 {
    position: absolute;
    bottom: 25%;
    right: 6%;
    animation: move7 5s infinite linear;
}

.avatar8 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    animation: move7 6s infinite linear;
}

.testmoinal img {
    border-radius: 50%;
}

@keyframes move7 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }

    50% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }

    75% {
        -webkit-transform: translate(-15px, 8px);
        transform: translate(-15px, 8px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

footer {
    background: var(--bg_color);
    padding-top: 60px;
    color: #b7b7b7;
}

.foot_head {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.foot_logo p {
    font-size: 14px;
}

.foot_logo img {
    width: 200px;
    margin-bottom: 8px;
}

footer a {
    color: #b7b7b7;
}

footer a:hover {
    color: var(--bg_color_2);
}

.foot_product li {
    margin: 10px 0;
    font-size: 15px;
}

.foot_details a,
.foot_details p {
    display: block;
    color: var(--white);
}

.foot_details li {
    margin-bottom: 20px;
}

.foot_product ul {
    height: 240px;
    overflow: auto;
}


.foot_nav {
    border: 1px solid var(--white);
    border-radius: 50px;
    margin: 30px 0;
}

.foot_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.foot_nav ul li a {
    color: #b7b7b7;
    padding: 20px 30px;
    display: inline-block;
    font-size: 16px;
}


.copy_right {
    padding: 18px 0;
    border-top: 1px solid #fff;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}





















.inner_text {
    position: absolute;
    bottom: 30%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.inner_header img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


@media only screen and (max-width: 1200px) {
    .top_details .col-3 {
        display: none;
    }

    .nab_btn {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .navbar_nav ul li {
        padding: 20px 12px;
    }

    .banner_head_2 {
        font-size: 35px;
    }

    .pro_head {
        font-size: 30px;
    }

    .test_item {
        padding: 0 0;
    }

    .contact_details {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 50%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

}

@media only screen and (max-width: 768px) {
    .top_details {
        display: none;
    }

    .main_head {
        padding: 0 0;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
    }

    .inner_header img {
        height: 200px;
    }

    .my {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 600px) {
    .why_box_left {
        margin-right: 0px;
    }

    .why_box {
        margin-bottom: 30px;
    }

    .why_box_right {
        margin-left: 0;
    }

    .why_box2 {
        margin-bottom: 30px;
    }

    .test_item p {
        font-size: 16px;
    }

    .avatar3,
    .avatar1,
    .avatar2,
    .avatar4,
    .avatar5,
    .avatar6,
    .avatar7,
    .avatar8 {
        opacity: .2;
    }

    .big_head {
        font-size: 25px;
    }

    .pro_head {
        font-size: 22px;
    }

    .foot_nav ul li a {
        padding: 7px 16px;
    }

    .pro_name {
        font-size: 17px;
    }

    .pro_right {
        padding: 6px;
    }

    .pro_right img {
        height: 220px;
    }

    .navbar_nav {
        width: 100%;
    }

    .left_img {
        margin-bottom: 10px;
    }

    .banner_head_2 {
        font-size: 30px;
    }
    .features_box{
        padding: 15px;
    }

    *.animated {
        animation-duration: inherit !important;
    }
}