/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
:root {
    /* Fonts */
    /* --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: 'Source Sans Pro', sans-serif;
    --font-secondary: 'Poppins', sans-serif; */
    --font-default: "Montserrat", sans-serif;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Montserrat", sans-serif;

    /* Colors */
    /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */

    /* Default text color */
    --color-default: #1a1f24;
    --color-default-rgb: 26, 31, 36;

    /* Defult links color */
    --color-links: #f97233;
    --color-links-hover: #fa9160;

    /* Primay colors */
    --color-primary: #6B7379;
    --color-primary-light: #fb9b6e;
    --color-primary-dark: #e54d07;

    --color-primary-rgb: 249, 114, 51;
    --color-primary-light-rgb: 251, 155, 110;
    --color-primary-dark-rgb: 229, 77, 7;

    /* Secondary colors */
    --color-secondary: #485664;
    --color-secondary-light: #838996;
    --color-secondary-light-2: #8f9fae;
    --color-secondary-dark: #6B7379;

    --color-secondary-rgb: 72, 86, 100;
    --color-secondary-light-rgb: 143, 159, 174;
    --color-secondary-dark-rgb: 58, 71, 83;

    /* General colors */
    --color-blue: #0d6efd;
    --color-blue-rgb: 13, 110, 253;

    --color-indigo: #6610f2;
    --color-indigo-rgb: 102, 16, 242;

    --color-purple: #6f42c1;
    --color-purple-rgb: 111, 66, 193;

    --color-pink: #f3268c;
    --color-pink-rgb: 243, 38, 140;

    --color-red: #df1529;
    --color-red-rgb: 223, 21, 4;

    --color-orange: #fd7e14;
    --color-orange-rgb: 253, 126, 20;

    --color-yellow: #ffc107;
    --color-yellow-rgb: 255, 193, 7;

    --color-green: #059652;
    --color-green-rgb: 5, 150, 82;

    --color-teal: #20c997;
    --color-teal-rgb: 32, 201, 151;

    --color-cyan: #0dcaf0;
    --color-cyan-rgb: 13, 202, 240;

    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;

    --color-gray: #6c757d;
    --color-gray-rgb: 108, 117, 125;

    --color-black: #000000;
    --color-black-rgb: 0, 0, 0;
}

/*--------------------------------------------------------------
  # 2. Override default Bootstrap variables
  --------------------------------------------------------------*/
:root {
    --bs-blue: var(--color-blue);
    --bs-indigo: var(--color-indigo);
    --bs-purple: var(--color-purple);
    --bs-pink: var(--color-pink);
    --bs-red: var(--color-red);
    --bs-orange: var(--color-orange);
    --bs-yellow: var(--color-yellow);
    --bs-green: var(--color-green);
    --bs-teal: var(--color-teal);
    --bs-cyan: var(--color-cyan);
    --bs-white: var(--color-white);
    --bs-gray: var(--color-gray);
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: var(--color-blue);
    --bs-secondary: var(--color-blue);
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: var(--color-primary-rgb);
    --bs-secondary-rgb: var(--color-secondary-rgb);
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: var(--color-white-rgb);
    --bs-black-rgb: var(--color-black-rgb);
    --bs-body-color-rgb: var(--color-default-rgb);
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: var(--font-default);
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --bs-body-font-family: var(--font-default);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: var(--color-default);
    --bs-body-bg: #fff;
    --box-shadow: 0px -4px 7px rgba(0, 0, 0, 0.15),
        0px 4px 7px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
  # 3. Set color and background class names
  --------------------------------------------------------------*/
/* Fonts */
.font-default {
    font-family: var(--font-default) !important;
}
.font-primary {
    font-family: var(--font-primary) !important;
}
.font-secondary {
    font-family: var(--font-secondary) !important;
}

/* Text Colors */
.color-default {
    color: var(--color-default) !important;
}
.color-links {
    color: var(--color-links) !important;
}
.color-links:hover {
    color: var(--color-links-hover) !important;
}
.color-primary {
    color: var(--color-primary) !important;
}
.color-primary-light {
    color: var(--color-primary-light) !important;
}
.color-primary-dark {
    color: var(--color-primary-dark) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.color-secondary-light {
    color: var(--color-secondary-light) !important;
}
.color-secondary-dark {
    color: var(--color-secondary-dark) !important;
}
.color-blue {
    color: var(--color-blue) !important;
}
.color-indigo {
    color: var(--color-indigo) !important;
}
.color-purple {
    color: var(--color-purple) !important;
}
.color-pink {
    color: var(--color-pink) !important;
}
.color-red {
    color: var(--color-red) !important;
}
.color-orange {
    color: var(--color-orange) !important;
}
.color-yellow {
    color: var(--color-yellow) !important;
}
.color-green {
    color: var(--color-green) !important;
}
.color-teal {
    color: var(--color-teal) !important;
}
.color-cyan {
    color: var(--color-cyan) !important;
}
.color-white {
    color: var(--color-white) !important;
}
.color-gray {
    color: var(--color-gray) !important;
}
.color-black {
    color: var(--color-black) !important;
}

/* Background Colors */
.bg-default {
    background-color: var(--color-default) !important;
}
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-primary-light {
    background-color: var(--color-primary-light) !important;
}
.bg-primary-dark {
    background-color: var(--color-primary-dark) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-secondary-light {
    background-color: var(--color-secondary-light) !important;
}
.bg-secondary-dark {
    background-color: var(--color-secondary-dark) !important;
}
.bg-blue {
    background-color: var(--color-blue) !important;
}
.bg-indigo {
    background-color: var(--color-indigo) !important;
}
.bg-purple {
    background-color: var(--color-purple) !important;
}
.bg-pink {
    background-color: var(--color-pink) !important;
}
.bg-red {
    background-color: var(--color-red) !important;
}
.bg-orange {
    background-color: var(--color-orange) !important;
}
.bg-yellow {
    background-color: var(--color-yellow) !important;
}
.bg-green {
    background-color: var(--color-green) !important;
}
.bg-teal {
    background-color: var(--color-teal) !important;
}
.bg-cyan {
    background-color: var(--color-cyan) !important;
}
.bg-white {
    background-color: var(--color-white) !important;
}
.bg-gray {
    background-color: var(--color-gray) !important;
}
.bg-black {
    background-color: var(--color-black) !important;
}
:root {
    scroll-behavior: smooth;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
}
label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-secondary);
    font-family: var(--font-primary);
    line-height: 20px;
    margin-bottom: 5px;
}
.input-group {
    box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.15),
        1px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    border: none;
}
.input-group-text {
    border: none;
    background-color: #f7f7f7;
}
.btn-secondary {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: #6B7379;
}
.btn-secondary i {
    color: var(--color-primary);
    font-size: 23px !important;
    margin-right: 7px;
}
.container {
    padding: 0;
}
.slider-floating-image {
    position: absolute;
    top: -90px;
    width: 100%;
}
.img-error {
    font-size: 23px;
    padding-top: 3%;
    text-decoration: none;
}
.adsbygoogle {
    display: inline-block !important;
}
.form-control {
    border: none;
    box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.15),
        1px 1px 4px rgba(0, 0, 0, 0.15);
}
.input-group .form-control {
    box-shadow: none;
}
.form-control.no-design{
    padding: 0 !important;
    box-shadow: none !important;
}
.table {
    border-color: #fff;
    border-width: 2px;
    background: #ffff;
}
.table-bordered > :not(caption) > * > * {
    border: 2px solid #fafafa;
    background: #ffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-secondary);
}
.table > :not(:first-child) {
    border-top: none;
}
.table thead tr th {
    background: #e8e8e8;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-secondary);
}

/* .table tbody tr:nth-child(even) th,
.table tbody tr:nth-child(even) td {
    background: #e8e8e8;
} */
/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--color-white);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}
#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1)
        infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 20px;
}
.section-header h2 {
    font-style: normal;
    font-weight: 600;
    position: relative;
    font-size: 25px;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--color-secondary-dark);
}
.section-header p {
    margin: 0 auto;
    color: var(--color-secondary-light-2);
}
.section-header h2:after {
    content: "";
    height: 3px;
    width: 14%;
    left: 43%;
    margin: 0 auto;
    /* left: auto; */
    /* display: block; */
    /* background-size: cover !important; */
    position: absolute;
    background-repeat: no-repeat;
    bottom: -13px;
    /* border: 1px solid; */
    background: #6B7379;
}
@media (min-width: 1280px) {
    .section-header p {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: rgba(var(--color-secondary-rgb), 0.05);
    min-height: 40px;
    margin-top: 100px;
}
.breadcrumbs h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-secondary-light);
    content: "/";
}
@media (max-width: 992px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs h2 {
        margin-bottom: 10px;
        font-size: 24px;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 995;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--color-white);
    line-height: 0;
}
.scroll-top:hover {
    background: rgba(var(--color-primary-rgb), 0.85);
    color: var(--color-white);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.header {
    padding: 10px;
    transition: all 0.5s;
    z-index: 997;
    background: #6B7379;
    box-shadow: var(--box-shadow);
}
.header.sticked {
    background: var(--color-white);
    box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.header .logo img {
    max-height: 50px;
    margin-right: 0px;
}
.header .logo h1 {
    font-size: 32px;
    font-weight: 500;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}
.header .logo h1 span {
    color: var(--color-primary);
    font-weight: 500;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 8px 23px;
    border-radius: 4px;
    transition: 0.3s;
    font-family: var(--font-secondary);
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--color-white);
    background: rgba(var(--color-primary-rgb), 0.85);
}
.search {
    padding: 10px 0;
}
.search i {
    font-size: 30px;
    font-weight: 700;
}
.input-group-text i {
    color: var(--color-white);
}
@media (max-width: 1279px) {
    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin-right: 50px;
    }
}

/*--------------------------------------------------------------
  # Desktop Navigation 
  --------------------------------------------------------------*/
@media (min-width: 780px) {
    .navbar {
        padding: 0;
        position: relative;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navbar li {
        position: relative;
    }
    .navbar > ul > li {
        white-space: nowrap;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 400;
        color: rgba(var(--color-secondary-dark-rgb), 0.7);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        transition: all 0.3s ease-in-out 0s;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out 0s;
    }
    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        transform: scaleX(0.7);
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: var(--color-primary);
    }
    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover > a:before,
    .navbar .dropdown .active:before {
        visibility: hidden;
    }
    .navbar .dropdown a:hover,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown:hover > a {
        color: var(--color-white);
        background: var(--color-secondary);
    }
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        margin: 0;
        padding: 0 0 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: var(--color-secondary);
        transition: 0.3s;
    }
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: rgba(var(--color-white-rgb), 0.5);
    }
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
        color: var(--color-white);
        background: var(--color-primary);
    }
    .navbar .dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
    }
    .navbar .megamenu {
        position: static;
    }
    .navbar .megamenu ul {
        right: 0;
        padding: 10px;
        display: flex;
    }
    .navbar .megamenu ul li {
        flex: 1;
    }
    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover > a {
        color: rgba(var(--color-white-rgb), 0.5);
        background: none;
    }
    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
        color: var(--color-white);
        background: var(--color-primary);
    }
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}
@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}
/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 1279px) {
    

    .mobile-nav-toggle {
        color: var(--color-secondary);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
    }
    .mobile-nav-toggle.bi-x {
        color: var(--color-white);
    }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative;
    }
    .mobile-nav-active .navbar {
        left: 0;
    }
    /* .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(var(--color-secondary-rgb), 0.8);
        z-index: 9996;
    } */
}
/*--------------------------------------------------------------
  # Index Page
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Animated Hero Section
  --------------------------------------------------------------*/
.hero-animated {
    width: 100%;
    min-height: 50vh;
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
}
.hero-animated h2 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}
.hero-animated h2 span {
    color: var(--color-primary);
}
.hero-animated p {
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}
.hero-animated .animated {
    margin-bottom: 60px;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
    .hero-animated .animated {
        max-width: 45%;
    }
}
@media (max-width: 991px) {
    .hero-animated .animated {
        max-width: 60%;
    }
}
@media (max-width: 575px) {
    .hero-animated .animated {
        max-width: 80%;
    }
}
.hero-animated .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-secondary);
}
.hero-animated .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-animated .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 600;
}
.hero-animated .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero-animated .btn-watch-video:hover {
    color: var(--color-primary);
}
.hero-animated .btn-watch-video:hover i {
    color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
    .hero-animated h2 {
        font-size: 32px;
    }
    .hero-animated p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-animated .btn-get-started,
    .hero-animated .btn-watch-video {
        font-size: 14px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
/*--------------------------------------------------------------
  # Carousel Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 60vh;
    padding: 0;
    background: var(--color-black);
    background: url("../img/hero-bg.png") center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 60px 0;
}
@media (max-width: 640px) {
    .hero .container {
        padding: 0 60px;
    }
}
.hero h2 {
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 300;
    -webkit-animation: fadeInDown 1s both 0.2s;
    animation: fadeInDown 1s both 0.2s;
}
@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}
.hero p {
    color: var(--color-secondary-light);
    -webkit-animation: fadeInDown 1s both 0.4s;
    animation: fadeInDown 1s both 0.4s;
    font-weight: 500;
    margin-bottom: 30px;
}
.hero .img {
    margin-bottom: 40px;
    -webkit-animation: fadeInDownLite 1s both;
    animation: fadeInDownLite 1s both;
}
.hero .btn-get-started {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.5s;
    -webkit-animation: fadeInUp 1s both 0.6s;
    animation: fadeInUp 1s both 0.6s;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.hero .btn-get-started:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.hero .carousel-control-prev {
    justify-content: start;
}
@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}
.hero .carousel-control-next {
    justify-content: end;
}
@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(var(--color-secondary-rgb), 0.4);
    color: rgba(var(--color-white-rgb), 0.98);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .carousel-control-next-icon {
    padding-left: 3px;
}
.hero .carousel-control-prev-icon {
    padding-right: 3px;
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
}
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}
.hero .carousel-indicators li {
    cursor: pointer;
    background: rgba(var(--color-secondary-rgb), 0.5);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}
.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--color-primary);
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes fadeInDownLite {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInDownLite {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/*--------------------------------------------------------------
  # Fullscreen Hero Section
  --------------------------------------------------------------*/
.hero-fullscreen {
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero-fullscreen-bg.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 120px 0 60px;
}
.hero-fullscreen:before {
    content: "";
    background: rgba(var(--color-white-rgb), 0.85);
    position: absolute;
    inset: 0;
}
@media (min-width: 1365px) {
    .hero-fullscreen {
        background-attachment: fixed;
    }
}
.hero-fullscreen h2 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}
.hero-fullscreen h2 span {
    color: var(--color-primary);
}
.hero-fullscreen p {
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}
.hero-fullscreen .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-secondary);
}
.hero-fullscreen .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-fullscreen .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 600;
}
.hero-fullscreen .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
    color: var(--color-primary);
}
.hero-fullscreen .btn-watch-video:hover i {
    color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
    .hero-fullscreen h2 {
        font-size: 32px;
    }
    .hero-fullscreen p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-fullscreen .btn-get-started,
    .hero-fullscreen .btn-watch-video {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
  # Static Hero Section
  --------------------------------------------------------------*/
.hero-static {
    width: 100%;
    min-height: 95vh;
    background-color: #fff;
    background: url("../img/slider-image.png");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 0;
}
/* .hero-static:before {
    position: absolute;
    width: 100%;
    content: "";
    height: 407px;
    background: #0000006b;
    top: 0;
} */
.hero-static h1 {
    margin: 0 0 10px 0;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 49px;
    color: var(--color-secondary-dark);
    font-family: var(--font-secondary);
}
.hero-static h1 span {
    color: var(--color-secondary-dark);
}
.hero-static p {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-weight: 400;
}
.hero-static .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-secondary);
    font-family: var(--font-secondary);
}
.hero-static .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-static .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    display: none !important;
    margin-left: 25px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 600;
}
.hero-static .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero-static .btn-watch-video:hover {
    color: var(--color-primary);
}
.hero-static .btn-watch-video:hover i {
    color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
    .hero-static h1 {
        font-size: 32px;
    }
    .hero-static p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-static .btn-get-started,
    .hero-static .btn-watch-video {
        font-size: 14px;
    }
}
/* Home */

/*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
.tool-title {
    width: 100%;
    min-height: 280px;
    background: url("../img/tool-title.png");
    background-size: cover;
    position: relative;
    padding: 130px 0 0;
    margin-bottom: 10px;
}

.tool-title h1 {
    margin: 0 0 10px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 61px;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}
.tool-title p {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.tool-title .btn-get-started {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    display: none;
    padding: 8px 20px;
    border-radius: 3px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-secondary-dark);
    font-family: var(--font-secondary);
}
.tool-title .btn-get-started i {
    margin-right: 5px;
}

.home-tools {
    list-style: auto;
    padding: 0;
    text-align: left;
}
.home-tools li {
    width: 16%;
    padding: 0 4px;
    margin-bottom: 0;
    height: 136px;
    position: relative;
    vertical-align: middle;
    display: inline-table;
}
.home-tools li a {
    color: unset;
}
.featured-services {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: -4px -4px 6px -2px rgba(223, 223, 223, 0.82),
        4px 4px 6px -2px rgba(223, 223, 223, 0.82);
    /* border-radius: 8px; */
    /* background: #fcfcfcf0; */
}
.featured-services .home-tools {
    margin-bottom: 0;
}
.featured-services .service-item {
    /* padding: 15px 8px; */
    transition: all ease-in-out 0.4s;
    /* background: var(--color-white); */
    height: 100%;
    width: 100%;
    text-align: center;
    /* display: table-cell; */
    vertical-align: middle;
}
.featured-services .service-item .icon {
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.3), 2px 2px 7px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px;
    width: 70px;
}
.featured-services .service-item .icon i {
    color: #485664;
    font-size: 25px;
    transition: 0.3s;
}
.featured-services .service-item h4 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-secondary);
}
.featured-services .service-item h4 a {
    transition: ease-in-out 0.3s;
}
.studio-services .service-item h4 a {
    color: var(--color-white);
}

.featured-services .service-item #webscreen {
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.featured-services .service-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1); */
}
.featured-services .service-item:hover h4 {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
.about .about-img {
    position: relative;
    margin: 60px 0 0 60px;
}
.about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
}
@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }
    .about .about-img:before {
        inset: -30px 0 0 -30px;
    }
}
.about h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .about h3 {
        font-size: 28px;
    }
}
.about .nav-pills {
    border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.about .nav-pills li + li {
    margin-left: 40px;
}
.about .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-secondary);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    font-family: var(--font-secondary);
}
.about .nav-link.active {
    color: var(--color-primary);
    background: none;
    border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
    .about .nav-link {
        font-size: 16px;
    }
}
.about .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: var(--color-secondary);
}
.about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
.clients {
    padding: 0 0 60px 0;
}
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}
.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
.cta {
    padding: 0;
    margin-bottom: 60px;
}
.cta .container {
    padding: 80px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: 15px;
}
@media (max-width: 992px) {
    .cta .container {
        padding: 60px;
    }
}
.cta .content h3 {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 700;
}
.cta .content h3 em {
    font-style: normal;
    position: relative;
}
.cta .content h3 em:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    background: rgba(var(--color-primary-rgb), 0.5);
    z-index: -1;
}
.cta .content p {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 18px;
}
.cta .content .cta-btn {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.cta .content .cta-btn:hover {
    background: var(--color-primary);
}
.cta .img {
    position: relative;
}
.cta .img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.5);
    border-radius: 15px;
    transform: rotate(12deg);
}
.cta .img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.9);
    border-radius: 15px;
    transform: rotate(6deg);
}
.cta .img img {
    position: relative;
    z-index: 3;
    border-radius: 15px;
}

/*--------------------------------------------------------------
  # On Focus Section
  --------------------------------------------------------------*/
.onfocus {
    padding: 0;
}
.onfocus .video-play {
    min-height: 400px;
    background: linear-gradient(
            rgba(var(--color-black-rgb), 0.4),
            rgba(var(--color-black-rgb), 0.7)
        ),
        url("../img/onfocus-video-bg.jpg") center center;
    background-size: cover;
}
.onfocus .content {
    background: linear-gradient(
            rgba(var(--color-secondary-rgb), 0.5),
            rgba(var(--color-secondary-rgb), 0.8)
        ),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 40px;
}
@media (min-width: 768px) {
    .onfocus .content {
        padding: 80px;
    }
}
.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}
.onfocus .content ul {
    list-style: none;
    padding: 0;
}
.onfocus .content ul li {
    padding-bottom: 10px;
}
.onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}
.onfocus .content p:last-child {
    margin-bottom: 0;
}
.onfocus .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}
.onfocus .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.onfocus .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}
.onfocus .content .read-more:hover i {
    margin-left: 10px;
}
.onfocus .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--color-primary) 50%,
        rgba(var(--color-primary-rgb), 0.4) 52%
    );
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
.onfocus .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.onfocus .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.onfocus .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}
.onfocus .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}
.features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: var(--color-secondary);
    box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}
.features .nav-link i {
    font-size: 32px;
    line-height: 0;
}
.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: var(--color-secondary);
}
.features .nav-link:hover {
    color: var(--color-primary);
}
.features .nav-link.active {
    transition: 0.3s;
    background: var(--color-secondary)
        linear-gradient(
            rgba(var(--color-primary-rgb), 0.95),
            rgba(var(--color-primary-rgb), 0.6)
        );
    border-color: var(--color-primary);
}
.features .nav-link.active h4 {
    color: var(--color-white);
}
.features .nav-link.active i {
    color: var(--color-white) !important;
}
.features .tab-content {
    margin-top: 30px;
}
.features .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}
.features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-secondary);
}
.features ul {
    list-style: none;
    padding: 0;
}
.features ul li {
    padding-bottom: 10px;
}
.features ul i {
    font-size: 24px;
    margin-right: 4px;
    color: var(--color-primary);
}
.features .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
.services .img {
    border-radius: 8px;
    overflow: hidden;
}
.services .img img {
    transition: 0.6s;
}
.services .details {
    padding: 50px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}
.services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid var(--color-white);
}
.services .details h3 {
    color: var(--color-default);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}
.services .details p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.services .service-item:hover .details h3 {
    color: var(--color-primary);
}
.services .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
}
.services .service-item:hover .details .icon i {
    color: var(--color-primary);
}
.services .service-item:hover .img img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-secondary-dark-rgb), 0.8);
}
.testimonials .section-header {
    margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonial-item {
    text-align: center;
    color: var(--color-white);
}
.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(var(--color-white-rgb), 0.15);
    margin: 0 auto;
}
.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--color-white);
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(var(--color-white-rgb), 0.6);
    margin: 0 0 15px 0;
}
.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
    color: var(--color-yellow);
    margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(var(--color-white-rgb), 0.6);
    font-size: 26px;
    line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(var(--color-white-rgb), 0.4);
    opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-white);
    opacity: 1;
}
@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
.pricing {
    background: rgba(var(--color-secondary-rgb), 0.04);
}
.pricing .pricing-item {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(var(--color-gray-rgb), 0.15);
    background: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 4px solid var(--color-white);
    border-radius: 10px;
    overflow: hidden;
}
.pricing .pricing-header {
    background: linear-gradient(
            rgba(var(--color-secondary-rgb), 0.9),
            rgba(var(--color-secondary-rgb), 0.9)
        ),
        url("../img/pricing-bg.jpg") center center;
    background-size: cover;
    text-align: center;
    padding: 40px;
    margin: -60px -40px 0;
}
.pricing h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 36px;
    color: var(--color-white);
}
.pricing h4 {
    font-size: 48px;
    color: var(--color-white);
    font-weight: 400;
    font-family: var(--font-primary);
    margin-bottom: 0;
}
.pricing h4 sup {
    font-size: 28px;
}
.pricing h4 span {
    color: rgba(var(--color-white-rgb), 0.6);
    font-size: 24px;
}
.pricing ul {
    padding: 30px 0;
    list-style: none;
    color: var(--color-gray);
    text-align: left;
    line-height: 20px;
}
.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.pricing ul i {
    color: var(--color-primary);
    font-size: 36px;
    padding-right: 3px;
    line-height: 0;
}
.pricing ul .na {
    color: rgba(var(--color-gray-rgb), 0.5);
}
.pricing ul .na i {
    color: rgba(var(--color-gray-rgb), 0.5);
    font-size: 24px;
    padding-left: 4px;
}
.pricing ul .na span {
    text-decoration: line-through;
}
.pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    color: var(--color-primary);
    transition: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid var(--color-primary);
}
.pricing .buy-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.pricing .featured {
    border-color: var(--color-primary);
}
.pricing .featured .pricing-header {
    background: linear-gradient(
            rgba(var(--color-primary-rgb), 0.9),
            rgba(var(--color-primary-rgb), 0.9)
        ),
        url("../img/pricing-bg.jpg") center center;
}
.pricing .featured .buy-btn {
    background: var(--color-primary);
    color: var(--color-white);
}

/*--------------------------------------------------------------
  # F.A.Q Section
  --------------------------------------------------------------*/
@media (max-width: 991px) {
    .faq {
        padding: 0;
    }
}
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: var(--color-secondary);
}
.faq .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}
.faq .content p {
    font-size: 15px;
    color: var(--color-gray);
}
.faq .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
}
.faq .accordion-item {
    border: 0;
    margin-top: 15px;
    box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}
.faq .accordion-collapse {
    border: 0;
}
.faq .accordion-button {
    padding: 15px 40px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: var(--color-white);
    box-shadow: none;
    border-radius: 5px;
}
.faq .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    border-bottom: 0;
    box-shadow: none;
}
.faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
}
.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--color-primary);
}
.faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    border-radius: 5px;
    background: var(--color-white);
    box-shadow: none;
}

/*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
.portfolio .portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
}
.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: var(--color-primary);
}
.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}
.portfolio .portfolio-flters li:last-child {
    margin-right: 0;
}
@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}
.portfolio .portfolio-item {
    position: relative;
    border: 1px solid var(--color-white);
    overflow: hidden;
    z-index: 1;
}
.portfolio .portfolio-item img {
    transition: all 0.3s;
}
.portfolio .portfolio-item:before {
    content: "";
    inset: 0;
    position: absolute;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 2;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}
.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: auto 40px 40px 40px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    padding: 20px;
}
.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    padding-right: 50px;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: rgba(var(--color-white-rgb), 0.7);
    transition: 0.3s;
    line-height: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--color-white);
}
.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}
.portfolio .portfolio-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.portfolio .portfolio-item:hover img {
    transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    inset: auto 10px 0 10px;
}

/*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
.team .team-member .member-img {
    border-radius: 8px;
    overflow: hidden;
}
.team .team-member .social {
    position: absolute;
    left: 0;
    top: -18px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team .team-member .social a {
    transition: color 0.3s;
    color: var(--color-white);
    background: var(--color-primary);
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}
.team .team-member .social a i {
    line-height: 0;
    font-size: 16px;
}
.team .team-member .social a:hover {
    background: var(--color-primary-light);
}
.team .team-member .social i {
    font-size: 18px;
    margin: 0 2px;
}
.team .team-member .member-info {
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
    background: var(--color-white);
    margin: -50px 20px 0 20px;
    position: relative;
    border-radius: 8px;
}
.team .team-member .member-info h4 {
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 24px;
    color: var(--color-secondary);
}
.team .team-member .member-info span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray);
}
.team .team-member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: var(--color-gray);
}
.team .team-member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
  # Recent Blog Posts
  --------------------------------------------------------------*/
.recent-blog-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
}
.recent-blog-posts .post-box .meta {
    margin-top: 15px;
}
.recent-blog-posts .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
}
.recent-blog-posts .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-secondary);
}
.recent-blog-posts .post-box .post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    margin: 15px 0 0 0;
    position: relative;
    transition: 0.3s;
}
.recent-blog-posts .post-box p {
    margin: 15px 0 0 0;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
}
.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    margin-top: 15px;
}
.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
    color: var(--color-primary);
}
.recent-blog-posts .post-box:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
.contact .map {
    margin-bottom: 40px;
}
.contact .map iframe {
    border: 0;
    width: 100%;
    height: 400px;
}
.contact .info {
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
    overflow: hidden;
}
.contact .info h3 {
    font-weight: 600;
    font-size: 24px;
}
.contact .info p {
    color: var(--color-secondary-light);
    margin-bottom: 30px;
    font-size: 15px;
}
.contact .info-item + .info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
    font-size: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}
.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary);
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-secondary-light);
}
.contact .php-email-form {
    width: 100%;
    background: var(--color-white);
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
.contact .php-email-form .sent-message {
    display: none;
    color: var(--color-white);
    background: var(--color-green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: var(--color-white);
    text-align: center;
    padding: 15px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--color-green);
    border-top-color: var(--color-white);
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
/* .contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
  } */
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-secondary-light);
}
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
    height: 48px;
    padding: 10px 15px;
}
.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
}
.contact .php-email-form button[type="submit"] {
    background: var(--color-primary);
    border: 0;
    padding: 13px 50px;
    color: var(--color-white);
    transition: 0.4s;
    border-radius: 0;
}
.contact .php-email-form button[type="submit"]:hover {
    background: rgba(var(--color-primary-rgb), 0.85);
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 1;
    border: 1px solid var(--color-primary);
}
.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}
.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}
.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-secondary-light);
}
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}
.portfolio-details .portfolio-description {
    padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
  # Blog Stylings
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Blog Home Posts List
  --------------------------------------------------------------*/
.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
    height: 100%;
}
.blog .posts-list article + article {
    margin-top: 60px;
}
.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}
.blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
}
.blog .posts-list .title a {
    color: var(--color-secondary);
    transition: 0.3s;
}
.blog .posts-list .title a:hover {
    color: var(--color-primary);
}
.blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}
.blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog .posts-list .meta-top ul li + li {
    padding-left: 10px;
}
.blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .posts-list .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.blog .posts-list .content {
    margin-top: 20px;
}
.blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}
.blog .posts-list .read-more a:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
  # Blog Details Page
  --------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
}
.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}
.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: var(--color-secondary);
}
.blog .blog-details .content {
    margin-top: 20px;
}
.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}
.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--color-secondary-rgb), 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog .blog-details .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}
.blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog .blog-details .meta-top ul li + li {
    padding-left: 20px;
}
.blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .blog-details .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.blog .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.blog .blog-details .meta-bottom i {
    color: var(--color-secondary-light);
    display: inline;
}
.blog .blog-details .meta-bottom a {
    color: rgba(var(--color-secondary-rgb), 0.8);
    transition: 0.3s;
}
.blog .blog-details .meta-bottom a:hover {
    color: var(--color-primary);
}
.blog .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
.blog .blog-details .meta-bottom .cats li {
    display: inline-block;
}
.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
.blog .blog-details .meta-bottom .tags li {
    display: inline-block;
}
.blog .blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ",";
}
.blog .blog-details .meta-bottom .share {
    font-size: 16px;
}
.blog .blog-details .meta-bottom .share i {
    padding-left: 5px;
}
.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
}
.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: var(--color-secondary);
}
.blog .post-author .social-links {
    margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
    color: rgba(var(--color-secondary-rgb), 0.5);
    margin-right: 5px;
}
.blog .post-author p {
    font-style: italic;
    color: rgba(var(--color-gray-rgb), 0.8);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Blog Sidebar
  --------------------------------------------------------------*/
.blog .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--color-secondary);
}
.blog .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}
.blog .sidebar .search-form form {
    background: var(--color-white);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
    padding: 3px 10px;
    position: relative;
}
.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.blog .sidebar .search-form form input[type="text"]:focus {
    outline: none;
}
.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}
.blog .sidebar .search-form form button i {
    line-height: 0;
}
.blog .sidebar .search-form form button:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}
.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}
.blog .sidebar .categories ul li + li {
    padding-top: 10px;
}
.blog .sidebar .categories ul a {
    color: var(--color-secondary);
    transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
    color: var(--color-default);
}
.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: rgba(var(--color-default-rgb), 0.4);
    font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
    display: flex;
}
.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}
.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
    color: var(--color-secondary);
    transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
    color: var(--color-primary);
}
.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--color-default-rgb), 0.4);
}
.blog .sidebar .tags {
    margin-bottom: -10px;
}
.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}
.blog .sidebar .tags ul li {
    display: inline-block;
}
.blog .sidebar .tags ul a {
    color: var(--color-secondary-light);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
    display: inline-block;
    transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}
.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: rgba(var(--color-secondary-light-rgb), 0.8);
    font-size: 14px;
}

/*--------------------------------------------------------------
  # Blog Comments
  --------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}
.blog .comments .comments-count {
    font-weight: bold;
}
.blog .comments .comment {
    margin-top: 30px;
    position: relative;
}
.blog .comments .comment .comment-img {
    margin-right: 14px;
}
.blog .comments .comment .comment-img img {
    width: 60px;
}
.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.blog .comments .comment h5 a {
    font-weight: bold;
    color: var(--color-default);
    transition: 0.3s;
}
.blog .comments .comment h5 a:hover {
    color: var(--color-primary);
}
.blog .comments .comment h5 .reply {
    padding-left: 10px;
    color: var(--color-secondary);
}
.blog .comments .comment h5 .reply i {
    font-size: 20px;
}
.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin-bottom: 5px;
}
.blog .comments .comment.comment-reply {
    padding-left: 40px;
}
.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}
.blog .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}
.blog .comments .reply-form p {
    font-size: 14px;
}
.blog .comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
.blog .comments .reply-form input:focus {
    box-shadow: none;
    border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: rgba(var(--color-primary-rgb), 0.8);
}
.blog .comments .reply-form .form-group {
    margin-bottom: 25px;
}
.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--color-secondary);
}
.blog .comments .reply-form .btn-primary:hover {
    background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
  # Blog Home Pagination
  --------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: var(--color-secondary-light);
}
.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}
.blog .blog-pagination li a {
    color: var(--color-secondary);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: var(--color-primary);
}
.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: var(--color-white);
}
.blog .blog-pagination .flex.justify-between.flex-1 {
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer {
    color: var(--color-white);
    font-size: 14px;
    position: relative;
}

/* .footer .footer-content:before {
    position: absolute;
    width: 100%;
    content: '';
    height: 407px;
    background: #0000006b;
    top: 0;
} */
.footer .footer-content {
    background: var(--color-secondary-dark);
    background-size: cover;
    padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
    color: var(--color-primary);
}
.footer .footer-content .footer-info p {
    font-style: normal;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.footer .footer-content .footer-info p strong {
    color: var(--color-primary);
}

.footer .footer-content h4 {
    color: var(--color-primary);
    position: relative;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}
/* .footer .footer-content h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    bottom: 0;
    left: 0;
  } */
.footer .footer-content .footer-links {
    margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-content .footer-links ul i {
    padding-right: 2px;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 1;
}
.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-content .footer-links ul a {
    color: var(--color-white);
    transition: 0.3s;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    line-height: 1;
}
.footer .footer-content .footer-newsletter {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
}
.footer .footer-content .footer-links ul a:hover {
    color: var(--color-white);
}
@media only screen and (max-width: 400px) {
    .footer .footer-content .footer-links ul {
        margin-top: 10px;
    }
}
@media only screen and (max-width: 540px) {
    .footer .footer-content .footer-links ul {
        margin-top: 10px;
    }
}
.footer .footer-content .footer-newsletter form {
    margin-top: 30px;
    background: var(--color-white);
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}
.footer .footer-content .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}
.footer
    .footer-content
    .footer-newsletter
    form
    input[type="email"]:focus-visible {
    outline: none;
}
@media only screen and (max-width: 820px) {
    .footer .footer-content .footer-newsletter input[type="email"] {
        width: 100%;
    }
}
.footer .footer-content .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    width: 120px;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}
.footer .footer-content .footer-newsletter form input[type="submit"]:hover {
    background: rgba(var(--color-primary-rgb), 0.85);
}
.footer .footer-legal {
    padding: 10px 0;
    background: black;
}
.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-white);
}
.footer .footer-legal .credits a {
    color: var(--color-primary-light);
}
.footer .footer-legal .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(var(--color-white-rgb), 0.1);
    color: var(--color-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.footer .footer-legal .social-links a:hover {
    background: var(--color-primary);
    text-decoration: none;
}
.navbar a.bgbtn {
    color: var(--color-secondary);
    padding: 10px 9px;
    margin-right: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
}
.navbar a.bgbtn:hover {
    background: var(--color-secondary-dark);
    color: #fff;
    border-bottom: 0;
}
.featured-services .service-item .icon i:nth-child(1) {
    z-index: 999;
    background-color: #fff;
}
.featured-services .service-item .icon i:nth-child(2) {
    position: absolute;
    top: 35px;
    left: 43px;
    display: none;
    font-size: 22px;
}

.galler-box {
    background-color: #f0f0f0;
    text-align: center;
    /* display: none; */
}
.leftFloating-image {
    position: absolute;
    left: 5%;
    display: none;
}
.gallery-image {
    margin: 30px 0;
    display: none;
}
.verticle-image {
    display: none;
}
.gallery-image img {
    width: 100%;
}
.best-tools {
    box-shadow: -4px -4px 6px -2px rgba(223, 223, 223, 0.82),
        4px 4px 6px -2px rgba(223, 223, 223, 0.82);
    border-radius: 5px;
    margin-bottom: 20px;
}
.best-tools h3 {
    padding: 15px 0px;
    font-weight: 600;
    position: relative;
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 0;
    color: var(--color-secondary);
    text-align: center;
}
.best-tools h3:after {
    content: "";
    height: 17px;
    width: 63%;
    left: 19%;
    margin: 0 auto;
    /* left: auto; */
    /* display: block; */
    /* background-size: cover !important; */
    position: absolute;
    /* background-position: right; */
    /* background-repeat: no-repeat; */
    bottom: -6px;
    background: url(../img/title-devider-small.svg) no-repeat;
}
.best-tools ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.best-tools ul li a {
    padding: 10px;
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-secondary-light);
    /* border-bottom: 1px solid #d6cece; */
}
.best-tools ul li a i {
    color: var(--color-primary);
    margin-right: 10px;
}
.best-tools ul li:last-child a {
    border-bottom: 0;
}
.tool-block {
    margin: 0;
    padding: 20px;
    transition: all ease-in-out 0.4s;
    background: var(--color-white);
    box-shadow: 0 0 6px 3px #dfdfdf;
    border-radius: 7px;
}
.tool-block form {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
}
#tool-block > div.section-header {
    display: none;
}

.file-area {
    width: 100%;
    border: 2px dashed #ddd;
    border-radius: 10px;
    position: relative;
    word-break: break-all;
}
.file-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}
.file-area .file-dummy {
    width: 100%;
    padding: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    background: #fafafa;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
}
.file-area .file-dummy i {
    font-size: 40px;
    display: block;
}
.file-area .file-dummy .success {
    display: none;
}
.file-area:hover .file-dummy {
    background: rgba(255, 255, 255, 0.1);
}
.file-area input[type="file"]:focus + .file-dummy {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline: -webkit-focus-ring-color auto 5px;
}
/* .file-area input[type=file]:valid + .file-dummy {
    border-color: rgba(0, 255, 0, 0.4);
    background-color: rgba(0, 255, 0, 0.3);
  } */
.file-area input[type="file"]:valid + .file-dummy .success {
    display: inline-block;
}
.file-area input[type="file"]:valid + .file-dummy .default {
    display: none;
}
.btn-submit {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 7px;
    padding: 8px 20px;
    font-size: 16px;
    text-transform: capitalize;
}
.btn-submit:hover {
    background: var(--color-secondary);
    color: #fff;
}
.content-box {
    position: relative;
}
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 254px;
    background: #f0f0f0;
    text-align: center;
    z-index: 99;

    padding: 50px 0;
}
/* .content-overlay .file-area {
    height: 100%;
  }
  .content-overlay .file-area .file-dummy{
    text-transform: none;
  }
  .content-overlay .file-area{
    border: 0;
  }
  .content-overlay .file-area .file-dummy{
    padding: 50px 0;
   background: transparent;
   height: 100%;
  } */
.steps-main {
    display: none;
    width: 70%;
    margin: 0 auto 20px auto;
}
.steps-main .btn-group {
    width: 100%;
}
.steps-main .btn-group button {
    padding: 8px;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-secondary);
    line-height: 22px;
    text-transform: uppercase;
    width: 33.3%;
}
.steps-main .btn-group button i {
    display: block;
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--color-secondary);
}
.steps-main .btn-group button p {
    margin-bottom: 0;
}
.steps-main .btn-group button:nth-child(2) {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
}

.wordCounterResult {
    background-color: var(--color-secondary);
    border-radius: 5px;
}
.wordCounterResult h4 {
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.result-block {
    margin: 40px 0;
    padding: 10px;
    border-radius: 5px;
    transition: all ease-in-out 0.4s;
    background: #f8f8f8;
    border: none;
}
.result-block .section-header {
    background-color: transparent;

    text-align: left;
}
.result-block .section-header h3 {
    padding: 0px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}
.result-block .content {
    padding: 20px 10px;
    background: #fafafa;
    border: 1px dashed #c7c7c7;
    border-radius: 12px;
}
.features {
    margin: 40px 0;
    padding: 20px;
    transition: all ease-in-out 0.4s;
    background: var(--color-white);
    box-shadow: 0 0 6px 3px #dfdfdf;
    border-radius: 7px;
}
.copy-button {
    font-size: 18px;
    color: unset;
    float: right;
    padding-top: 5px;
}
#copycontent {
    text-align: justify;
}
input.error,
select.error,
textarea.error {
    border: 1px solid red;
}
label.error {
    color: red;
}
.blog-pagination svg {
    width: 30px;
}
.ck-editor__editable_inline {
    min-height: 400px;
}
.textoimagepreview {
    position: relative;
    background: white;
}
.textoimagepreview div {
    position: absolute;
    border-radius: 2px;
}
@media screen and (max-width: 400px) {
    .textoimagepreview div {
        position: absolute;
        border-radius: 2px;
    }
}
/* #preview {
    width: 500px;
    height: 500px;
    padding: 0.5em;
    margin: 20px auto;
    border: 1px solid #ddd;
} */
@media screen and (max-width: 400px) {
    /* #preview {
        width: 100%;
        height: 500px;
        padding: 0.5em;
        margin: 20px auto;
        border: 1px solid #ddd;
    } */
}
/* #preview div {
    padding: 5px;
    border: 1px solid #dee2e6;
    cursor: pointer;
} */

label .form-control {
    width: 30px;
    text-align: center;
}
input {
    width: 30px;
}
label {
    text-align: center;
}
.rounded {
    border-radius: 0px 25px 25px 0px;
}
.ribbon {
    width: 63px;
    height: 47px;
    overflow: hidden;
    z-index: 99;
    position: absolute;
}
.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border: 5px solid #485664;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 64px;
    padding: 5px;
    text-align: center;
    background-color: #485664;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    color: #6B7379;
    font: 696 13px/1 "Lato", sans-serif;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    text-transform: uppercase;
    text-align: center;
}

/* top left*/
.ribbon-top-left {
    top: -9px;
    left: 30px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
.ribbon-top-left::before {
    top: 1px;
    right: 16.4px;
}
.ribbon-top-left::after {
    bottom: 0;
    left: 1px;
}
.ribbon-top-left span {
    right: 15px;
    top: 5px;
    transform: rotate(-45deg);
}
/* .service-item.new::after{
    content: 'New';
    background-color: #485664;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    padding: 2px 5px;
    width: 36px;
    position: absolute;
    color: #fff;
    top: 0;
    font-size: 12px;
    right: 0;
  } */
.stretched-link::after {
    display: none;
}
.studio-services {
    box-shadow: -4px -4px 6px rgba(223, 223, 223, 0.82),
        4px 4px 6px rgba(223, 223, 223, 0.82);
    background: url("../img/studio-background.png") no-repeat;
    background-size: cover;
    padding: 50px;
    border-radius: 20px;
}
.studio-services .icon {
    background: #fff;
}
.studio-services .section-header h2 {
    width: 30%;
    padding: 15px 20px;
    background: var(--color-secondary-dark);
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 3px;
    color: #ffff;
}
.studio-services .section-header h2 i {
    color: var(--color-primary);
    margin-right: 10px;
}
.studio-services .section-header h2:after {
    display: none;
}
.studio-services .section-header p {
    color: var(--color-white);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}
.studio-services .service-item {
    text-align: center;
}
.studio-services .service-item .icon i {
    font-size: 56px;
}
.studio-services .content {
    padding: 0px 100px;
}
.studio-services .studio-box h4 {
    font-style: normal;
    font-weight: 900;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    color: var(--color-white);
}
.range {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.range .slider {
    width: 200px;
}
.colorreview div {
    border-radius: 2px;
    height: 120px;
    width: 100%;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="range"] {
        overflow: hidden;
        -webkit-appearance: none;
        background-color: #b9b9b8;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        height: 10px;
        -webkit-appearance: none;
        color: red;
        margin-top: -1px;
    }

    input.red::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: red;
        box-shadow: -80px 0 0 80px red;
    }
    input.blue::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: blue;
        box-shadow: -80px 0 0 80px blue;
    }
    input.green::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: green;
        box-shadow: -80px 0 0 80px green;
    }
}
/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: #43e5f7;
}
input[type="range"]::-moz-range-track {
    background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: #43e5f7;
}
input[type="range"]::-ms-fill-upper {
    background-color: #9a905d;
}
.card {
    display: flex;
}
.equally_centralized {
    background-color: #045887;
    color: white;
}
#htmlarea {
    border-radius: 2px;
    border: 2px;
}
#htmlarea label {
    word-break: break-all;
    display: inline;
}
.right-social-icons a{
    color: #fff;
}
@media only screen and (max-width: 400px) {
    /* .right-social-icons{
      display: none;
    } */
}
@media only screen and (max-width: 768px) {
    .studio-services .section-header h2 {
        width: 100%;
    }
}
#myTab button {
    background-color: #485664;
    margin: 5px;
    color: white;
}
#myTab {
    border-bottom: 0;
}
#myTab li:first-child button {
    margin-left: 0;
}
@media only screen and (max-width: 1278px) {
    /* .right-social-icons{
      margin-right: 50px;
    } */
}
.block-loader {
    width: 100%;
    height: 100%;
    background: #0000005c;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}
.loader-content {
    margin-top: 20px;
    /* width: 40%;
    margin: 0 auto;
    font-size: 90px;
    height: 200px;
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 18px; */
}
.loader-content img {
    height: 150px;
    object-fit: contain;
}
.loader-content div {
    font-size: 150px;
}
#display {
    min-height: auto;
    height: auto;
    margin-top: 80px;
    padding: 20px 0;
}

.display_screen select {
    background-color: #485664;
    color: white;
    padding: 15px;
    font-size: 18px;
}

.display_screen select option {
}
.display_screen .input-group-text {
    background-color: #485664;
    color: white;
    height: 65px;
    font-size: 30px;
}
#speed {
    color: red;
}
.border {
    width: 200px;
}
/* width: 100%;
    background-color: #ddd;
  } */
#score {
    font-size: 4.5rem;
    padding: 25px;
    text-align: center;
}
@media only screen and (max-width: 1400px) {
    .home-tools li {
        width: 19%;
    }
}
@media only screen and (max-width: 820px) {
    .home-tools li {
        width: 24.5%;
    }
}
@media only screen and (max-width: 768px) {
    .home-tools li {
        width: 32.4%;
    }
    .ribbon-top-left {
        top: -10px;
        left: 12px;
    }
    /* .right-social-icons{
    display: none;
  } */
}
/* @media only screen and (max-width: 450px) {
      .home-tools li {
        width: 49.4%;
      }
        } */

.age_calc_res span {
    color: var(--color-secondary-dark);
    margin: 0px 3px;
}
.bg_e3e7ed {
    background-color: #e3e7ed;
}
.sub_headings {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.age_calc_res th,
.age_calc_res td {
    font-size: 15px;
}
.pfc_res {
    background: #485664;
    border-radius: 10px;
}
@media only screen and (max-width: 768px) {
    .sub_headings {
        font-size: 15px;
    }
    .age_calc_res th {
        font-size: 13px;
    }
    .age_calc_res td {
        font-size: 14px;
    }
}

#pass {
    margin-left: 25%;
    height: 45px;
    width: 500px;
    border-radius: 3px;
    border: 1px solid grey;
    padding: 10px;
    font-size: 18px;
}
#meter_wrapper {
    background-color: #dcdcdc;
    height: 10px;
    position: relative;
    border-radius: 0 0 5px 5px;
}
#meter {
    height: 10px;
    position: relative;
    border-radius: 2px;
}
#pass_type {
    font-size: 20px;
    color: black;
    display: inline;
}
@media only screen and (max-width: 360px) {
    #pass_type {
        display: inline;
        word-break: break-all;
    }
}
#pass_style {
    font-size: 20px;
}
#toggle {
    display: absolute;
}
form .indicatro {
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
form .indicatro span {
    width: 100%;
    height: 100%;
    background: lightgray;
    border-radius: 5px;
    margin: 0 5px;
}
#maxLength {
    height: 20px;
    /* margin: 20px; */
    width: 100%;
}
/* .notfound {
  margin-top:15%;
} */
.search-bar {
    width: 400px;
    position: absolute;
    top: 60px;
    right: 20px;
}
.search-bar ul {
    padding: 0;
    list-style: none;
}
.search-bar ul li {
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.search-bar ul li:last-child {
    margin-bottom: 0px;
}
.search-bar ul li a {
    color: black;
    display: block;
    text-transform: capitalize;
}
#searchresult {
    margin-top: 0px;
}
#searchresult ul {
    margin-top: 20px;
}
.show-on-mobile {
    display: none !important;
}
@media only screen and (max-width: 768px) {
    .show-on-dekstop {
        display: none;
    }
    .show-on-mobile {
        display: block !important;
    }
    .steps-main {
        width: 100%;
    }
    .navbar a.bgbtn {
        background-color: transparent;
    }
    .search-bar {
        width: 300px;
        right: 20px;
        top: 70px;
    }
}
.bi-plus-circle-dotted {
    color: red;
}
.bi-check-circle {
    color: red;
}
#range_length input[type="range"] {
    overflow: hidden;
    -webkit-appearance: textfield;
    width: auto;
}

.maxNumber {
    margin: 60%;
}

.text-justify {
    text-align: justify;
}
.domain-search-table {
    width: 100%;
}
.domain-search-table th,
.domain-search-table td {
    border: 1px solid #ddd;
    padding: 7px;
    text-align: center;
}
.games-btn{
    background: #ffff !important;
    color:black !important;
}
.games-btn img{
    height: 24px;
    width: 30px;
}
.navbar ul{
    margin-left: -180px;
}
/* .game-station-btn{
    background-color: #fff;
    color: var(--color-secondary-dark);
} */
@media only screen and (max-width: 414px) {
    #dns_table {
        display: inline;
        word-break: break-all;
    }
}

.responsive_design {
    word-break: break-all;
    display: inline;
}
@media only screen and (max-width: 300px) {
    .steps-main .btn-group button {
        font-size: 12 px;
    }
}
@media only screen and (max-width: 390px) {
    .steps-main .btn-group button {
        font-size: 12 px;
    }
}
@media only screen and (max-width: 359px) {
    .steps-main .btn-group button {
        font-size: 12 px;
    }
}
@media only screen and (max-width: 400px) {
    #threebutton {
        margin: 20px;
    }
}
#table_keyword_position {
    word-break: break-all;
    /* display: inline; */
}
@media screen and (max-width: 450px) {
    table #keyword_rank {
        width: 20%;
    }
}

@media screen and (max-width: 450px) {
    table #keyword_width {
        width: 28%;
    }
}
@media screen and (max-width: 450px) {
    table #keyword_link {
        width: 80%;
    }
}
@media screen and (max-width: 767px) {
    .header {
        border-radius: 0;
        margin-top: 0;
    }
    header .btn-secondary {
        font-size: 14px !important;
        padding: 5px 5px !important;
        margin-right: 5px !important;
    }
    header .btn-secondary i {
        font-size: 15px !important;
        margin-right: 2px !important;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 40%;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }
    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 10px 6px;
        margin-left: 0 !important;
        margin: 0;
        background: rgba(var(--color-secondary-rgb), 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(var(--color-white-rgb), 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: var(--color-white);
    }
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
    }
    .navbar .dropdown > .dropdown-active,
    .navbar .dropdown .dropdown > .dropdown-active {
        display: block;
    }
    .search i {
        font-size: 20px;
    }
    main {
        padding: 0 15px;
    }
    .footer .footer-content {
        padding: 40px 20px;
    }
    .studio-services .content {
        padding: 0px;
    }
    .section-header h2:after {
        height: 7px;
        width: 54%;
        left: 23%;
        bottom: -17px;
        background: url(../img/title-devider-small.svg);
    }
    .studio-services .section-header h2 {
        padding: 10px 10px;
        font-size: 20px;
    }
    .studio-services .section-header h2 i {
        margin-right: 5px;
    }
    .steps-main .btn-group button {
        padding: 5px;
        font-size: 14px;
    }
    .steps-main .btn-group button i {
        display: block;
        font-size: 20px;
    }
    .tool-title {
        padding: 70px 14px 0;
        min-height: 190px;
    }
    .tool-title h1 {
        margin-bottom: 0;
        font-size: 30px;
    }
    .tool-title p {
        font-size: 14px;
    }
    .tool-block {
        padding: 10px;
    }
    .footer .footer-content {
        padding: 20px;
    }
    .hero-static {
        padding: 20px;
        min-height: 250px;
    }
    .breadcrumbs{
        padding: 15px 10px;
    }
    .blog .posts-list article{
        padding: 10px 5px;
        margin-top: 10px;
    }
    .blog .posts-list .title {
        font-size: 20px;
    }
    .breadcrumbs h2 {
        font-size: 20px;
    }
    .blog .blog-details {
        padding: 10px 5px;
    }
    .blog .blog-details .title {
        font-size: 20px;
    }
    .blog .blog-details .meta-top ul li{
        padding-left: 0px !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}
@media screen and (max-width: 402px) {
    header .btn-secondary {
        font-size: 11px !important;
        padding: 5px 5px !important;
    }
    header .btn-secondary i {
        font-size: 12px !important;
        margin-right: 0;
    }
    .section-header h2:after {
        height: 7px;
        width: 61%;
        left: 19%;
        bottom: -17px;
    }
}
@media screen and (max-width: 1400px) {
    .studio-services .content {
        padding: 0px;
    }
    .studio-services .section-header h2 {
        width: 50%;
    }
}
@media screen and (max-width: 360px) {
    header .btn-secondary {
        display: none;
    }
    .home-tools li {
        width: 31.6%;
    }
    .studio-services .section-header h2 {
        width: 100%;
    }
    .studio-services .studio-box img {
        width: 100%;
    }
}
@media screen and (max-width: 280px) {
    .home-tools li {
        width: 48.8%;
    }
    .studio-services {
        padding: 20px;
    }
}
#tool-title .btn-watch-video {
    display: none !important;
}

  /*sarmad start here*/
  #dom_ext{
    width:auto;
  }


  /* Invoice started */
  
  main{
    background-color: #f1f1f1;
    padding-top: 20px;
  }
  .invoice-edit{
    background-color: #fff;
    padding:30px
  }
  .invoice-edit .invoice-title input{
    font-size: 1.5rem;
  }
  .invoice-edit .table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
  }
  .invoice-edit h2{
    padding: 0.5rem 0.5rem;
    margin-bottom: 0;
  }
  .color-select {
    padding: 0 0 10px 0;
    margin: 0 -4px;
}
.color-select-option {
    position: relative;
    float: left;
    margin: 3px;
    width: 39.7px;
    padding: 8px 10px;
    color: transparent;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
    -webkit-transition: background-color .2s ease-out 0s,opacity 80ms ease-out 0s,-webkit-transform 80ms ease-out 0s,-webkit-box-shadow 80ms ease-out 0s;
    transition: background-color .2s ease-out 0s,opacity 80ms ease-out 0s,-webkit-transform 80ms ease-out 0s,-webkit-box-shadow 80ms ease-out 0s;
    -o-transition: background-color .2s ease-out 0s,opacity 80ms ease-out 0s,transform 80ms ease-out 0s,box-shadow 80ms ease-out 0s;
    transition: background-color .2s ease-out 0s,opacity 80ms ease-out 0s,transform 80ms ease-out 0s,box-shadow 80ms ease-out 0s;
    transition: background-color .2s ease-out 0s,opacity 80ms ease-out 0s,transform 80ms ease-out 0s,box-shadow 80ms ease-out 0s,-webkit-transform 80ms ease-out 0s,-webkit-box-shadow 80ms ease-out 0s;
}
.color-select-option.selected {
    color: #fff;
}
  
.invoice-tool-bar .nav-tabs{
 border-bottom: 0;
}
.invoice-tool-bar  .nav-tabs .nav-item{
    margin-right: 10px;
}
.invoice-tool-bar  .nav-tabs .nav-link{
    border: 1px solid #bab9b9;
    border-radius: 7px;
    padding: 10px 30px;
    color: #495057;
}
.invoice-logo .file-area{
    width: 60%;float:right
}
.select2-container--default .select2-selection--single{
    height:40px !important;
    border: 0 !important;
    box-shadow: -1px -1px 4px rgb(0 0 0 / 15%), 1px 1px 4px rgb(0 0 0 / 15%);
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height:40px !important;
}
.invoice-tool-bar h1{
    font-size: 30px;
    font-weight: 600;
}
.auth-forms{
    margin-top: 100px;
    margin-bottom: 50px;
}
.auth-forms{
    border-radius: 15px;
    border: none;
    box-shadow: -1px -1px 4px rgb(0 0 0 / 15%), 1px 1px 4px rgb(0 0 0 / 15%);
    border-top: 3px solid #6b7379;
    /* border-bottom: 3px solid #6b7379; */
}
.auth-forms .card-header{
    font-size: 32px;
    font-weight: bold;
    color: #6b7379;
    background: transparent;
}
.auth-forms .card-body{
    padding: 50px 10px;
    border-top:none;
}
.btn-primary{
    background-color: #f15931  !important; 
    border-color: #f15931 !important;
    color: #fff !important;
}
@media screen and (max-width: 767px) {
    .invoice-logo .file-area{
        width: 100%;
        margin-top: 10px;
    }
    .invoice-tool-bar h1{
        font-size: 25px;
    }
    .invoice-edit{
        background-color: #fff;
        padding:10px
      }
}
.main-preview-invoice{
    width: 70%;
}
.preview-invoice{
    background-color: #fff;
    font-family: sans-serif;
    font-size: 16px !important;
   
    margin: 0 auto;
}
.preview-invoice table{
    width: 100%;
    table-layout: fixed;
border-collapse: collapse;
border-spacing: 0px;
font-family: sans-serif;
font-size: 16px !important;
 }

 .preview-invoice  table th, table td{
    text-align: left;
    padding: 7px 10px;
    font-size: 16px;
    font-family: sans-serif;
 }
 .preview-invoice  table th{
    font-size: 16px;
    font-family: sans-serif;
 }
 .preview-invoice  p{
    margin-bottom: 5px;
margin-top: 0;
font-family: sans-serif;
color: #454545;
 }
 .preview-invoice .items-table th{
    /* border-top: 1px solid;
    border-bottom: 2px solid; */
    background: #f2f2f2;
 }
 .preview-invoice .items-table tbody tr{
    border-bottom: 1px solid #f2f2f2
 }
 .preview-invoice  b{
    font-family: sans-serif;
 }
 .preview-invoice  h1, .preview-invoice h2, .preview-invoice h3, .preview-invoice h4, .preview-invoice h5, .preview-invoice h6{
    font-family: sans-serif;
    color: #454545;
 }
 .preview-invoice  .footer {
            padding: 20px 0px;
            border-top: 1px solid #f2f2f2
        }
        .preview-invoice  .cus-padding{
            padding: 20px  30px;
        }
        .p-in-title{
            text-align: right;
        }
        .p-in-title b{
            display: inline-block;
            width: 140px;
        }
        .p-in-title span{
            display: inline-block;
            width: 130px;
        }   
        @media screen and (max-width: 767px) {
            /* .preview-invoice  .cus-padding{
                padding: 0;
            }
            .preview-invoice  table td {
                max-width: 100% !important;
                width: 100% !important;
                display: block;
                text-align: left !important;
            }  
            #preview > table > tbody > tr > td > table:nth-child(1) > tbody > tr:nth-child(2){
                display: none;
            }
            .preview-invoice  table td  img{
                width: 100% !important;
            }
            .preview-invoice .items-table{
                margin: 0 10px;
            }
            .preview-invoice .items-table thead{
                display: none;
            } */
            .preview-invoice{
                width: 100% !important;
            }
            .p-in-title{
                text-align: left;
                margin-top: 30px;
            }
            .preview-invoice .cus-padding {
                padding: 20px 10px;
            }
        }
        .user-block{
            box-shadow: -1px -1px 4px rgb(0 0 0 / 15%), 1px 1px 4px rgb(0 0 0 / 15%);
            padding: 20px;
            min-height: 90vh;
        }
        .user-sidebar{
            box-shadow: -1px -1px 4px rgb(0 0 0 / 15%), 1px 1px 4px rgb(0 0 0 / 15%);
            padding: 20px;
        }
        .user-sidebar ul{
            list-style: none;
            padding: 0;
        }
        .user-sidebar ul li a{
            display: block;
            padding: 10px;
            margin-bottom: 10px;
            background: #6b7379;
            color: #fff;
        }
        .user-sidebar ul li a.active{
            background: #f15931 ;
        }
        .d-inline-dekstop{
            display:inline;
        }
        .setting-btn{
            position: fixed;
            right: 0;
            top: 200px;
          border-radius: 5px 0 0 5px;
        }
        .setting-btn i{
            color: #fff !important;
            margin: 0;
        }
        .share-wrapper{
            position: absolute;
            top: 0;
            right: 0;
        
        }
        .share-wrapper .share-links{
            list-style: none;
            padding: 0;
        }
          .share-wrapper .share-links li a{
            padding: 10px;
            margin-bottom: 10px;
            display: block;
            color: #fff;
          }
          .share-wrapper .share-links li a.facebook{
            background: #1877f2;
          }
          .share-wrapper .share-links li a.whatsapp{
            background: #25D366;
          }
            .share-wrapper .share-links li a.instagram{
            background: #833AB4;
          }
          .share-wrapper .share-links li a.twitter{
            background: #1DA1F2;
          }
        @media screen and (max-width: 767px) {
            .d-inline-dekstop{
                display:none;
            }
            .invoice-sidebar{
                display: none;
                position: fixed !important;
                width: 84%;
                left: 0 !important;
                top: 7% !important;
                background: white;
                padding: 15px;
            }
            #invoice-form h4 label{
                font-size: 13px;
            }
            #invoice-form .invoice-title{
                margin-bottom: 15px;
            }
            .main-preview-invoice{
                width: 100%;
            }
            .p-in-title b{
                width: 48%;
            }
            .p-in-title span{
                width:50%;
                text-align: right;
            }
            .invoice-tool-bar .btn{
                font-size:14px !important;
                padding: 6px 5px;
            }
            .invoice-tool-bar  .btn-secondary{
                font-size:14px !important;
            }
            .invoice-tool-bar .col-12{
                text-align: start !important;
            }
            .user-sidebar{
                box-shadow: unset;
            }
            .auth-forms{
                border-top: 0;
                margin-top: 0;
                border-radius: 0;
                box-shadow: none;
            }
            .hero-static {
                background: #fff;
            }
            .share-wrapper{
                position: unset;
                top: 0;
                right: 0;
                margin-top: 20px;
            }    
            .notyf{
                width: 90% !important;
            }
        }
        nav svg{
            width:35px;
        }