/*---------------------Fonts-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---orange: #e2a84e;
    ---white: #ffffff;
    ---grey: #b3b3b3;
    ---black: #000000;
    ---blue: #001277;
    --lightgrey: #858585;
    ---border: #e1e1e1;
    ---boxblack: #0a0a0a;
}

/*---------------------Roots-----------------*/

/*---------------------Bodys----------------*/
* {
    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-color: #000000;
}

section {
    padding: 10px 130px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(---border);
}

::-webkit-scrollbar-thumb {
    background-color: var(---black);
    height: 200px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(---orange);
    border-radius: 100px;
}

/*---------------------Body----------------*/

/*---------------------Bodys----------------*/

/*Arrow*/
.uppericon {
    position: fixed;
    right: 2%;
    bottom: 2%;
    color: var(---white);
    display: none;
    transition: 0.5s all linear;
    z-index: 7;
}

/*Arrow*/

/*Whatsapp*/
.whatsappbox a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsappbox {
    width: 80px;
    height: 80px;
    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;
    position: fixed;
    bottom: 30px;
    left: 30px;
    cursor: pointer;
    z-index: 6;
}

.whatsappbox:hover {
    transform: scale(1.1, 1.1);
    transition: 0.2s all linear;
}

.whatsappbox img {
    width: 50%;
}

/*Whatsapp*/

/*Icone*/
.right-top-header {
    display: block;
    background: var(---orange);
    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(---orange);
}

/*Icone*/

/*Animation*/
.loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(---white);
    z-index: 2000;
}

.loading img {
    width: 15%;
}

.dispper {
    animation: vanish 1s forwards;
}

@keyframes vanish {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/*Animation*/

/*Header*/
.header {
    background-color: transparent;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container .navbar .data a {
    color: var(---black);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
}

.header .container .right-button {
    display: flex;
    align-items: center;
}

.header .container .right-button button {
    background: var(---black);
    width: 170px;
    height: 65px;
    color: var(---white);
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
}

.header .container .right-button button:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.699);
    transition: 0.2s all linear;
}

.header .container .right-button #menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(---black);
    color: var(---black);
    border-radius: 10px;
    font-size: 16px;
    margin-right: 15px;
    cursor: pointer;
    display: none;
}

.header .container .navbar.active {
    top: 0px;
    transition: 0.5s all linear;
}

.header .container .navbar #close {
    font-size: 25px;
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(---blue);
    display: none;
    cursor: pointer;
    z-index: 20;
}

/*Header*/

/*Hero Area*/
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero .container .text #centertext {
    display: none;
}

.hero .container .text p {
    color: var(---white);
    font-size: 16px;
    line-height: 40px;
}

.hero .container .text button {
    background-color: var(---black);
    width: 390px;
    height: 90px;
    font-size: 25px;
    border-radius: 10px;
    color: var(---white);
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
}

.hero .container .text button:hover {
    box-shadow: 0px 10px 20px black;
}

.hero .slider-container {
    width: 900px;
    height: 835px;
    overflow: hidden;
    position: relative;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-3px);
    }

    20% {
        transform: translateX(3px);
    }

    30% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    50% {
        transform: translateX(-3px);
    }

    60% {
        transform: translateX(3px);
    }

    70% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }

    90% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.hero .slider-container .slider {
    width: 100%;
    height: 100%;
}

.hero .slider-container .slider img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    transition: top 1s ease-in-out;
}

.hero .slider-container .slider img.active {
    top: 0;
}

/*Hero Area*/

/*Heading*/
.heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading h1 {
    color: var(---white);
    font-size: 60px;
    font-weight: 600;
}

/*Heading*/

/*Why Choose Us*/
.choose {
    position: absolute;
    width: 100%;
    top: 1200px;
}

.choose .chooseslider {
    padding: 30px 30px;
    padding-bottom: 70px;
}

.choose .chooseslider .box {
    width: 390px;
    padding: 50px 0px;
    padding-left: 20px;
    background-color: var(---boxblack);
    border: 1px solid #ffffff44;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.13);
    border-radius: 30px;
}

.choose .chooseslider .box .data {
    width: 100%;
    height: 100%;
}

.choose .chooseslider .box .data h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(---white);
    margin: 10px 0px;
}

.choose .chooseslider .box .data p {
    font-size: 14px;
    color: var(---white);
    line-height: 35px;
}

.choose .chooseslider .swiper-pagination-bullet {
    background: var(---orange);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.164);
    width: 12px;
    height: 12px;
}

.choose .chooseslider .swiper-pagination-bullet:hover {
    background: var(---orange);
}

/*Why Choose Us*/

/*About Us*/
.about {
    position: relative;
    margin-top: 150px;
    width: 100%;
    height: 800px;
    position: absolute;
    top: 1800px;
}

.about .container .image {
    position: absolute;
    left: 0px;
}

.about .container .image #men {
    position: absolute;
    left: 200px;
    top: 0px;
}

.about .container .image #big {
    position: absolute;
    width: 10%;
    left: 120px;
    top: 50px;
    animation: pulse 1s infinite ease-in-out alternate;
}

@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.1);
    }
}

.about .container .image #small {
    position: absolute;
    left: 100px;
    top: 250px;
    animation: hithere 1s ease infinite;
    width: 10%;
}

@keyframes hithere {
    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);
    }
}

.about .container .image #small2 {
    position: absolute;
    left: 330px;
    top: 30px;
    backface-visibility: visible !important;
    animation: flip 2s ease infinite;
    width: 10%;
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) rotateY(360deg) scale(.95);
        animation-timing-function: ease-in;
    }

    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in;
    }
}

.about .container .image #rightbig {
    position: absolute;
    right: 80px;
    bottom: 80px;
    animation: pulse 1s infinite ease-in-out alternate;
    width: 10%;
}

@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.1);
    }
}

.about .container .image #rightsmall {
    position: absolute;
    right: 30px;
    bottom: 250px;
    animation: hithere 1s ease infinite;
    width: 10%;
}

@keyframes hithere {
    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);
    }
}

.about .container .image #rightsmall2 {
    position: absolute;
    right: 220px;
    bottom: 10px;
    backface-visibility: visible !important;

    width: 10%;
}



.about .container .image #prize1 {
    position: absolute;
    right: 30px;

}



.about .container .image #prize2 {
    position: absolute;
    left: 200px;
    bottom: 30px;

}

.about .container .text {
    position: absolute;
    right: 130px;
    color: var(---white);
}

.about .container .text h1 {
    font-size: 90px;
    font-family: "Bebas Neue", serif;
    font-weight: 500;
    line-height: 90px;
    margin-top: 20px;
}

.about .container .text h5 {
    font-size: 25px;
    color: var(---white);
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 50px;
    background-color: var(---orange);
    font-weight: 500;
}

.about .container .text p {
    color: var(--lightgrey);
    line-height: 40px;
    margin: 10px 0px;
}

.about .container .text button {
    background: var(---orange);
    width: 350px;
    height: 65px;
    color: var(---white);
    font-size: 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.about .container .text button:hover {
    box-shadow: 0px 12px 25px #e2a74ea9;
    transition: 0.2s all linear;
}

/*About Us*/

/*How it Works*/
.work {
    position: absolute;
    top: 3000px;
    width: 100%;
    background-image: url(img/workbackground.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.work .container {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.work .container .workbox {
    background-color: var(---boxblack);
    border: 1px solid #ffffff49;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.137);
    width: 500px;
    height: 140px;
    display: flex;
    align-items: center;
    border-radius: 15px;
}
.work .container #workimagepng{
    animation: spin 10s infinite linear;
    width: 100%;
}
.work .container .workboximage{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

.work .container #boxnumber2 {
    margin-top: 50px;
}

.work .container .workbox .data .number {
    width: 90px;
    height: 90px;
    background: var(---orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.work .container .workbox .data {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.work .container .workbox .data .number h1 {
    color: var(---white);
    font-size: 40px;
    font-weight: 600;
}

.work .container .workbox .data .text {
    margin-left: 10px;
}

.work .container .workbox .data .text h4 {
    font-size: 30px;
    font-weight: 600;
    color: var(---white);
}

.work .container .workbox .data .text p {
    font-size: 16px;
    color: var(--lightgrey);
    font-weight: 500;
}

.work .container .line {
    width: 3px;
    height: 420px;
    background-color: var(---border);
    border-radius: 100px;
    transform: translateX(-50%);
    overflow: hidden;
}

.work .container .workbox.show {
    opacity: 1;
    transform: translateY(0);
}

.work .container .moving-line {
    width: 3px;
    height: 0;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.8s ease-in-out;
}

/*How it Works*/

/*Partner*/
.partner {
    background-image: url(img/banner2.jpg);
    height: 800px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 3850px;
}

.partner .partnerslider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px;
    margin-top: 100px;
}

.partner .partnerslider .partnerbox {
    width: 380px;
    backdrop-filter: blur(15px);
    border: 2px solid #e1e1e1;
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.623);
    cursor: grab;
}

.partner .partnerslider .partnerbox img {
    width: 90%;
}

.partner .partnerslider .partnerbox h6 {
    font-size: 30px;
    font-weight: 500;
    color: var(---white);
}

.partner .partnerslider .partnerbox a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner .partnerslider .partnerbox button {
    background-color: transparent;
    color: var(---white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.partner .partnerslider .partnerbox button i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.partner .partnerslider .partnerbox button:hover {
    color: var(---black);
}

/*Partner*/

/*Reel*/
.reel {
    position: absolute;
    width: 100%;
    top: 4850px;
}

.reel .reel-slider {
    padding: 20px 20px;
    margin-top: 50px;
    padding-bottom: 60px;
}

.reel .reel-slider .reelbox {
    position: relative;
    width: 370px;
    height: 578px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.reel .reel-slider .reelbox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.reel .reel-slider .reelbox video::-webkit-media-controls {
    display: none !important;
}

.reel .reel-slider .reelbox:hover video::-webkit-media-controls {
    display: flex !important;
}

.reel .reel-slider .swiper-pagination-bullet {
    background: var(--gradient);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.164);
    width: 12px;
    height: 12px;
}

.reel .reel-slider .swiper-pagination-bullet:hover {
    background: var(--gradient);
}

/*Reel*/

/*--------------Contact Section------------*/
.footer .concontainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.footer .concontainer h1 {
    font-size: 70px;
    font-weight: 700;
    color: var(---white);
    line-height: 80px;
}

.footer .concontainer .app-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .concontainer .app-button button {
    width: 250px;
    height: 60px;
    background-color: var(---white);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    margin: 0px 10px;
}

.footer .concontainer .app-button button:hover {
    transform: scale(1.1, 1.1);
    transition: 0.2s all linear;
    background-color: var(---orange);
    color: var(---white);
}

.footer .concontainer .app-button button i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

/*--------------Contact Section------------*/

/*--------------Footer Section------------*/
.footer {
    position: absolute;
    width: 100%;
    top: 5800px;
    border-top: 2px solid var(---white);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

.footer .container .nav {
    margin: 30px 0px;
}

.footer .container .nav a {
    color: var(---white);
    font-size: 20px;
    padding: 0px 15px;
}

.footer .container .nav a:hover {
    color: var(---orange);
}

.footer .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .container .social i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(---white);
    font-size: 30px;
    padding: 0px 10px;
}

.footer .container .social i:hover {
    color: var(---orange);
}

.footer .last {
    border-top: 1px solid var(---white);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.footer .last a {
    color: var(---white);
    font-size: 16px;
}

.footer .last p {
    font-size: 16px;
    color: var(---white);
}

.footer .last a:hover {
    color: var(---orange);
}

/*--------------Footer Section------------*/

/*--------------Blog page------------*/
.gallery {
    margin-top: 100px;
}

.gallery .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery #col-2 {
    margin-top: 50px;
}

.gallery .container .gallerybox {
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.24);
    width: 375px;
    border-radius: 20px;
}

.gallery .container .gallerybox .data {
    padding: 15px;
}

.gallery .container .gallerybox img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
}

.gallery .container .gallerybox .data .text h1 {
    font-size: 22px;
    color: var(---black);
    font-weight: 500;
}

.gallery .container .gallerybox .data .text button {
    width: 120px;
    height: 40px;
    background: var(---orange);
    color: var(---white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

/*--------------Blog page------------*/

/*--------------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:1772px) {
    section {
        padding: 20px 100px;
    }

    .gallery .container .gallerybox {
        width: 370px;
    }
}

@media (max-width:1674px) {
    section {
        padding: 20px 80px;
    }

    /*----------About Us-----------*/
    .about .container .text h1 {
        font-size: 70px;
        font-family: "Bebas Neue", serif;
        font-weight: 500;
        line-height: 80px;
    }

    .about .container .text h5 {
        font-size: 25px;
        font-weight: 500;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 40px;
        margin: 10px 0px;
        font-size: 15px;
    }

    /*----------About Us-----------*/

    .gallery .container .gallerybox {
        width: 330px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 18px;
        color: var(---blue);
        font-weight: 500;
    }

}

@media (max-width:1590px) {
    section {
        padding: 20px 60px;
    }

    /*----------Hero Area-----------*/

    /*----------Hero Area-----------*/
    /*Why Choose Us*/
    .choose .chooseslider .box .data h4 {
        font-size: 22px;
        font-weight: 500;
        margin: 10px 0px;
    }

    /*Why Choose Us*/

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 800px;
    }

    .about .container .image #aboutback {
        width: 100%;
    }

    .about .container .image #men {
        width: 60%;
        left: 150px;
    }

    /*----------About Us-----------*/

    .about .container .image #small2 {
        position: absolute;
        right: 150px;
        bottom: 10px;
        backface-visibility: visible !important;
        animation: flip 2s ease infinite;
        width: 10%;
    }

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 600px;
        height: 140px;
    }

    .work .container .workbox .data .text p {
        font-size: 14px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it Work---------*/
}

@media (max-width:1486px) {

    /*---------------Header---------*/
    .header .container .navbar .data a {
        padding: 12px 15px;
        border-radius: 5px;
        font-size: 16px;
    }

    /*---------------Header---------*/
    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 700px;
    }

    .about .container .text h1 {
        font-size: 60px;
        line-height: 70px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 20px;
    }

    .about .container .text button {
        margin-top: 10px;
    }

    .about .container .text {
        right: 60px;
    }

    .about {
        height: 650px;
    }

    /*----------About Us-----------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 300px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 18px;
        color: var(---blue);
        font-weight: 500;
    }

    /*----------Blog-------*/
}

@media (max-width:1390px) {
    section {
        padding: 20px 40px;
    }

    .about .container .text {
        right: 40px;
    }

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 580px;
        height: 140px;
    }

    .work .container .workbox .data .text p {
        font-size: 14px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it Work---------*/

    /*----------Partner---------*/
    .partner .partnerslider .partnerbox {
        height: 250px;
    }

    /*----------Partner---------*/

    /*-------------Section margin-------------*/

    .choose {
        margin-top: 130px;
    }

    .about {
        top: 2000px;
    }
    
    .work {
        margin-top: 130px;
    }

    .reel {
        margin-top: 130px;
    }

    .con {
        margin-top: 130px;
    }


    /*-------------Section margin-------------*/
    /*----------Hero area-----------*/
    .hero .slider-container {
        width: 500px;
        height: 800px;
    }

    /*----------Hero area-----------*/
    .footer .concontainer h1 {
        font-size: 60px;
        line-height: 80px;
    }

}

@media (max-width:1280px) {

    html {
        font-size: 80%;
    }

    section {
        padding: 20px 20px;
    }

    /*---------------Header---------*/
    .header .container .right-button button {
        width: 150px;
        height: 60px;
        font-size: 16px;
        border-radius: 10px;
    }

    .header .container .navbar .data a {
        padding: 12px 10px;
        border-radius: 5px;
        font-size: 16px;
    }

    .header .container img {
        width: 100px;
    }

    /*---------------Header---------*/

    /*----------Hero area-----------*/


    /*----------Hero area-----------*/

    /*----------About Us-----------*/
    .about {
        top: 1800px;
    }
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 720px;
    }

    .about .container .text h1 {
        font-size: 60px;
        line-height: 70px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 20px;
    }

    .about .container .text button {
        margin-top: 10px;
        width: 250px;
        height: 60px;
        font-size: 16px;
    }

    .about .container .text p {
        font-size: 14px;
    }

    .about .container .text {
        right: 60px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 12px 25px #fd7e298a;
        transition: 0.2s all linear;
    }

    .about .container .text {
        right: 20px;
    }

    .about .container .image #prize2 {
        position: absolute;
        left: 50px;
        bottom: -50px;
        width: 100px;
    }

    .about .container .image #prize1 {
        position: absolute;
        right: 0px;
        width: 100px;
    }

    .about .container .image #rightbig {
        right: 0px;
        bottom: 20px;
        width: 70px;
    }

    .about .container .image #rightsmall {
        position: absolute;
        right: 0px;
        bottom: 120px;
        width: 40px;
        animation: hithere 1s ease infinite;
    }

    .about .container .image #rightsmall2 {
        position: absolute;
        right: 100px;
        bottom: -20px;
        width: 30px;
    }

    .about .container .image #small2 {
        position: absolute;
        left: 50px;
        top: 0px;
        width: 30px;
        backface-visibility: visible !important;
        animation: flip 2s ease infinite;
    }

    .about .container .image #small {
        position: absolute;
        left: 50px;
        top: 180px;
        width: 40px;
    }

    .about .container .image #big {
        position: absolute;
        left: 80px;
        top: 70px;
        width: 70px;
    }

    /*----------About Us-----------*/

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 550px;
        height: 140px;
    }

    .work .container .workbox .data .text p {
        font-size: 14px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it Work---------*/

    /*-------------Section margin-------------*/
    .choose {
        top: 1000px;
    }

    .about {
        margin-top: 100px;
    }

    .work {
        top: 2500px;
    }

    .partner {
        top: 3300px;
    }

    .reel {
        top: 4100px;
    }

    .footer {
        top: 5100px;
    }

    /*-------------Section margin-------------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 280px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 16px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery #col-2 {
        margin-top: 30px;
    }

    /*----------Blog-------*/

    .footer .concontainer h1 {
        font-size: 50px;
        line-height: 70px;
    }
    .footer .concontainer .app-button button {
        width: 200px;
        height: 60px;
    }
}

@media (max-width:1200px) {

    /*----------Hero Area-----------*/
    .hero .container .text img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 13px;
        line-height: 30px;
        margin-left: 0px;
    }

    .hero .slider-container {
        height: 600px;
    }

    .hero .container .text button {
        width: 300px;
        height: 80px;
        font-size: 18px;
        border-radius: 10px;
    }

    /*----------Hero Area-----------*/

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 600px;
    }

    .about .container .text h1 {
        font-size: 50px;
        line-height: 60px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 18px;
    }

    .about .container .text button {
        margin-top: 10px;
        width: 250px;
        height: 60px;
        font-size: 16px;
    }

    .about .container .text p {
        font-size: 13px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 12px 25px #fd7e298a;
        transition: 0.2s all linear;
    }

    .about {
        height: 600px;
    }

    /*----------About Us-----------*/
    /*----------How it Work---------*/
    .work .container .workbox {
        width: 500px;
        height: 140px;
    }

    .work .container .workbox .data .text p {
        font-size: 14px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it Work---------*/

    /*----------Reel---------*/
    .reel .reel-slider .reelbox {
        height: 500px;
    }

    /*----------Reel---------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 250px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 14px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 100px;
        height: 35px;
        background: var(--gradient);
        color: var(---white);
        font-size: 10px;
        font-weight: 500;
        border-radius: 5px;
        margin-top: 10px;
        cursor: pointer;
    }

    .blogposter .container .text h1 {
        font-size: 40px;
        margin-top: 30px;
    }

    .blogposter .container .text p {
        font-size: 16px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 50px;
    }

    /*----------Blog-------*/

    .about {
        top: 1600px;
    }
    .choose {
        top: 800px;
    }
}

@media (max-width:1080px) {
    section {
        padding: 20px 15px;
    }

    .right-top-header {
        display: block;
        box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.103);
        position: fixed;
        border-radius: 10px 0px 0px 10px;
        right: 0px;
        padding: 5px 15px;
        z-index: 6;
        bottom: 360px;
    }

    .right-top-header i {
        width: 25px;
        height: 25px;
        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: 10px;
        color: var(---black);
        margin: 10px 0px;
    }

    /*---------------Header---------*/
    .header .container .navbar {
        background-color: transparent;
        margin-left: 0px;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: -2000%;
        left: 0;
        z-index: 200;
        transition: 0.5s all linear;
    }

    .header .container .navbar .data {
        width: 95%;
        margin: 20px auto;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.253);
        backdrop-filter: blur(20px);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 10px;
    }

    .header .container .navbar .data a {
        display: block;
        font-size: 30px;
        text-align: center;
        width: 95%;
        line-height: 50px;
        margin: 10px 0px;
        color: var(---white);
    }

    .header .container .right-button #menu {
        display: inherit;
    }

    .header .container .navbar #close {
        display: inherit;
        color: var(---white);
    }

    /*---------------Header---------*/

    /*Why Choose Us*/
    .choose .chooseslider .box {
        width: 390px;
        padding: 30px 0px;
        padding-left: 10px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.13);
        border-radius: 15px;
    }

    .choose .chooseslider .box .data img {
        width: 80px;
    }

    .choose .chooseslider .box .data p {
        font-size: 12px;
        color: var(---grey);
        line-height: 30px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 20px;
        margin: 10px 0px;
    }

    /*Why Choose Us*/

    /*----------About Us-----------*/
    .about {
        height: 500px;
    }

    .about .container .image {
        position: absolute;
        left: 0px;
        width: 550px;
    }

    .about .container .text h1 {
        font-size: 50px;
        line-height: 60px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 18px;
    }

    .about .container .text button {
        margin-top: 5px;
        width: 200px;
        height: 50px;
        font-size: 13px;
    }

    .about .container .text p {
        font-size: 13px;
        line-height: 30px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 12px 25px #fd7e298a;
        transition: 0.2s all linear;
    }

    /*----------About Us-----------*/

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 450px;
        height: 120px;
    }

    .work .container .workbox .data .text p {
        font-size: 12px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    .work .container .workbox .data .text h4 {
        font-size: 25px;
    }

    .work .container #boxnumber2 {
        margin-top: 30px;
    }

    .work .container .line {
        width: 3px;
        height: 330px;
    }

    /*----------How it Work---------*/

    /*----------Footer---------*/
    .footer .container .nav a {
        color: var(---white);
        font-size: 16px;
        padding: 0px 15px;
    }

    /*----------Footer---------*/

    /*-------------Section margin-------------*/

    .about {
        margin-top: 90px;
    }

    .con {
        margin-top: 90px;
    }

    .footer {
        margin-top: 90px;
    }

    /*-------------Section margin-------------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 225px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 12px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 80px;
        height: 30px;
        background: var(--gradient);
        color: var(---white);
        font-size: 9px;
        border-radius: 5px;
        margin-top: 10px;
        cursor: pointer;
    }

    /*----------Blog-------*/

}

@media (max-width:1024px) {

    /*---------About Us----------*/
    .about .container .image {
        width: 520px;
    }

    .about .container .image #men {
        position: absolute;
        left: 120px;
        top: 0px;
    }

    .about .container .text p {
        font-size: 12px;
        line-height: 40px;
        margin: 10px 0px;
    }

    .about .container .text h5 {
        font-size: 16px;
        color: var(---white);
        width: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        height: 50px;
        background-color: var(---orange);
        font-weight: 500;
    }


    .about .container .image #prize2 {
        position: absolute;
        left: 50px;
        bottom: -50px;
        width: 80px;
    }

    .about .container .image #prize1 {
        position: absolute;
        right: 0px;
        width: 80px;
    }

    .about .container .image #rightbig {
        right: 0px;
        bottom: 20px;
        width: 50px;
    }

    .about .container .image #rightsmall {
        position: absolute;
        right: 0px;
        bottom: 100px;
        width: 30px;
    }

    .about .container .image #rightsmall2 {
        position: absolute;
        right: 70px;
        bottom: -20px;
        width: 30px;
    }

    .about .container .image #small2 {
        position: absolute;
        left: 20px;
        top: 0px;
        width: 20px;
        backface-visibility: visible !important;
        animation: flip 2s ease infinite;
    }

    .about .container .image #small {
        position: absolute;
        left: 20px;
        top: 120px;
        width: 20px;
    }

    .about .container .image #big {
        position: absolute;
        left: 40px;
        top: 40px;
        width: 50px;
    }

    .about {
        top: 1500px;
    }
    .choose {
        top: 800px;
    }
    .work {
        top: 2100px;
    }
    .partner {
        top: 2850px;
    }

    .reel {
        top: 3650px;
    }

    .footer {
        top: 4500px;
    }


    /*---------About Us----------*/
}

@media (max-width:1000px) {

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 550px;
    }

    .about .container .text h1 {
        font-size: 50px;
        line-height: 60px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 18px;
    }

    .about .container .text button {
        margin-top: 5px;
        width: 180px;
        height: 45px;
        font-size: 12px;
        border-radius: 5px;
    }

    .about .container .text p {
        font-size: 11px;
        line-height: 30px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 8px 14px #fd7e29a1;
        transition: 0.2s all linear;
    }

    /*----------About Us-----------*/

    /*----------Hero Area-----------*/
    .hero .container .text img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 12px;
        margin-left: 0px;
    }

    .hero .slider-container {
        height: 600px;
    }

    .hero .container .text button {

        width: 250px;
        height: 70px;
        font-size: 16px;
        border-radius: 10px;
    }

    /*----------Hero Area-----------*/

    .gallery .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery .container .gallerybox {
        margin: 10px;
    }
}

@media (max-width:970px) {

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 500px;
    }

    .about .container .text h1 {
        font-size: 50px;
        line-height: 60px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 18px;
    }

    .about .container .text button {
        margin-top: 5px;
        width: 180px;
        height: 45px;
        font-size: 12px;
        border-radius: 5px;
    }

    .about .container .text p {
        font-size: 11px;
        line-height: 30px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 8px 14px #fd7e29a1;
        transition: 0.2s all linear;
    }

    /*----------About Us-----------*/

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 400px;
        height: 100px;
    }

    .work .container .workbox .data .number {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .work .container .workbox .data .text p {
        font-size: 12px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    .work .container .workbox .data .number h1 {
        font-size: 30px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 25px;
    }

    .work .container .workbox .data {
        display: flex;
        align-items: center;
        margin-left: 15px;
    }

    .work .container #boxnumber2 {
        margin-top: 30px;
    }

    .work .container .line {
        width: 3px;
        height: 280px;
    }

    /*----------How it Work---------*/

    /*-------------Section margin-------------*/

    .choose {
        margin-top: 80px;
    }

    .about {
        margin-top: 80px;
    }

    .work {
        margin-top: 80px;
    }

    .reel {
        margin-top: 80px;
    }

    .con {
        margin-top: 80px;
    }

    .footer {
        margin-top: 80px;
    }

    /*-------------Section margin-------------*/

    /*----------Hero Area-----------*/
    .hero .container .text img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 12px;
        margin-left: 0px;
    }

    .hero .slider-container {
        height: 600px;
    }

    .hero .container .text button {

        width: 250px;
        height: 70px;
        font-size: 16px;
        border-radius: 10px;
    }

    /*----------Hero Area-----------*/

    .footer .concontainer h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .footer .concontainer .app-button button {
        width: 180px;
        height: 55px;
        margin: 0px 5px;
    }
}

@media (max-width:915px) {

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 480px;
    }

    .about .container .text h1 {
        font-size: 40px;
        line-height: 50px;
        margin-top: 10px;
    }

    .about .container .text h5 {
        font-size: 13px;
    }

    .about .container .text button {
        margin-top: 5px;
        width: 150px;
        height: 40px;
        font-size: 10px;
        border-radius: 5px;
    }

    .about .container .text p {
        font-size: 10px;
        line-height: 30px;
    }

    .about .container .text button:hover {
        box-shadow: 0px 8px 14px #fd7e29a1;
        transition: 0.2s all linear;
    }

    /*----------About Us-----------*/

    /*----------How it Work---------*/
    .work .container .workbox {
        width: 350px;
        height: 100px;
    }

    .work .container .workbox .data .number {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .work .container .workbox .data .text p {
        font-size: 10px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    .work .container .workbox .data .number h1 {
        font-size: 30px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 20px;
    }

    .work .container .workbox .data {
        display: flex;
        align-items: center;
        margin-left: 15px;
    }

    .work .container #boxnumber2 {
        margin-top: 30px;
    }

    .work .container .line {
        width: 3px;
        height: 280px;
    }

    /*----------How it Work---------*/

    /*----------Footer---------*/
    .footer .container .nav a {
        color: var(---white);
        font-size: 14px;
        padding: 0px 12px;
    }

    .footer .last a {
        color: var(---white);
        font-size: 14px;
    }

    .footer .last p {
        font-size: 14px;
        color: var(---white);
    }

    /*----------Footer---------*/
}

@media (max-width:855px) {

    /*<!--Top Header-->*/
    .top-header .container .top-header-left .top-header-box i {
        font-size: 16px;
    }

    .top-header .container .top-header-left .top-header-box p {
        font-size: 10px;
    }

    .top-header .container .top-header-left .top-header-box {
        margin-right: 15px;
    }

    .top-header .container .right-top-header i {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-left: 5px;
    }

    /*<!--Top Header-->*/

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data p {
        font-size: 10px;
        color: var(---grey);
        line-height: 30px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 16px;
        margin: 5px 0px;
    }

    /*<!--Why Choose-->*/

    /*Heading*/
    .heading h1 {
        font-size: 50px;
    }

    /*Heading*/

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 450px;
    }

    /*----------Partner----------*/
    .partner {
        height: 600px;
    }

    /*----------Partner----------*/

    /*-------------Section margin-------------*/

    .choose {
        top: 800px;
    }


    .about {
        top: 1400px;
    }

    .work {
        margin-top: 70px;
    }

    .work .container {
        margin-top: 60px;
    }

    .reel {
        margin-top: 70px;
    }

    .con {
        margin-top: 70px;
    }

    .footer {
        margin-top: 70px;
    }

    /*-------------Section margin-------------*/

    .blogposter .container .text h1 {
        font-size: 30px;
        margin-top: 30px;
    }

    .blogposter .container .text p {
        font-size: 16px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 50px;
    }
}


@media (max-width:853px) {

    .hero .container .text p {
        font-size: 10px;
        margin-left: 0px;
    }
    .work .container .workboximage{
        width: 50%;
        margin-top: 10px;
    }
    .work {
        top: 2000px;
    }
    .partner {
        top: 2550px;
    }
    .reel {
        top: 3150px;
    }

    .footer {
        top: 3950px;
    }

    .footer .concontainer {
        display: block;
        margin-top: 30px;
    }
    .footer .concontainer h1 {
        text-align: center;
    }
    .footer .concontainer .app-button {
        margin-top: 30px;
    }
}


@media (max-width:840px) {

    /*----------Hero Area-----------*/
    .hero .container {
        display: block;
    }

    .hero #hand {
        width: 100%;
        height: 300px;
    }

    .hero .container .text #lefttext {
        display: none;
    }

    .hero .container .text #centertext {
        display: inherit;
        margin: 0px auto;
    }

    .hero .container .text {
        text-align: center;
    }

    .hero .slider-container {
        width: 400px;
        height: 800px;
        margin: 0px auto;
    }

    .hero .container .text img {
        width: 50%;
    }

    .hero .container .text p {
        font-size: 16px;
        margin-left: 0px;
    }

    .hero .slider-container {
        height: 600px;
    }

    .hero .container .text button {

        width: 250px;
        height: 70px;
        font-size: 16px;
        border-radius: 10px;
        margin-left: 0px;
    }

    /*----------Hero Area-----------*/

    /*----------About Us-----------*/
    .about .container .image {
        position: absolute;
        left: 0px;
        width: 100%;
    }

    .about .container .text {
        position: absolute;
        right: 0px;
        left: 20px;
        top: 650px;
        text-align: left;
    }

    .about .container .text h1 {
        font-size: 90px;
        font-family: "Bebas Neue", serif;
        font-weight: 500;
        line-height: 90px;
        margin-top: 20px;
    }

    .about .container .text {
        top: 800px;
    }

    .about .container .text h5 {
        font-size: 16px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 40px;
        margin: 10px 0px;
        font-size: 16px;
    }

    .about .container .text button {
        width: 350px;
        height: 65px;
        color: var(---white);
        font-size: 22px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 500;
    }

    .about {
        top: 1900px;
    }

    /*----------About Us-----------*/

    /*----------How it work-----------*/
    .work .container {
        display: block;
    }

    .work .container .line {
        display: none;
    }

    .work .container .workbox {
        width: 100%;
        height: 140px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 90px;
        height: 90px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 40px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 30px;
        font-weight: 600;
    }

    .work .container .workbox .data .text p {
        font-size: 16px;
        font-weight: 500;
    }

    /*----------How it work-----------*/

    /*----------Partner-----------*/
    .partner .partnerslider {
        margin-top: 50px;
    }

    /*----------Partner-----------*/
    /*----------Footer---------*/
    .footer .container .nav a {
        color: var(---white);
        font-size: 12px;
        padding: 0px 8px;
    }

    .footer .last a {
        color: var(---white);
        font-size: 12px;
    }

    .footer .last p {
        font-size: 12px;
        color: var(---white);
    }

    .footer .container .social i {
        font-size: 25px;
    }

    /*----------Footer---------*/

    /*-------------Section margin-------------*/

    .choose {
        top: 1300px;
    }

    .work {
        top: 3450px;
    }

    .footer {
        top: 6250px;
    }

    .work .container {
        margin-top: 50px;
    }

    .partner {
        top: 4850px;
    }

    .reel {
        top: 5450px;
    }

    .con {
        margin-top: 60px;
    }

    .footer {
        margin-top: 60px;
    }

    /*-------------Section margin-------------*/

}

@media (max-width:768px) {

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data p {
        font-size: 9px;
        color: var(---grey);
        line-height: 20px;
    }

    .choose .chooseslider .box {
        padding: 10px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 14px;
        margin: 5px 0px;
    }

    /*<!--Why Choose-->*/

    /*<!--About Us-->*/
    .about .container .text {
        top: 700px;
    }

    .about {
        height: 1350px;
    }

    /*<!--About Us-->*/

}

@media (max-width:760px) {

    section {
        padding: 20px 10px;
    }

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data h4 {
        font-size: 22px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 12px;
        color: var(---grey);
        line-height: 35px;
    }

    .choose .chooseslider .box {
        padding-left: 20px;
    }

    /*<!--Why Choose-->*/

    /*<!--Contact Us-->*/
    .con .container h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .con .container {
        height: 350px;
    }

    .con .container p {
        color: var(---white);
        font-size: 16px;
        line-height: 30px;
    }

    /*<!--Contact Us-->*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 300px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox img {
        border-radius: 10px 10px 0px 0px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 16px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 120px;
        height: 40px;
        font-size: 12px;
        border-radius: 5px;
        margin-top: 10px;
        cursor: pointer;
    }

    /*----------Blog-------*/
    .blogposter .container .text h1 {
        font-size: 25px;
        margin-top: 30px;
    }

    .blogposter .container .text p {
        font-size: 12px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 30px;
    }

    /*----------Blog-------*/
}

@media (max-width:690px) {

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data h4 {
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 12px;
        color: var(---grey);
        line-height: 35px;
    }

    /*<!--Why Choose-->*/

    /*<!--About Us-->*/
    .about .container .text h1 {
        font-size: 70px;
        line-height: 80px;
        margin-top: 20px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 40px;
        margin: 10px 0px;
        font-size: 16px;
    }

    .about .container .text button {
        width: 350px;
        height: 65px;
        color: var(---white);
        font-size: 22px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 500;
    }

    /*<!--About Us-->*/

    /*<!--Partner-->*/
    .partner .partnerslider {
        margin-top: 30px;
    }

    /*<!--Partner-->*/
    /*----------Footer---------*/
    .footer .container .nav a {
        color: var(---white);
        font-size: 12px;
        padding: 0px 0px;
        display: block;
        text-align: center;
        font-size: 16px;
        line-height: 50px;
    }

    /*----------Footer---------*/

    /*-------------Section margin-------------*/

    .choose {
        margin-top: 50px;
    }

    .about {
        margin-top: 50px;
    }

    .work {
        margin-top: 50px;
    }

    .con {
        margin-top: 50px;
    }

    .footer {
        margin-top: 50px;
    }

    /*-------------Section margin-------------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 250px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 14px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 120px;
        height: 40px;
        font-size: 12px;
        border-radius: 5px;
        margin-top: 10px;
        cursor: pointer;
    }

    /*----------Blog-------*/

    /*----------Blog-------*/
    .blogposter .container .text h1 {
        font-size: 20px;
        margin-top: 30px;
    }

    .blogposter .container .text p {
        font-size: 12px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 30px;
    }

    /*----------Blog-------*/
}

@media (max-width:600px) {

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data img {
        width: 70px;
    }

    .choose .chooseslider .box {
        padding: 25px 0px;
        padding-left: 20px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 18px;
        font-weight: 500;
        margin: 0px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 10px;
        color: var(---grey);
        line-height: 30px;
    }

    /*<!--Why Choose-->*/

    /*<!--About Us-->*/
    .about .container .text h1 {
        font-size: 70px;
        line-height: 80px;
        margin-top: 20px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 40px;
        margin: 10px 0px;
        font-size: 14px;
    }

    .about .container .text button {
        width: 350px;
        height: 65px;
        color: var(---white);
        font-size: 22px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 500;
    }

    /*<!--About Us-->*/

    /*----------How it work-----------*/
    .work .container {
        display: block;
    }

    .work .container .line {
        display: none;
    }

    .work .container .workbox {
        width: 100%;
        height: 140px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 90px;
        height: 90px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 40px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 30px;
    }

    .work .container .workbox .data .text p {
        font-size: 14px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it work-----------*/


}

@media (max-width:560px) {

    /*<!--Top Header-->*/
    .top-header .container .top-header-left {
        flex-wrap: wrap;
        justify-content: left;
    }

    .top-header .container .top-header-left #mail-top-header {
        margin-top: 10px;
    }

    /*<!--Top Header-->*/

    /*<!--Why Choose-->*/
    .choose .chooseslider .swiper-pagination-bullet {
        background: var(--gradient);
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.164);
        width: 8px;
        height: 8px;
    }

    .choose .chooseslider .box .data img {
        width: 60px;
    }

    .choose .chooseslider .box {
        padding: 25px 0px;
        padding-left: 10px;
        padding-bottom: 10px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.13);
    }

    .choose .chooseslider .box .data h4 {
        font-size: 16px;
        font-weight: 500;
        margin: 0px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 8px;
        color: var(---grey);
        line-height: 22px;
    }

    /*<!--Why Choose-->*/

    /*Heading*/
    .heading h1 {
        font-size: 40px;
    }

    /*Heading*/

    /*-----About Us-----*/
    .about {
        height: 1050px;
    }

    .about .container .image #rightbig {
        right: 30px;
        bottom: 15px;
        width: 40px;
    }

    .about .container .image #rightsmall {
        position: absolute;
        right: 30px;
        bottom: 80px;
        width: 20px;
    }

    .about .container .image #rightsmall2 {
        position: absolute;
        right: 70px;
        bottom: -20px;
        width: 20px;
    }

    .about .container .text {
        top: 500px;
    }

    /*-----About Us-----*/

    /*----------How it work-----------*/
    .work .container .workbox {
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 70px;
        height: 70px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 30px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 20px;
    }

    .work .container .workbox .data .text p {
        font-size: 12px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it work-----------*/

    /*----------Partner----------*/
    .partner {
        height: 500px;
        top: 3750px;
    }

    .reel{
        top: 4300px;
    }

    .footer {
        top: 5100px;
    }

    /*----------Partner----------*/

    /*----------Contact Us----------*/
    .con .container {
        height: 280px;
        border-radius: 20px;
    }

    .con .container h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .con .container p {
        font-size: 14px;
        line-height: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .con .container .app-button button {
        width: 200px;
        height: 55px;
        font-size: 16px;
    }

    /*----------Contact Us----------*/

    /*-------------Section margin-------------*/

    .work {
        top: 2750px;
    }

    .work .container {
        margin-top: 40px;
    }

    .reel .reel-slider {
        margin-top: 30px;
    }

    .con {
        margin-top: 40px;
    }

    .footer {
        margin-top: 40px;
    }

    /*-------------Section margin-------------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 220px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 12px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 80px;
        height: 30px;
        font-size: 8px;
        border-radius: 5px;
        margin-top: 10px;
        cursor: pointer;
    }

    /*----------Blog-------*/
    .choose{
        top: 1200px;
    }
    .about{
        top: 1600px;
    }
}

@media (max-width:500px) {

    .whatsappbox {
        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;
        position: fixed;
        bottom: 15px;
        left: 15px;
        cursor: pointer;
        z-index: 6;
    }

    .uppericon {
        position: fixed;
        right: 5%;
        bottom: 2%;
        color: var(---white);
        display: none;
        transition: 0.5s all linear;
        z-index: 7;
    }

    .uppericon img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 14px;
        margin-left: 0px;
        margin-top: 15px;
    }

    /*<!--About Us-->*/
    .about {
        height: 1000px;
    }

    .about .container .text h1 {
        font-size: 60px;
        line-height: 60px;
        margin-top: 20px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 35px;
        margin: 10px 0px;
        font-size: 12px;
    }

    .about .container .text button {
        width: 300px;
        height: 60px;
        font-size: 20px;
        border-radius: 10px;
    }

    /*<!--About Us-->*/

    /*----------How it work-----------*/
    .work .container .workbox {
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 70px;
        height: 70px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 30px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 20px;
    }

    .work .container .workbox .data .text p {
        font-size: 10px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it work-----------*/

    /*----------Partner-----------*/
    .partner .partnerslider .partnerbox h6 {
        font-size: 25px;
        font-weight: 500;
        color: var(---white);
    }

    .partner .partnerslider .partnerbox button {
        font-size: 12px;
    }

    .partner .partnerslider .partnerbox {
        height: 200px;
        border-radius: 15px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.404);
    }

    /*----------Partner-----------*/

    /*----------Reel---------*/
    .reel .reel-slider .reelbox {
        height: 300px;
    }

    /*----------Reel---------*/

    /*----------Contact Us---------*/
    .con .container h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .con .container p {
        font-size: 12px;
        line-height: 30px;
        margin-top: 10px;
    }

    .con .container .app-button button {
        width: 170px;
        height: 50px;
        font-size: 12px;
        margin: 0px 5px;
    }

    /*----------Contact Us---------*/

    /*----------Footer---------*/
    .footer .container .nav a {
        color: var(---white);
        font-size: 12px;
        padding: 0px 0px;
        display: block;
        text-align: center;
        font-size: 16px;
        line-height: 50px;
    }

    .footer .last {
        border-top: 1px solid var(---white);
        margin-top: 40px;
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .footer .container .nav {
        margin: 20px 0px;
    }

    .footer .last a {
        padding: 5px 0px;
    }

    /*----------Footer---------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 180px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox .data {
        padding: 10px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 10px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 60px;
        height: 25px;
        font-size: 6px;
        border-radius: 3px;
        margin-top: 5px;
        cursor: pointer;
    }

    /*----------Blog-------*/

    /*----------Blog-------*/
    .blogposter .container .text h1 {
        font-size: 16px;
        margin-top: 30px;
    }

    .blogposter .container .text p {
        font-size: 10px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 30px;
    }

    /*----------Blog-------*/
}

@media (max-width:430px) {

    /*----------Hero Area-----------*/
    .hero .container {
        display: block;
    }

    .hero .container .text #lefttext {
        display: none;
    }

    .hero .container .text #centertext {
        display: inherit;
        margin: 0px auto;
    }

    .hero .container .text {
        text-align: center;
    }

    .hero .slider-container {
        width: 350px;
        height: 500px;
        margin: 0px auto;
    }

    .hero .container .text img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 12px;
    }

    .hero .slider-container {
        height: 600px;
    }

    .hero .container .text button {

        width: 250px;
        height: 70px;
        font-size: 16px;
        border-radius: 10px;
    }

    /*----------Hero Area-----------*/

    /*---------------Header---------*/
    .header .container .right-button button {
        width: 120px;
        height: 50px;
        font-size: 12px;
        border-radius: 5px;
    }

    .header .container .right-button #menu {
        width: 40px;
        height: 40px;
        border-radius: 5px;
        font-size: 12px;
        margin-right: 10px;
    }

    .header .container img {
        width: 80px;
    }

    /*---------------Header---------*/
    .top-header .container .top-header-left #stop-top-header {
        margin-top: 10px;
    }

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data img {
        width: 100px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 25px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 14px;
        color: var(---grey);
        line-height: 35px;
    }

    /*<!--Why Choose-->*/


    /*Heading*/
    .heading h1 {
        font-size: 30px;
    }

    /*Heading*/
    /*-----About Us-----*/

    .about .container .image #rightbig {
        right: 15px;
        bottom: 15px;
        width: 30px;
    }

    .about .container .image #rightsmall {
        position: absolute;
        right: 5px;
        bottom: 70px;
        width: 20px;
    }

    .about .container .image #rightsmall2 {
        position: absolute;
        right: 50px;
        bottom: -20px;
        width: 15px;
    }

    .about .container .image #prize2 {
        position: absolute;
        left: 50px;
        bottom: -20px;
        width: 50px;
    }

    .about .container .image #prize1 {
        position: absolute;
        right: 10px;
        width: 50px;
    }

    .about .container .text h1 {
        font-size: 50px;
        line-height: 60px;
        margin-top: 10px;
    }
    .about .container .text h5 {
        font-size: 12px;
        font-weight: 500;
        height: 30px;
        width: 150px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 35px;
        margin: 5px 0px;
        font-size: 11px;
    }

    .about .container .text button {
        width: 250px;
        height: 60px;
        font-size: 16px;
        border-radius: 10px;
    }

    .about .container .text {
        top: 400px;
    }

    .about .container .image #men {
        position: absolute;
        left: 80px;
        top: 0px;
    }

    /*-----About Us-----*/

    /*----------How it work-----------*/
    
    .work {
        top: 2600px;
    }
    .work .container .workbox {
        width: 100%;
        height: 80px;
        border-radius: 10px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 60px;
        height: 60px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 25px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 18px;
    }

    .work .container .workbox .data .text p {
        font-size: 10px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    /*----------How it work-----------*/
    .reel{
        top: 3750px;
    }

    /*----------Partner-----------*/
    .partner {
        top: 3450px;
    }
    .partner .partnerslider .partnerbox {
        padding: 30px 15px;
    }

    .partner .partnerslider .partnerbox h6 {
        font-size: 16px;
        margin-top: 10px;
    }

    .partner .partnerslider .partnerbox button {
        font-size: 10px;
    }

    .partner .partnerslider .partnerbox {
        height: 180px;
        border-radius: 15px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.404);
    }

    .partner {
        height: 340px;
    }

    .footer {
        top: 4250px;
    }

    .partner .partnerslider {
        margin-top: 0px;
    }

    /*----------Partner-----------*/

    /*----------Reel-----------*/
    .reel .reel-slider {
        padding-bottom: 50px;
    }

    .reel .reel-slider .swiper-pagination-bullet {
        background: var(--gradient);
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.164);
        width: 10px;
        height: 10px;
    }

    .reel .reel-slider .reelbox video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .reel .reel-slider .reelbox {
        border-radius: 10px;
    }

    .reel .reel-slider .swiper-pagination-bullet:hover {
        background: var(--gradient);
    }

    /*----------Reel-----------*/

    /*----------Contact Us---------*/
    .con .container h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .con .container p {
        font-size: 10px;
        line-height: 25px;
        margin-top: 10px;
    }

    .con .container .app-button button {
        width: 150px;
        height: 45px;
        font-size: 12px;
        margin: 0px 5px;
    }

    .con .container .app-button button i {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }

    .con .container .app-button button i {
        margin-right: 2px;
    }

    /*----------Contact Us---------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 160px;
        border-radius: 10px;
    }

    .gallery .container .gallerybox .data {
        padding: 10px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 8px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 60px;
        height: 25px;
        font-size: 6px;
        border-radius: 3px;
        margin-top: 5px;
        cursor: pointer;
    }

    /*----------Blog-------*/
    .choose{
        top: 1200px;
    }
    .about{
        top: 1700px;
    }

    .footer .concontainer h1 {
        font-size: 35px;
        line-height: 40px;
    }
    .footer .concontainer .app-button button {
        width: 150px;
        height: 50px;
        margin: 0px 5px;
        font-size: 12px;
    }
}

@media (max-width:400px) {

    .header .container .navbar .data {
        margin: 15px auto;
        backdrop-filter: blur(20px);
    }

    .header .container .navbar .data a {
        display: block;
        font-size: 20px;
        text-align: center;
        width: 95%;
        line-height: 40px;
        margin: 10px 0px;
        color: var(---white);
    }

    /*<!--Why Choose-->*/
    .choose .chooseslider .box .data img {
        width: 100px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 12px;
        color: var(---grey);
        line-height: 30px;
    }

    .choose .chooseslider {
        padding: 15px 15px;
        padding-bottom: 40px;
    }

    /*<!--Why Choose-->*/

    /*Heading*/
    .heading h1 {
        font-size: 25px;
    }

    /*Heading*/

    /*-----About Us-----*/
    .about {
        height: 740px;
    }

    .about .container .text {
        top: 370px;
    }

    .about .container .text h1 {
        font-size: 45px;
        line-height: 50px;
        margin-top: 10px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 30px;
        margin: 5px 0px;
        font-size: 9px;
    }

    .about .container .text button {
        width: 200px;
        height: 55px;
        font-size: 14px;
        border-radius: 5px;
    }

    /*-----About Us-----*/
    /*----------How it work-----------*/
    .work {
        top: 2550px;
    }
    .work .container .workbox {
        width: 100%;
        height: 80px;
        border-radius: 10px;
    }

    .work .container .left2box {
        margin-top: 30px;
    }

    .work .container .workbox .data .number {
        width: 60px;
        height: 60px;
    }

    .work .container .workbox .data .number h1 {
        color: var(---white);
        font-size: 25px;
        font-weight: 600;
    }

    .work .container .workbox .data .text {
        margin-left: 10px;
    }

    .work .container .workbox .data .text h4 {
        font-size: 18px;
    }

    .work .container .workbox .data .text p {
        font-size: 9px;
        color: var(--lightgrey);
        font-weight: 500;
    }

    .work .container #boxnumber2 {
        margin-top: 20px;
    }

    .work .container .left2box {
        margin-top: 20px;
    }

    /*----------How it work-----------*/
    .reel{
        top: 3700px;
    }

    /*----------Partner-----------*/
    .partner {
        height: 350px;
        top: 3300px;
    }

    .partner .partnerslider {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0px;
    }

    /*----------Partner-----------*/

    /*----------Reel---------*/
    .reel .reel-slider .reelbox {
        height: 500px;
    }

    /*----------Reel---------*/

    /*-------------Section margin-------------*/

    .choose {
        margin-top: 30px;
    }

    .about {
        margin-top: 30px;
    }

    .work {
        margin-top: 30px;
    }

    .work .container {
        margin-top: 30px;
    }

    .partner {
        margin-top: 30px;
    }

    .reel {
        margin-top: 30px;
    }

    .footer {
        top: 4400px;
    }

    .reel .reel-slider {
        margin-top: 10px;
    }

    .con {
        margin-top: 30px;
    }

    .footer {
        margin-top: 30px;
    }

    /*-------------Section margin-------------*/

    /*----------Hero Area-----------*/
    .hero .container {
        display: block;
    }

    .hero .container .text #lefttext {
        display: none;
    }

    .hero .container .text #centertext {
        display: inherit;
        margin: 0px auto;
    }

    .hero .container .text {
        text-align: center;
    }

    .hero .slider-container {
        width: 350px;
        height: 690px;
        margin: 0px auto;
    }

    .hero .container .text img {
        width: 80%;
    }

    .hero .container .text p {
        font-size: 10px;
        line-height: 20px;
        margin-top: 10px;
    }

    .hero .container .text button {

        width: 200px;
        height: 60px;
        font-size: 12px;
        border-radius: 5px;
        margin-left: 0px;
        margin-top: 10px;
    }


    /*----------Hero Area-----------*/

    /*----------Blog-------*/

    .gallery .container .gallerybox {
        width: 100%;
        border-radius: 10px;
    }

    .gallery .container .gallerybox .data {
        padding: 10px;
    }

    .gallery .container .gallerybox .data .text h1 {
        font-size: 16px;
        color: var(---blue);
        font-weight: 500;
    }

    .gallery .container .gallerybox .data .text button {
        width: 120px;
        height: 40px;
        font-size: 12px;
        border-radius: 3px;
        margin-top: 5px;
        cursor: pointer;
    }

    /*----------Blog-------*/


    /*----------Blog-------*/
    .blogposter .container .text h1 {
        font-size: 14px;
        margin-top: 20px;
    }

    .blogposter .container .text {
        margin-top: 20px;
    }

    .blogposter .container .text p {
        font-size: 9px;
        color: var(--lightgrey);
        font-weight: 500;
        line-height: 25px;
    }

    .blogposter .container #imageposter {
        margin-top: 20px;
    }

    /*----------Blog-------*/

    .footer .concontainer h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .footer .concontainer .app-button{
        margin-top: 15px;
    }
    .footer .concontainer .app-button button {
        width: 120px;
        height: 40px;
        margin: 0px 5px;
        font-size: 9px;
    }
}

@media (max-width:415px) {}

@media (max-width:362px) {

    /*-----About Us-----*/
    .about {
        height: 780px;
    }

    /*-----About Us-----*/

    .partner{
        height: 330px;
    }
}

@media (max-width:344px) {
    .work{
        top: 2200px;
    }
    .footer{
        top: 3950px;
    }

    .hero .slider-container {
        width: 300px;
        height: 500px;
        margin: 0px auto;
    }

    /*<!--Why Choose-->*/
    .choose {
        top: 1000px;
    }

    .choose .chooseslider .box .data img {
        width: 80px;
    }

    .choose .chooseslider .box .data h4 {
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0px;
    }

    .choose .chooseslider .box .data p {
        font-size: 10px;
        color: var(---grey);
        line-height: 25px;
    }


    /*<!--Why Choose-->*/

    /*-----About Us-----*/
    .about{
        top: 1400px;
    }

    .about .container .text {
        top: 340px;
    }

    .about .container .text h1 {
        font-size: 40px;
        line-height: 45px;
        margin-top: 10px;
    }

    .about .container .text p {
        color: var(--lightgrey);
        line-height: 30px;
        margin: 5px 0px;
        font-size: 9px;
    }

    .about .container .text button {
        width: 200px;
        height: 55px;
        font-size: 14px;
        border-radius: 5px;
    }

    /*-----About Us-----*/

    /*-----About Us-----*/

    /*----------Contact Us---------*/
    .con .container {
        height: 230px;
    }

    .con .container h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .con .container p {
        font-size: 9px;
        line-height: 20px;
        margin-top: 10px;
    }

    .con .container .app-button button {
        width: 120px;
        height: 35px;
        font-size: 10px;
        margin: 0px 5px;
    }

    .con .container .app-button button i {
        margin-right: 2px;
    }

    /*----------Contact Us---------*/

    .partner {
        top: 2900px;
        height: 320px;
    }
    .reel{
        top: 3280px;
    }
}

/* media quries */