/**
 * Core Application Stylesheet
 * Theme : SEO Analyser
 * Description : Core Stylesheet file of the Application please do not modify it
 *
 * @package : The Quality SEO
 * @author  : Web Host Nepal (http://whn.com.np/)
 * @copyright (C) 2009-2023 Web Host Nepal (info@webhostnepal.com)
 */

/**
  * ------------------------------------------
  *         TABLE OF CONTENT
  * ------------------------------------------
  * 
  * 1. Components
  *   ----------------------------------------
  *   1.1 Root Class
  *   1.2 Button Class
  *   1.3 Font Sizes
  *   1.4 Background Color
  *   1.5 Images
  *   1.6 Margin and Padding
  *   1.7 Alerts
  *   ----------------------------------------
  * 
  * 2. Header (Navbar)
  * 3. Hero Section
  * 4. Explore Section
  * 5. Feature Section
  * 6. Statistics Section
  * 7. Testimonial Section
  * 8. Two Column Section
  * 9. Our Brands Section
  * 10. Footer Section
  * 11. Login Page
  * 12. Signup Page
  * 13. Forgot Password Page
  * 14. Reset Password Page
  * 15. Sidebar Page
  * 16. 404 Page
  * 17. 500 Page
  * 18. 503 Page
  * 19. Email Verification
  * 20. Single Page
  * 21. Pricing Page
  * 22. Tool Page
  * 23. Cookies Notice Page
  * 24. IP Lookup Page
  * 25. Domain Analyzer Page
  * 26. Compress Image Page
  * 27. Convert Image Page
  */

@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap);

:root {
    --black-color: #111317;
    --white-color: #fff;
    --primary-color: #fa633f;
    --primary-hover-color: #db4e2d;
    --gray-color: #b4bcbd;
    --primary-font: "Poppins", sans-serif;
    --bs-success-rgb: 52,195,143;
    --bs-blue: #556ee6;
}

::selection {
    background: rgb(158, 158, 158);
    color: #fff;
}

/**
* --------------------
* 1. Components
* --------------------
*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    overflow-x: hidden;
}

p {
    margin-bottom: 0rem;
}

a {
    text-decoration: none;
}

/**
   * 1.1 Button Class
   */

.btn {
    border-radius: 3px;
}

.btn-sm {
    padding: 0.25rem 0.5rem !important;
    border-radius: 4px !important;
    font-size: 12px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-primary:active:focus,
.btn-primary:hover {
    color: #fff;
    border-color: var(--primary-hover-color);
    background-color: var(--primary-hover-color);
}

.btn-success {
    color: #fff;
    border-color: #34c38f;
    background-color: #34c38f;
}

.btn-success:active,
.btn-success:focus,
.btn-success:hover {
    color: #fff;
    border-color: #2a9c72;
    background-color: #2a9c72;
}


.btn-success-soft {
    color: #fff;
    border-color: #3bb19d;
    background-color: #3bb19d;
}

.btn-success-soft:active,
.btn-success-soft:focus,
.btn-success-soft:hover {
    color: rgb(255, 255, 255);
    border-color: #3bb19d;
    background-color: #3bb19d;
    transition: all 0.5s ease;
}

.btn-info {
    color: #fff;
    border-color: #25a5d8;
    background-color: #25a5d8;
}

.btn-info-dark {
    color: rgb(255, 255, 255);
    border-color: #0159ae;
    background-color: #0159ae;
}

.btn-info-dark:active,
.btn-info-dark:focus,
.btn-info-dark:hover {
    color: rgb(255, 255, 255);
    border-color: #003e78;
    background-color: #003e78;
    transition: all 0.5s ease;
}

.btn-info:active,
.btn-info:focus,
.btn-info:hover {
    color: #fff;
    border-color: #1892ab;
    background-color: #1892ab;
}

.btn-danger {
    color: #fff;
    border-color: #f46a6a;
    background-color: #f46a6a;
}

.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover {
    color: #fff;
    border-color: #d85757;
    background-color: #d85757;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    color: #74788d;
    border-color: #74788d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #74788d;
    border-color: #74788d;
    ;
}

.btn-outline-success {
    color: #34c38f;
    border-color: #34c38f;
}

.btn-outline-success:focus,
.btn-outline-success:hover {
    color: #fff;
    background-color: #34c38f;
    border-color: #34c38f;
}

.btn-outline-info {
    color: #50a5f1;
    border-color: #50a5f1;
}

.btn-outline-info:focus,
.btn-outline-info:hover {
    color: #fff;
    background-color: #50a5f1;
    border-color: #50a5f1;
}

.btn-outline-warning {
    color: #f1b44c;
    border-color: #f1b44c;
}

.btn-outline-warning:focus,
.btn-outline-warning:hover {
    color: #fff;
    background-color: #f1b44c;
    border-color: #f1b44c;
}

.btn-outline-danger {
    color: #f46a6a;
    border-color: #f46a6a;
}

.btn-outline-danger:focus,
.btn-outline-danger:hover {
    color: #fff;
    background-color: #f46a6a;
    border-color: #f46a6a;
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-light {
    color: #eff2f7;
    border-color: #eff2f7;
}

.btn-outline-light:hover {
    color: #000;
    background-color: #eff2f7;
    border-color: #eff2f7;
}

.border-bottom-1 {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 0.9rem;
}

.active-color {
    color: #09b553;
}

.inactive-color {
    color: #ea1a1a;
}

.fa-caret-up,
.fa-arrow-up {
    color: #198554;
    font-size: 1.2rem;
}

.fa-caret-down,
.fa-arrow-down {
    color: #ea1a1a;
    font-size: 1.2rem;
}

.w-xs {
    min-width: 80px;
}

.w-sm {
    min-width: 95px;
}

.w-md {
    min-width: 110px;
}

.w-lg {
    min-width: 140px;
}

.w-30 {
    width: 30% !important;
}

select:hover,
select:focus,
input:hover,
input:active,
input:focus,
button:focus,
button:active,
button:hover,
.btn:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    /* -webkit-appearance: none; */
    box-shadow: none !important;
}

.card {
    box-shadow: 0 0.75rem 1.5rem rgba(14, 31, 51, 0.03);
    border: none;
}

/**
* 1.2 Font Sizes
*/

.font-size-10 {
    font-size: 10px !important;
}
.font-size-11 {
    font-size: 11px !important;
}
.font-size-12 {
    font-size: 12px !important;
}
.font-size-13 {
    font-size: 13px !important;
}
.font-size-14 {
    font-size: 14px !important;
}
.font-size-15 {
    font-size: 15px !important;
}
.font-size-16 {
    font-size: 16px !important;
}
.font-size-17 {
    font-size: 17px !important;
}
.font-size-18 {
    font-size: 18px !important;
}
.font-size-20 {
    font-size: 20px !important;
}
.font-size-22 {
    font-size: 22px !important;
}
.font-size-24 {
    font-size: 24px !important;
}
.text-muted {
    text-decoration: none;
    color: #7E7E7E !important;
}
.text-gray {
    color: #A8A8A8;
}
.text-gray:hover {
    color: #8C8C8C;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-truncate-3 {
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.text-truncate-4 {
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
}

@media (max-width: 768px) {
    .font-size-sm-12 {
        font-size: 12px !important;
    }
}
@media (min-width: 992px) {
    .w-md-17 {
        width: 17% !important;
    }
}

/**
    * 1.3 Backgroud Color
    */
.bg-purple {
    background: #463e83;
}

.bg-purple-white {
    background-image: linear-gradient(180deg, #463E83 70%, #F8F9FA 30%);
}

.bg-light {
    background: #f5f5f5;
}

.bg-light-dark {
    background: #ededed;
}

.bg-black {
    background: #111317 !important;
}

.bg-orange {
    background: var(--primary-color) !important;
}

.bg-light-orange {
    background-color: #fa4e3bd1;
}

.highlight {
    color: var(--primary-color);
}

.highlight:hover {
    color: var(--primary-color);
}

/**
           * 1.4 Image
           */

.img-cover {
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

.icon-sm {
    width: 1.2rem;
    height: 1.2rem;
}

/**
            * 1.6 Margin and Padding
            */

.my-3-percent {
    margin: 3% auto;
}

.divider {
    margin: 5px 0px;
    color: #b0b0b0;
}

.divider-dark {
    margin: 5px 0px;
    border: 1px solid #b0b0b0;
}

.form-select:focus {
    border: 1px solid var(--primary-color);
}

/*
    * 1.7 Alerts
*/

.alert {
    font-size: 0.855rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert i {
    font-size: 0.855rem;
}

.alert-dismissible .btn-close {
    padding: 16px;
    font-size: 13px;
}

.alert-success {
    background: #caebdc;
}

.alert-danger {
    background: #f1d1d4;
}

/**
           * -------------------------
           * 2. Header (Navbar)
           * -------------------------
           */
.navbar {
    background: var(--black-color);
    position: relative;
    z-index: 99;
    padding: 0px;
}

/* .navbar .nav-item a {
    color: var(--gray-color);
    font-size: 1rem;
    font-weight: 500;
} */

.navbar .nav-item a {
    color: var(--gray-color);
    font-size: 1rem;
    padding: 25px 15px !important;
    font-weight: 500;
}

.navbar .nav-link {
    padding: 0.4rem 1rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}

.navbar .dropdown-menu a {
    color: var(--black-color) !important;
    text-align: center;
}

.navbar .navbar-toggler-icon {
    padding: 1.2rem;
    background: var(--primary-color);
    border: none;
    fill: var(--white-color);
}

.offcanvas-body .navbar-nav {
    padding: 0;
}

.navbar .navbar-toggler {
    font-size: 1.4rem;
    background: transparent;
    border: none;
    color: #f5f5f5;
}

.offcanvas-header {
    background: var(--black-color);
    color: var(--white-color);
}

.offcanvas-body {
    background: var(--black-color);
    color: var(--white-color);
}

.offcanvas.offcanvas-end {
    border-left: var(--black-color);
}

/* -------------- Dropdown on Hover CSS -------------- */

.desktop-menu .tool-box .icon-bg-purple {
    background: #433c76;
    width: 3rem;
    height: 3rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-menu .my-account .dropdown:hover .dropdown-menu,
.desktop-menu .navbar-nav .dropdown:hover .dropdown-large,
.desktop-menu .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.dropdown.show,
.navbar-nav .dropdown .dropdown-menu {
    background: var(--black-color);
    padding: 1.5rem 1rem;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    border-radius: 4px;
    left: -75%;
}

.navbar-nav .dropdown .dropdown-large {
    background: var(--black-color);
    padding: 1.5rem;
    width: 40rem;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    border-radius: 0px 0px 5px 5px;
    left: -250%;
    top: 95%;
}

.desktop-menu .tool-box,
.mobile-menu .tool-box {
    display: flex;
    align-items: center;
    color: #fff;
}

.dropdown-large>li {
    float: left;
    margin-bottom: 10px;
    width: calc(100%/2);
}
.dropdown-large>li:last-child {
    margin-bottom: 0px;
}

.dropdown .dropdown-menu .dropdown-item {
    padding: 4px 15px !important;
}

.offcanvas-body .nav-item .nav-link {
    padding: 4px 10px !important;
}

.desktop-menu .dropdown-menu .tool-box .dropdown-item,
.mobile-menu .dropdown-menu .tool-box .dropdown-item {
    padding: 0px 10px !important;
    font-size: 15px;
}

.mobile-menu .tool-box .icon-bg-purple {
    background: #433c76;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    align-items: center;
}

.dropdown-large ul li {
    margin-bottom: 10px;
}

.dropdown-large ul li:last-child {
    margin-bottom: 0px;
}

.dropdown-menu.dropdown.show li a,
.navbar-nav .dropdown-menu li a {
    display: block;
    color: var(--white-color) !important;
    text-align: left;
    white-space: normal;
    width: 15rem;
    font-size: 1.1rem;
}

.dropdown-menu.dropdown.show li a:focus,
.dropdown-menu.dropdown.show li a:hover,
.navbar-nav .dropdown-menu li a:focus,
.navbar-nav .dropdown-menu li a:hover {
    color: var(--primary-hover-color) !important;
    background: var(--black-color);
    transition: all ease 0.5s;
}

.navbar-nav .dropdown-item-description {
    font-size: 10px;
    width: 100%;
    color: #9f9f9f;
}

.mobile-menu .nav-item,
.mobile-menu .dropdown-item {
    margin-bottom: 0.7rem;
}

@media (max-width: 992px) {
    .navbar {
        padding: 10px;
    }
}

.tool-box .badge {
    padding: 2px 5px !important;
    font-size: 10px;
    border-radius: 2px;
    font-weight: 400;
}

/* Added CSS to line 3691 on bootstrap.min.css */

/**
           * ----------------------
           * 3. Hero Section
           * ----------------------
           */

.hero-wrapper {
    max-width: 80vw;
    margin: 0 auto;
    padding: 5rem 0;
    color: var(--white-color);
}

.title {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 auto;
}

.intro-text {
    font-size: var(--p-small-size);
    margin: 20px 0 0 0;
    font-weight: 400;
}

.input-group {
    max-width: 45rem;
    width: 100%;
/*    margin: 35px auto;*/
}

.search-wrapper {
    max-width: 42rem;
    width: 100%;
    margin: 2rem auto;
}

.search {
    margin-right: 10px;
    width: 100%;
}

.search-input {
    line-height: 2;
/*    max-width: 550px;*/
    border-radius: 4px;
    padding: 0.4rem 1.2rem;
    caret-color: var(--primary-color);
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-wrapper .btn {
    line-height: 2;
    width: max-content;
    padding: 0.4rem 2rem;
}

.hero-section .swiper-slide svg {
    width: 7rem;
    fill: #fff;
}

.mobile-menu {
    display: none;
}

@media (max-width: 992px) {
    .navbar-nav .dropdown .dropdown-large {
        padding: 2rem;
        width: 20rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .title {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 0.825rem;
        margin: 25px 10px;
    }

    .hero-wrapper .title {
        font-size: 2rem;
    }

    .hero-wrapper .title+.intro-text {
        font-size: 0.9rem;
        margin-top: 25px;
    }

    .hero-section .btn {
        padding: 15px 0;
        width: 100%;
    }
}

@media (max-width: 576px) {

    .hero-wrapper {
        padding: 2rem 0;
    }

    .hero-wrapper .title {
        font-size: 1.5rem;
    }

    .hero-wrapper .title+.intro-text {
        font-size: 0.9rem;
        margin-top: 25px;
    }

    .hero-section #main-btn {
        padding: 15px 0;
        width: 100px;
    }

    .hero-wrapper .search {
        height: 55px;
    }

    .hero-wrapper .search-wrapper .btn {
        padding: 0.2rem 2rem;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}


/**
* --------------------
* 4. Explore Section
* --------------------
*/
.explore.bg-purple-white {
    padding-bottom: 4.5rem;
}

.explore .title {
    font-size: 3rem;
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
}

.explore .feature-container {
    background: var(--white-color);
    position: relative;
    width: 90vw;
    top: 45px;
    margin: 0rem auto;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0px 13px 17px 1px rgb(0 0 0 / 16%);
}
.explore ul#pills-tab {
    padding-left: 0px;
}

.explore .nav-pills .nav-link:hover,
.explore .nav-pills .nav-link.active {
    background: #463e83;
    transition: all 0.3s ease;
    color: var(--white-color);
}

.explore .nav-pills .nav-link i {
    font-size: 1.2rem;
    color: var(--white-color-white);
}

.explore .nav-pills .nav-link,
.explore .nav-pills .show>.nav-link {
    color: var(--white-color);
    background-color: #7168b6;
    height: 7rem;
    width: 7rem;
    margin: 0px 20px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.explore .content-wrapper {
    margin: 1.5rem;
}

.explore .content-wrapper .content-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d2853;
    line-height: 40px;
}

.content li {
    line-height: 30px;
    color: #463e83;
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 480px) {

    .explore .title {
        font-size: 2rem;
    }

    .explore .content-wrapper .content-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2d2853;
        line-height: 23px;
    }

    .explore .content-wrapper {
        margin: 0rem;
        padding-bottom: 2rem;
    }

}

@media (max-width: 768px) {
    .feature-container .nav-pills .nav-link,
    .feature-container .nav-pills .show>.nav-link {
        color: var(--white-color);
        background-color: #7168b6;
        height: 5rem !important;
        width: 5rem !important;
        margin: 0px 20px;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .explore .content-wrapper .content-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2d2853;
        line-height: 30px;
        hyphens: auto;
    }


    .text-sm-center {
        text-align: center !important;
    }

    .title-bold {
        font-size: 35px !important;
        color: var(--white-color);
        font-weight: 600 !important;
        text-align: center;
        padding-bottom: 1rem;
    }

    .content-wrapper {
        margin: 0rem;
    }

    .content li {
        line-height: 1.2;
        color: #463e83;
        font-size: 0.95rem;
        font-weight: 400;
        padding-top: 8px;
    }

    .title-md {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2d2853;
        line-height: 1.2;
    }

    .search .search-input {
        padding: 0 15px;
        font-size: 16px;
        font-weight: 300;
        color: black;
        height: 45px;
    }
}

/** 
* --------------------------
* 5. Feature Section
* --------------------------
*/
.feature-wrapper .card {
    max-width: 18rem;
    width: 100%;
    max-height: 18.5rem;
    height: 100%;
    border-radius: 10px;
    margin: 0px auto;
    background: #bdb6ed3d;
}
.feature-wrapper .card .card-text-holder {
    height: 4rem;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 1rem 0px;
}

.feature-wrapper .card-img-top {
    height: 6rem;
    width: 6rem;
    margin: 0.25rem auto 1rem auto;
    border: 4px solid #F15C37;
    padding: 0.25rem;
    border-radius: 50%;
    object-fit: cover;
}

.transparent-btn {
    display: inline-block;
    font-weight: 500;
    color: #2D2853;
}
.transparent-btn:hover {
    font-weight: 500;
    color: #433792;
    transition: all ease 0.5s;
}
.transparent-btn span {
    font-size: 12px;
    padding-left: 10px;
}

/**
           * ---------------------------
           * 6. Statistics Section
           * ---------------------------
           */

.statistics-section {
    /* margin: 2rem 0rem; */
    padding: 3rem;
    position: relative;
    z-index: 0;
}

.statistics-section .statistics-wrapper .title {
    font-size: 2rem;
}

.statistics-section .number {
    font-size: 3.5rem;
    position: relative;
    font-weight: 400;
}

.statistics-section .vessel h5 {
    font-size: 1.2rem;
    color: #2d2853;
    font-weight: 500;
}

.statistics-section .statistics-wrapper description {
    font-size: 1rem;
    color: #878787;
    font-weight: 400;
}

.statistics-section .number span {
    position: absolute;
    top: -20%;
    right: 30%;
    color: rgb(255, 190, 44);
    z-index: -1;
}

@media (max-width: 992px) {
    .statistics-section .number span {
        position: absolute;
        top: -20%;
        right: 15%;
        color: rgb(255, 190, 44);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .statistics-section .number {
        font-size: 3rem;
        position: relative;
    }

    .statistics-section .vessel {
        margin: 30px;
    }

    .statistics-section .number span {
        position: absolute;
        top: -26%;
        left: 10%;
        color: rgb(255, 190, 44);
        z-index: -1;
    }
}

@media (max-width: 778px) {
    .vessel {
        margin: 25px;
    }

    .statistics-section .number {
        font-size: 3rem;
        position: relative;
    }

    .statistics-section .vessel h5 {
        font-size: 0.9rem;
    }

    .statistics-section .statistics-wrapper .title {
        font-size: 1.8rem;
    }

    .statistics-section .statistics-wrapper .description {
        font-size: 0.7rem;
        color: #878787;
        font-weight: 400;
    }

    .statistics-section .number span {
        position: absolute;
        top: -15%;
        right: -21%;
        color: rgb(255, 190, 44);
        z-index: -1;
    }
}

/**
           * ---------------------------
           * 7. Testimonial Section
           * ---------------------------
           */
.testimonial-section {
    margin: 2rem;
}

.testimonial-img {
    padding: 5px;
    width: 8rem;
    height: 8rem;
    margin: 1rem auto;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f15c37;
}

.testimonial-section .card {
    border: none;
}

.testimonial-section .card-text {
    font-size: 14px;
    color: #605d79;
    font-weight: 400;
}

.testimonial-section .customer-name {
    font-size: 20px;
    font-weight: 500;
    color: #463e83;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 19% !important;
    left: auto;
    background: #463e83;
    border-radius: 50%;
    padding: 10px 22px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
    font-size: 15px !important;
    padding: 10px 20px !important;
    color: var(--white-color);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 19% !important;
    right: auto;
    background: #463e83;
    border-radius: 50%;
    padding: 10px 22px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
    font-size: 15px !important;
    padding: 10px 20px !important;
    color: var(--white-color);
}

@media (max-width: 480px) {
    .testimonial-section {
        margin: 2rem;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 1% !important;
        background: #463e83;
        border-radius: 50%;
        padding: 10px 22px;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 1% !important;
        right: auto;
        background: #463e83;
        border-radius: 50%;
        padding: 10px 22px;
    }
}

/* Purple ball */
svg.purple-ball {
    position: absolute;
    top: 5%;
    z-index: -1;
    right: 30%;
}

.purple-ball {
    max-width: 1223px;
    width: 100%;
    max-height: 1223px;
    height: 100%;
}

/**
* ---------------------------
* 8. Two Column Section
* ---------------------------
*/

.two-column-section img {
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 25rem;
    max-height: 22rem;
    object-fit: contain;
    display: block !important;
}

.two-column-content .two-column-text {
    color: #383838;
    margin-bottom: 15px;
    line-height: 30px;
}

.feature-list {
    padding-left: 0px;
}

.two-column-content ul {
    margin: 10px;
}

.two-column-content ul > li::marker {
    content: '\2713';
    display: inline-block;
    color: #25b984;
    padding: 0 10px;
    font-weight: 700;
}

.two-column-content ul > li {
    list-style-type: none;
    line-height: 18px;
    padding: 10px;
}

.feature-list .fa-check {
    color: #09b553;
}

@media (max-width: 480px) {
    .two-column-image {
        height: 15rem;
    }
}

/**
* ---------------------------
* 9. Our Brands Section
* ---------------------------
*/
.our-brand-wrapper .swiper-slide img {
    width: 7.8rem;
    height: 3rem;
    object-fit: contain;
    margin: 0rem auto;
}

.our-brand-wrapper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.our-brand-wrapper .logo-holder {
    background: #fff;
    width: 7rem;
    height: 7rem;
    margin: 10px auto 10px;
    border-radius: 35%;
    box-shadow: 0 5px 10px 0 rgb(42 42 42 / 24%);
}


/**
        * ---------------------------
        * 10. Newsletter Section
        * ---------------------------
        */
.newsletter-wrapper {
    background: #421983;
    padding: 3rem;
}

/**
        * ---------------------------
        * 11. Footer Section
        * ---------------------------
        */

footer {
    position: relative;
    width: 100%;
    z-index: 99;
}

.social-media ul,
.footer-content {
    margin: 0;
    list-style-type: none;
    font-size: 14px;
    font-size: 400;
}

.social-media li a,
.footer-content li a {
    color: #fff;
    margin-right: 15px;
}

.social-media li a:hover,
.footer-content li a:hover {
    color: var(--primary-hover-color);
    transition: all ease 0.3s;
}

@media (max-width: 992px) {

    .footer-logo,
    .footer-content,
    .social-media {
        text-align: center;
        justify-content: center !important;
    }

}

/**
           * ---------------------------
           * 12. Login Page
           * ---------------------------
           */

.bg-attachment {
    position: relative;
    z-index: 10;
}

.bg-attachment .card-body {
    padding: 3rem;
}

.bg-attachment .card {
    position: relative;
    z-index: 15;
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
    border: none;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63/ 3%);
}

.bg-attachment label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    padding-bottom: 5px;
}

.bg-attachment .form-control {
    display: block;
    width: 100%;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    color: #111112;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #babec3;
    border-radius: 0.2rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bg-attachment .text-muted:hover {
    color: var(--black-color) !important;
    text-decoration: underline;
}

.bg-attachment .form-group a {
    font-size: 0.9rem;
    text-decoration: none;
}

.bg-attachment svg {
    position: fixed;
    bottom: 0%;
    z-index: 5;
}

.card .form-control:focus {
    border-color: var(--primary-color);
}

.bg-attachment .text-muted {
    font-size: 0.875rem;
    text-decoration: none;
}

/* ---------- Parsley Stylesheet ---------- */
.parsley-errors-list {
    margin: 0;
    padding: 0.2rem 0;
}

.parsley-errors-list .parsley-required {
    color: #cb3c39;
    font-size: 12px;
    list-style: none;
}

input.parsley-error {
    border: 1px solid #cb3c39 !important;
}


/**
        * ---------------------------
        * 13. Signup Page
        * ---------------------------
        */

.login-option h2 {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgb(219 219 219);
    line-height: 0.1em;
    margin: 10px 0px 20px;
    font-size: 15px;
    color: #797979;
}

.login-option h2 span {
    background: #fff;
    padding: 0 10px;
}

.login-option {
    margin-top: 25px;
}

/**
            * ---------------------------
            * 14. Forgot Password Page
            * ---------------------------
            */


/**
            * ---------------------------
            * 15. Reset Password Page
            * ---------------------------
            */

/**
            * ---------------------------
            * 16. Sidebar Page
            * ---------------------------
            */

.breadcrumb {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 10px;
}

.sidebar-wrapper {
    background: #ccc;
    display: flex;
    justify-content: center;
    padding: 3.5rem 0;
}

/**
* ---------------------------
* 17. 404 Page
* ---------------------------
*/


.error-page h2 {
    font-size: 22px;
    font-weight: 600;
}
.error-page h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.error-page .btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.8rem;
}

/**
* ---------------------------
* 21. Single Page
* ---------------------------
*/
.banner-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #eee;
}

.banner-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.12) 0%, rgb(16 21 39) 100%);
}

.banner-wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0);
    background: #1B2030 url(../img/Pricing\ Page/plan-banner.png) 50% 0 no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    background-size: cover;
    z-index: -2;
}

/* .banner-content {
        flex: 0 0 auto;
        width: 50%;
    } */

.banner-wrapper h1 {
    font-size: 2rem;
}


.banner-wrapper .breadcrumb-item.active {
    color: #8bc8ff;
}

.banner-content {
    width: 100%;
    padding: 4%;
    text-align: center;
}

.banner-content h4,
.banner-content .description {
    font-size: 0.925rem;
}

/**
* ---------------------------
* 21. Pricing Page
* ---------------------------
*/
.banner-wrapper,
.pricing-banner-wrapper .banner-wrapper {
    height: 30vw;
    min-height: 100px;
    max-height: 200px;
    min-width: 300px;
    color: #eee;
}

.pricing-banner-wrapper .banner-content {
    width: 100%;
    padding: 4% 10% 0 10%;
    text-align: center;
}

.banner-wrapper .banner-content h4,
.banner-wrapper .description {
    font-size: 0.925rem;
}

.pricing-table-wrapper .form-switch .form-check-input {
    width: 3em;
    cursor: pointer;
    height: 1.3em;
}

.pricing-table-wrapper label {
    margin: 2px 0px 0px 10px;
}

.pricing-table-wrapper .swiper {
    width: 80%;
}

.pricing-title-gap {
    margin: 0 0 0 2.25%;
}

.pricing-title {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0px;
}

.pricing-title span {
    font-size: 1.3rem !important;
}

.package-price {
    font-size: 2rem;
    background: #f0f0f0;
    font-weight: 600;
    padding: 10px 5px;
    text-align: center;
    border-radius: 5px;
}

.package-price small {
    font-size: 1rem;
}

.pricing-table-wrapper .card {
    position: relative;
    max-width: 23rem;
    width: 100%;
    padding: 2.3rem;
    margin: 0px auto;
    box-shadow: none;
    overflow: hidden;
}

.pricing-table-wrapper .card:hover {
    box-shadow: 6px 6px 20px rgb(0 0 0 / 12%);
    transition: all 0.3s ease-in;
}

.swiper {
    width: 90%;
}

.pricing-table-wrapper .form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border: var(--primary-color);
    background-position: right center;
}

.pricing-table-wrapper .swiper-slide .card h5 {
    font-size: 1rem;
    font-weight: 600;
}

.package-danger {
    background: rgb(238, 53, 53);
}

.package-success {
    background: #52f226;
}

.package-warning {
    background: #f5c518;
}

.pricing-btn {
    background-color: #00ba96;
}

.feature-wrapper ul li::before {
    content: "\2713";
    color: #34c38f;
    background-size: 14px 15px;
    display: inline-block;
    background-repeat: no-repeat;
    width: 20px;
    height: 14px;
}

.feature-wrapper ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 35px;
}

.feature-wrapper .desc div {
    font-size: 15px;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.pricing-table-wrapper .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    /* left: 0% !important; */
    left: 10px !important;
    padding: 25px 25px;
}

.pricing-table-wrapper .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    padding: 25px 25px;
    /* right: 0% !important; */
    right: 10px !important;
}

.pricing-table-wrapper .swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
    padding: 2rem 0;
}

/*  Pricing Feature Wrapper Starts Here */

.pricing-feature-wrapper .banner-content {
    color: #272727;
}

/*  Pricing Feature Wrapper Ends Here */

@media (max-width: 600px) {

    table {
        display: block;
        max-width: 100%;
        margin: 0 auto;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.825rem;
    }

}

@media (max-width: 1025px) {

    .banner-wrapper .swiper {
        padding: 0px 2rem;
    }

    .banner-wrapper .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        padding: 20px 22px;
        right: 1% !important;
    }

    .banner-wrapper .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        padding: 20px 22px;
        left: 1% !important;
    }
}

.table>thead {
    vertical-align: bottom;
    background: #463e83;
    color: #fff;
    border-radius: 19px !important;
}

.table>:not(caption)>*>* {
    padding: 1.6rem 0.5rem;
}

.table td {
    vertical-align: middle;
}

.banner-wrapper tr:last-child {
    border: 0;
    border-style: none;
    border-color: transparent;
}

.card.plan-card {
    max-width: 25rem;
    width: 100%;
    margin: 4% auto;
    padding: 20px;
    border-radius: 10px;
}

/**
    * ---------------------------
    * 22. Tool Page
    * ---------------------------
    */

/* ---------  Tool Page Step 1 Starts Here ---------  */

.resize-image-page .tool-wrapper .card,
.compress-image-page .tool-wrapper .card,
.tool-wrapper .card {
    max-width: 45rem;
    width: 100%;
    margin: 4% auto;
    border-radius: 5px;
}

.tool-wrapper .card .card-body {
    padding: 2rem;
}

.dropzone {
    background: white;
    border: 3px dashed #b5b5b5;
    border-radius: 5px;
    padding: 20px 20px 0 20px;
}

.image-holder {
    position: relative;
}

form .bg-img {
    width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.dropzone .dz-message {
    position: relative;
    margin: 18% 0px 5%;
}

/* ---------  Tool Page Step 1 Ends Here ---------  */

/* ---------  Tool Page Step 2 Starts Here --------- */

/* --------------------  Sidebar Starts here -------------------- */
.side-navbar {
    width: 325px;
    height: 100%;
    position: fixed;
    right: 0px;
    margin-right: -320px;
    background-color: #fff;
    transition: 0.5s;
    z-index: 999;
    box-shadow: 0 0.75rem 1.5rem rgba(14, 31, 51, 0.03);
    transition: all ease .5s;
    overflow-y: scroll;
}

.side-navbar-hide {
    right: -330px;
    transition: all ease .5s !important;
}

.side-navbar .navbar {
    z-index: -1 !important;
}

.my-container {
    transition: 0.4s;
}

.active-cont {
    margin-right: 0px;
}

#menu-btn {
    background-color: var(--primary-color);
    color: #fff;
    margin-left: 0px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    position: fixed;
    right: 340px;
    z-index: 8;
    margin-top: 10px;
    transition: all ease .5s;
}

#menu-btn:hover {
    transform: scale(1.1);
    transition: all ease .3s;
}

.menu-btn-hide {
    right: 15px !important;
    margin-top: 8px !important;
    transition: all ease .5s;
}

.side-navbar .nav-link {
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
}

.side-navbar .input-group {
    max-width: 5rem;
    width: 100%;
    margin: 0px auto;
}

.side-navbar input[type=number] {
    border: 1px solid #111112;
    transition: all ease 0.5s;
}

.side-navbar input[type=number]:focus {
    border: 1px solid var(--primary-color);
    transition: all ease 0.5s;
}

.side-navbar input[type=checkbox] {
    padding: 6px;
    margin: 2px 0px;
}

.side-navbar .nav-link {
    padding: 12px 25px;
    border-radius: 0px;
}

.side-navbar .nav-link.active {
    background: #ee7659d6 !important;
    color: #fff !important;

}

.side-navbar .fixed-btn-bottom {
    position: absolute;
    bottom: -75px;
    left: 75px;
    padding: 13px 25px;
    transition: all ease-out 0.5s;
}

.side-navbar .fixed-btn-bottom:hover {
    transform: scale(1.05);
    transition: all ease-out 0.5s;
}

.side-navbar .form-check-input[type="checkbox"],
.side-navbar .input-group-sm>.form-control {
    border-radius: 0.1px;
}

.file-upload-holder input[type="file"] {
    display: none;
}

.file-upload-holder #custom-file-upload {
    font-size: 20px;
    cursor: pointer;
    color: white;
    background: #999999;
    border-radius: 50%;
    padding: 2px 8px;
    border: 1px solid #999;
    position: fixed;
    top: 8.5rem;
    right: 342px;
    transition: all ease .5s;
}

.file-upload-holder #custom-file-upload:hover {
    color: #999;
    background: #fff;
    transition: all ease .3s;
    transform: scale(1.1);
    transition: all ease .3s;
}

.custom-file-upload-hide {
    right: 1.1rem !important;
    transition: all ease .5s;
}

/* --------------------  Sidebar Ends here -------------------- */
.tool-s2-wrapper {
    margin: 10% 325px 10% 0px;
    transition: all ease 0.3s;
    position: relative;
    z-index: -1;
    transition: all ease .5s;
}

.tool-s2-wrapper-hide {
    margin: 10% auto;
    transition: all ease .3s;
}

.tool-s2-wrapper .card-tool-sm {
    width: auto;
    margin: 4% 10px;
    padding: 0px;
    border-radius: 4px;
}

.tool-wrapper-image-section .card-head img {
    background: none;
    max-width: 100%;
    width: 9rem;
    max-height: 100%;
    height: 10rem;
    border-radius: 4px 4px 0 0px;
    object-fit: cover;
    box-shadow: 0 0.75rem 1.6rem rgba(14, 31, 51, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #eee;
}

.tool-s2-wrapper .close-icon {
    cursor: pointer;
    position: absolute;
    top: -5%;
    right: -5%;
    z-index: 8;
    background: #ec4444;
    padding: 3px 8px 1px 8px;
    font-size: 13px;
    border-radius: 50%;
    color: #fff;
}

.tool-s2-wrapper .card-body {
    padding: 0.525rem;
}

.tool-s2-wrapper .file-info .image-size-holder {
    font-size: 10px;
    /* color: #989898; */
    color: var(--gray-color);
    max-width: 4rem;
    border-radius: 5px;
    width: 100%;
}

.my-container .navbar {
    background: var(--black-color);
    position: relative;
    z-index: -1 !important;
    padding: 10px;
}

@media (max-width: 558px) {

    .side-navbar {
        width: 300px;
        overflow-y: scroll;
    }

    #menu-btn {
        right: 310px;
    }

    .tool-s2-wrapper {
        margin: 20% auto;
        transition: all ease 0.3s;
        position: relative;
        z-index: -1;
    }

    .tool-s2-wrapper-hide {
        margin: 15% auto;
        transition: all ease 0.3s;
    }

}

/**
    * ---------------------------
    * 23. Cookies Notice
    * ---------------------------
    */
.cookie-section {
    position: fixed;
    bottom: 0px;
    left: 0%;
    right: 0%;
    width: 100%;
    padding: 0.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-weight: 400;
    z-index: 99999;
    box-shadow: 0 0.75rem 1.5rem rgba(14, 31, 51, 0.03);
}

@media (max-width: 670px) {
    .cookie-notification-banner {
        padding: 0.5rem 1.5rem;
    }

    .cookie-description {
        margin-right: 0px !important;
    }

    #cookie-btn {
        margin: 0px auto;
    }
}

/**
            * ---------------------------
            * 24. IP Lookup Section 
            * ---------------------------
            */
.domain-anaylzer-content .search-input,
.ip-lookup-content .search-input {
    line-height: 2;
    max-width: 100% !important;
    border-radius: 4px;
    padding: 0.4rem 7rem 0.4rem 1.2rem;
    caret-color: var(--primary-color);
}

.domain-analyzer-content .search-wrapper .btn,
.ip-lookup-content .search-wrapper .btn {
    line-height: 2;
    padding: 0.1rem 1rem;
    top: 10%;
    right: 0.9%;
}

.domain-analyzer-card .card-header,
.ip-lookup-card .card-header {
    color: #fff;
    background-color: #1F2A33;
    border-bottom: 1px solid transparent;
    font-weight: 600;
}

.tool-icon {
    width: 2rem;
    height: 2rem;
}

.tool-sm-icon {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 568px) {
    .ip-lookup-description {
        font-size: 0.78rem;
    }
}

/**
            * ---------------------------
            * 25. Domain Analyzer Page 
            * ---------------------------
            */
.card-body .table>:not(caption)>*>* {
    padding: 0.55rem 0rem;
}

.card-body table tr td:first-child {
    width: 200px !important;
}

.badge-gray {
    font-weight: 400 !important;
    background: #293843 !important;
    padding: 3px 8px;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
}

.badge-gray:hover {
    background: #1f2a33 !important;
    color: #fff !important;
    transition: all 0.5s ease-out;
}

/**
            * ---------------------------
            * 26. Compress Image Page
            * ---------------------------
            */

/* .compress-image-page .tool-wrapper .card {
    max-width: 70rem;
    width: 100%;
    margin: 4% auto;
    border-radius: 5px;
} */

.size-customize-wrapper,
.tool-image-holder img {
    max-width: 29rem;
    width: 100%;
    height: 18rem;
    object-fit: fill;
    border-radius: 5px;
}

.range-holder input[type="range"] {
    min-width: 200px;
    width: 100%;

}

.right-0-top-30 {
    right: 0%;
    top: -66%;
    transform: translate(0%, -25%);
}

.start-0-top-30 {
    left: 0%;
    top: -66%;
    transform: translate(0%, -25%);
}

/* Slider Starts Here */
.slide-container {
    max-width: 20rem;
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #dee2e6;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

/* Slider Ends Here */

/**
            * ---------------------------
            * 27. Convert Image Page
            * ---------------------------
            */

/* .convert-image-page .tool-wrapper { */
/* .tool-wrapper {
    height: 100vh;
} */

.tool-wrapper .divider-dark {
    margin-top: 2rem !important;
}

#file-chosen {
    position: absolute;
    top: 110%;
    left: 50%;
    width: 20rem;
    font-size: 14px;
    color: #a29f9f;
    transform: translate(-5%, 0%);
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden !important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.download-field {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 1rem;
}

.converted-image,
.original-image {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 568px) {
    #file-chosen {
        top: 65%;
        width: 13rem;
        transform: translate(0%, 50%);
    }
}

/**
* ---------------------------
* 28. Resize Image Page
* ---------------------------
*/
.resize-field .form-control {
    width: 6rem;
}

.resize-field .form-check {
    display: block;
    height: 1.4rem;
    padding-left: 2em;
    margin-bottom: 0.125rem;
}

.single-feature-list-wrapper .card:hover,
.feature-list-wrapper .card:hover {
    box-shadow: none;
    box-shadow: 0px 3px 30px rgb(0 0 0 / 10%);
}
.single-feature-list-wrapper .card:hover .feature-list-title,
.feature-list-wrapper .card:hover .feature-list-title,
.feature-list-wrapper .card:hover .learn-btn {
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}
.feature-list-wrapper .card {
    max-width: 25rem;
}
.feature-list-image {
    max-width: 25rem;
    width: 100%;
}
.single-feature-list-wrapper .card,
.feature-list-wrapper .card {
    border: 1.5px solid #E7E7E7;
    transition: all 0.2s ease-in-out;
    margin: 0 auto 2rem auto;
    border-radius: 10px;
}
.description-wrapper {
    display: flex;
}
.feature-list-title {
    color: rgba(28, 28, 28, 0.875);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.feature-list-wrapper .feature-list-description {
    height: 6rem;
    color: #656565;
}
.single-feature-list-wrapper .single-feature-list-description {
    height: 13rem;
    font-size: 1rem;
    color: #6D6B6B;
}
.single-feature-content {
    display: flex;
    flex-direction: column;
    order: -1;
}
.feature-list-image,
.single-feature-list-wrapper .single-feature-list-image {
    display: flex;
    order: 1;
    margin-left: auto;
}
@media (max-width: 568px) {
    .description-wrapper {
        display: flex;
        flex-direction: column !important;
    }
    .order-sm-0 {
        display: flex;
        order: 0;
    }
    .order-sm-1 {
        display: flex;
        order: 1;
    }
    .feature-list-wrapper .feature-list-description {
        height: auto;
        font-size: 1rem;
        color: #6D6B6B;
        margin-bottom: 1rem;
    }
    .feature-list-wrapper .feature-list-image {
        max-width: 22rem;
        width: 100%;
        margin: 3rem auto 0 auto;
    }
}

.single-feature-list .feature-content {
    width: 100% !important;
}

.single-feature-list .feature-content > div,
.single-feature-list .feature-content > p,
.single-feature-list .feature-content > h1,
.single-feature-list .feature-content > h2,
.single-feature-list .feature-content > h3,
.single-feature-list .feature-content > h4,
.single-feature-list .feature-content > h5,
.single-feature-list .feature-content > h6,
.single-feature-list .feature-content > span,
.single-feature-list .feature-content > ul,
.single-feature-list .feature-content > li {
    font-family: var(--primary-font) !important;
}

.single-feature-list .feature-content table {
    width: 100% !important;
}

.bootstrap-filestyle.input-group {
    display: block !important;
}

.filestyle {
    width: 80% !important;
}