/* Universal Css Start Here */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap");
/* @import url("https://fonts.cdnfonts.com/css/cabinet-grotesk"); */

body {
    font-family: var(--font-default);
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    background: url(../img/main-pic.png);
    width: 100%;
    /* height: 100%; */
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}
p {
    font-size: 15px;
}
ul {
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
h1 {
    font-size: 45px;
    font-family: var(--font-poppin-bold);
    color: #fff;
    margin: 0;
}
h2 {
    font-size: 30px;
    font-family: var(--font-poppin-semibold);
    margin: 0;
}
h3 {
    font-size: 30px;
    font-family: var(--font-poppin-bold);
    margin: 0;
}
h5 {
    font-size: 20px;
    font-family: var(--font-poppin-bold);
    color: #fff;
    margin: 0;
}
h6 {
    font-size: 13px;
    font-family: var(--font-poppin-medium);
    color: #000;
    margin: 0;
}
p {
    line-height: 1.8;
    font-family: var(--font-default);
    color: #616161;
    font-size: 15px;
    margin: 0;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
span {
    font-family: "DM Sans", sans-serif;
}

.butn,
.butn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #b2081c;
    background-image: linear-gradient(90deg, #b2081c, #f10823);
    /* padding: 1rem 2.5rem; */
    /* height: 6rem; */
    /* width: 40rem; */
    margin-right: 13px;
    /* border-radius: 4px; */
    border: none;
    /* color: #fff; */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    fill: #ffffff;
    color: #ffffff;
    background-color: var(--e-global-color-545649f);
    border-radius: 0px 0px 0px 0px;
    padding: 16px 30px 16px 30px;
}
.butn::before {
    background: #fff;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.butn::after {
    background: #fff;
    content: "";
    height: 15rem;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 4rem;
}
.butn__new::before {
    left: -50%;
}

.butn__new::after {
    left: -100%;
}

.butn:hover,
.butn:active {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}
.scroll-down {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in 3s;
    transition: all 0.5s ease-in 3s;
}

.scroll-down {
    margin-left: -16px;
    display: block;
    width: 92px;
    height: 92px;
    background-size: 14px auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    transform: scale(1);
    object-fit: fill;
}
@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}
.field {
    position: absolute;
    right: 21px;
    bottom: -28px;
}

.butn__new:hover::before {
    left: 120%;
    opacity: 0.5s;
}

.butn__new:hover::after {
    left: 200%;
    opacity: 0.6;
}
.butn span {
    z-index: 20;
}
.butn span i.fa.fa-long-arrow-right {
    padding-left: 10px;
}
/* sidebar css */
.search-box {
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    padding: 25px 0px;
    transition: 0.6s;
    transform: translateY(-150%);
}
.search-box.show {
    transform: translateY(0%);
    z-index: 9999;
    border: 1px solid;
    background: #f0f0f0;
}
.search-box .form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.search-box .form-group button {
    border: 0;
    background: transparent;
    position: absolute;
    right: 0;
    outline: none;
    padding: 10px 20px;
}

.search-box .form-group input {
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    height: 50px;
    padding: 20px;
}
.search-box .cancel {
    text-align: right;
    padding: 10px 0px;
}
.search-box .cancel svg {
    color: #000 !important;
    width: 35px;
    height: 35px;
    cursor: pointer;
    fill: #000;
}
/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1111;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}
/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover,
.offcanvas a:focus {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

.sidenav {
    right: 0;
}
.profile-name-wrapper h5 {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.sidenav {
    right: 0;
}

/* sidebar css */
/* header start */
header.navbar1 {
    display: none;
}
.sticky-header ul.header-sticky-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shopping-card {
    display: flex;
    align-items: center;
    gap: 7px;
}
.profile-nav {
    align-items: end !important;
    display: flex;
    justify-content: end;
    width: unset !important;
    max-width: 16% !important;
    margin-left: 17px;
}
.second-display-none {
    display: none !important;
}

.profile-nav .dropdown-menu {
    min-width: 12vw !important;
}
.profile-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 0;
    right: 0;
}
.profile-name-wrapper h6 {
    color: #ed1c24;
}
.profile-nav a.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: translate(-1px, -4px);
    transition: 0.5s all;
    color: #fff;
}
.profile-nav li.dropdown:hover a.dropdown-toggle::after {
    transform: translate(0px, 0px) !important;
}

.wrapper-flex-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.wrapper-flex-profile img {
    width: 46px;
    height: 46px;
    object-fit: scale-down;
}
header.header-top {
    background: radial-gradient(
        circle at 24.1% 68.8%,
        rgb(0, 0, 0) 0%,
        rgb(50, 50, 50) 99.4%
    ) !important;
}
ul.header-sticky-social li a i.fa.fa-facebook {
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 50%;
}
li.border-facebook {
    border: 1px solid #fff;
    padding: 11px;
}
li.border-facebook:hover {
    border: 1px solid transparent;
    padding: 11px;
    transition: all 0.6s;
}
.shopping-card h4 {
    color: #fff;
    font-size: 15px;
    margin: 0;
}
.shopping-card i {
    color: #fff;
    font-size: 23px;
}
.shopping-card {
    display: flex;
    align-items: baseline;
    gap: 7px;
    position: relative;
}
.dot-wrapper {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #d9534f;
    border-radius: 50%;
    right: -5px;
    top: -6px;
}
.dot-wrapper h6 {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.nav-top-second {
    display: flex;
    align-items: center;
    justify-content: end;
    border-top: 1px solid #707070;
    padding-top: 10px;
}
.nav-top-first {
    display: flex;
    align-items: center;
    justify-content: end;
}
ul.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

header.web-header nav ul li a.active {
    /* border-bottom: 2px solid #c29e6c; */
    color: #b4b4b4;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    vertical-align: middle;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
ul.header-sticky-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}
.nav-top-first ul.navbar-nav {
    gap: 22px;
}
li.phone a {
    color: #fff;
}
ul.header-sticky-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    gap: 22px;
    margin-left: 19px;
}
.body-wrap nav.navbar.navbar-inverse div#bs-example-navbar-collapse-1 {
    display: flex;
    align-items: center;
    justify-content: end;
}
.body-wrap
    nav.navbar.navbar-inverse
    div#bs-example-navbar-collapse-1
    ul.nav.navbar-nav {
    gap: 20px;
}
.body-wrap
    nav.navbar.navbar-inverse
    div#bs-example-navbar-collapse-1
    ul.nav.navbar-nav
    li.dropdown
    a.dropdown-toggle {
    color: #fff;
    font-family: var(--font-poppin-medium);
    font-size: 15px;
}
.body-wrap
    nav.navbar.navbar-inverse
    div#bs-example-navbar-collapse-1
    ul.nav.navbar-nav
    li.dropdown
    a.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: translate(-1px, -4px);
    transition: 0.5s all;
}
li.dropdown:hover a.dropdown-toggle::after {
    transform: translate(0px, 0px) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    /* transition: all 0.5s; */
    /* padding: 4px !important; */
    color: #fff;
    font-family: var(--font-poppin-medium);
    font-size: 17px;
}
nav.navbar.navbar-expand-lg.navbar-light {
    display: unset;
    align-items: center;
    justify-content: center;
}
header.web-header .navbar-light .navbar-nav .nav-link:focus,
header.web-header .navbar-light .navbar-nav .nav-link:hover {
    color: #b4b4b4;
    fill: #b4b4b4;
}
.sticky {
    position: fixed;
    z-index: 111;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all 1s ease-in-out !important;
    right: 0;
    height: 72px !important;
}
.sticky .img-logo-main a img {
    width: 100%;
    height: 62px;
    object-fit: scale-down;
    transition: all 1s ease-in-out !important;
}
.stickynav {
    position: fixed !important;
    z-index: 111;
    top: 0;
    bottom: 0;
    left: 0;
    transition: all 1s;
    right: 0;
}
header.web-header {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
/* header end */
.navigation {
    height: 55px;
    position: relative;
    display: none;
}
.brand {
    position: absolute;
    padding-left: 20px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 1.4em;
}
.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
}
.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}
/* .header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
} */
.img-logo-main a img {
    width: 100%;
    height: 136px;
    object-fit: fill;
    transition: all 1s ease-in-out !important;
}
.header-main {
    height: 100%;
}
/* .img-logo-main {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
} */
.the-header {
    overflow: hidden;
    background-color: #002349;
}
.first-in-nav {
    margin-left: 30px;
}
.header-start a {
    float: left;
    display: block;
    color: #ffffff;
    font-family: popins-medium;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.77;
}
.active {
    opacity: 1 !important;
}

.header-start .icon {
    display: none;
}
.dropdown-in-the-header a i {
    margin-left: 6px;
}
.dropdown-in-the-header {
    float: left;
    overflow: hidden;
    color: #ffffff;
}
.butn.butn__new {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    fill: #ffffff;
    color: #ffffff;
}
a.butn.butn__new.btnwrapper.blue-btn {
    background: #003ba3;
}
a.butn.butn__new.btnwrapper {
    font-size: 15px;
    padding: 10px 3px !important;
    margin-right: 0;
    width: 121px;
    border-radius: 5px;
    text-transform: capitalize;
    cursor: pointer;
}
.add-to-card-wrapper.banner.pricing {
    text-align: center;
}

.dropdown-in-the-header .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
.for-all-nav {
    margin-top: 40px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 145px;
    z-index: 1;
    left: 5px;
    top: 20px;
}
.for-register-loginin-navber {
    float: left;
}
.dropdown-content a {
    float: none;
    text-decoration: none;
    display: block;
    text-align: left;
    color: #000;
    /* text-align: center; */
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.77;
}

.header-start a:hover,
.dropdown-in-the-header:hover .dropbtn {
    background-color: #555;
    color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown-in-the-header:hover .dropdown-content {
    display: block;
}
ul.dropdown-next li a h6 {
    font-family: "Poppins-Medium";
    font-size: 14px;
    color: #000;
    line-height: 20px;
}
/* footer */
.img-mountain.footer-img-mountain {
    z-index: 111;
}
.text-white {
    background: transparent;
    padding: 90px 0 20px 0;
    position: relative;
}
.text-white .newsletter_wrapper .btn {
    background: white;
    /* font-family: var(--font-poppin-medium); */
    color: #025042 !important;
    font-size: 15px;
    border: 0;
    font-family: var(--bold-font-family);
    border-radius: 0px !important;
    width: 100%;
}
.text-white .newsletter_wrapper input {
    border: 1px solid #e1e3e4 !important;
    background: #fff;
    height: 50px;
    padding: 0px 23px;
    border-radius: 12px;
    outline: none;
}
.text-white .newsletter_wrapper input::placeholder {
    font-size: 1rem;
    font-family: "Poppins-Medium";
    color: #656565 !important;
}
.text-white .btn-slatter {
    position: absolute;
    line-height: 0px;
    right: 0px !important;
    border-radius: 25px;
    padding: 0 5px !important;
    bottom: 0;
}
.text-white .newsletter_wrapper .btn {
    background: #ed1c24;
    color: #fff !important;
    font-size: 17px;
    border-radius: 10px !important;
    width: 100%;
    padding: 0px 50px;
    text-transform: capitalize;
    height: 50px;
    font-family: "Poppins-SemiBold";
}
.email {
    display: flex;
    gap: 10px;
    line-height: 1.2;
    margin-top: 20px;
}
.email.tele {
    margin-top: 1px;
}
.email p {
    width: 40px;
}
.service-heading.text-center h4 {
    margin-bottom: 40px;
}
section.service {
    padding: 20px 0 60px 0;
}
.head h5 {
    line-height: 3;
}
ul.footer-menus li {
    padding-bottom: 6px;
}
ul.footer-menus li a {
    color: #ffffff;
    font-size: 14px;
    font-family: "Poppins-Medium";
}
ul.social_icons13 {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 0px;
    margin: 0;
    justify-content: end;
}
.head h5::before {
    width: 50%;
    height: 5px;
    background-color: #fff;
    content: "";
}
ul.social_icons13 li a i {
    color: #fff;
}
.footer-all-right.text-center h6 {
    color: #fff;
    font-size: 11px;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    margin: 0;
}
.footer-all-right.text-center {
    padding-top: 30px;
}

.row.center-wrapper {
    padding-bottom: 0px;
    margin-top: 50px;
    justify-content: space-between;
}
p.greenwood {
    font-size: 14px;
    margin-top: 16px;
}
.img-mountain {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
form.d-flex.news-wrapper {
    position: relative;
    margin: 0;
}
.footer-heading h3 {
    font-style: italic;
    font-size: 31px;
    color: #fff;
    margin: 0;
}
.footer-heading h5 {
    color: #fff;
    font-style: italic;
    font-size: 30px;
}
.footer_content .head h5 {
    color: #fff;
    font-family: "Poppins-Bold";
    font-size: 20px;
}
.footer_content.frst p {
    font-size: 11px;
    color: #c4c9ca;
}
.banner-img-main-wrapper img {
    width: 100%;
    height: 111vh;
    object-fit: fill;
}
.row.main-wrapper {
    position: absolute;
    top: 0;
}
.main-top-navbar {
    position: absolute;
    width: 100%;
}

.rotate-heading {
    transform: rotate(90deg);
    position: absolute;
    top: 46%;
    bottom: 54%;
    text-align: center;
    left: -16px;
}
.rotate-heading h5 {
    font-family: var(--bold-font-family);
    color: #14252a !important;
    font-size: 17px;
    font-style: initial;
    letter-spacing: 2px;
}
.rotate-heading h6 {
    font-family: var(--medium-font-family);
    color: #14252a !important;
    font-size: 14px;
    font-style: initial;
    letter-spacing: 2px;
    /* word-spacing: 3px; */
    margin: 0;
}
.building-card {
    /* position: absolute; */
    bottom: -2px;
    left: -40px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    height: 111vh;
}
.img-heading h4 {
    font-family: var(--medium-font-family);
    color: #14252a !important;
    font-size: 22px;
    font-style: italic;
    margin: 0;
    white-space: nowrap;
}
.all-footer-icon-logo .footer-heading h1 {
    font-family: "Poppins-ExtraBold";
    font-size: 35px;
}
span.bold-wrapper {
    color: #fff;
    font-family: "Poppins-Bold";
    font-size: 16px;
    margin-left: 4px;
}
ul.footer-menus.contect-wrapper li {
    margin-bottom: 12px;
}
.footer-all-right.text-start h6 {
    color: #ffffff;
    font-size: 16px;
    font-family: "Poppins-Medium";
}
.footer_content-icon ul.social_icons13 li h6 {
    color: #ffffff;
    font-size: 16px;
    font-family: "Poppins-Medium";
}
ul.social_icons13 li a {
    background: #0041b2;
    width: 35px !important;
    height: 34px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
/* footer */

header.web-header .dropdown-menu {
    white-space: nowrap;
}
.dropdown-menu {
    padding: 0;
    border-radius: 0;
}
ul.dropdown-next {
    display: flex;
    flex-direction: column;
    padding: 11px 10px;
}

.img-logo-main {
    display: flex;
    align-items: center;
    justify-content: end;
}
.right-wrapper {
    text-align: end;
    margin-top: 50px;
}
.left-wrapper {
    width: 50%;
    text-align: center;
}
.custom-trading-pins img {
    width: 154px;
    height: 154px;
    object-fit: scale-down;
}
.side-image-heading {
    margin-top: 10px;
}
.custom-trading-pins.right img.img-fluid {
    width: 189px;
    height: 160px;
    object-fit: scale-down;
}
.right-wrapper-left {
    float: right;
    width: 50%;
    text-align: center;
}
.left-wrapper-right {
    text-align: center;
    margin-top: 91px;
    height: 100%;
    float: left;
}
.add-btn-wrapper.mt-lg-5.text-center {
    padding-top: 67px;
}
.main-tranform-image img {
    width: 100%;
    height: 269px;
    object-fit: scale-down;
}
.custom-image-right img {
    width: 154px;
    height: 154px;
    object-fit: scale-down;
}
.custom-img-left img {
    width: 189px;
    height: 120px;
    object-fit: scale-down;
}
.zoom-in:hover {
    transition: all 0.3s;
    transform: scale(1.4);
}
.zoom-in {
    transition: all 0.4s ease-in-out;
}
section#banner-wrapper {
    position: relative;
}
/* section sec */
.main-product {
    background: #fff;
    border-radius: 10px;
}
.main-product {
    border-radius: 10px;
    padding: 20px 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
}
.product-heading h6 {
    font-family: "Poppins-SemiBold";
    background: #0041b2;
    color: #fff;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 187px;
}
.product-heading h2 {
    font-family: "Poppins-Bold";
    font-size: 32px;
}
section#our-product {
    padding-top: 110px;
}
.step-image {
    background: #000;
    width: 80px;
    height: 90px;
    display: flex;
    padding: 20px 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.steps {
    display: flex;
    align-items: center;
    gap: 16px;
}
.step-content h3 {
    font-family: "Poppins-Bold";
    color: #ed1c24;
}
.step-content h5 {
    color: #000;
    font-family: "Poppins-Bold";
    margin: 4px 0;
    font-size: 18px;
}
.step-content p {
    line-height: 1.4;
}
/* product select */
.second-product .product-heading h2 {
    color: #fff;
    margin-bottom: 10px;
}
.second-product .product-heading p {
    color: #fff;
}
.second-product .product-heading p {
    color: #fff;
    line-height: 1.5;
    margin-top: 10px;
}
.eagle-center {
    background: #fff;
    padding: 40px 40px;
    position: relative;
    border-radius: 30px;
}
.eagle-image-center {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-z-index {
    position: relative;
    z-index: 1;
}
.form-control {
    background: transparent;
    border: none;
    padding: 0;
}
.form-control input {
    background: #fff;
}
.form-control input {
    background: #fff;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #c2c2c2;
    padding: 10px 16px;
}
.form-control input::placeholder {
    color: #656565;
    font-family: "Poppins-Medium";
    font-size: 1rem;
}
.form-control select.form-select {
    background: #fff;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #c2c2c2;
    color: #656565;
    font-family: "Poppins-Medium";
    font-size: 0.9rem;
    position: relative;
    padding: 10px 16px;
}
.form-control textarea#floatingTextarea2 {
    background: #fff;
    border-radius: 10px;
    height: 50px;
    border: 1px solid #c2c2c2;
    resize: none;
    padding: 10px 16px;
}
.form-control textarea#floatingTextarea2::placeholder {
    color: #656565;
    font-family: "Poppins-Medium";
    font-size: 1rem;
}
.form-control input[type="file"] {
    color: #3a3a3a;
    border: none;
    font-family: "Poppins-Medium";
    font-size: 1rem;
    background: transparent;
}
.form-control input[type="file"]::-webkit-file-upload-button {
    background: #f2f2f2;
    border: none;
    border-radius: 4px;
    color: #5f5f5f;
    cursor: pointer;
    outline: none;
    padding: 10px 25px;
    text-transform: uppercase;
    transition: all 1s ease;
    font-family: "Poppins-Medium";
    font-size: 1rem;
}
.form-control:focus {
    color: #656565;
    background-color: #ffffff80;
    border-color: #c2c2c2;
    outline: 0;
    box-shadow: none;
}
.form-control select.form-select {
    color: #656565;
    background-color: #ffffff80;
    border-color: #c2c2c2;
    outline: 0;
    box-shadow: none;
}
.form-control select.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../img/arrow-select.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 20px;
}
section#product-second {
    padding: 70px 0px 50px 0;
}
/* gallery section */
.step-image-gallary {
    background: #222222;
    width: 100%;
    height: 170px;
    display: flex;
    padding: 4px 20px;
    border-radius: 17px;
    align-items: center;
    margin: 10px 0;
    justify-content: center;
}
.step-image-gallary img {
    width: 100%;
    height: 100px;
}
.step-image {
    background: #222222;
    width: 100px;
    height: 90px;
    display: flex;
    padding: 10px 15px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
/* testemonial */
section#testemonials .product-heading h2 {
    color: #fff;
}
section#testemonials .product-heading p {
    color: #fff;
}
section#testemonials .main-product {
    background: transparent;
}
section#testemonials .main-product {
    background: transparent;
    padding: 0;
}
.testimonial-reel {
    margin-bottom: 1rem !important;
    margin-top: 1rem;
}
.testimonial-reel .box {
    position: relative;
    margin-bottom: 30px;
}
.testimonial-reel .box .image {
    margin: 0 auto -45px;
    text-align: center;
}
.testimonial-reel .box .image img {
    height: 130px;
    margin: 0 auto;
}
.testimonial-reel .box .test-component {
    padding: 20px;
    height: 300px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    overflow: auto;
}
.testimonial-reel .box .test-component::-webkit-scrollbar {
    width: 0px;
}

.testimonial-reel .box .test-title {
    font-family: "Open Sans", sans-serif;
    color: #f96d02;
    text-align: center;
    margin-top: 3.3rem;
    margin-bottom: 15px;
}
.testimonial-reel .box .test-content {
    text-align: center;
}
.testimonial-reel .slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}
.testimonial-reel .slick-slide.slick-cloned {
    transition: opacity 0.3s;
}
.testimonial-reel .slick-slide.slick-current.slick-active {
    opacity: 1;
    transition: opacity 0.3s;
}

.slider-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.testimonial-heading h5 {
    color: #000;
}
.testimonial-heading h5 {
    color: #000;
    font-family: "Poppins-Bold";
    font-size: 22px;
}

/* Ratings widget */
.rate {
    display: inline-block;
    border: 0;
}
/* Hide radio */
.rate > input {
    display: none;
}
/* Order correctly by floating highest to the right */
.rate > label {
    float: right;
}
/* The star of the show */
.rate > i {
    color: #c6ab16;
}
/* .rate > span:before {
    display: inline-block;
    font-size: 1rem;
    padding: 0.3rem 0.2rem;
    margin: 0;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005 ";
    color: #c6ab16;
} */
/* Zero stars rating */

/* Half star trick */
/* .rate .half:before {
    content: "\f006 "; 
    position: absolute;
    padding-right: 0;
} */
/* Click + hover color */
input:checked ~ label, /* color current and previous stars on checked */
label:hover, label:hover ~ label {
    color: #c6ab16;
} /* color previous stars on hover */

/* Hover highlights */
input:checked + label:hover, input:checked ~ label:hover, /* highlight current and previous stars */
input:checked ~ label:hover ~ label, /* highlight previous selected stars for new rating */
label:hover ~ input:checked ~ label /* highlight previous selected stars */ {
    color: #c6ab16;
}
.testimonial-heading {
    line-height: 1;
}
.str-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    /*justify-content: space-between;*/
}
.testimonial-reel .slick-slide.slick-current.slick-active .test-component {
    opacity: 1;
    transition: opacity 0.3s;
    background: #0041b2;
    padding: 20px;
    min-height: 200px;
    border-radius: 30px;
}
.testimonial-reel .slick-slide.slick-current.slick-active .test-component p {
    color: #fff;
}
.testimonial-reel .slick-slide.slick-current.slick-active h5 {
    color: #fff;
}
.testimonial-reel .slick-slide.slick-current.slick-active .rating h6 {
    color: #fff;
}

.testimonial-reel
    .slick-slide.slick-current.slick-active
    .image-testimonial
    img {
    border: 2px solid #fff;
}
.image-testimonial img {
    width: 50px;
    height: 50px;
    object-fit: fill;
    border-radius: 50%;
    border: 2px solid #ed1c24;
}

.rating h6 {
    font-family: "CabinetGrotesk-Bold";
    font-size: 16px;
}
section#testemonials {
    padding-top: 70px;
}
#testemonials .product-heading-para p {
    color: #fff;
}
.slick-list.draggable {
    padding: 0 !important;
}
/* faqs section */
section#faqs .product-heading h6 {
    width: 90%;
    font-family: "CabinetGrotesk-Bold";
}
section#faqs .second-product .product-heading h2 {
    color: #fff;
    margin-bottom: 10px;
    font-family: "CabinetGrotesk-Extrabold";
    text-transform: capitalize;
    padding-right: 97px;
}
section#faqs .accordion-button {
    background-color: #fff;
    font-family: "Poppins-Bold";
    font-size: 21px;
    color: #121212;
    border-radius: 10px !important;
    padding: 10px 20px;
}
section#faqs .accordion-button:after {
    background-image: url("../img/arrow-accordion1.png");
    margin-top: 10px;
}
section#faqs .accordion-button:not(.collapsed)::after {
    background-image: url("../img/arrow-accordion2.png") !important;
    transform: rotate(0deg) !important;
}

section#faqs button[aria-expanded="true"].accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ed1c24;
    border-radius: 0px;
}
section#faqs .accordion-item.active {
    border: 1px solid #ed1c24 !important;
    border-radius: 10px;
}
section#faqs .accordion-item {
    border-radius: 10px !important;
    margin-bottom: 10px;
}
section#faqs .accordion-body {
    padding: 0rem 1.25rem;
    padding-bottom: 20px;
}
section#faqs .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

section#faqs .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: none;
}
section#faqs .accordion-body p {
    color: #141314;
    line-height: 1.5;
    font-family: "Poppins-Medium";
}
.contact-us-main {
    background: #efefef;
    border-radius: 20px;
    padding: 30px 30px;
}
section#contact-us .contact-us-main .form-control input {
    border: none;
}
section#contact-us .contact-us-main .form-control textarea#floatingTextarea2 {
    border: none;
    height: 68px !important;
}
section#contact-us .contact-us-main .form-btn .butn {
    width: 100%;
}
section#contact-us .contact-us-main .form-btn .butn {
    width: 100%;
    height: 45px;
}
section#contact-us .product-heading h2 {
    text-transform: capitalize;
    color: #000;
    font-size: 35px;
    letter-spacing: -1px;
    margin-bottom: 10px;
}
section#contact-us {
    padding-top: 50px;
}
/* faq start here */
.faq_info p {
    color: #3a3a3a;
    font-family: "Poppins-Medium";
}
.faq_info {
    padding-bottom: 20px;
}
.faq_sec .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.faq_sec {
    padding-top: 40px;
}

/* reponsive nav */
.phone_header {
    display: none !important;
}

/* faq end here */
@media (max-width: 590px) {
    .faq-card h5 .faq {
        font-size: 7px;
    }

    .faq-card .heading {
        padding: 0;
        overflow: hidden;
        border-radius: 0;
    }

    div#accordion {
        width: 100%;
    }

    .card-body {
        font-size: 8px;
    }

    .reserve-btn {
        width: 53%;
    }

    h2 {
        font-size: 34px;
    }
    .faq-heading {
        width: 100%;
    }
    .faq-box {
        padding: 10px 0px;
    }
}

@media (max-width: 1367px) {
    .body-wrap
        nav.navbar.navbar-inverse
        div#bs-example-navbar-collapse-1
        ul.nav.navbar-nav
        li.dropdown
        a.dropdown-toggle {
        font-size: 12px;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }
    .shopping-card i {
        font-size: 21px;
    }
    a.butn.butn__new.btnwrapper {
        font-size: 14px;
    }
    ul.dropdown-next li a h6 {
        font-size: 12px;
    }
}

/* footer reponsive code */
@media (max-width: 800px) {
    ul.footer-menus li a {
        font-size: 11px;
    }
    footer span {
        font-size: 12px;
    }
    .footer-all-right.text-start h6 {
        font-size: 13px;
    }
}
/* phone header  start here*/
.reponsive_nav.showheader.expanded.active {
    transform: translateX(0%) !important;
}
.free-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.phone_header .reponsive_nav {
    width: 100%;
    height: 100%;
    position: fixed;
    background: black;
    top: 0;
    z-index: 11111;
    right: -4px;
    overflow-y: scroll;
    padding: 2px 4px;
    transition: 0.7s;
    transform: translateX(100%) !important;
    box-shadow: 0 0 7px #ddd;
}
main.main-hamberger.overlay {
    position: relative;
    z-index: 999999999999;
    top: 0;
    right: -20px;
}
main.main-hamberger.overlay > .hamburger .line {
    display: block;
    width: 30px;
}
.cancel {
    text-align: right;
}
.cancel svg {
    width: 40px;
    height: 40px;
    fill: white;
    cursor: pointer;
}
.login_pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 10px 0 10px;
}
.login_pro a.butn.butn__new.btnwrapper {
    font-size: 12px;
    width: 100px;
}
.login_pro h6 {
    color: #ffffff;
}
.nav_Wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #0000003d;
    gap: 20px;
    align-items: center;
}

.profile_drop img {
    width: 55px;
}

.logo_img img {
    width: 81px;
}

.icons {
    display: flex;
    gap: 10px;
    padding-right: 10px;
    align-items: center;
}

.icons .fa {
    color: #ffffff;
    font-size: 21px;
}

.profile_drop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reponsive_nav.showheader a {
    color: #ffffff;
    font-size: 14px;
    font-family: "Poppins-Medium";
}
.reponsive_nav.showheader li {
    text-align: center;
    padding: 10px 0;
}
section.gallery.wrapper {
    padding-top: 10px !important;
}
/* main {
	background: #cacaca;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	max-width: 100vw;
	overflow-x: hidden;
} */
main #hamburger {
    display: none;
}
main .expanded {
    display: none;
}
/* main .expanded.active {
	display: flex;
	justify-content: center;
	align-items: end;
	flex-direction: column;
	gap: 2rem;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.3);
	height: 100%;
	width: 100%;
} */

.hamburger {
    all: unset;
    cursor: pointer;
    z-index: 10;
}
.hamburger .line {
    display: block;
    width: 40px;
    height: 4px;
    background: #fff;
    margin-block: 0.4rem;
    border-radius: 1rem;
    transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.hamburger.active .line:nth-of-type(1) {
    transform: translateY(0.5rem) rotate(45deg);
}
.hamburger.active .line:nth-of-type(2) {
    transform: translateX(15px);
    opacity: 0;
}
.hamburger.active .line:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
}
/* .overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgba(1, 1, 1, 0.7);
} */
@media (max-width: 1025px) {
    h1 {
        font-size: 35px;
    }
    h5 {
        font-size: 15px;
    }
    .product-heading h2 {
        font-size: 30px;
    }
    p {
        font-size: 14px;
    }
    h3 {
        font-size: 25px;
    }
    section#faqs .accordion-button {
        font-size: 18px;
    }
    .text-white .newsletter_wrapper .btn {
        padding: 0px 27px;
    }
    ul.footer-menus li a {
        font-size: 11px;
        white-space: nowrap;
    }
    .footer-menus span.bold-wrapper {
        font-size: 14px;
    }
    .footer-all-right.text-start h6 {
        font-size: 14px;
    }
    .footer_content-icon ul.social_icons13 li h6 {
        font-size: 14px;
    }
    .all-footer-icon-logo .footer-heading h1 {
        font-size: 30px;
    }
    section#contact-us .product-heading h2 {
        font-size: 30px;
    }
    section#faqs .product-heading h6 {
        width: 100%;
    }
    .product-heading h6 {
        font-size: 14px;
        width: 200px;
    }
}
@media (max-width: 990px) {
    header.phone_header {
        padding: 16px;
    }
    .reponsive_nav.showheader .profile-nav .dropdown-toggle::after {
        top: 10px;
        right: -29px;
    }
    .reponsive_nav.showheader .second-display-none .dropdown-menu {
        position: absolute !important;
        width: 160px;
    }
    .reponsive_nav.showheader ul {
        margin: 0;
    }
    .container-dropdown {
        width: 350px;
        margin: 0px auto;
    }
    .container-dropdown > ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .container-dropdown .title {
        font-family: "Pacifico";
        font-weight: norma;
        font-size: 40px;
        text-align: center;
        line-height: 1.4;
        color: #2980b9;
    }

    .container-dropdown .dropdown a {
        text-decoration: none;
    }
    .container-dropdown .dropdown [data-toggle="dropdown"] {
        position: relative;
        display: block;
        color: white;
        /* background: #2980b9; */
        -moz-box-shadow: 0 1px 0 #409ad5 inset, 0 -1px 0 #20638f inset;
        /* -webkit-box-shadow: 0 1px 0 #409ad5 inset, 0 -1px 0 #20638f inset; */
        /* box-shadow: 0 1px 0 #409ad5 inset, 0 -1px 0 #20638f inset; */
        /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); */
        padding: 10px;
    }
    /* .container-dropdown .dropdown [data-toggle="dropdown"]:hover {
		background: #2c89c6;
	} */
    .container-dropdown .dropdown .icon-arrow {
        position: absolute;
        display: block;
        font-size: 0.7em;
        color: #fff;
        top: 14px;
        right: 10px;
    }
    .container-dropdown .dropdown .icon-arrow.open {
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -moz-transition: -moz-transform 0.6s;
        -o-transition: -o-transform 0.6s;
        -webkit-transition: -webkit-transform 0.6s;
        transition: transform 0.6s;
    }
    .container-dropdown .dropdown .icon-arrow.close {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -moz-transition: -moz-transform 0.6s;
        -o-transition: -o-transform 0.6s;
        -webkit-transition: -webkit-transform 0.6s;
        transition: transform 0.6s;
    }
    .container-dropdown .dropdown .icon-arrow:before {
        content: "\25BC";
    }
    .container-dropdown .dropdown .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .container-dropdown .dropdown .dropdown-menu li {
        padding: 0;
    }
    .container-dropdown .dropdown .dropdown-menu li a {
        display: block;
        color: #6f6f6f;
        background: #fff;
        -moz-box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
        -webkit-box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
        box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
        text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.3);
        padding: 10px 10px;
    }
    .container-dropdown .dropdown .dropdown-menu li a:hover {
        background: #f6f6f6;
    }
    .container-dropdown .dropdown .show,
    .container-dropdown .dropdown .hide {
        -moz-transform-origin: 50% 0%;
        -ms-transform-origin: 50% 0%;
        -webkit-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
    }
    .container-dropdown .dropdown .show {
        display: block;
        max-height: 300px;
        width: 100%;
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        animation: showAnimation 0.5s ease-in-out;
        -moz-animation: showAnimation 0.5s ease-in-out;
        -webkit-animation: showAnimation 0.5s ease-in-out;
        -moz-transition: max-height 1s ease-in-out;
        -o-transition: max-height 1s ease-in-out;
        -webkit-transition: max-height 1s ease-in-out;
        transition: max-height 1s ease-in-out;
        position: relative;
    }
    .container-dropdown .dropdown .hide {
        max-height: 0;
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        animation: hideAnimation 0.4s ease-out;
        -moz-animation: hideAnimation 0.4s ease-out;
        -webkit-animation: hideAnimation 0.4s ease-out;
        -moz-transition: max-height 0.6s ease-out;
        -o-transition: max-height 0.6s ease-out;
        -webkit-transition: max-height 0.6s ease-out;
        transition: max-height 0.6s ease-out;
    }

    @keyframes showAnimation {
        0% {
            -moz-transform: scaleY(0.1);
            -ms-transform: scaleY(0.1);
            -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
        }
        40% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        100% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
    }
    @-moz-keyframes showAnimation {
        0% {
            -moz-transform: scaleY(0.1);
            -ms-transform: scaleY(0.1);
            -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
        }
        40% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        100% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
    }
    @-webkit-keyframes showAnimation {
        0% {
            -moz-transform: scaleY(0.1);
            -ms-transform: scaleY(0.1);
            -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
        }
        40% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.04);
            -ms-transform: scaleY(1.04);
            -webkit-transform: scaleY(1.04);
            transform: scaleY(1.04);
        }
        100% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
    }
    @keyframes hideAnimation {
        0% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(0);
            -ms-transform: scaleY(0);
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
        }
    }
    @-moz-keyframes hideAnimation {
        0% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(0);
            -ms-transform: scaleY(0);
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
        }
    }
    @-webkit-keyframes hideAnimation {
        0% {
            -moz-transform: scaleY(1);
            -ms-transform: scaleY(1);
            -webkit-transform: scaleY(1);
            transform: scaleY(1);
        }
        60% {
            -moz-transform: scaleY(0.98);
            -ms-transform: scaleY(0.98);
            -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
        }
        80% {
            -moz-transform: scaleY(1.02);
            -ms-transform: scaleY(1.02);
            -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
        }
        100% {
            -moz-transform: scaleY(0);
            -ms-transform: scaleY(0);
            -webkit-transform: scaleY(0);
            transform: scaleY(0);
        }
    }

    .web-header {
        display: none !important;
    }
    .phone_header {
        display: block !important;
    }
    .left-wrapper {
        width: 70%;
    }
    .right-wrapper-left {
        width: 70%;
    }
    .left-wrapper-right {
        margin-top: 92px;
    }
    h1 {
        font-size: 30px;
    }
    .product-heading h2 {
        font-size: 26px;
        margin: 10px 0;
    }
    div#accordionExample {
        padding: 0;
    }
    .text-white {
        padding: 50px 0 20px 0;
    }
    .footer-heading {
        margin-bottom: 20px;
    }
    .row.center-wrapper {
        justify-content: start;
    }
    .text-white .newsletter_wrapper .btn {
        padding: 0px 47px;
    }
}
@media (max-width: 821px) {
    .field {
        right: 21px;
        bottom: -98px;
    }
    div#accordionExample {
        padding: 10px 10px;
    }
}
@media (max-width: 992px) {
    .container-dropdown {
        width: 270px;
    }
    section#contact-us .contact-us-main .form-btn .butn {
        margin-top: 20px;
    }
    .product-heading p {
        margin-bottom: 20px;
    }
}
@media (max-width: 799.9px) {
    .left-wrapper {
        width: 49%;
        display: inline-block;
    }
    .right-wrapper {
        text-align: center;
        margin-top: 50px;
        width: 49%;
        display: inline-block;
    }
    .right-wrapper-left {
        width: 49%;
        display: inline-block;
        margin-top: 20px;
    }
    .left-wrapper-right {
        margin-top: 50px;
    }
    ul.social_icons13 {
        margin: 10px 0;
        justify-content: start;
    }
    .login_pro {
        display: block;
    }
    .step-image-gallary {
        width: 200px;
        height: 170px;
    }
    .eagle-center {
        margin-top: 30px;
    }
    .profile-nav {
        align-items: end !important;
        display: flex;
        justify-content: center;
        width: unset !important;
        max-width: 100% !important;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 18px;
    }
    .order-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }
    .right-wrapper-left {
        width: initial;
    }
    .custom-img-left img {
        width: 189px;
        height: 160px;
        object-fit: scale-down;
    }
    .right-wrapper {
        text-align: center;
        margin-top: 0px;
    }
    .left-wrapper {
        width: initial;
        padding-right: 90px;
    }
    .left-wrapper-right {
        margin-top: -15px;
        padding-left: 20px;
    }
    .product-heading h2 {
        font-size: 16px;
    }
    .product-btn.text-end {
        margin-bottom: 10px;
    }
    .steps {
        margin-top: 10px;
    }
    .eagle-center {
        padding: 40px 20px;
    }
    .second-product .product-heading p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .text-white .newsletter_wrapper .btn {
        padding: 0px 19px;
    }
    .login_pro {
        display: block;
        padding-top: 70px;
    }
    .reponsive_nav.showheader li {
        padding: 5px 0;
    }
    .free-wrapper li.nav-item.free-quote {
        width: 100%;
    }
    .nav-link {
        padding: 0.2rem 1rem;
    }
    body {
        height: 100vh;
    }
    ul.social_icons13 {
        display: flex;
        align-items: center;
        gap: 13px;
        margin: 10px 0;
        justify-content: start;
    }
    .step-image-gallary img {
        height: 70px;
        width: 100px;
    }
    .login_pro a.butn.butn__new.btnwrapper {
        font-size: 11px;
        width: 100%;
    }
    .step-image-gallary {
        width: 150px;
        height: 110px;
        padding: 4px 10px;
        display: flex;
    }
    button.slick-prev.slick-arrow {
        display: none !important;
    }
    button.slick-next.slick-arrow {
        display: none !important;
    }
    .butn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
}
@media (max-width: 376px) {
    .login_pro a.butn.butn__new.btnwrapper {
        font-size: 11px;
        width: 100%;
    }
    .profile-name-wrapper h6 {
        font-size: 11px;
    }
}
@media (max-width: 320px) {
    .step-image-gallary {
        width: 125px;
        height: 110px;
        padding: 4px 10px;
        display: flex;
    }
}
@media (max-width: 360px) {
    .step-image-gallary {
        width: 145px;
    }
    .custom-galleries-design {
        width: 155px;
    }
}
@media (max-width: 281px) {
    .step-image-gallary {
        width: 105px;
        height: 90px;
        padding: 4px 12px;
    }
    section#faqs .accordion-button {
        font-size: 12px;
    }
    section#contact-us .product-heading h2 {
        font-size: 16px;
    }
    .contact-us-main {
        padding: 30px 10px;
    }
    .contact-us-main .product-heading {
        margin-bottom: 10px;
    }
    .all-footer-icon-logo .footer-heading h1 {
        font-size: 15px;
    }
    section#contact-us .contact-us-main .form-btn .butn {
        margin-top: 10px;
    }
    .text-white .newsletter_wrapper .btn {
        font-size: 12px;
    }
    .text-white .newsletter_wrapper input {
        padding: 0px 9px;
    }
    input::placeholder {
        font-size: 0.8rem !important;
    }
    .text-white .newsletter_wrapper .btn {
        padding: 0px 10px;
    }
    .main-tranform-image img {
        height: 169px;
    }
    h1 {
        font-size: 13px;
    }
    .add-btn-wrapper.mt-lg-5.text-center {
        padding-top: 37px;
    }
    h5 {
        font-size: 12px;
    }
    .custom-trading-pins img {
        height: 94px;
    }
    .left-wrapper {
        padding-right: 40px;
    }
    .custom-trading-pins.right img.img-fluid {
        height: 100px;
    }
    .custom-image-right img {
        height: 100px;
    }
    .custom-img-left img {
        height: 120px;
    }
    .icons {
        padding-right: 0px;
    }
    .main-product {
        padding: 20px 10px;
    }
    h3 {
        font-size: 14px;
    }
    .step-content h5 {
        font-size: 12px;
    }
    p {
        font-size: 11px;
    }
    .step-image {
        height: 85px;
        padding: 11px 11px;
    }
    section#product-second {
        padding: 40px 0px 50px 0;
    }
    .step-image-gallary img {
        width: 55px;
    }
    a.butn.butn__new.btnwrapper {
        width: 105px;
        font-size: 11px;
    }
    .eagle-center {
        padding: 40px 10px;
    }
    .testimonial-heading h5 {
        font-size: 15px;
    }
    .rate > label:before {
        font-size: 0.7rem;
    }
    .rating h6 {
        font-size: 12px;
    }
    .order-wrapper-fooeter {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .footer-all-right.text-start h6 {
        font-size: 12px;
        text-align: center;
        margin-top: 13px;
    }
    ul.social_icons13 {
        gap: 16px;
    }
    .logoDv img.img-fluid {
        width: 100px;
        height: 100px;
        object-fit: scale-down;
    }
    section#contact-us {
        padding-top: 20px;
    }
    div#accordionExample {
        margin-top: 20px;
    }
    .form-control select.form-select {
        font-size: 0.8rem;
    }
    .form-control input {
        font-size: 0.8rem;
    }
    .reponsive_nav.showheader li {
        text-align: start;
        padding: 10px 0;
    }
    .container-dropdown .dropdown .icon-arrow {
        right: 93px;
    }
    .form-control textarea#floatingTextarea2::placeholder {
        font-size: 0.8rem;
    }
    .form-control input[type="file"] {
        font-size: 0.8rem;
    }
    .login_pro {
        display: flex;
        align-items: start;
        justify-content: start;
        padding: 26px 10px 0 10px;
        flex-direction: column;
    }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}
.row.your-class.pb-lg-3.slick-initialized.slick-slider.slick-dotted {
    text-align: center;
}
.price_list .table-responsive::-webkit-scrollbar {
    width: 0px;
}
.main-heading h1 {
    margin-bottom: 20px;
}
