* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #392950;
    --bg_color_2: #f49f34;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 0 4%;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: var(--bg_color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .logo img {
    width: 100px;
}

.logo img {
    width: 120px;
    background: #fff;
    border-radius: 50%;
}

.logo {
    position: relative;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--white);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: var(--bg_color_2);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 10px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

#myHeader.sticky .navbar_nav .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: var(--bg_color);
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    color: var(--white);
}

.navbar_nav .dropdown a {
    color: var(--bg_color)
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 999;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.magnifying {
    background-color: #a8a8a8;
    padding: 10px 15px;
    cursor: pointer;
}

.magnifying:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
}

.banner_item {
    position: relative;
}

.banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .3;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.all_btn {
    background-color: var(--bg_color_2);
    padding: 12px 30px;
    color: var(--white);
    border-radius: 2px;
    border: none;
}

.all_btn:hover {
    background-color: var(--bg_color);
}

.banner_contant {
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    z-index: 9;
    padding: 0 10%;
    color: var(--white);
}

.banner_head {
    font-size: 15px;
    color: rgb(255, 255, 255);
    border: 1px solid var(--bg_color_2);
    padding: 5px 20px;
    border-radius: 30px;

}

.banner_tittle {
    font-size: 90px;
    font-family: "Cal Sans", sans-serif;
    color: var(--white);
    display: block;
    line-height: 140px;
    margin: 20px 0;
    transform: translateY(-200px);
    transition: ease-in-out .9s;
}


.nextarrow {
    position: absolute;
    right: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    z-index: 9;
    cursor: pointer;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.contact a {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.contact a i {
    margin-right: 5px;
    font-size: 25px;
}

.big_head {
    font-size: 40px;
    display: block;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    margin-bottom: 10px;
}

.big_head span {
    color: var(--bg_color_2);
}

.collection .title {
    margin-bottom: 40px;
}

.collection {
    padding: 0 4%;
}

.title_head {
    font-size: 50px;
    display: block;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    margin-top: 40px;
}

.title_head span {
    color: var(--bg_color_2);
}

.coll_l {
    padding-left: 30px;
}

.pro_item {
    position: relative;
    margin: 5px;
}

.pro_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.472) 100%);
}

.pro_text {
    position: absolute;
    bottom: 6%;
    color: var(--white);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.Main_tittle {
    display: block;
    font-size: 25px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 10px;
}

.pro_text a {
    color: var(--white);
    border: .5px solid #fff;
    text-transform: uppercase;
    font-family: "Roboto Slab", serif;
    font-size: 13px;
    padding: 5px 30px 5px 30px;

}

.pro_text a:hover {
    background-color: #fff;
    color: var(--black);
}

.ab_img {
    float: right;
    margin-left: 40px;
}

.ab_home {
    display: flex;
}



.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_color_2);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed var(--bg_color_2);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_color_2);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }

}

.youtube {
    background-attachment: fixed;
}

.you_bg {
    padding: 230px 4% 100px;
    background-color: #0000008a;
}

.you_heading-title {
    font-family: "Roboto Slab", serif;
    font-size: 105px;
    font-weight: 400;
    line-height: 130px;
    margin-bottom: 10px;
    color: #fff;
    display: block;
}

.you_heading-title span {
    color: var(--bg_color_2);
}

.you_contant {
    width: 80%;
    margin-top: 100px;
    color: var(--white);
}

.you_contant p {
    font-size: 16px;
}

.you_item {
    margin: 10px;
}

.youtube_videos {
    padding: 0 3%;
}

.feachers_item img {
    border-radius: 230px 0 0 0;
    margin: 2px;
}

.feachers {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.why_choose ul li {
    position: relative;
    padding: 20px 0;
    padding-left: 65px;
    border-bottom: 1px solid #b7b7b7;
}

.why_choose ul li img {
    width: 50px;
    position: absolute;
    top: 20%;
    left: 0;
}

.why_choose ul li span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_color);
}

.test_item {
    margin: 10px 20px;
}

.test_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.test_contant {
    width: 77%;
    border-left: 1px solid #b9b9b9;
    padding-left: 30px;
}

.test_box img {
    border-radius: 50%;
}

.test_box .img {
    width: 22%;
}

.test_contant .name {
    color: var(--bg_color_2);
    display: block;
    font-weight: 600;
}

.test_contant p {
    font-size: 14px;
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 10px 15px;
    margin: 5px 0;
    background-color: #f8f8f8;
    border: none;
    font-size: 14px;
}

.contact form {
    border: 1px solid var(--bg_color_2);
    padding: 25px;
}


.foot_bg {
    padding: 0 4%;
    padding-top: 70px;
    background-color: #f5f5f5;
    color: var(--black);
}

.foot_logo img {
    width: 130px;
    margin-bottom: 10px;
}

.foot_head {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.foot_nav ul a {
    color: var(--black);
    display: block;
    padding: 7px 0;
}

.foot_nav ul {
    max-height: 280px;
    overflow: auto;
}

.foot_contact_details a {
    color: var(--black);
    word-break: break-all;
}

.foot_contact_details ul li {
    margin: 25px 0;
}

.foot_contact_details ul li i {
    margin-right: 10px;
}

.foot_contact_details .socal_media a {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 12px;
    border-radius: 5px;
}

.copy_right {
    padding: 18px 0;
    margin-top: 50px;
    border-top: 1px solid #a5a5a5;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--black);
}

.copy_right p a {
    color: var(--black);
}
.contact .contact_details a{
    color: #000;
    display: block;
    font-weight: 500;
    font-size: 16px;
}

.details span{
    font-size: 22px;
    font-family: "Roboto Slab", serif;
    display: block;
    margin-bottom: 10px;
}
.contact_details ul li{
    position: relative;
    padding-left: 90px;
    margin: 30px 0;
}
.con_icon{
    background-color: var(--bg_color_2);
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
    padding: 20px;
    color: var(--white);
    font-size: 22px;
}
.details p{
    font-weight: 600;
}







.magnific-img img {
    width: 100%;
    height: auto;
}

.mfp-bottom-bar,
* {
    font-family: 'Abel', sans-serif;
}


a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.gallery {
    columns: 3;
}

.gallery_item {
    margin-bottom: 15px;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
* Remove all paddings around the image on small screen
*/
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}










.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.inner_header img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .nav_right .contact {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    nav {
        position: relative;
    }

    .navbar_nav ul a {
        color: #000;
    }

    .navbar_nav ul li {
        padding: 20px 10px;
    }

    .banner_tittle {
        font-size: 70px;
    }

    .you_heading-title {
        font-size: 70px;
        line-height: normal;
    }

    #myHeader.sticky {
        background-color: var(--white);
    }
}




@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
    }
}


@media only screen and (max-width: 768px) {
    .banner_contant p {
        display: none;
    }

    .big_head {
        font-size: 22px;
    }

    .collection .img {
        margin-bottom: 10px;
    }

    .coll_l {
        padding-left: 0px;
    }

    .title_head {
        font-size: 25px;
    }

    .ab_img {
        width: 100%;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .you_bg {
        padding: 92px 2% 40px;
    }

    .you_contant {
        width: 100%;
    }

    .you_heading-title {
        font-size: 35px;
    }

    .my {
        margin: 30px 0;
    }

    .feachers_item img {
        border-radius: 0;
    }

    .feachers {
        padding: 39px 0;
    }

    .contact form {
        margin-top: 10px;
    }

    .ab_img {
        text-align: center;
    }

    .banner_tittle {
        font-size: 40px;
        line-height: normal;
    }

    .banner_item img {
        height: 300px;
        width: 100%;
    }

    .banner_contant {
        padding: 0 3%;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
    }
}


@media only screen and (max-width: 500px) {
    .nab_btn {
        display: none;
    }

    .logo img {
        width: 80px;
    }

    .prevarrow,
    .nextarrow {
        font-size: 16px;
    }

    .test_box {
        flex-direction: column;
    }

    .test_contant {
        width: 100%;
    }

    .foot_bg {
        padding: 0 0%;
        padding-top: 12px;
    }

    nav {
        padding: 0;
    }
}