@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Pacifico&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,200;1,400&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300&family=Rubik:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.dots span{
    display: inline-block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #FF7542;
}

/* saidbar style starts */

.saidbar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 30%;
    background: #fff;
    z-index: 5;
    overflow: scroll;
    transition: .3s;
}
.saidbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #ff8236;
    padding: 40px;
}
.saidbar-header img {
    width: 140px;
}
.saidbar-header i {
    font-size: 1.5rem;
    color: #fff;
}

/* saidbar contact start*/

.saidbar-contact h2 {
    font-size: 25px;
    font-weight: 700;
    color: gray;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.saidbar-contact h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background: #fb723f;
    content: "";
    border-radius: 10px;
}
.saidbar-contact h2::before {
    position: absolute;
    bottom: 0;
    left: 35px;
    height: 2px;
    width: 20px;
    background: #fb723f;
    content: "";
}
.saidbar-contact {
    padding: 50px 30px;
}
.saidbar-contact p {
    font-size: 16px;
    color: gray;
    padding: 10px 0;
    border-bottom: 1px solid #e6e2f9;
    transition: .3s;
    cursor: pointer;
}
.saidbar-contact p:hover {
    color: #FF7542;
}
.saidbar-contact p i {
    font-size: 12px;
    padding: 15px;
    border-radius: 50%;
    background: #F6F5FB;
    color: gray;
    margin-right: 10px;
    transform: scale(1);
    transition: .3s;
}
.saidbar-contact p i:hover{
    transform: scale(1.1);
}

/* saidbar contact ends*/

.saidbar-menu{
    padding: 40px 20px;
    display: none;
}
.saidbar-menu ul {
    margin: 0;
    list-style: none;
}
.saidbar-menu ul li {
    display: block;
    position: relative;
    width: 100%;
}
.saidbar-menu ul li a {
    color: gray;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    transition: .3s;
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.saidbar-menu ul li i{
    font-size: 16px;
    color: gray;
    padding: 0 15px;
}
.saidbar-menu ul li ul {
    position: relative;
    display: none;
    top: 0;
    left: 0;
}
.saidbar-menu ul li li {
    display: block;
    left: -23px;
    transition: .3s;
}
.saidbar-menu ul li li:hover{
    left: 0px;
}
.saidbar-menu ul li ul li a {
    color: gray;
    padding: 10px 0;
    display: block;
    font-size: 16px;
    transition: .3s;
    padding: 15px 0;
    width: 100%;
}
.saidbar-menu ul li:hover > ul{
    display: block;
}
.saidbar-menu ul li a:hover {
    color: #FF8236;
}
#saidbar-cross-icon{
    cursor: pointer;
    transition: .3s;
}
#saidbar-cross-icon:hover{
    transform: rotate(180deg);
}

/* toggle submenu */
/* 
.sub-menu-1{display: none;};
.sub-menu-2{display: none;};
.sub-menu-3{display: none;};

.sub-menu-1.toggle-sub-menu-1{display: block;};
.sub-menu-2.toggle-sub-menu-2{display: block;};
.sub-menu-3.toggle-sub-menu-3{display: block;}; */

/* saidbar style ends */

/* search style starts */

.search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 6;
    transition: .3s;
}
.search-section::after{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    content: "";
    opacity: .7;
    z-index: -1;
}
.search-item form {
    position: relative;
    width: 500px;
    padding: 0 0px;
    height: 70px;
}
.search-item input[type="search"] {
    position: absolute;
    width: 100%;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    color: #ffff;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #bdb6b6;
    padding: 10px 0;
    height: 100%;
    padding-right: 50px;
}
.search-item input[type="search"]:focus{
    outline: none;
}
.search-item .fa-search {
    position: absolute;
    bottom: 20px;
    right: 14px;
    font-size: 18px;
    color: #fff;
    z-index: 6;
}
i#searchcross-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    color: #fff;
    padding: 50px;
    z-index: 7;
    transition: .3s;
    cursor: pointer;
    display: none;
}

/* search style ends */




/* home style starts */

.home-section {
    background: linear-gradient(70deg, #b06ab3 0%, #3e2784 100%);
}
.header-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}
.header-logo img {
    width: 200px;
}
.header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-menu ul {
    margin: 0;
    list-style: none;
}
.header-menu ul li {
    display: inline-block;
    position: relative;
}
.header-menu ul li a {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    padding-right: 15px;
    transition: .3s;
}
.header-menu ul li a::after {
    position: absolute;
    height: 2px;
    width: 0px;
    bottom: -4px;
    left: 0;
    background: #FF7542;
    content: "";
    transition: .3s;
}
.header-menu ul li a:hover::after{
    width: 30px;
}
.header-menu ul li li {
    display: block;
    left: -23px;
    transition: .3s;
}
.header-menu ul li li:hover{
    left: 0px;
}
.header-menu ul li ul {
    position: absolute;
    top: 38px;
    left: 0;
    background: #fff;
    width: 240px;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    margin-top: 5px;
    overflow: hidden;
    z-index: 4;
}
.header-menu ul li ul li a {
    color: gray;
    padding: 10px 0;
    display: block;
    font-size: 16px;
    padding-left: 20px;
    transition: .3s;
}
.header-menu ul li ul li a::after{
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    width: 15px;
}
.header-menu ul li ul li a:hover::after{
    width: 15px;
    visibility: visible;
    opacity: 1;
}
.header-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
}
.header-menu ul li a:hover {
    color: #FF8236;
}
.header-icon i {
    font-size: 18px;
    color: #ffff;
    padding-left: 10px;
    transition: .3s;
    transform: scale(1);
    cursor: pointer;
}
.header-icon a {
    position: relative;
}
.header-icon a span {
    position: absolute;
    top: -13px;
    right: -6px;
    background: #FF7542;
    padding: 5px;
    height: 22px;
    width: 20px;
    border-radius: 50%;
    line-height: 12px;
    color: #fff;
    font-size: 14px;
}
.header-icon i:hover {
    transform: scale(1.1);
}
button.header-btn {
    font-size: 16px;
    padding: 8px 20px;
    border: none;
    outline: none;
    text-transform: capitalize;
    background: #FF7542;
    color: #fff;
    border-radius: 20px;
    margin-left: 25px;
}
.main-content h1 {
    font-size: 58px;
    font-weight: 900;
    color: #fff;
}
.main-content p {
    color: #E3D3E8;
    font-size: 16px;
    padding-top: 20px;
}
button.main-btn {
    display: inline-block;
    padding: 15px 20px;
    border: none;
    outline: none;
    color: #fff;
    background: transparent;
    border: 2px solid #ffff;
    border-radius: 30px;
    text-transform: capitalize;
    transition: .3s;
    margin-right: 10px;
}
button.main-btn:hover {
    background: #ffff;
    color: #a060ac;
    animation: shake 0.5s;
}
button.main-btn i {
    padding-right: 5px;
    font-size: 15px;
}
.main-section {
    padding: 50px 0;
}
.main-image img {
    width: 100%;
}
.main-content {
    padding-top: 80px;
}
/* home style ends */

/* benifites style starts */

.benifites-section{
    background-image: url(img/benifite-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}

.benifites-header h4 {
    font-size: 18px;
    color: #FF7B4A;
    text-transform: uppercase;
    font-weight: 600;
}
.benifites-header h1 {
    font-size: 50px;
    font-weight: 900;
    color: black;
    padding-top: 18px;
    position: relative;
    padding-bottom: 50px;
}
.benifites-header h1::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    content: "";
    background: #ff7b4a;
}
.benifites-header h1::before {
    background: #ff7b4a;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 2px;
    width: 150px;
}
.benifites-header {
    text-align: center;
}
.benifites-main {
    padding-top: 70px;
}
.benifites-item {
    text-align: center;
    background: #ffff;
    box-shadow: 0 0 15px #f3f5f7;
}
.benifites-item img {
    max-width: 110px;
}
.benifites-item h2 {
    font-size: 25px;
    font-weight: 600;
    color: #50555B;
    padding-top: 15px;
}
.benifites-item p {
    font-size: 16px;
    text-transform: capitalize;
    color: #7C7F85;
    padding-top: 10px;
}
.benifites-item {
    padding: 40px;
    transition: .3s;
}
.benifites-item:hover {
    box-shadow: 0 0 20px #eceff1;
    margin-top: -15px;
}

/* benifites style ends */

/* create genoa style starts */

.creategenoa-section {
    background: #3E2784;
    padding: 100px 0;
}
.creategenoa-item h1 {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
}
.creategenoa-item p {
    color: #B9B1C4;
    font-size: 16px;
    padding-top: 15px;
}
button.creategenoa-btn {
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #3E2784;
    border-radius: 30px;
    margin-top: 30px;
}
button.creategenoa-btn:hover{
    animation: shake 0.5s;
}
button.creategenoa-btn i {
    background: #3E2784;
    color: #fff;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: inline-block;
    line-height: 20px;
    text-align: center;
    margin-left: 5px;
}
.creategenoa-image img {
    width: 100%;
}
.creategenoa-item {
    padding-top: 50px;
}

/* create genoa style ends */

/* adventage style starts */

.adventage-section {
    background: #ffff;
    padding: 100px 0;
}
.adventage-item h1 {
    font-size: 50px;
    font-weight: 900;
    color: #30353D;
    padding-bottom: 10px;
}
.adventage-item p {
    color: #545960;
    font-size: 16px;
    padding-top: 15px;
}
.adventage-item p i{
    color: #66DDA7;
    padding-right: 15px;
}
button.adventage-btn {
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    color: #ffff;
    border-radius: 30px;
    margin-top: 30px;
    background-color: #6564C4;
}
button.adventage-btn:hover{
    animation: shake 0.5s;
}
button.adventage-btn i {
    background: #ffff;
    color: #6564C4;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: inline-block;
    line-height: 20px;
    text-align: center;
    margin-left: 5px;
}
.adventage-image img {
    width: 100%;
}
.adventage-item {
    padding-top: 50px;
}

/* adventage style ends */

/* counterup style starts */

.counterup-section{
    background-image: url(img/counter-bannder.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-attachment: fixed;
}
.counterup-section-item {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}
.counterup-section-item::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #21145c;
    opacity: .9;
    z-index: -1;
}
.counterup-item .counter {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
}
.counterup-item p {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffff;
}
.counterup-item {
    text-align: center;
}

/* counterup style ends */

/* services style starts */

.services-section{
    background-image: url(img/benifite-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}

.services-header h4 {
    font-size: 18px;
    color: #FF7B4A;
    text-transform: uppercase;
    font-weight: 600;
}
.services-header h1 {
    font-size: 50px;
    font-weight: 900;
    color: black;
    padding-top: 18px;
    position: relative;
    padding-bottom: 50px;
}
.services-header h1::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    content: "";
    background: #ff7b4a;
}
.services-header h1::before {
    background: #ff7b4a;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 2px;
    width: 150px;
}
.services-header {
    text-align: center;
}
.services-main {
    padding-top: 70px;
}
.services-item {
    text-align: center;
    background: #ffff;
    box-shadow: 0 0 15px #f3f5f7;
    margin-top: 20px;
}
.services-item img {
    max-width: 110px;
}
.services-item h2 {
    font-size: 23px;
    font-weight: 600;
    color: #50555B;
    padding-top: 25px;
}
.services-item p {
    font-size: 16px;
    text-transform: capitalize;
    color: #7C7F85;
    padding-top: 10px;
}
.services-item {
    padding: 40px;
    transition: .3s;
}
.services-item:hover {
    box-shadow: 0 0 20px #eceff1;
    margin-top: -5px;
}

/* services style ends */

/* faq style starts */

.faq-section {
    background: #3E2784;
    padding-top: 100px;
    padding-bottom: 50px;
}
.faq-image img {
    width: 100%;
}
.accordion-item h2 {
    font-size: 16px;
    color: #fff;
    background: #49348B;
    cursor: pointer;
}
.accordion-item {
    background: transparent;
}
.faq-item {
    padding-top: 100px;
    padding-left: 20px;
}
.faq-item h1{
    font-size: 50px;
    font-weight: 900;
    color: #ffff;
    text-transform: uppercase;
    padding-bottom: 30px;
}
.accordion-item h2{
    padding: 20px;
}
.accordion-btn{
    position: relative;
}
.accordion-btn::after {
    position: absolute;
    content: "\2212";
    width: 25px;
    text-align: center;
    right: 20px;
    top: 20px;
}
.accordion-btn.collapsed::after{
    content: "\002B";
}
.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #49348B;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-body {
    background: #FF7542;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

/* faq style ends */

/* pricing style starts */

.pricing-section{
    background-image: url(img/benifite-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}

.pricing-header h4 {
    font-size: 18px;
    color: #FF7B4A;
    text-transform: uppercase;
    font-weight: 600;
}
.pricing-header h1 {
    font-size: 50px;
    font-weight: 900;
    color: black;
    padding-top: 18px;
    position: relative;
    padding-bottom: 50px;
}
.pricing-header h1::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    content: "";
    background: #ff7b4a;
}
.pricing-header h1::before {
    background: #ff7b4a;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 2px;
    width: 150px;
}
.pricing-header {
    text-align: center;
}
.pricing-main {
    padding-top: 70px;
}
.pricing-item {
    text-align: center;
    background: #ffff;
    box-shadow: 0 0 15px #f3f5f7;
}
.pricing-item h2 {
    font-size: 18px;
    font-weight: 600;
    color: #30353D;
    padding-top: 15px;
    text-transform: uppercase;
}
.pricing-item {
    padding: 40px;
    transition: .3s;
}
.pricing-item:hover {
    box-shadow: 0 0 20px #eceff1;
    margin-top: -15px;
}
span.price {
    font-size: 70px;
    font-weight: 900;
    color: #30353D;
}
.pricing-item h4 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #717171;
}
.pricing-item ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.pricing-item ul li {
    font-size: 16px;
    color: #7D8085;
    padding: 17px 0;
}
button.price-btn {
    padding: 13px 40px;
    border: none;
    outline: none;
    background: #6ae290;
    color: #ffff;
    text-transform: capitalize;
    margin-top: 20px;
    border-radius: 5px;
    transition: .3s;
}
button.price-btn:hover {
    background: #FF7542;
}

/* pricing style ends */

/* banner style starts */

.banner-section {
    background: #ffff;
    padding: 100px 0;
    background-image: url(img/last-banner-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}
.banner-section::after{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #3E2784;
    opacity: .9;
    content: "";
}
.banner-item h1 {
    font-size: 50px;
    font-weight: 900;
    color: #ffff;
    padding-bottom: 10px;
    margin: 0;
}
.banner-item p {
    color: #E1D9DE;
    font-size: 16px;
    padding-top: 15px;
}
.banner-image img {
    width: 100%;
}
.banner-item {
    padding: 50px 30px;
    margin-top: 25px;
}
.banner-item img {
    max-width: 177px;
    margin-top: 20px;
}

/* banner style ends */

/* brand style starts */

.brand-section {
    padding: 60px 0;
}
.brand-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-image img {
    width: 100%;
}
.brand-image {
    padding: 10px;
}

/* brand style ends */

/* footer style starts */

.footer-section{
    background-image: url(img/footer-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 50px;
    padding-bottom: 0px;
}
.footer-section::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: #313340;
    opacity: .8;
    z-index: -1;
}
.footer-item{
    margin-top: 50px;
}
.footer-item p {
    font-size: 16px;
    color: #A3A3A4;
    padding-top: 20px;
    font-weight: 400;
}
.footer-item h2 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.footer-item h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background: #fb723f;
    content: "";
    border-radius: 10px;
}
.footer-item h2::before {
    position: absolute;
    bottom: 0;
    left: 35px;
    height: 2px;
    width: 20px;
    background: #fb723f;
    content: "";
}
.footer-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-item ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}
.footer-item ul li img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
}
.footer-item ul li p a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #c6c7cb;
    transition: .3s;
}
.footer-item ul li p a:hover {
    color: #F97342;
}
.footer-item ul li p span {
    display: block;
    font-size: 14px;
}
.footer-item ul li p {
    padding-left: 15px;
    padding-top: 0;
    margin: 0;
}
.footer-item-meta{
    margin-top: 50px;
}
.footer-item-meta h2 {
    font-size: 25px;
    font-weight: 700;
    color: #ffff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.footer-item-meta h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background: #fb723f;
    content: "";
    border-radius: 10px;
}
.footer-item-meta h2::before {
    position: absolute;
    bottom: 0;
    left: 35px;
    height: 2px;
    width: 20px;
    background: #fb723f;
    content: "";
}
.footer-item-meta p i {
    font-size: 18px;
    color: #fb723f;
}
.footer-item-meta p a {
    font-size: 14px;
    font-weight: 500;
    color: #c6c7cb;
    text-decoration: none;
    text-transform: capitalize;
    padding-left: 15px;
    transition: .3s;
}
.footer-item-meta p a:hover{
    color: #fb723f;
    margin-left: 5px;

}
.footer-gellary {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}
.footer-gellary img {
    height: 76px;
    margin: 5px 5px !important;
    width: 25%;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright-item p {
    font-size: 18px;
    text-transform: capitalize;
    color: #bfc4cb;
    font-weight: 500;
}
.copyright-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.copyright-item ul li {
    display: inline-block;
}
.copyright-item ul li a {
    font-size: 16px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    padding: 0 10px;
    transition: .3s;
}
.copyright-item ul li a:hover {
    color: #fb723f;
}
.copyright {
    padding: 10px 0;
    border-top: 1px solid gray;
    margin-top: 50px;
}
/* footer style ends */


  
/* animation */

  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }


  /* responsive layout */

  @media(max-width: 991px){
      .header-menu{
          display: none;
      }
      button.header-btn{
          display: none;
      }
      .main-content {
        padding-top: 0px;
      }
      .main-image {
        margin-top: 40px;
      }
      .benifites-item{
          margin-bottom: 20px;
      }
      .creategenoa-image {
        margin-top: 70px;
      }
      .creategenoa-section {
        padding: 50px 0;
      }
      .adventage-section {
        padding: 50px 0;
      }
      .counterup-item {
        padding: 20px 0;
      }
      .pricing-item{
        margin-bottom: 20px;
      }
      .banner-section {
        padding: 50px 0;
      }
      .banner-item {
        padding: 0px 30px;
      }
      .banner-image {
        margin-top: 50px;
      }
      .footer-gellary img {
        height: auto;
      }
      .product-header-btn{
        text-align: left;
      }
      .button.product-header-btn{
          margin-top: 10px;
          margin-bottom: 30px;
      }
      .saidbar {
        width: 50%;
       }
       .saidbar-menu{
        display: block;
    }
    
  }


@media(max-width: 768px){
    .main-content{
        text-align: center;
    }
    .brand-item {
        flex-direction: column;
    }
    .footer-item {
        padding: 0 20px;
    }
    .footer-item-meta {
        padding: 0 20px;
    }
    .copyright-item ul{
        display: none;
    }
    .copyright {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .saidbar {
        width: 70%;
    }

}



@media(max-width: 576px){
    .header-logo img {
        width: 130px;
    }
    button.main-btn{
        margin-top: 20px;
    }
    .cupon-item-left input[type="submit"]{
        margin-top: 20px;
    }
    .adventage-item h1 {
        font-size: 30px;
    }
    .saidbar {
        width: 80%;
    }
    .search-item form {
        width: 320px;
    }

}



@media(max-width: 400px){
    .main-content h1 {
        font-size: 40px;
    }
    .saidbar {
        width: 100%;
    }
    .search-item form {
        width: 250px;
    }
}

