@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

html {
    overflow-x: hidden !important;
}

/***** General CSS *****/

/* Main Content Styles */
.main-content {
    display: flex;
    /* Use flexbox layout */
    flex-wrap: wrap;
    /* Allow wrapping of flex items */
}

/* Product Section Styles */
.product {
    width: 100%;
    /* Take full width */
    margin-right: 15px;
    /* Add some space between product section and sidebar */
}

/* Sidebar Styles */
.sidebar {
    width: 30%;
    /* Set desired width for sidebar */
    background-color: #f9f9f9;
    /* Background color */
    padding: 20px;
    /* Padding around the content */
}

.widget-title {
    font-size: 18px;
    /* Title font size */
    margin-bottom: 15px;
    /* Spacing below the title */
    color: #333;
    /* Title color */
}

.categories {
    list-style: none;
    /* Remove default list style */
    padding: 0;
    /* Remove default padding */
}

.categories li {
    margin-bottom: 10px;
    /* Spacing between categories */
}

.categories li a {
    color: #666;
    /* Category link color */
    text-decoration: none;
    /* Remove underline from links */
    transition: color 0.3s ease;
    /* Smooth transition for color change */
}

.categories li a:hover {
    color: #333;
    /* Change color on hover */
}

search-form {
    display: flex;
    align-items: center;
}

.search-input {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 16px;
    margin-right: 10px;
    width: 70%;
}

.search-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button i {
    color: #666;
}

.search-button:hover {
    background-color: #e0e0e0;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

/***** Font Files *****/
@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'TrajanPro';
    src: url(../fonts/TrajanPro-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

/***** Custom Classes *****/
.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'TrajanPro';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'TrajanPro';
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'TrajanPro';
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'TrajanPro';
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'TrajanPro';
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*header css start */
.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    /* text-align: right; */
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 52px 10px 0px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #00b3ff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.ankar a {
    background-color: #00b3ff;
    padding: 7px 15px;
    border-radius: 100px;
    display: inline-block;
    margin: 0px 14px;
    color: #fff;
    border: 2px solid #fff;
    font-size: 12px;
    /*animation: 1s shadow-pulse infinite;*/
}

.ankar a img {
    margin-left: 2px;
}

header .row {
    align-items: center;
}

header {
    padding: 20px 0px;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
}

/*header css end */
.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

html {
    overflow-x: hidden;
}

/*banner css start */
section.banner {
    position: relative;
}

.banner-txt {
    position: absolute;
    left: 133px;
    top: 222px;
    width: 42%;
}

.banner-txt h1 {
    font-size: 56px;
    color: #0c0d0d;
    line-height: 60px;
}

.banner-txt h1 span {
    display: block;
}

.banner-txt p {
    color: #0c0d0d;
    font-size: 16px;
}

.bann-img {
    position: absolute;
    top: 0;
    width: 58%;
    right: -183px;
}

.bann2-img {
    position: absolute;
    width: 25%;
    right: 18%;
    top: 16%;
}

.pen-img {
    position: absolute;
    bottom: 34%;
    right: 13%;
}

.bann2-img img {
    width: 100%;
}

.banner-bx-main {
    display: flex;
    /* align-items: baseline; */
    gap: 77px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 3px #00000091;
    padding: 10px 10px;
    bottom: 45px;
    left: 31%;
}

.banner-bx ul {
    display: flex;
}

.banner-bx i {
    font-size: 20px;
    background-color: #027fbb;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 50px;
}

.banner-bx ul li i {
    background-color: unset;
    color: #ff7209;
    font-size: 20px;
    margin-bottom: 0;
}

.banner-bot-bx h5 {
    margin-top: -22px;
    font-size: 21px;
    color: #0c0d0d;
    margin-bottom: 0px;
}

.banner-bot-bx img {
    width: 100%;
    position: relative;
    top: -50px;
    right: 20px;
    height: 110px !important;
    box-shadow: 0 0 3px #000000bd;
}

.banner-bx h5 {
    font-size: 14px;
    color: #0c0d0d;
    font-weight: 700;
    margin-bottom: 0px;
}

.banner-bx-main.two {
    left: 4%;
}

img.img-fluid {
    width: 100%;
}

a.btn-1 {
    font-size: 13px;
    color: #000000;
    padding: 5px 15px;
    border-radius: 100px;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #00c1ff;
    /*animation: 1s shadow-pulse infinite;*/
}

@keyframes shadow-pulse {
    0% {
        box-shadow: #00c1ff 0 0 0 0;
    }

    100% {
        box-shadow: #00c1ff 0 0 0 10px;
    }
}

a.btn-1 img {
    margin-left: 11px;
}

/*about start*/
section.about {
    padding: 80px 0px;
    position: relative;
}

.abt-txt h3 {
    color: #0c0d0d;
    font-size: 56px;
    line-height: 56px;
    font-weight: 400;
    margin-bottom: 10px;
}

.abt-txt p {
    font-size: 16px;
    color: #0c0b0b;
    margin-bottom: 0;
}

.abt-2 {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 40px;
}

.e-book-txt h5 {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 7px;
    font-weight: 700;
    color: #0c0d0d;
}

section.about a {
    display: inline-block;
    margin-top: 30px;
}

.e-book-txt::before {
    position: absolute;
    left: -16px;
    height: 61px;
    width: 2px;
    background-color: #00000061;
    content: '';
    top: 0;
}

.e-book-txt {
    position: relative;
}

section.about::before {
    position: absolute;
    left: 0;
    content: '';
    width: 30%;
    background-repeat: no-repeat;
    background-image: url(../images/abt-be.png);
    z-index: -1;
    top: 0;
    background-size: cover;
    height: 100%;
}

/*about end*/
/*pubishing start*/
.publishing-txt h2 {
    font-size: 54px;
    line-height: 54px;
    color: #fff;
}

.publishing-txt h2 span {
    display: block;
}

.publishing-txt p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    width: 87%;
}

section.publishing {
    padding: 70px 0px;
    position: relative;
}

section.publishing::before {
    position: absolute;
    content: '';
    background-color: #121419;
    width: 100%;
    top: 0;
    height: 450px;
    z-index: -1;
}

section.publishing::after {
    position: absolute;
    content: '';
    width: 45%;
    height: 100%;
    right: 0;
    background-image: url(../images/publishing-be.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    top: 0;
}

/*publishing end*/
/*product start*/
section.product {
    padding: 90px 0px;
}

.pro-txt {
    text-align: center;
    margin-bottom: 50px;
}

.pro-txt h3 {
    font-size: 56px;
    line-height: 56px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pro-txt p {
    margin: 0 auto;
    width: 74%;
    font-size: 16px;
}

.pro-main-bx ul {
    display: flex;
}

.pro-main-bx h4 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
    color: #0c0b0b;
    font-weight: 700;
}

.pro-main-bx {
    padding: 25px;
    width: 90%;
    position: relative;
    margin-bottom: 60px;
}

.pro-main-bx:before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 58%);
    background: #e6e6e6;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.pro-main-bx p {
    font-size: 14px;
    color: #0c0b0b;
}

.pro-main-bx ul li i {
    color: #fe7610;
}

.pro-main-bx ul li h5 {
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 18px;
}

.pro-icon {
    position: absolute;
    right: 16px;
    bottom: 41px;
}

/*PRODUCT END*/
/*LATESR START*/
section.latest {
    padding: 80px 0px;
}

/*latest end*/
/*testimonial start*/
.test-txt h3 {
    font-size: 52px;
    line-height: 52px;
    font-weight: 400;
}

section.testimonial {
    padding-bottom: 100px;
}

.test-txt h5 {
    font-size: 21px;
    line-height: 21px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.test-txt h5 span {
    display: block;
}

.test-txt p {
    line-height: 28px;
    width: 82%;
}

.testi-box img {
    width: 100px;
    margin: 0 auto;
}

.testi-box {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 3px #0000009c;
    padding: 30px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin: 30px 10px;
    position: relative;
}

section.testimonial a.btn-1 {
    display: inline-block;
    margin-top: 30px;
}

section.testimonial .row {
    align-items: center;
}

.testi-slide ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: -10px;
}

.testi-slide .slick-dots li {
    width: 0;
}

.testi-slide li.slick-active {
    opacity: 1;
}

.testi-slide .slick-dots li.slick-active button:before {
    border: 1px solid #00beff;
    opacity: 1;
    border-radius: 10px;
    color: #00beff;
    font-size: 12px;
}

.testi-slide .slick-dots li {
    width: 0;
}

.testi-slide .slick-dots li button:before {
    color: #e5f8ff;
    opacity: 1;
    font-size: 8px;
}

.testi-box h5 {
    font-size: 21px;
    color: #000;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-top: 20px;
}

.testi-box h5 span {
    display: block;
    font-size: 14px;
    color: #b2b2b2;
}

.testi-box p {
    color: #b2b2b2;
}

.testi-box:before {
    position: absolute;
    left: -35px;
    width: 100%;
    height: 100%;
    bottom: -35px;
    background-color: #f5f5f5;
    content: '';
    z-index: -1;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.feead-content {
    position: relative;
}

.feed {
    position: absolute;
    top: 30px;
    right: -20px;
    writing-mode: tb;
    letter-spacing: 15px;
}

.feed h6 {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #b2b2b2;
}

.feed h6::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 217px;
    background: #00beff;
    left: 0;
    right: 0;
    bottom: -219px;
    margin: auto;
}

/*footer Start*/
footer {
    padding: 50px 0 0;
    background-color: #111010;
}

.footer-nav ul li a {
    font-size: 18px;
    color: #c8c8c8;
    text-transform: uppercase;
    padding: 0 70px 0 0;
}

.footer-contact h2 {
    font-size: 74px;
    color: #fff;
    margin: 0 0 10px;
}

.footer-links ul li h5 {
    font-size: 18px;
    color: #b7b7b7;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.footer-links ul {
    display: flex;
    justify-content: space-between;
}

.footer-links ul li a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #ffff;
}

.footer-open h5 {
    font-size: 18px;
    color: #b7b7a6;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-open {
    margin: 40px 0 50px;
}

.footer-open p {
    font-size: 14px;
    color: #b7b7b7;
}

.map-footer iframe {
    width: 49vw;
    height: 320px;
}

.footer-form label {
    font-size: 14px;
    color: #c8c8c8;
    text-transform: uppercase;
}

.footer-contact p {
    color: #b7b7b7;
    line-height: 24px;
    font-size: 14px;
}

.footer-form input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid #ffffff7a;
    margin: 10px 0 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

button.button10>i {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    background: linear-gradient(179deg, #b01ef7, #1f0a7e);
    margin-left: 0;
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left: 30px;
    font-size: 24px;
    color: #fff;
}

.footer-form input::placeholder {
    color: #a1a1a1;
    font-size: 14px;
    font-weight: 500;
}

.footer-form textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid #ffffff7a;
    margin: 20px 0 40px;
    color: #fff;
    height: 90px;
    resize: none;
}

.footer-form textarea::placeholder {
    font-size: 14px;
    color: #a1a1a1;
}

.footerbottom p {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.footerbottom {
    padding: 30px 0;
    border-top: 1px solid #ffffff42;
    margin-top: 30px;
}

label.last-lab {
    margin: 60px 0 0;
}

.fter-pd {
    padding: 40px 4%;
}

.bor-tb {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.footer-logo.text-center {
    padding-bottom: 40px;
}

.footer-contact {
    padding: 0px 100px 0 0;
    position: relative;
}

.footer-form {
    position: relative;
    z-index: 1;
    padding: 0;
}

.footer-contact:before,
.footer-contact:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 118%;
    top: -61px;
    background: #ffffff42;
    right: 0;
}

.footer-nav {
    margin-top: 28px;
}

.footer-nav ul li a:hover {
    color: #00795f;
}

.footer-contact h4 {
    color: #fff;
    letter-spacing: 8px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.follow-us-links {
    position: absolute;
    right: 16px;
    display: flex;
    flex-direction: column-reverse;
    top: 0;
    gap: 10px;
    align-items: center;
}

.follow-us-links>span {
    font-family: 'big_noodle';
    writing-mode: tb-rl;
    color: #fff;
    transform: rotate(180deg);
    font-size: 30px;
    letter-spacing: 10px;
}

.follow-us-links>a {
    height: 50px;
    width: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50%;
}

.footer-contact:after {
    right: 85px;
    width: 95%;
    background: transparent;
    border-left: 1px solid #ffffff42;
    border-right: 1px solid #ffffff42;
}

.map-footer {
    /* margin-top: -50px; */
}

footer h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1;
    margin: 20px 0 10px;
}

footer h2~p {
    color: #fff;
}

button.btn-1 {
    border-radius: 100px;
    border: 2px solid #00abff;
    /*animation: 1s shadow-pulse infinite;*/
}

.follow-us-links a:hover {
    background-color: #027fbb;
}

/*footer End*/
/*inn-banner start*/
section.banner.inn img.img-fluid {
    width: 100%;
    height: 600px;
}

section.banner.inn .bann2-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

section.banner.inn .pen-img {
    position: absolute;
    bottom: 7%;
    right: 16%;
}

/*about page start*/
section.about.inn::before {
    height: 59%;
}

.abt-txt.bottom {
    margin-top: 55px;
}

section.about.inn .abt-2 {
    margin-bottom: 30px;
}

/*about page end*/
/*productDetail Start*/
.pricetag {
    display: flex;
    position: relative;
}

.pricetag h4 {
    font-size: 22px;
    font-family: 'Montserrat';
    color: #8d8d8d;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 2px;
}

.pricetag h3 {
    font-size: 29px;
    font-family: 'Montserrat';
    color: #282828;
    font-weight: 500;
    margin-bottom: 0px;
}

.dv2productdetail h3 {
    font-size: 21px;
    font-family: 'TrajanPro';
    line-height: 32px;
    font-weight: 700;
    color: #111111;
}

.pricetag h4:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 12%;
    top: 14px;
    background-color: #969696;
    left: 0;
}

.dv3productdetail {
    margin-top: 15px;
}

.dv3productdetail h5 {
    font-size: 19px;
    font-family: 'Roboto';
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.dv3productdetail h5 span {
    color: #2358b6;
    font-weight: 400;
    font-family: 'Roboto';
}

ul.uldvproductdetail {
    display: flex;
    justify-content: end;
    gap: 5px;
    border-bottom: 1px solid #beebed;
}

ul.uldvproductdetail li {
    color: #ffc107;
}

.dv3productdetail p {
    font-size: 12px;
    font-family: 'Roboto';
    color: #999999;
    font-weight: 500;
    line-height: 22px;
}

li.quanity.product-detail .inc {
    margin: 0;
}

.inc {
    background-color: #fff !important;
    margin-top: 11px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    border-radius: 41px !important;
    border: 2px solid #c0c0c0;
    width: 25%;
    height: 37px;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
    border: 0;
    height: 25px;
    user-select: none;
    font-weight: 700;
    padding: 5px 5px 5px 5px;
    width: 30px;
    color: #000;
}

.number-item input {
    width: 100%;
    text-align: center;
    height: 50px;
    border-radius: 44px;
    border: 0;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
    margin-top: 0;
    background-color: transparent;
    color: #000;
    pointer-events: none;
    font-size: 18px;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
    border: 0;
    height: 25px;
    user-select: none;
    font-weight: 700;
    padding: 0px 5px 5px 5px;
    width: 30px;
    color: #000;
    font-size: 13px;
}

ul.social-icons-banner {
    display: flex;
    gap: 10px;
}

ul.social-icons-banner a {
    display: flex;
    gap: 20px;
    height: 50px;
    width: 50px;
    border: 1px solid #999999;
    color: #999999;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: 0.3s ease-in-out;
}

.add-cart-btn {
    display: inline-flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 2px 33px;
    color: #fff;
    background: #101011;
    border-radius: 35px;
    margin-top: 9px;
}

.like-btn {
    width: 44px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #919191;
    border-radius: 50%;
    font-size: 21px;
    color: #2358b6;
    margin-top: 10px;
}

ul.inc-addto-cart {
    display: flex;
    align-items: center;
    gap: 35px;
}

a.add-cart-btn:hover {
    background-color: #fff;
    border: 1px solid;
}

ul.social-icons-banner a:hover {
    background-color: #2358b6;
    color: #fff;
}

.dv1descrip h2 {
    font-family: 'Rajdhani';
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #000;
    text-transform: uppercase;
}

.dv1descrip p {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: #999999;
}

.dv1productdetail img {
    float: right;
}

section.productdetail {
    padding: 90px 0px 0px;
}

.dv1descrip {
    padding: 30px 0px 60px;
}

.dv2productdetail h3 span {
    display: block;
}

section.innerproductdetail .dvtxetinnerbanner h1 {
    line-height: 84px;
}

section.innerproductdetail .inner-banner:before {
    top: 29%;
}

/*productDetail End*/
/*checkout start*/
.billing_form {
    padding: 40px;
    /*background-color: #0e194a;*/
}

a.checkout_btn.mt-4.btn10 {
    font-size: 14px;
    color: #000000;
    padding: 5px 15px;
    border-radius: 100px;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #00c1ff;
    /*animation: 1s shadow-pulse infinite;*/
}

.billing_form h3 {
    margin-bottom: 30px;
    font-size: 39px;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 28px;
    font-weight: 500;
}

.billing_form label {
    font-size: 13px;
    color: #373a33;
    line-height: 20px;
    font-weight: 600;
}

input[type="text"]::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    line-height: 14px;
}

.radiosss p {
    color: #7C7C7C;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.billing_form input {
    width: 100%;
    height: 45px;
    border: 1px solid #000;
    margin-bottom: 20px;
    padding-left: 15px;
    background-color: #fff0;
    /* border-radius: 20px; */
}

.billing_form input::placeholder {
    color: #7C7C7C;
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: 'Montserrat';
    font-weight: 500;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #4b902c;
}

.cart_sidebar::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/all-sec2.png);
    right: -82px;
    bottom: 48px;
    background-repeat: no-repeat;
    background-size: cover;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    position: relative;
}

.cart_sidebar h3 {
    font-size: 40px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    /* background: #ABCC2F; */
    /* background: repeating-linear-gradient(to right, #ABCC2F 7%, #859423 96%); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    color: #00afff;
}

li.inc {
    background-color: #f7f7f7;
    border: none;
    padding: 20px;
    outline: none;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    font-family: 'Montserrat';
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #0e194a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0e194a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 30px;
}

label {
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #00c2ff;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid #fff;
    margin-left: 0;
    padding: 10px;
    background-color: #ffffff9e;
}

.billing_form h3 span {
    /* color: #f15b27; */
}

.cart_sidebar h3 span {
    /* color: #f15b27; */
}

section.checkout_page.pb-8 {
    padding: 70px 0px;
    position: relative;
}

.checkout_page.pb-8::before {
    position: absolute;
    top: 140px;
    left: -32px;
    height: 81px;
    width: 80px;
    background-image: url(../images/in-abt-small.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

.checkout_page.pb-8::after {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 81px;
    width: 80px;
    background-image: url(../images/in-abt-small2.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

/*checkout end*/
/*cart-pg start*/
.add-to-cart {
    position: relative;
    padding: 80px 0;
}

.add-to-cart thead {
    color: #000;
    border-radius: 30px;
    /* background: linear-gradient(347deg, rgb(234 0 185 / 72%) 11%, rgb(87 0 163) 50%); */
    border: 2px solid #00000057;
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0;
    padding-left: 35px;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 15px;
    padding-right: 0px !important;
}

.add-to-cart thead tr th {
    font-size: 19px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
}

.table-space h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    line-height: 25px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Poppins';
}

.table-space span {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

.product-img {
    /* border: 1px solid #ccc; */
    display: inline-block;
    width: 100%;
    height: 150px;
    padding: 10px 0px;
    /* background-color: #ffffff; */
    text-align: center;
}

.poduct-name {
    margin-left: 10px;
}

.table-space {
    display: flex;
    align-items: center;
    width: 100%;
}

.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 400;
    text-decoration: none;
    color: #000;
    padding: 12px 20px;
    color: #000;
    text-transform: uppercase;
}

a.btn_theme_green {
    background-color: #000;
    color: #fff;
    margin-top: 20px;
}

.poduct-name span:nth-child(2) {
    margin-bottom: 5px;
    display: inline-block;
}

.add-to-cart h4 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-top: 40px;
    font-family: 'Poppins';
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

tr.space {
    border-bottom: 1px solid #ccc;
}

a.remove {
    font-size: 26px;
    color: white;
    padding: 10px 10px;
    border: none;
    margin-top: 35px;
    /* transform: skewX(-15deg); */
    background-color: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proceed i {
    margin-left: 10px;
    color: #ffffff;
}

.proceed .checkout-btn {
    background-color: #df1a2b;
    border: none;
    padding: 20px;
    width: 100%;
    font-size: 20px;
    margin-top: 4px;
    border-radius: 0;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 1px solid #c8c8c8;
    /* top: 25px; */
    padding: 40px 50px;
    border-radius: 5px;
    background-color: #fff;
}

.or-amazon p {
    font-size: 16px;
    position: absolute;
    background: #fff;
    top: -20px;
    left: 50%;
    padding: 5px 20px;
    color: #000;
    display: block;
    text-transform: uppercase;
    transform: translateX(-50%);
    border: 1px solid #c8c8c8;
    font-weight: 400;
    font-family: 'Poppins';
}

.or-amazon img {
    width: 60%;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.total-section {
    border: 1px solid #e5e5e5;
    padding: 50px 50px;
    background-color: #fff0;
    background-color: #fff;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 30px;
    color: #000;
    font-weight: 400;
    font-family: 'Poppins';
}

li.color-change {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 0;
    font-family: 'Montserrat';
}

.total-section li span {
    float: right;
}

.ship-estimate {
    background-color: #fff;
    padding: 50px;
    margin-top: 25px;
    border: 1px solid #e5e5e5;
}

.ship-estimate ul {
    margin-top: 0px;
    margin-bottom: 0;
}

.ship-estimate li {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #000;
}

.ship-estimate .grey-style {
    color: #000;
    font-size: 18px;
    font-weight: 300;
}

.product-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nice-select .list {
    height: 350px;
    overflow-y: scroll;
}

.total-section ul {
    margin: 0;
}

.input-number {
    width: 97px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    background-color: #fff0;
    color: #000;
    height: 51px;
}

.input-number-decrement,
.input-number-increment {
    width: 50px;
    line-height: 48px;
    background: #fff0;
    color: #000;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #ddd;
}

.input-number-decrement {
    border-right: none;
    border-radius: 0;
}

.input-number-increment {
    border-left: none;
    border-radius: 0;
}

.quan {
    margin-top: 20px;
}

.quantity_counter_wrap span {
    color: #000;
    font-size: 18px;
}

.quantity_counter_wrap {
    padding: 0 0 10px;
    /* border-bottom: 1px solid #464646; */
}

.proceed .btn_theme_green {
    background-color: #143697;
    color: #fff;
    border-radius: 5px;
    padding: 20px;
}

/*CART END*/
@media only screen and (min-width: 1400px) and (max-width: 1600px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    section.banner {
        overflow: hidden;
    }

    .banner-txt h1 {
        font-size: 42px;
        line-height: 42px;
    }

    .banner-txt p {
        font-size: 14px;
    }

    .bann2-img img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .banner-bx-main {
        left: 41%;
        bottom: -4px;
    }

    .banner-bot-bx img {
        top: -45px;
        right: 5px;
    }

    section.publishing::after {
        width: 42%;
    }

    .footer-contact h2 {
        font-size: 65px;
    }

    .testi-box p {
        font-size: 14px;
        line-height: 19px;
    }
}

search-form {
    display: flex;
    align-items: center;
}

.search-input {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 16px;
    margin-right: 10px;
    width: 70%;
}

.search-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button i {
    color: #666;
}

.search-button:hover {
    background-color: #e0e0e0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}

#search-menu {
    position: fixed;
    width: 100%;
    height: 30em;
    top: -30em;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.01)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.01) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cc000000", endColorstr="#1a000000", GradientType=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#search-menu .wrapper {
    position: relative;
    margin: 3em auto 0 auto;
    padding: 0 1em;
}

#search-menu .wrapper input {
    width: 100%;
    padding: 0 0 0.125em 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid #25b2ff;
    font-size: 2em;
    line-height: 2;
    color: #bfbfbf;
}

#search-menu .wrapper input::placeholder {
    font-size: 2em;
}

#search-menu .wrapper input:focus {
    outline: none;
}

#search-menu .wrapper button {
    position: absolute;
    display: block;
    width: 10%;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    color: #28b3ff;
    font-size: 3em;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu .wrapper button:hover {
    color: #fff;
}

#search-menu .wrapper button:focus {
    outline: none;
}

#search-icon {
    padding: 0 0.5em 0.25em 0.5em;
    font-size: 5em;
    cursor: pointer;
    color: #bfbfbf;
    text-align: center;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-icon:hover {
    color: #fff;
}

.ankar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search_box_main #search-icon {
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    padding: 0 !important;
}

.search_box_main {
    margin-right: 30px;
}

.side_category {
    background-color: #e6e6e6;
    padding: 30px;
}

.banner .container .row:nth-child(2) {
    margin-top: -212px;
}

/*Our Blogs Start*/
.our-blogs-sec {
    padding: 40px 0 90px;
}

.our-blogs-heading {
    text-align: center;
    margin-bottom: 2%;
}

.our-blogs-buttton-row {
    text-align: center;
    margin-top: 50px;
}

.our-blog-box-img img {
    width: 100%;
    height: 291px;
    object-fit: cover;
}

.our-blog-box-img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-blog-icon {
    position: absolute;
    z-index: 99999;
    left: 0;
    transition: 2s;
    display: none;
}

.our-blogs-silder .slick-active {
    opacity: 1.5;
}

.our-blog-box:hover .our-blog-icon {
    display: block;
    left: inherit;
    transition: 2s;
}

.our-blog-box:hover .our-blog-box-img img {
    transform: scale(1.1);
    transition: 0.5s;
}

.our-blog-box-img:before {
    content: "";
    position: absolute;
    background: #00000061;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s;
    z-index: 999;
}

.our-blog-box:hover .our-blog-box-img:before {
    opacity: 1;
    transition: 0.5s;
}

.our-blogs-heading h2 {
    margin-bottom: 0;
}

.our-blog-button {
    position: absolute;
    z-index: 9999;
    top: -14px;
    right: 0;
    left: 0;
}

.our-blogs-text {
    box-shadow: 0 0 2px 0 #00000061;
    padding: 30px 20px;
    text-align: center;
    transition: 0.5s;
    position: relative;
    margin: 0 9px;
}

.our-blogs-silder .slick-prev:before {
    content: "\f053";
    font-weight: 900;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #333 !important;
}

.our-blogs-silder .slick-prev {
    left: -45px;
}

.our-blogs-silder .slick-next:before {
    content: "\f054";
    font-weight: 900;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    color: #333 !important;
    opacity: 3;
}

.our-blogs-date {
    background: #ffff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    top: 10px;
    left: 10px;
    z-index: 99999;
}

.our-blogs-date h2 {
    font-size: 24px;
    margin-bottom: 0;
    color: #333333;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
}

.our-blogs-date h2 span {
    display: block;
    font-size: 12px;
}

.our-blog-box {
    position: relative;
}

.our-blog-box:hover .our-blogs-text {
    box-shadow: 0 0 5px 0 #000000ba;
    transition: 0.5s;
}

.our-blogs-text h2 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #333333;
}

.our-blogs-text ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.our-blogs-text ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #bbb;
    text-transform: capitalize;
    font-weight: 500;
}

.our-blogs-text p {
    color: #777;
    font-size: 14px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 20px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.our-blog-button a {
    background: #00c1ff !important;
    padding: 8px 15px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.our-blog-icon ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 8px;
}

.our-blog-icon ul li i {
    font-size: 12px;
    color: #fff;
}

.our-blogs-silder .slick-slide {
    margin: 10px 10px;
}

.blog_sec {
    padding: 5% 0;
}

.top-text-blog .text-about h2 {
    font-size: 36px;
}

.top-text-blog {
    margin-bottom: 30px;
}

.text-about {
    text-align: center;
}

.text-about h3 {
    font-size: 18px;
    color: #A5A5A5;
    margin-bottom: 10px;
}

.text-about h2 {
    color: #000;
    margin-bottom: 10px;
    font-size: 46px !important;
    font-weight: 600;
}

.text-about p {
    width: 20%;
    margin: 0 auto;
    color: #777777;
}

.our-blogs-text a {
    color: #000000 !important;
}

/*Our Blogs End*/
/*Inner Blog Details Start*/
.blogs-sec {
    padding: 50px 0;
}

.blogs-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.susan-lopez ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.susan-lopez ul li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.susan-lopez ul li h2 {
    font-size: 20px;
    margin-bottom: -3px;
    line-height: 30px;
    color: #192646;
    font-weight: 600;
}

.susan-lopez ul li h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: #8f8e8e;
}

.susan-lopez-row {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.personal-min h2 {
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 0;
}

.blog-detail-input input {
    width: 100%;
    height: 55px;
    border: 2px solid #ebebeb;
    padding: 0 20px;
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}

.blog-detail-input input::placeholder {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.blog-detail-input {
    position: relative;
}

.blog-detail-input-button {
    position: absolute;
    top: 0;
    right: 0;
}

.blog-detail-input-button button {
    width: 100px;
    height: 55px;
    border: none;
    background: #00c1ff;
    font-size: 16px;
    color: #fff;
}

.recent-posts {
    margin-top: 25px;
}

.recent-posts-text ul li {
    font-size: 14px;
    color: #8f8e8e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-posts h2 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #1c1c1c;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.blog-detail-input {
    margin-bottom: 50px;
}

.recent-posts-sec {
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 2px solid #c2c2c2;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.recent-posts-img img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts-text ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.recent-posts-text h3 {
    font-size: 12px;
    color: #00c1ff;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.recent-posts-text h2 {
    font-size: 14px;
    line-height: 23px;
    color: #333333;
    font-weight: 600;
    margin-bottom: -3px;
}

.recent-posts-text ul li span {
    color: #192646;
    font-weight: 600;
}

.recent-posts-text ul li img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.blog-detail-bottom-text p {
    color: #6e6e6e;
}

.blog-detail-bottom-text h3 {
    font-size: 30px;
}

/*Inner Blog Details End*/


.recent-posts-img {
    width: 60%;
}

.digital-service-sec {
    padding: 100px 0px;
}

.digital-text h2 {
    font-size: 35px;
    margin-top: 10px;
    line-height: 40px;
    margin-bottom: 5px;
}

.digital-text h3 {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.digital-text ul,
.digital-text ol {
    margin-bottom: 20px;
}

.digital-text ul li,
.digital-text ol li {
    position: relative;
    margin-bottom: 15px;
}

.digital-text ul li {
    padding-left: 20px;
}

.digital-text ul li::before {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 6px;
    height: 6px;
    content: '';
    margin: auto;
    position: absolute;
    border-radius: 50%;
    background-color: #027fbb;
}

.digital-text p {
    margin-bottom: 25px;
}

.digital-text p a {
    color: #027fbb;
}

/* faq section starts  */

.common-accordion .accordion-button[aria-expanded="true"]::after,
.common-accordion .accordion-button[aria-expanded="false"]::after {
    content: "\2b";
    width: 35px;
    height: 35px;
    display: flex;
    color: #fff;
    font-weight: 300;
    font-size: 35px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    align-items: center;
    inset-block-start: 50%;
    inset-inline-end: 30px;
    justify-content: center;
    transform: translateY(-50%);
    background-color: #027fbb;
    background-image: none;
    background-size: cover;
}

.common-accordion .accordion-button[aria-expanded="true"]::after {
    content: "\f068";
    font-size: 15px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    color: #Fff !important;
    background: #00b3ff;
}

.common-accordion .accordion-body__desc {
    color: #fff;
    padding-top: 5px;
}

.common-accordion.style-two .accordion-header [aria-expanded="false"]::after {
    background-color: transparent;
    color: #fff;
}

.common-accordion .accordion-item:has(.accordion-collapse.collapse.show),
.common-accordion .accordion-item:has(.accordion-collapse.collapsing) {
    background-color: #fff !important;
    color: #fff !important;
}

.common-accordion .accordion-item .accordion-button {
    background: #027fbb;
}

.common-accordion .accordion-item .accordion-button.collapsed {
    background-color: #00b3ff;
}

section.freq-asked {
    margin: 0px 0 100px;
}

.common-accordion .accordion-button {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-weight: 400;
    padding: 10px 20px;
    padding-inline-end: 64px;
    font-family: 'Montserrat';
    background-color: #00b3ff;
}

.common-accordion .accordion-body {
    background-color: #00b3ff;
}

.common-accordion .accordion-item {
    border: none;
    border-radius: 0px;
    margin-bottom: 25px;
    background-color: #00b3ff;
}

.common-accordion .accordion-button:focus {
    z-index: 3;
    border-color: #00b3ff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #00b3ff21;
}

.common-accordion .accordion-header {
    background-color: #00b3ff;
    margin-bottom: 0px;
}

.faq-page-wrappeer {
    padding: 100px 0;
}

.freq-asked .section-heading h2 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.freq-asked .section-heading h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    text-transform: capitalize;
}

/* faq page ENds */