* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #76c04d;
    --bg_color_2: #383435;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Work Sans", sans-serif;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
    font-family: "Outfit", sans-serif;
}

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;
}

nav::after {
    content: "";
    width: 78%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    z-index: -1;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.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(--white);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .logo img {
    margin-top: 0;
    width: 70px;
}

.logo img {
    width: 100px;
    margin-top: -38px;
}

.logo {
    position: relative;
}

.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: 0;
}

.navbar_nav ul .dropdown li a {
    padding: 10px 15px;
    display: block;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--white);
}

.navbar_nav ul .dropdown li:hover>a {
    color: var(--black);
}



.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 {
    border-radius: 50%;
    padding: 7px 12px;
    cursor: pointer;
    color: var(--white);
    border: 1px solid #fff;
}

.magnifying {
    background: #c9c9c9;
    padding: 11px;
}

.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;
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_img {
    position: relative;
    background-attachment: fixed;
    z-index: 9;
    padding: 10% 4%;
    color: var(--white);
    background-position: center center;
}

.banner_name_tittle span {
    color: var(--bg_color_2);
}

.banner_img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000096;
    background: linear-gradient(270deg, #00000000 0%, #000000b0 70.86%);
    z-index: -1;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    border: 1.5px solid #fff;
    border-radius: 50%;
    padding: 7px 11px;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 16px;
    z-index: 9;
    cursor: pointer;
    border: 1.5px solid #fff;
    border-radius: 50%;
    padding: 7px 11px;
}

.slick-vertical .slick-slide {
    border: none
}

.top_main {
    display: flex;
    justify-content: end;
    align-items: center;
}

.all_btn {
    background-color: var(--bg_color_2);
    color: var(--white);
    padding: 13px 25px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
    font-family: Rubik, sans-serif;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--bg_color);
    z-index: -1;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
}

.all_btn:hover {
    color: var(--white)
}

.top_num ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}


.top_num a,
.top_num i {
    color: var(--black);
}

.t_details span {
    display: block;
    font-size: 12px;
    color: var(--black);
}

.top_icon {
    padding: 2px 6px;
    border-radius: 50%;
}

.socal_media {

    display: flex;
    align-items: center;
    gap: 0 8px;

}

.top_head .socal_media {
    padding: 5px 4px;
}

.socal_media a {
    color: var(--black);
    padding: 2px 6px;
    border-radius: 50%;
}

.socal_media a:hover {
    color: var(--color);
}

.ab_home {
    display: flex;
}

.ab_img {
    width: 45%;
    float: left;
    position: relative;
    z-index: 9;
    padding-right: 25px;
    padding-left: 30px;
    margin-right: 50px;
    margin-bottom: 10px;
}

.ab_img img {
    border-radius: 5px;
}

.ab_img::before {
    content: "";
    width: 7px;
    height: 30%;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0px;
    background: var(--bg_color);
}

.ab_img::after {
    content: "";
    position: absolute;
    background: var(--bg_color);
    width: 7px;
    height: 60%;
    border-radius: 2px;
    bottom: 0;
    right: 0px;
}

.counter-area {
    position: absolute;
    left: 0;
    bottom: 30px;
    background-color: var(--white);
    padding: 18px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.counter-area .icon {
    margin-top: -50px;
}

.counter-area .counter {
    display: block;
    font-size: 40px;
    font-weight: bold;
}

.counter-area p {
    margin-bottom: 0;
    color: #6E777D;
    font-weight: 600;
}


.small_head {
    display: inline-block;
    color: var(--bg_color);
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
}

.small_head::after {
    content: "";
    position: absolute;
    width: 42px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, var(--bg_color), rgba(33, 38, 45, 0)) !important;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.products {
    padding: 80px 0;
    padding-left: 4%;
    background: #F6F6F6;
}

.pro_item a {
    display: block;
    position: relative;
    color: var(--black);
    padding-left: 20px;
    padding-bottom: 20px;
    transition: ease-in-out .5s;
}

.pro_text {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pro_item {
    margin: 10px;
}

.pro_item.slick-slide.slick-current.slick-active .pro_text {
    background-color: var(--bg_color);
    color: var(--white);
}

.pro_item.slick-slide.slick-current.slick-active a {
    padding-left: 0px;
    padding-bottom: 0px;
}

.insurance {
    padding: 150px 0;
    position: relative;
    z-index: 9;
    color: var(--white);
    background-attachment: fixed;
}

.insurance::after {
    content: "";
    width: 67%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    z-index: -1;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    opacity: .9;
}

.insurance .big_head {
    font-size: 45px;
    margin-bottom: 30px;
}

.youtube_link {
    position: relative;
}

.rounded-player-2 {
    border: 0;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    position: absolute;
    border-radius: 100%;
    background: var(--white);
    margin: 0 auto;
    display: inline-block;
    padding: 0;
    z-index: 1;
}

.rounded-player-2.position-center {
    top: 0;
    left: 28%;
    transform: translate(-50%, 54%);
}

.rounded-player-2.with-animation::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid var(--white);
}

.rounded-player-2.with-animation::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    animation: rippleBorder 2s linear 1s infinite;
}

.rounded-player-2.with-animation::before {
    -webkit-animation: rippleBorder 2s linear infinite;
    animation: rippleBorder 2s linear infinite;
}


.rounded-player-2 .play-icon {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg_color);
    font-size: 30px;
}


@keyframes rippleBorder {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 1;
    }

    75% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: 0.50;
    }

    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        opacity: 0;
    }
}


.author-box {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.author-box .image {
    position: relative;
    border-radius: 50%;
    padding: 5px;
    border: 2px dashed #fff;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
    width: 110px;
}

.author-box .image img {
    border-radius: 50%;
}

.author-box .author-info {
    position: relative;
    padding: 20px 20px 20px 60px;
    margin-left: -50px;
    background-color: #ebf1f5;
}

.author-info:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--bg_color);
    transition: all 300ms ease;
    content: "";
}

.test_item:hover .author-info:before {
    width: 100%;
}

.testimonial-name {
    position: relative;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    transition: all 300ms ease;
}

.author-box .testimonial-position {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    transition: all 300ms ease;
}

.test_item {
    overflow: hidden;
    border: 1px solid #b7b7b7;
    padding: 30px;
    margin: 15px;
    position: relative;
}

.test_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 00px;
    width: 200px;
    height: 180px;
    background-color: var(--bg_color);
    clip-path: polygon(100% 0, 0% 100%, 0 0);
    transform-origin: top right;
    transition: all 300ms ease;
    z-index: -1;
}


.line_animation {
    background-attachment: fixed;
    color: var(--white);
    padding: 150px 0;
    overflow: hidden;
    position: relative;
    z-index: 9;
    background-size: cover;
    background-position: center;
}

.line_animation::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    z-index: -1;
    opacity: .7;
}

.line_animation .title {
    margin: 0 20px;
    font-size: 116px;
    -webkit-text-stroke-color: #FFFBFB;
    color: transparent !important;
    -webkit-text-stroke-width: 1px;
    text-transform: uppercase;
    font-family: fantasy;
    margin: 0 40px;
}

.list-links-scroll {
    display: flex;
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: nowrap;
    animation-name: bzo-scroll;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes bzo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100%));
    }
}

.counter_section {
    padding: 80px 0;
}

.count_num {
    font-size: 100px;
    font-weight: bold;
}

.count-icon {
    display: flex;
    align-items: end;
    gap: 0 20px;
}

.count-title {
    font-size: 28px;
    font-weight: 600;
    position: relative;
}

.count-title::after {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    top: -10px;
    background-color: var(--bg_color);
}

.count_num .pluce {
    display: block;
    font-size: 50px;
    color: var(--bg_color);
    line-height: 15px;
}


.accordion-item {
    margin: 6px 0;
    background-color: transparent;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    padding-right: 25px;
    border: none;
    outline: none;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
    position: relative;
    background-color: var(--bg_color);
}

.accordion-header::after {
    content: "";
    width: 10px;
    height: 1.5px;
    position: absolute;
    right: 2%;
    top: 50%;
    background-color: #fff;
}

.accordion-header::before {
    content: "";
    width: 1.8px;
    height: 10px;
    position: absolute;
    right: 2.5%;
    top: 24.5px;
    background-color: #fff;
}

.accordion-header.active::before {
    content: "";
    width: 1.5px;
    height: 10px;
    position: absolute;
    right: 3.6%;
    top: 44%;
    background-color: #000;
    display: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #f1f1f1;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    margin: 10px 0;
}

.faq .img {
    padding-right: 50px;
}

.accordion {
    padding: 30px 0;
}

.contact_line {
    color: var(--white);
    padding: 20px;
}

.contact_line p {
    margin-bottom: 0;
    font-size: 25px;
}

.contact_line a {
    color: var(--white);
    font-size: 25px;
}

.contact_line i {
    margin-right: 10px;
    color: var(--bg_color);
}


.stretched_contant {
    padding: 0 50px;
}

.stretched_contant .big_head {
    font-size: 45px;
    line-height: 62px;
}

.malti_star {
    margin-top: 150px;
}

.contact input,
textarea,
select {
    width: 100%;
    padding: 18px 15px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    outline: none;
}

.contact form {
    background-color: var(--bg_color);
    padding: 50px;
    margin-right: 50px;
}

.contact form .big_head {
    margin-bottom: 10px;
    font-size: 35px;
    color: var(--white);
    text-align: center;
}

.contact {
    background-color: #e6e6e6;
    position: relative;
    z-index: 9;
    padding: 80px 0;
}

.contact_item {
    display: flex;
    gap: 16px;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    padding: 24px 24px 18px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: 20px 0;
    background-color: #dbdbdb;
}

.details-title {
    font-size: 20px;
    font-weight: 500;
    margin-top: -0.3em;
    margin-bottom: 8px;
    display: block;
    color: var(--black);
}

.contact-icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: var(--bg_color);
    border-radius: 50%;
    color: var(--white);
}

.contact_item a {
    color: var(--bg_color_2);
    font-weight: 600;
    font-size: 18px;
}

.contact_item p {
    color: var(--bg_color_2);
    font-size: 17px;
}

.client {
    padding: 80px 0;
}

.client_item {
    margin: 20px;
}

footer {
    background-color: #000;
    padding-top: 60px;
}

.footer_logo {
    text-align: center;
    color: var(--white);
    padding: 0 20%;
}

.footer_logo img {
    width: 130px;
    margin-bottom: 10px;
}

.footer_nav ul {
    display: flex;
    justify-content: center;
    gap: 5px 20px;
    margin: 36px 0;
    font-family: "Outfit", sans-serif;
    flex-wrap: wrap;
}

.footer_nav ul li a {
    color: var(--white);
    font-size: 17px;
    display: block;
}


.copy_right {
    padding: 18px 0;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}








.inner_text {
    position: absolute;
    bottom: 20%;
    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: 991px) {
    .nab_btn {
        display: none;
    }
}


@media only screen and (max-width: 780px) {

    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
        z-index: 999;
    }

    .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);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }
}


@media only screen and (max-width: 767px) {
    .logo img {
        width: 70px;
        margin-top: 0px;
    }

    nav::after {
        width: 60%;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 30px;
    }

    .insurance .big_head {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .line_animation {
        padding: 100px 0;
    }

    .line_animation .title {
        font-size: 80px;
    }

    .count_num {
        font-size: 50px;
    }

    .count-title {
        font-size: 20px;
    }

    .count_num .pluce {
        font-size: 30px;
    }

    .contact_line p {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .stretched_contant .big_head {
        font-size: 30px;
        line-height: normal;
    }

    .malti_star {
        margin-top: 0;
    }

    .contact_details {
        margin-top: 20px;
    }

    .footer_logo {
        padding: 0 0;
    }
}


@media only screen and (max-width: 650px) {
    .products {
        padding: 11px 0;
    }

    .my {
        margin: 40px 0;
    }

    .insurance {
        padding: 30px 0 180px;
    }

    .insurance::after {
        width: 90%;
        background-color: var(--bg_color);
        opacity: .5;
    }

    .contact_line {
        text-align: center;
    }

    .contact form {
        margin-right: 0;
    }

    .top_num ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media only screen and (max-width: 550px) {

    .line_animation .title {
        font-size: 55px;
    }

    .line_animation {
        padding: 50px 0;
    }

    .counter_section {
        padding: 48px 0;
    }

    .count_num {
        font-size: 32px;
    }

    .count-title {
        font-size: 16px;
    }

    .faq .img {
        padding-right: 0px;
    }

    .stretched_contant {
        padding: 0 0;
    }

    .stretched_contant .big_head {
        font-size: 24px;
    }

    .contact form {
        padding: 25px;
    }

    .footer_logo img {
        width: 116px;
    }

    .contact_item {
        margin: 5px 0;
    }
}