@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root */
:root {
    ---white: #ffffff;
    ---black: #222222;
    ---red: #f59e19;
    ---grey: #858585;
    ---light: #f8f8f8;
    ---yellow: #ffba00;
    ---line: #d4d4d4;
}

/* Root */

/* Body */
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    background-image: url(img/bac.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(---light);
}

::-webkit-scrollbar-thumb {
    background-color: var(---grey);
    height: 200px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(---red);
}

section {
    padding: 20px 120px;
}

/* Body */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0px;
    left: 0;
    height: 5px; /* Adjust thickness */
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(---red); /* Red color like deeptopdashing.com */
    transition: width 0.1s ease;
}

/* Scroll Progress Bar */

/*Arrow*/
#upper {
    font-size: 20px;
    color: var(---black);
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 2%;
    bottom: 2%;
    background-color: var(---white);
    box-shadow: 0px 0px 10px #2222221a;
    cursor: pointer;
    z-index: 7;
}

#upper:hover {
    color: var(---white);
    background-color: var(---red);
}

/*Arrow*/

/*Icone*/
.right-top-header {
    display: block;
    background: var(---red);
    box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.103);
    position: fixed;
    border-radius: 10px 0px 0px 10px;
    right: 0px;
    padding: 9px 20px;
    z-index: 6;
    bottom: 360px;
}

.right-top-header i {
    width: 33px;
    height: 33px;
    border-radius: 100px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(---black);
    margin: 10px 0px;
}

.right-top-header i:hover {
    color: var(---red);
}

/*Icone*/

/*Whatsapp*/
.whatsappsection .bigwhatsappbox {
    position: absolute;
    top: -420px;
    left: -100%;
    transition: 0.3s all linear;
}
.whatsappsection .bigwhatsappbox #clicking{
    font-size: 20px;
    color: var(---yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsappsection .bigwhatsappbox .all-data{
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
    width: 400px;
    height: 350px;
    border-radius: 20px;
}
.whatsappsection .bigwhatsappbox .all-data .whatsappbox a{
    display: flex;
    align-items: center;
    padding: 15px 15px;
}
.whatsappsection .bigwhatsappbox .all-data .whatsappbox img{
    width: 15%;
}
.whatsappsection .bigwhatsappbox .all-data .whatsappbox a h1{
    color: var(---black);
    font-size: 20px;
    font-weight: 500;
    margin-left: 15px;
}
.whatsappsection{
    position: relative;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 6;
}
.whatsappsection #clicking{
    width: 60px;
    height: 60px;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.178);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    color: var(---red);
    font-size: 18px;
    left: 30px;
}
.whatsappsection .bigwhatsappbox.active2{
    left: 30px;
    transition: 0.3s all linear;
}
/* Close icon style */
.bigwhatsappbox.iconactive i::before {
    content: "\f00d"; /* FontAwesome close icon */
    font-family: FontAwesome;
}
/*Whatsapp*/


/*Header*/
.header {
    background-color: transparent;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container .navbar .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container .navbar .link a {
    color: var(---black);
    font-size: 20px;
    font-weight: 500;
    padding: 0px 20px;
    background-color: transparent;
}

.header .container .navbar .link a:hover {
    color: var(---red);
}

.header .container .right {
    display: flex;
    align-items: center;
}

.header .container .right button {
    width: 170px;
    height: 70px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    background-color: var(---white);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.062);
    position: relative;
    z-index: 7;
    color: var(---white);
    border: 1px solid #85858541;
    cursor: pointer;
}

.header .container .right button:hover {
    border: 1px solid var(---red);
    box-shadow: 0px 10px 15px #f59d1927;
    transition: 0.2s all linear;
}

.header .container .right button::before {
    content: "";
    background-color: var(---red);
    width: 150px;
    height: 55px;
    position: absolute;
    left: 9px;
    top: 6px;
    border-radius: 10px;
    z-index: -1;
}

.header .container .right i {
    width: 50px;
    height: 50px;
    border: 1px solid var(---light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(---grey);
    cursor: pointer;
}

.header .container .right #speaker {
    margin-right: 20px;
}

.header .container .right i:hover {
    border: 2px solid var(---red);
    color: var(---red);
}

.header .container #menu {
    display: none;
    margin-right: 20px;
    z-index: 7;
}

.header .container .navbar.active {
    left: 0%;
    transition: 0.7s all linear;
}

.header .container .right .button i {
    display: none;
}

/*Header*/

/*Hero Area*/
.hero-area .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-area .container .text h6 {
    font-size: 18px;
    color: var(---white);
    background-color: var(---red);
    width: 260px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 5px;
}

.hero-area .container .text h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 500;
    letter-spacing: 0px;
    margin-top: 30px;
}

.hero-area .container .text h1 span {
    font-weight: 600;
    color: var(---red);

}

.hero-area .container .text p {
    font-size: 18px;
    color: var(---grey);
    font-weight: 500;
    line-height: 40px;
    margin-top: 20px;
}

.hero-area .container .text .hero-button {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.hero-area .container .text .hero-button button {
    width: 170px;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(---white);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.062);
    position: relative;
    z-index: 7;
    color: var(---white);
    border: 1px solid #85858541;
    cursor: pointer;
}

.hero-area .container .text .hero-button button:hover {
    border: 1px solid var(---red);
    box-shadow: 0px 10px 15px #f59d1927;
    transition: 0.2s all linear;
}

.hero-area .container .text .hero-button button::before {
    content: "";
    background-color: var(---red);
    width: 150px;
    height: 45px;
    position: absolute;
    left: 9px;
    top: 6px;
    border-radius: 10px;
    z-index: -1;
}

.hero-area .container .text .hero-button a {
    font-size: 16px;
    color: var(---black);
    font-weight: 500;
}
.hero-area .container .text .hero-button #buttonmargin{
    margin-left: 20px;
}

.hero-area .container .text .hero-button a:hover {
    color: var(---red);
}

.hero-area .container .image {
    position: relative;
}

.hero-area .container .image .search-area {
    position: absolute;
    right: 7%;
    top: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(---white);
    width: 270px;
    height: 150px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.185);
    border-radius: 0px 25px 25px 25px;
}

.hero-area .container .image .search-area::before {
    content: "";
    background-color: var(---red);
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    left: 10px;
    border-radius: 100px;
}

.hero-area .container .image .search-area h5 {
    font-size: 18px;
    color: var(---red);
    font-weight: 500;
}

.hero-area .container .image .search-area .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 225px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid var(---light);
    margin-top: 10px;
}

.hero-area .container .image .search-area .input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: 10px;
    font-weight: 400;
    color: var(---black);
    padding-left: 10px;
    padding-right: 10px;
}

.hero-area .container .image .search-area .input input::placeholder {
    color: var(---black);
}

.hero-area .container .image .search-area .input i {
    background-color: var(---red);
    width: 50px;
    height: 40px;
    border-radius: 0px 6px 6px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    font-size: 12px;
    cursor: pointer;
}

.hero-area .i1 {
    position: absolute;
    right: 35%;
    top: 5%;
    animation: bounce1 2s ease infinite;
}

.hero-area .i1 img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.123);
    border-radius: 100px;
}

.hero-area .i2 {
    position: absolute;
    right: 60%;
    top: 81%;
    animation: bounce2 2s ease infinite;
}

.hero-area .i2 img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.123);
    border-radius: 100px;
    background-color: transparent;
}

.hero-area .i3 {
    position: absolute;
    right: 6%;
    top: 18%;
    animation: bounce3 2s ease infinite;
}

.hero-area .i3 img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.123);
    border-radius: 100px;
}

@keyframes bounce1 {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce2 {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce3 {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/*Hero Area*/

/* offer */
.offer {
    margin-top: 100px;
}

.offer .heading {
    text-align: center;
}

.offer .heading h1 {
    font-size: 60px;
    font-weight: 500;
    color: var(---black);
}

.offer .heading h1 span {
    color: var(---red);
    font-weight: 600;
}

.offer .slider-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.offer .slider-box .slider {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(---white);
    width: 515px;
    height: 335px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.13);
    border-radius: 20px;
    cursor: pointer;
}

.offer .slider-box .slider:hover {
    transform: scale(1.1, 1.1);
    transition: 1s;
}

.offer .slider-box .box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.offer .slider-box .box .icon i {
    font-size: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(---light);
    border-radius: 100px;
    color: var(---red);
}

.offer .slider-box .box .text h1 {
    font-size: 25px;
    color: var(---black);
    font-weight: 600;
}

.offer .slider-box .box p {
    font-size: 16px;
    color: var(---grey);
    font-weight: 500;
    line-height: 30px;
    margin: 10px 0px;
}

.offer .slider-box .box .button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer .slider-box .box .button a {
    font-size: 16px;
    color: var(---black);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer .slider-box .box .button a i {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-left: 5px;
}

/* offer */

/*About Us*/
.abo {
    margin-top: 150px;
}

.abo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abo .container .text h5 {
    width: 250px;
    height: 50px;
    background-color: var(---red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(---white);
}

.abo .container .text h1 {
    font-size: 50px;
    color: var(---black);
    font-weight: 500;
    margin-top: 30px;
}

.abo .container .text h1 span {
    color: var(---red);
    font-weight: 600;
}

.abo .container .text p {
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    color: var(---grey);
    margin: 20px 0px;
}

.abo .container .image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abo .container .image::before {
    position: absolute;
    content: "";
    width: 700px;
    height: 800px;
    background-color: var(---red);
    border-radius: 150px;
    left: -31%;
    top: 10%;
    z-index: -7;
    transform: rotate(15deg);
    padding: 0px 0px;
    animation: spin 20s infinite linear;
    box-shadow: 0px 0px 70px #f59d194f;
}

.abo .container .text .m h6 {
    width: 250px;
    height: 50px;
    background-color: var(---light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 5px;
}

.abo .container .text .m p {
    font-size: 18px;
    color: var(---grey);
    font-weight: 500;
    line-height: 40px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*About Us*/

/*Testimonial*/
.tes {
    margin-top: 150px;
}

.tes h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 500;
    text-align: center;
}

.tes h1 span {
    color: var(---red);
    font-weight: 600;
}

.tes .tes-slider {
    margin-top: 100px;
}

.tes .tes-slider .box {
    width: 100%;
    padding: 20px 0px;
    padding-left: 20px;
    cursor: grab;
    border-right: 2px solid var(---line);
}

.tes .tes-slider .box .image-data {
    display: flex;
    align-items: center;
}

.tes .tes-slider .box .image-data img {
    border-radius: 20px;
    border: 3px solid var(---white);
    box-shadow: 0px 0px 15px #22222241;
}

.tes .tes-slider .box .image-data .text {
    margin-left: 20px;
}

.tes .tes-slider .box .image-data .text h2 {
    font-size: 30px;
    color: var(---black);
    font-weight: 600;
}

.tes .tes-slider .box .image-data .text p {
    font-size: 16px;
    color: var(---grey);
    font-weight: 500;
    margin-top: -0px;
}

.tes .tes-slider .box .image-data .text .icon {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.tes .tes-slider .box .image-data .text .icon i {
    font-size: 20px;
    color: var(---yellow);
    padding-right: 5px;
}

.tes .tes-slider .box p {
    font-size: 14px;
    color: var(---grey);
    font-weight: 500;
    line-height: 40px;
    margin-top: 20px;
}

/*Testimonial*/

/*Blogs*/
.blog {
    margin-top: 150px;
}

.blog h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 500;
    text-align: center;
}

.blog h1 span {
    color: var(---red);
    font-weight: 600;
}

.blog .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.blog .container .box {
    position: relative;
    text-align: center;
}

.blog .container .box .text {
    margin-top: 30px;
}

.blog .container .box .date {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    height: 70px;
    background-color: var(---red);
    border-radius: 10px;
    top: 55%;
    left: 19%;
}

.blog .container .box .date p {
    font-size: 25px;
    color: var(---white);
    font-weight: 600;
}

.blog .container .box h2 {
    font-size: 25px;
    font-weight: 600;
}

.blog .container .box button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin: 0px auto;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(---red);
    cursor: pointer;
}

.blog .container .box button i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 5px;
    animation: shake 2s ease infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

/*Blogs*/

/*Faqs*/
.faq {
    margin-top: 150px;
}

.faq h1 {
    font-size: 60px;
    color: var(---black);
    font-weight: 500;
    text-align: center;
}

.faq h1 span {
    color: var(---red);
    font-weight: 600;
}

.faq .container {
    display: block;
    margin-top: 100px;
}

.faq .container .accordian {
    margin: 30px 0px;
    cursor: pointer;
}

.faq .container .faq-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 130px;
    width: 100%;
    background-color: var(---light);
    border-radius: 20px 20px 0px 0px;
}

.faq .container .faq-box .left-data {
    display: flex;
    align-items: center;
}

.faq .container .faq-box .left-data h6 {
    color: var(---white);
    background-color: var(---red);
    height: 130px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0px 0px 0px;
    font-size: 45px;
}

.faq .container .faq-box .left-data h4 {
    margin-left: 30px;
    font-size: 25px;
    font-weight: 600;
    color: var(---black);
}

.faq .container .faq-box .down-arrow {
    font-size: 30px;
    margin-right: 30px;
    color: var(---black);
    cursor: pointer;
    transition: transform 0.5s linear;
}

.faq .container .faq-box .down-arrow.faq-active {
    transform: rotate(-180deg);
}

.faq .container .faq-box .down-arrow:hover {
    color: var(---red);
}

.faq .container .answer {
    background-color: var(---light);
    border-radius: 0px 0px 20px 20px;
    max-height: 0;
    overflow: hidden;
}

.faq .container .answer p {
    font-size: 20px;
    color: var(---grey);
    line-height: 50px;
    margin-left: 40px;
    padding: 20px 0px;
}

.faq .container .answer.faq-active {
    max-height: fit-content;
}

/*Faqs*/

/*Contact*/
.con {
    margin-top: 150px;
}

.con .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.con h1 {
    text-align: center;
    font-size: 70px;
    font-weight: 400;
    color: var(---black);
}

.con h1 span {
    color: var(---red);
    font-weight: 600;
}

.con #para-con {
    font-size: 20px;
    color: var(---grey);
    line-height: 40px;
    text-align: center;
    margin-top: 20px;
}

.con .container {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.con .container .left-data .icons {
    display: flex;
    align-items: center;
}

.con .container .left-data .i {
    width: 93px;
    height: 93px;
    border: 2px solid var(---red);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.con .container .left-data .text {
    margin-left: 10px;
}

.con .container .left-data .text h3 {
    font-size: 20px;
    color: var(---black);
    font-weight: 600;
}

.con .container .left-data .text p {
    font-size: 15px;
    color: var(---grey);
    font-weight: 500;
}

.con .container .left-data #phone {
    margin: 30px 0px;
}

.con .container form {
    background-color: transparent;
}

.con .container form .input-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.con .container form .input-top input {
    width: 335px;
    height: 80px;
    background-color: var(---light);
    border-radius: 10px;
    margin: 0px 10px;
    font-size: 16px;
    color: var(---black);
    padding-left: 15px;
    font-weight: 500;
}

.con .container form .input-top input::placeholder {
    color: var(---black);
}

.con .container form .center-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.con .container form .center-input select {
    width: 98%;
    height: 80px;
    background-color: var(---light);
    border-radius: 10px;
    margin: 0px 10px;
    margin-top: 20px;
    font-size: 16px;
    color: var(---black);
    padding-left: 15px;
    font-weight: 500;
}

.con .container form textarea {
    width: 98%;
    background-color: var(---light);
    border-radius: 10px;
    margin: 0px 10px;
    margin-top: 20px;
    font-size: 16px;
    color: var(---black);
    padding-left: 15px;
    padding-top: 15px;
    font-weight: 500;
    height: 120px;
    resize: vertical;
}

.con .container form textarea::placeholder {
    color: var(---black);
}

.con .container form button {
    width: 180px;
    height: 70px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(---white);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.062);
    position: relative;
    z-index: 7;
    color: var(---white);
    border: 1px solid #85858541;
    cursor: pointer;
    margin-left: 12px;
    margin-top: 15px;
}

.con .container form button:hover {
    border: 1px solid var(---red);
    box-shadow: 0px 10px 15px #f59d1927;
    transition: 0.2s all linear;
}

.con .container form button::before {
    content: "";
    background-color: var(---red);
    width: 160px;
    height: 55px;
    position: absolute;
    left: 9px;
    top: 6px;
    border-radius: 10px;
    z-index: -1;
}

#response-message {
    margin-top: 10px;
    font-weight: bold;
}

/*Contact*/

/*Footer*/
.footer {
    margin-top: 150px;
    background-color: var(---black);
}

.footer .image {
    display: flex;
    align-content: center;
    justify-content: center;
}

.footer .container .navbar {
    margin-top: 30px;
}

.footer .container .navbar .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .navbar .link a {
    color: var(---white);
    font-size: 20px;
    font-weight: 400;
    padding: 0px 20px;
    background-color: transparent;
}

.footer .container .navbar .link a:hover {
    color: var(---red);
}

.footer .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.footer .container .social i {
    font-size: 20px;
    color: var(---white);
    border: 2px solid var(---white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    cursor: pointer;
    margin-right: 10px;
}

.footer .container .social i:hover {
    color: var(---red);
    border: 2px solid var(---red);
}

.footer .last {
    display: flex;
    align-content: center;
    justify-content: center;
    border-top: 2px solid #f8f8f838;
    margin-top: 30px;
}

.footer .last p {
    font-size: 20px;
    color: var(---white);
    margin-top: 18px;
}

/*Footer*/

/*About us Page*/
.about-hero {
    background-image: url(img/aboutbanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .container h1 {
    color: var(---white);
    text-align: center;
    font-size: 60px;
    font-weight: 500;
}

.aboutus-section {
    margin-top: 150px;
}

.aboutus-section .container .aboutus-image {
    border-radius: 20px;
    width: 750px;
    height: 750px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.288);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-section .container .aboutus-image img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(---white);
}

.aboutus-section .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.aboutus-section .container .text h1 {
    font-size: 70px;
    font-weight: 500;
}

.aboutus-section .container .text p {
    font-size: 18px;
    color: var(---grey);
    line-height: 40px;
    margin-top: 20px;
}

.aboutus-section .container .text .option {
    display: block;
    margin-top: 30px;
}

.aboutus-section .container .text .option .point {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.aboutus-section .container .text .option .point i {
    background-color: var(---red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    width: 30px;
    height: 30px;
    border-radius: 100px;
    font-size: 12px;
}

.aboutus-section .container .text .option .point p {
    color: var(---black);
    font-size: 18px;
    font-weight: 500;
    margin-top: 0px;
    margin-left: 10px;
}

/*About us Page*/

/*Service Banner*/
.service-hero img {
    width: 100%;
}

.offer #sliderbox-col2 {
    margin-top: 40px;
}

/*Service Banner*/

/*contact pages*/
.contact-hero {
    background-image: url(img/contactbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero .container h1 {
    color: var(---white);
    font-size: 60px;
    font-weight: 500;
    line-height: 70px;
}

.contact-hero .container h1 b {
    color: var(---red);
}

/*contact pages*/

/*Blogpages*/
.heroblog {
    background-image: url(img/aboutbanner.jpg);
    text-align: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroblog h1 {
    font-size: 100px;
    font-weight: 600;
    color: var(---white);
}

/*Blogpages*/

/*--------------Blog Posting page------------*/
.blogposter .container img {
    width: 100%;
}

.blogposter .container .text h1 {
    font-size: 50px;
    font-weight: 500;
    margin-top: 30px;
}

.blogposter .container .text {
    margin-top: 50px;
}

.blogposter .container .text p {
    font-size: 20px;
    color: var(--lightgrey);
    font-weight: 500;
    line-height: 50px;
}

.blogposter .container #imageposter {
    margin-top: 30px;
}

/*--------------Blog Posting page------------*/



/* media quries */
@media (max-width:1813px) {
    .hero-area .container .text h1 {
        font-size: 50px;
    }

    .abo .container .text h1 {
        font-size: 45px;
    }

    .abo .container .text p {
        font-size: 15px;
    }
}

@media (max-width:1772px) {
    section {
        padding: 20px 100px;
    }

    .offer .slider-box .slider {
        width: 500px;
    }

    .aboutus-section .container .aboutus-image {
        width: 700px;
        height: 700px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 80px;
    }

    .hero-area .container .image {
        width: 750px;
    }

    .hero-area .container .image img {
        width: 100%;
    }

    .offer .slider-box .slider {
        width: 470px;
    }

    .offer .slider-box .box p {
        font-size: 14px;
    }

    .abo .container .text p {
        font-size: 14px;
    }

    .abo .container .image {
        width: 650px;
    }

    .blog .container .box img {
        width: 450px;
    }

    .aboutus-section .container .aboutus-image {
        width: 650px;
        height: 650px;
    }

    .aboutus-section .container .text p {
        font-size: 16px;
    }

    .aboutus-section .container .text h1 {
        font-size: 60px;
    }
}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }

    .hero-area .i3 {
        right: 0%;
        top: 15%;
    }

    .hero-area .container .image {
        width: 700px;
    }

    .hero-area .container .text h1 {
        font-size: 55px;
    }

    .hero-area .container .text p {
        font-size: 16px;
        margin-top: 10px;
    }

    .hero-area .container .text .hero-button {
        margin-top: 20px;
    }

    .offer .slider-box .slider {
        width: 440px;
    }

    .con .container form .input-top input {
        width: 300px;
    }
}

@media (max-width:1486px) {
    .hero-area .container .image {
        width: 700px;
    }

    .hero-area .container .text h6 {
        font-size: 12px;
        color: var(---white);
        background-color: var(---red);
        width: 200px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-weight: 600;
        letter-spacing: 3px;
    }

    .offer .slider-box .slider {
        width: 400px;
    }

    .offer .slider-box .box p {
        font-size: 12px;
    }

    .abo .container .image {
        width: 600px;
    }

    .abo .container .image img {
        width: 100%;
    }

    .abo .container .text .m p {
        font-size: 16px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
    }

    .abo .container .image::before {
        width: 500px;
        height: 500px;
        left: -25%;
        top: 10%;
    }

    .abo .container .text h1 {
        font-size: 40px;
        margin-top: 20px;
    }

    .abo .container .text h5 {
        width: 170px;
        height: 50px;
        border-radius: 5px;
        font-size: 14px;
        letter-spacing: 5px;
    }

    .blog .container .box img {
        width: 400px;
    }

    .blog .container .box .date {
        top: 52%;
        left: 13%;
    }

    .con .container form .input-top input {
        width: 270px;
    }

    .aboutus-section .container .aboutus-image {
        width: 600px;
        height: 600px;
    }

    .aboutus-section .container .text p {
        font-size: 14px;
        margin-top: 10px;
    }

    .aboutus-section .container .text .option .point p {
        font-size: 16px;
    }
}

@media (max-width:1430px) {
    .hero-area .container .text h1 {
        font-size: 40px;
    }

    .abo .container .text p {
        font-size: 12px;
        line-height: 40px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }

    .hero-area .container .image {
        width: 650px;
    }

    .con .container form .input-top input {
        width: 230px;
    }
}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }

    .header .container .navbar .link a {
        font-size: 16px;
        padding: 0px 15px;
    }

    .hero-area .container .image {
        width: 600px;
    }

    .hero-area .container .text h1 {
        font-size: 35px;
    }

    .hero-area .container .text p {
        font-size: 14px;
    }

    .hero-area .i1 {
        width: 60px;
        height: 60px;
        top: 8%;
    }

    .hero-area .i2 {
        width: 60px;
        height: 60px;
    }

    .hero-area .i3 {
        width: 60px;
        height: 60px;
    }

    .hero-area .container .image .search-area {
        position: absolute;
        right: 7%;
        top: 70%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: var(---white);
        width: 220px;
        height: 130px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.185);
        border-radius: 0px 25px 25px 25px;
    }

    .hero-area .container .image .search-area .input {
        width: 180px;
    }

    .hero-area .container .image .search-area h5 {
        font-size: 16px;
    }

    .offer .slider-box .slider {
        width: 380px;
    }

    .offer .heading h1 {
        font-size: 50px;
    }

    .offer {
        margin-top: 130px;
    }

    .abo {
        margin-top: 130px;
    }

    .abo .container .text p {
        margin: 10px 0px;
    }

    .abo .container .text h1 {
        font-size: 35px;
    }

    .abo .container .image {
        width: 550px;
    }

    .abo .container .text .m p {
        font-size: 12px;
        line-height: 30px;
    }

    .tes .tes-slider .box p {
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }

    .tes .tes-slider .box .image-data img {
        width: 140px;
        height: 140px;
    }

    .tes .tes-slider .box .image-data .text h2 {
        font-size: 25px;
    }

    .tes .tes-slider .box .image-data .text p {
        font-size: 12px;
        color: var(---grey);
        font-weight: 500;
        margin-top: -0px;
    }

    .tes .tes-slider .box .image-data .text .icon {
        margin-top: 0px;
    }

    .tes {
        margin-top: 130px;
    }

    .blog .container .box .date {
        width: 250px;
        left: 14%;
        top: 48%;
    }

    .blog .container .box .date p {
        font-size: 20px;
    }

    .blog .container .box img {
        width: 350px;
    }

    .blog .container .box h2 {
        font-size: 20px;
    }

    .blog {
        margin-top: 130px;
    }

    .faq .container .answer p {
        font-size: 16px;
        color: var(---grey);
        line-height: 50px;
        margin-left: 20px;
        padding: 15px 0px;
    }

    .faq {
        margin-top: 130px;
    }

    .con .container form .input-top input {
        width: 200px;
    }

    .con {
        margin-top: 130px;
    }

    .footer {
        margin-top: 130px;
    }

    .aboutus-section .container .aboutus-image {
        width: 580px;
        height: 580px;
    }

    .aboutus-section {
        margin-top: 130px;
    }
}

@media (max-width:1200px) {
    .offer .slider-box .slider {
        width: 350px;
    }

    .offer .slider-box .box p {
        font-size: 10px;
        line-height: 25px;
        margin-top: 5px 0px;
    }

    .offer .slider-box .box .icon {
        margin-bottom: 10px;
    }

    .offer .slider-box .box .text h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 600;
    }

    .abo .container .image {
        width: 500px;
    }

    .abo .container .text p {
        font-size: 10px;
        line-height: 30px;
    }

    .aboutus-section .container .aboutus-image {
        width: 500px;
        height: 500px;
    }
}

@media (max-width:1100px) {
    .offer .slider-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .offer .slider-box .slider {
        width: 330px;
        margin: 10px 10px;
    }

    .offer .slider-box .box .button a {
        font-size: 14px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

    .header .container .navbar {
        background-color: transparent;
        position: absolute;
        width: 100%;
        left: -110%;
        top: 16%;
        transition: 0.7s all linear;
        z-index: 10;
    }

    .header .container .navbar .link a:hover {
        background-color: var(---red);
        color: var(---white);
    }

    .header .container .navbar .link #home:hover {
        border-radius: 0px 10px 0px 0px;
    }

    .header .container .navbar .link #con:hover {
        border-radius: 0px 0px 10px 0px;
    }

    .header .container .navbar .link {
        display: block;
        background-color: var(---white);
        box-shadow: 0px 0px 10px #ff2d291a;
        width: 200px;
        border-radius: 0px 10px 10px 0px;
    }

    .header .container .navbar .link a {
        display: block;
        line-height: 70px;
    }

    .header .container .right #menu {
        display: inherit;
    }

    .hero-area .container {
        display: block;
    }

    .hero-area .container .image {
        width: 100%;
    }

    .hero-area .container .text h1 {
        font-size: 65px;
        color: var(---black);
        font-weight: 500;
        letter-spacing: 0px;
    }

    .hero-area .container .text p {
        font-size: 20px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
        margin-top: 20px;
    }

    .offer .heading h1 {
        font-size: 40px;
    }

    .offer {
        margin-top: 100px;
    }

    .abo {
        margin-top: 100px;
    }

    .abo .container {
        display: block;
    }

    .abo .container .image {
        width: 100%;
    }

    .abo .container .image::before {
        position: absolute;
        content: "";
        width: 700px;
        height: 800px;
        border-radius: 150px;
        left: -31%;
        top: 10%;
    }

    .abo .container .text {
        margin-top: 30px;
    }

    .abo .container .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 500;
        margin-top: 30px;
    }

    .abo .container .text p {
        font-size: 16px;
        line-height: 40px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 250px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 5px;
    }

    .abo .container .text .m p {
        font-size: 18px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
    }

    .tes .tes-slider .box p {
        font-size: 10px;
        line-height: 25px;
    }

    .tes .tes-slider .box .image-data img {
        width: 120px;
        height: 120px;
        border-radius: 10px;
    }

    .tes .tes-slider .box .image-data .text {
        margin-left: 10px;
    }

    .tes .tes-slider .box .image-data .text h2 {
        font-size: 20px;
    }

    .tes .tes-slider .box .image-data .text p {
        font-size: 10px;
    }

    .tes {
        margin-top: 100px;
    }

    .tes .tes-slider {
        margin-top: 65px;
    }

    .tes h1 {
        font-size: 50px;
    }

    .tes h1 span::before {
        bottom: 12px;
    }

    .blog .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blog .container .box {
        margin: 20px 20px;
    }

    .blog h1 {
        font-size: 50px;
    }

    .blog {
        margin-top: 100px;
    }

    .blog .container {
        margin-top: 65px;
    }

    .faq .container .answer p {
        font-size: 14px;
        color: var(---grey);
        line-height: 40px;
        margin-left: 20px;
        padding: 15px 0px;
    }

    .faq h1 {
        font-size: 50px;
    }

    .faq .container {
        margin-top: 65px;
    }

    .faq {
        margin-top: 100px;
    }

    .con .container {
        display: block;
    }

    .con .container form {
        margin-top: 30px;
    }

    .con .container form .input-top input {
        width: 100%;
        height: 80px;
    }

    .con .container form .center-input select {
        width: 100%;
    }

    .con .container form textarea {
        width: 97%;
    }

    .con {
        margin-top: 100px;
    }

    .con h1 {
        font-size: 50px;
    }

    .con .container {
        margin-top: 65px;
    }

    .con #para-con {
        font-size: 18px;
        line-height: 30px;
        margin-top: 15px;
    }

    .con .container form {
        width: 100%;
    }

    .footer {
        margin-top: 100px;
    }

    .aboutus-section .container {
        display: block;
    }

    .aboutus-section .container .aboutus-image {
        width: 100%;
        height: 100%;
    }

    .aboutus-section .container .text {
        margin-top: 30px;
    }

    .aboutus-section {
        margin-top: 100px;
    }

    .about-hero .container h1 {
        font-size: 50px;
    }

    .whatsappsection #clicking{
        left: 20px;
    }
    .whatsappsection .bigwhatsappbox {
        top: -400px;
    }
    .whatsappsection .bigwhatsappbox.active2{
        left: 20px;
    }
}

@media (max-width:880px) {
    .tes .tes-slider .box p {
        font-size: 7px;
        line-height: 25px;
    }

    .faq .container .faq-box {
        height: 100px;
    }

    .faq .container .faq-box .left-data h6 {
        height: 100px;
        width: 100px;
        font-size: 35px;
    }

    .faq .container .faq-box .left-data h4 {
        margin-left: 15px;
    }

    .faq .container .answer p {
        font-size: 12px;
        color: var(---grey);
        line-height: 35px;
        margin-left: 20px;
        padding: 15px 0px;
    }
}

@media (max-width:820px) {
    .hero-area .container .text h1 {
        font-size: 50px;
        color: var(---black);
        font-weight: 500;
        letter-spacing: 0px;
    }

    .hero-area .container .text p {
        font-size: 18px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
        margin-top: 10px;
    }

    .hero-area .container .image {
        width: 100%;
    }

    .offer {
        margin-top: 80px;
    }

    .offer .slider-box {
        margin-top: 80px;
    }

    .abo {
        margin-top: 80px;
    }

    .abo .container .text h1 {
        font-size: 45px;
        color: var(---black);
        font-weight: 500;
        margin-top: 30px;
    }

    .abo .container .text p {
        font-size: 14px;
        line-height: 40px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .blog {
        margin-top: 80px;
    }

    .blog .container {
        margin-top: 80px;
    }

    .faq {
        margin-top: 80px;
    }

    .faq .container {
        margin-top: 80px;
    }

    .con {
        margin-top: 80px;
    }

    .con .container {
        margin-top: 80px;
    }

    .footer {
        margin-top: 80px;
    }

    .aboutus-section {
        margin-top: 80px;
    }
}

@media (max-width:780px) {

    section {
        padding: 20px 10px;
    }

    .abo .container .text h1 {
        font-size: 38px;
        color: var(---black);
        font-weight: 500;
        margin-top: 30px;
    }

    .abo .container .text p {
        font-size: 12px;
        line-height: 40px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 250px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 5px;
    }

    .abo .container .text .m p {
        font-size: 16px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
    }

    .blog .container .box .date {
        left: 15%;
        top: 48%;
    }

    .faq .container .faq-box .left-data h4 {
        margin-left: 15px;
        font-size: 20px;
    }

    .faq .container .faq-box .left-data h6 {
        font-size: 30px;
    }

    .faq .container .answer p {
        font-size: 10px;
    }

    .about-hero .container h1 {
        font-size: 40px;
    }
    .blogposter .container .text h1 {
        font-size: 30px;
        margin-top: 30px;
    }
    .blogposter .container .text p {
        font-size: 16px;
        line-height: 40px;
    }
}

@media (max-width:690px) {
    .hero-area .container .text h1 {
        font-size: 40px;
        color: var(---black);
        font-weight: 500;
        letter-spacing: 0px;
    }

    .hero-area .container .text p {
        font-size: 16px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
        margin-top: 10px;
    }

    .hero-area .i1 {
        width: 60px;
        height: 60px;
        top: 13%;
        right: 40%;
    }

    .hero-area .i2 {
        width: 60px;
        height: 60px;
        right: 57%;
        top: 85%;
    }

    .hero-area .i3 {
        width: 60px;
        height: 60px;
        right: 2%;
    }

    .hero-area .container .image .search-area {
        position: absolute;
        right: 5%;
        top: 76%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: var(---white);
        width: 190px;
        height: 100px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.185);
        border-radius: 0px 25px 25px 25px;
    }

    .hero-area .container .image .search-area .input {
        width: 140px;
        height: 35px;
        margin-top: 5px;
    }

    .hero-area .container .image .search-area h5 {
        font-size: 14px;
    }

    .hero-area .container .image .search-area .input i {
        height: 35px;
        font-size: 9px;
    }

    .hero-area .container .text h1 {
        font-size: 40px;
    }

    .hero-area .container .text h1 span::before {
        height: 20px;
    }

    .hero-area .container .text p {
        font-size: 14px;
    }

    .ser h1 span::before {
        bottom: 7px;
        height: 10px;
    }

    .ser h1 {
        font-size: 30px;
    }

    .ser .container {
        margin-top: 50px;
    }

    .ser {
        margin-top: 50px;
    }

    .offer .heading h1 {
        font-size: 30px;
    }

    .offer {
        margin-top: 50px;
    }

    .offer .slider-box {
        margin-top: 50px;
    }

    .abo {
        margin-top: 50px;
    }

    .abo .container .image::before {
        position: absolute;
        content: "";
        width: 600px;
        height: 500px;
        background-color: var(---red);
        border-radius: 150px;
        left: -50%;
        top: 10%;
    }

    .tes .tes-slider .box {
        margin: 0px auto;
        padding-left: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .tes .tes-slider .box #para {
        text-align: center;
    }

    .tes {
        margin-top: 50px;
    }

    .tes h1 {
        font-size: 30px;
    }

    .tes .tes-slider {
        margin-top: 50px;
    }

    .blog h1 {
        font-size: 30px;
    }

    .blog {
        margin-top: 50px;
    }

    .blog .container {
        margin-top: 50px;
    }

    .faq h1 {
        font-size: 30px;
    }

    .faq {
        margin-top: 50px;
    }

    .faq .container {
        margin-top: 50px;
    }

    .con h1 {
        font-size: 30px;
    }

    .con #para-con {
        font-size: 16px;
    }

    .footer .container {
        display: block;
    }

    .footer .container .social {
        justify-content: left;
    }

    .footer .container .navbar .link {
        display: block;
    }

    .footer .container .navbar .link a {
        display: block;
        padding: 0px 0px;
        line-height: 50px;
    }

    .footer {
        margin-top: 50px;
    }

    .footer .image {
        display: block;
    }

    .footer .last p {
        font-size: 16px;
    }

    .aboutus-section {
        margin-top: 50px;
    }
}

@media (max-width:650px) {
    .tes .tes-slider .box p {
        font-size: 12px;
        line-height: 25px;
    }

    .faq .container .answer p {
        font-size: 8px;
        padding: 5px 0px;
        line-height: 25px;
    }
}

@media (max-width:600px) {
    .hero-area .container .text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 500;
        letter-spacing: 0px;
    }

    .hero-area .container .text p {
        font-size: 12px;
        color: var(---grey);
        font-weight: 500;
        line-height: 30px;
        margin-top: 10px;
    }

    .hero-area .container .text h6 {
        font-size: 12px;
        color: var(---white);
        background-color: var(---red);
        width: 180px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .abo .container .text h1 {
        font-size: 35px;
        color: var(---black);
        font-weight: 500;
        margin-top: 30px;
    }

    .abo .container .text p {
        font-size: 10px;
        line-height: 30px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 250px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 5px;
    }

    .abo .container .text .m p {
        font-size: 14px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
    }

    .faq .container .faq-box .left-data h4 {
        margin-left: 15px;
        font-size: 15px;
    }

    .faq .container .faq-box .left-data h6 {
        font-size: 20px;
        width: 80px;
        height: 80px;
    }

    .faq .container .faq-box {
        height: 80px;
    }

    .faq .container .faq-box .down-arrow {
        font-size: 20px;
        margin-right: 20px;
    }

    .con .container form .input-top input {
        height: 60px;
        font-size: 14px;
        padding-left: 10px;
        border-radius: 5px;
    }

    .con .container form .center-input select {
        font-size: 14px;
        padding-left: 10px;
        height: 60px;
    }

    .con .container form textarea {
        font-size: 14px;
    }

    .aboutus-section .container .text h1 {
        font-size: 50px;
    }

    .aboutus-section .container .text p {
        font-size: 12px;
        color: var(---grey);
        line-height: 40px;
        margin-top: 20px;
    }
}

@media (max-width:550px) {
    .header .container .right button {
        width: 130px;
        height: 60px;
        font-size: 14px;
    }

    .header .container .right button::before {
        width: 110px;
        height: 45px;
    }

    .header .container .right .button {
        position: relative;
        background-color: transparent;
    }

    .header .container .right .button i {
        display: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .container .right .button button {
        position: absolute;
        right: 0;
        top: 110%;
        display: none;
    }

    .header .container .left .navbar .link {
        width: 150px;
    }

    .header .container .left .navbar .link a {
        line-height: 60px;
        font-size: 16px;
    }

    .hero-area .i1 {
        width: 40px;
        height: 40px;
        top: 13%;
        right: 40%;
    }

    .hero-area .i2 {
        width: 40px;
        height: 40px;
        right: 57%;
        top: 85%;
    }

    .hero-area .i3 {
        width: 40px;
        height: 40px;
        right: 2%;
    }

    .hero-area .container .image .search-area {
        right: 0%;
        top: 70%;
        width: 150px;
        height: 80px;
        border-radius: 0px 15px 15px 15px;
    }

    .hero-area .container .image .search-area::before {
        width: 6px;
        height: 6px;
        left: 5px;
        top: 5px;
    }

    .hero-area .container .image .search-area .input {
        width: 110px;
        height: 30px;
        margin-top: 5px;
    }

    .hero-area .container .image .search-area .input input {
        font-size: 8px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-area .container .image .search-area h5 {
        font-size: 12px;
    }

    .hero-area .container .image .search-area .input i {
        height: 30px;
        font-size: 8px;
        width: 35px;
    }

    .offer {
        margin-top: 30px;
    }

    .offer .slider-box {
        margin-top: 30px;
    }

    .abo {
        margin-top: 30px;
    }

    .abo .container .text h1 {
        font-size: 30px;
        color: var(---black);
        font-weight: 500;
        margin-top: 20px;
    }

    .abo .container .text p {
        font-size: 9px;
        line-height: 30px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 250px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 5px;
    }

    .abo .container .text .m p {
        font-size: 12px;
        color: var(---grey);
        font-weight: 500;
        line-height: 40px;
    }

    .tes {
        margin-top: 30px;
    }

    .blog {
        margin-top: 30px;
    }

    .blog .container {
        margin-top: 30px;
    }

    .faq {
        margin-top: 30px;
    }

    .faq .container {
        margin-top: 30px;
    }

    .con .container form textarea {
        width: 96%;
    }

    .con {
        margin-top: 30px;
    }

    .con .container {
        margin-top: 30px;
    }

    .footer {
        margin-top: 30px;
    }

    .footer .container {
        margin-top: 30px;
    }

    .footer .last p {
        font-size: 12px;
    }

    .contact-hero .container h1 {
        color: var(---white);
        font-size: 40px;
        font-weight: 500;
        line-height: 50px;
    }

    .contact-hero {
        height: 300px;
    }

    .heroblog {
        height: 200px;
    }

    .heroblog h1 {
        font-size: 60px;
        font-weight: 600;
        color: var(---white);
    }
}

@media (max-width:500px) {
    .header .container img {
        width: 80%;
    }

    .abo .container .image::before {
        position: absolute;
        content: "";
        width: 500px;
        height: 400px;
        background-color: var(---red);
        border-radius: 100px;
        left: -50%;
        top: 10%;
    }

    .tes .tes-slider .box p {
        font-size: 10px;
        line-height: 25px;
    }

    .con .container form .input-top input {
        height: 60px;
        font-size: 10px;
        padding-left: 10px;
        border-radius: 5px;
    }

    .con .container form .center-input select {
        font-size: 10px;
        padding-left: 10px;
        height: 60px;
        margin-top: 10px;
    }

    .con .container form textarea {
        font-size: 10px;
        margin-top: 10px;
    }

    .con #para-con {
        font-size: 14px;
        line-height: 25px;
    }

    .aboutus-section .container .text h1 {
        font-size: 40px;
    }

}

@media (max-width:430px) {
    .hero-area .container .text h1 {
        font-size: 30px;
    }

    .hero-area .container .text h1 span::before {
        height: 15px;
    }

    .hero-area .container .text p {
        font-size: 10px;
        line-height: 30px;
    }

    .hero-area .container .text .hero-button button {
        width: 140px;
        height: 60px;
        font-size: 12px;
    }

    .hero-area .container .text .hero-button button::before {
        width: 120px;
        height: 45px;
        position: absolute;
        left: 9px;
        top: 6px;
        border-radius: 5px;
        z-index: -1;
    }

    .hero-area .container .text .hero-button a {
        font-size: 14px;
        margin-left: 10px;
    }

    .offer {
        margin-top: 10px;
    }

    .offer .slider-box {
        margin-top: 10px;
    }

    .abo {
        margin-top: 10px;
    }

    .abo .container .image::before {
        position: absolute;
        content: "";
        width: 400px;
        height: 300px;
        background-color: var(---red);
        border-radius: 100px;
        left: -50%;
        top: 15%;
    }

    .abo .container .text h1 {
        font-size: 25px;
        color: var(---black);
        font-weight: 500;
        margin-top: 20px;
    }

    .abo .container .text p {
        font-size: 7px;
        line-height: 30px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 200px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 4px;
    }

    .abo .container .text .m p {
        font-size: 10px;
        color: var(---grey);
        font-weight: 500;
        line-height: 30px;
    }

    .abo .container .text h5 {
        width: 130px;
        height: 40px;
        background-color: var(---red);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 5px;
        color: var(---white);
    }

    .tes .tes-slider .box .image-data img {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        border: 2px solid var(---white);
    }

    .tes .tes-slider .box .image-data .text .icon i {
        font-size: 16px;
    }

    .tes .tes-slider .box #para {
        font-size: 8px;
    }

    .tes {
        margin-top: 10px;
    }

    .tes .tes-slider {
        margin-top: 10px;
    }

    .blog {
        margin-top: 10px;
    }

    .blog .container {
        margin-top: 10px;
    }

    .faq {
        margin-top: 10px;
    }

    .faq .container {
        margin-top: 10px;
    }

    .faq .container .faq-box {
        height: 60px;
        border-radius: 10px;
    }

    .faq .container .faq-box .left-data h6 {
        font-size: 16px;
        width: 60px;
        height: 60px;
        border-radius: 10px 0px 0px 0px;
    }

    .faq .container .faq-box .left-data h4 {
        margin-left: 10px;
        font-size: 12px;
    }

    .faq .container .answer p {
        margin-left: 10px;
    }

    .faq .container .accordian {
        margin: 15px 0px;
    }

    .con .container form textarea {
        width: 95%;
    }

    .con .container form .input-top input {
        height: 50px;
        font-size: 10px;
        padding-left: 5px;
    }

    .con .container form .center-input select {
        font-size: 10px;
        padding-left: 5px;
        height: 50px;
    }

    .con .container form textarea {
        font-size: 10px;
        padding-left: 8px;
        padding-top: 8px;
        border-radius: 5px;
    }

    .con {
        margin-top: 10px;
    }

    .con .container {
        margin-top: 30px;
    }

    .con #para-con {
        font-size: 12px;
        line-height: 20px;
        margin-top: 15px;
    }

    .con .container form button {
        width: 130px;
        height: 50px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 500;
        background-color: var(---white);
        box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.062);
        position: relative;
        z-index: 7;
        color: var(---white);
        border: 1px solid #85858541;
        cursor: pointer;
        margin-left: 12px;
        margin-top: 15px;
    }

    .con .container form button::before {
        content: "";
        width: 115px;
        height: 40px;
        position: absolute;
        left: 7px;
        top: 4px;
        border-radius: 5px;
    }

    .footer {
        margin-top: 10px;
    }

    .footer .container .image {
        width: 100%;
    }

    .footer .container .image img {
        width: 100%;
    }

    .footer .last p {
        font-size: 10px;
        color: var(---white);
        margin-top: 18px;
    }

    .aboutus-section {
        margin-top: 30px;
    }
    .whatsappsection .bigwhatsappbox .all-data{
        background-color: var(---white);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
        width: 350px;
        height: 320px;
        border-radius: 10px;
    }
    .whatsappsection .bigwhatsappbox.active2{
        left: 10px;
    }
    .whatsappsection .bigwhatsappbox .all-data .whatsappbox a h1{
        font-size: 18px;
        margin-left: 10px;
    }
    .whatsappsection .bigwhatsappbox {
        top: -360px;
    }
    .whatsappsection #clicking{
        bottom: 20px;
        color: var(---red);
        width: 50px;
        height: 50px;
        font-size: 12px;
        left: 10px;
    }

    .blogposter .container .text h1 {
        font-size: 25px;
        margin-top: 30px;
    }
    .blogposter .container .text p {
        font-size: 12px;
        line-height: 35px;
    }
}

@media (max-width:400px) {

    .header .container #menu {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }

    .header .container #pro {
        width: 40px;
        height: 40px;
    }

    .header .container .navbar .link {
        width: 150px;
    }

    .header .container .navbar {
        top: 10%;
    }

    .header .container .navbar .link a {
        line-height: 60px;
        font-size: 16px;
    }

    .hero-area .i1 {
        width: 35px;
        height: 35px;
        top: 13%;
        right: 40%;
    }

    .hero-area .i2 {
        width: 35px;
        height: 35px;
        right: 57%;
        top: 85%;
    }

    .hero-area .i3 {
        width: 35px;
        height: 35px;
        right: 2%;
    }

    .hero-area .container .text h6 {
        font-size: 8px;
        color: var(---white);
        background-color: var(---red);
        width: 130px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .hero-area .container .text h1 {
        margin-top: 10px;
    }

    .hero-area .container .image .search-area {
        right: 0%;
        top: 72%;
        width: 130px;
        height: 70px;
        border-radius: 0px 10px 10px 10px;
    }

    .hero-area .container .image .search-area .input {
        width: 100px;
        height: 30px;
        margin-top: 5px;
    }

    .hero-area .container .image .search-area .input input {
        font-size: 6px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-area .container .image .search-area h5 {
        font-size: 10px;
    }

    .hero-area .container .image .search-area .input i {
        height: 30px;
        font-size: 8px;
        width: 35px;
    }

    .hero-area .container .text h1 {
        font-size: 25px;
    }

    .hero-area .container .text h1 span::before {
        height: 10px;
        top: 60%;
    }

    .hero-area .container .text p {
        font-size: 8px;
        line-height: 25px;
        margin-top: 10px;
    }

    .hero-area .container .text .hero-button {
        margin-top: 10px;
    }

    .hero-area .container .text .hero-button button {
        width: 100px;
        height: 40px;
        font-size: 8px;
        border-radius: 5px;
    }

    .hero-area .container .text .hero-button button::before {
        width: 80px;
        height: 25px;
        position: absolute;
        left: 9px;
        top: 6px;
        border-radius: 5px;
        z-index: -1;
    }

    .hero-area .container .text .hero-button a {
        font-size: 10px;
        margin-left: 10px;
    }

    .ser .container .box h1 {
        font-size: 20px;
        margin-top: 10px;
        line-height: 30px;
    }

    .ser .container .box {
        height: 380px;
    }

    .ser .container .box p {
        font-size: 16px;
        line-height: 25px;
    }

    .ser .container .box img {
        width: 120px;
        height: 120px;
    }

    .ser .container .box button {
        font-size: 14px;
    }

    .offer .heading h1 {
        font-size: 25px;
    }

    .abo .container .image::before {
        position: absolute;
        content: "";
        width: 300px;
        height: 250px;
        background-color: var(---red);
        border-radius: 100px;
        left: -50%;
        top: 15%;
    }

    .abo .container .text h1 {
        font-size: 20px;
        color: var(---black);
        font-weight: 500;
        margin-top: 15px;
    }

    .abo .container .text p {
        font-size: 6px;
        line-height: 20px;
        font-weight: 500;
        color: var(---grey);
        margin: 20px 0px;
    }

    .abo .container .text .m h6 {
        width: 200px;
        height: 50px;
        background-color: var(---light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 4px;
    }

    .abo .container .text .m p {
        font-size: 8px;
        color: var(---grey);
        font-weight: 500;
        line-height: 25px;
    }

    .tes h1 {
        font-size: 25px;
    }

    .blog .container .box img {
        width: 100%;
    }

    .blog .container .box .date {
        width: 200px;
        height: 60px;
        left: 20%;
        top: 50%;
    }

    .blog .container .box .date p {
        font-size: 16px;
    }

    .blog .container .box button {
        font-size: 14px;
    }

    .blog h1 {
        font-size: 25px;
    }

    .blog .container .box .text {
        margin-top: 30px;
    }

    .faq h1 {
        font-size: 25px;
    }

    .faq .container .faq-box .left-data h4 {
        font-size: 10px;
        font-weight: 600;
        color: var(---black);
    }

    .con h1 {
        font-size: 25px;
    }

    .con #para-con {
        font-size: 10px;
        line-height: 20px;
        margin-top: 10px;
    }

    .con .container .left-data .text p {
        font-size: 12px;
    }

    .con .container .left-data .i {
        width: 70px;
        height: 70px;
    }

    .con .container .left-data .i img {
        width: 40%;
    }

    .aboutus-section .container .text h1 {
        font-size: 30px;
    }

    .aboutus-section .container .text .option .point p {
        font-size: 10px;
        margin-left: 5px;
    }

    .aboutus-section .container .text .option .point {
        padding-bottom: 10px;
    }

    .aboutus-section .container .text .option {
        margin-top: 20px;
    }

    .aboutus-section .container .text p {
        line-height: 35px;
        margin-top: 20px;
    }

    .contact-hero .container h1 {
        color: var(---white);
        font-size: 30px;
        font-weight: 500;
        line-height: 35px;
    }

    .heroblog h1 {
        font-size: 40px;
        font-weight: 600;
        color: var(---white);
    }

    .whatsappsection .bigwhatsappbox .all-data{
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.164);
        width: 300px;
        height: 290px;
        border-radius: 10px;
    }
    .whatsappsection .bigwhatsappbox {
        top: -330px;
    }
    .whatsappsection .bigwhatsappbox .all-data .whatsappbox a h1{
        font-size: 12px;
    }
    /*Icone*/
.right-top-header {
    display: block;
    background: var(---red);
    box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.103);
    position: fixed;
    border-radius: 10px 0px 0px 10px;
    right: 0px;
    padding: 9px 12px;
    z-index: 6;
    bottom: 360px;
}

.right-top-header i {
    width: 33px;
    height: 33px;
    border-radius: 100px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(---black);
    margin: 10px 0px;
}

.right-top-header i:hover {
    color: var(---red);
}

/*Icone*/
}

@media (max-width:350px) {
    .blog .container .box .date {
        width: 130px;
        height: 50px;
        left: 25%;
        top: 49%;
    }

    .blog .container .box .date p {
        font-size: 12px;
    }

    .blog .container .box h2 {
        font-size: 16px;
    }

    .con .container form .input-top input {
        height: 50px;
        font-size: 7px;
        padding-left: 5px;
    }

    .con .container form .center-input select {
        font-size: 7px;
        padding-left: 5px;
        height: 50px;
    }

    .con .container form textarea {
        font-size: 7px;
        padding-left: 8px;
        padding-top: 8px;
        border-radius: 5px;
    }

    .con .container .left-data .text p {
        font-size: 10px;
    }

    .footer .last p {
        font-size: 8px;
        color: var(---white);
        margin-top: 18px;
    }
}

/* media quries */