/*your custom css goes here*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
    --bg-primary: #022288 !important;
    --blue: #022288 !important;
    --hov-blue: #254cc8 !important;
    --soft-blue: rgba(0, 123, 255, 0.15) !important;
    --secondary-base: #ffc519 !important;
    --hov-secondary-base: #dbaa17 !important ;
    --soft-secondary-base: rgba(255, 197, 25, 0.15);
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #ea304c !important;
    --red: #e52441 !important;
    --orange: #d34343 !important;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --darkcyan: darkcyan;
    --white: #fff !important;
    --seashell: #fff6f0;
    --soft-white: #fefefe;
    --gray: #fafafa !important;
    --gray-dark: #343a40 !important;
    --primary: #254cc8 !important;
    --hov-primary: #022288 !important;
    --soft-primary: rgba(247, 123, 11, 0.15);
    --secondary: #8f97ab;
    --soft-secondary: rgb(50, 50, 50) !important;
    --success: #0abb75;
    --soft-success: rgba(10, 187, 117, 0.15);
    --info: #25bcf1;
    --soft-info: rgba(37, 188, 241, 0.15);
    --warning: #ffc519;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #f50505 !important;
    --soft-danger: rgba(239, 72, 106, 0.15);
    --light: #f2f3f8;
    --light-bg: #fafafa !important;
    --soft-light: #dfdfe6;
    --light-secondary: rgb(217 218 223);
    --dark: #292933;
    --soft-dark: #1b1b28;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: Poppins;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

body {
    background-color: var(--gray);
    color: var(--soft-secondary);
    font-family: var(--font-family-sans-serif) !important;
    font-size: 1rem;
}
.overflow-x-hidden {
    overflow-x: hidden !important;
}
.overflow-y-hidden {
    overflow-y: hidden !important;
}
.overflow-x-auto {
    overflow-x: auto !important;
}
.overflow-y-auto {
    overflow-y: auto !important;
}

p {
    margin-bottom: 0;
}

a {
    color: var(--blue);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--hov-blue);
    text-decoration: inherit;
}

.btn-primary,
.btn-soft-primary:hover,
.btn-outline-primary:hover {
    /*background-color: var(--bg-primary);*/
    /*background-color: var(--blue);*/
    border-color: var(--bg-primary);
    color: var(--white);
}

.p-50 {
    padding: 50px 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-light-secondary,
.hov-bg-light-secondary:hover {
    background-color: var(--light-secondary) !important;
}

.navbar-bg {
    background-color: var(--blue);
}

.text-reset {
    color: var(--soft-secondary) !important;
}
.text-light,
.hov-text-light:hover {
    color: var(--light) !important;
}
/******** custom-btn ********/
.custom-btn {
    position: relative;
    background-color: var(--blue);
    border-radius: 4px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 33px;
    transition: all 0.3s ease;
    appearance: none;
    text-decoration: none;
    text-transform: uppercase;
}

.custom-btn:hover,
.custom-btn:focus {
    background-color: var(--hov-blue);
    color: #fff;
}

.custom-btn span {
    line-height: 24px;
    font-size: 14px;
    margin-left: 8px;
}

.custom-btn-1 {
    position: relative;
    background-color: transparent;
    border-radius: 4px;
    outline: none;
    border: 1px solid var(--white);
    color: #fff;
    cursor: pointer;
    display: inline-block !important;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 40px;
    transition: all 0.3s ease;
    appearance: none;
    text-decoration: none;
    text-transform: uppercase;
}

.custom-btn-1::after {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border: 1px dashed var(--white);
    border-radius: 2px;
    padding: 12px 40px;
    width: 96%;
}

.custom-btn-1:hover,
.custom-btn-1:focus {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--primary);
}

.btn-read {
    display: inline-block;
    position: relative;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
}

.btn-read span {
    font-size: 16px;
    margin-left: 8px;
}

.btn-read:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.btn-read:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-read:hover,
.btn-read:focus {
    background-color: none;
    border: none;
    box-shadow: none;
    outline: none;
    color: var(--blue);
}

.py-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-80 {
    padding: 80px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.py-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.py-50 {
    padding: 50px 0;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.py-30 {
    padding: 30px 0;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.py-20 {
    padding: 20px 0;
}

.pt-20 {
    padding-top: 20px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.p-0 {
    padding: 0 !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-10 {
    margin-bottom: 10px;
}

.p-relative {
    position: relative;
    z-index: 999;
}

.light-bg {
    background-color: var(--light-bg) !important;
}

.container-fluid {
    padding: 0 80px;
}

.top-navbar {
    position: relative;
    background-color: var(--gray);
}

.header-top {
    position: relative;
}

.topinfo {
    padding: 14px 0;
}

.topinfo p {
    color: var(--white);
}

.top-info {
    padding: 10px 0;
}

.top-info ul {
    margin-bottom: 0;
    padding-left: 0;
}

.top-info ul li {
    color: var(--gray-dark);
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    margin-right: 20px;
}

.top-info ul li a {
    color: var(--gray-dark);
}

.top-info ul li span {
    color: var(--red);
}

.head-rit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header {
    position: relative;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-title {
    color: var(--blue);
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
}

.logo-title span.logo-title-slogan {
    color: var(--red);
    display: block;
    font-size: 14px;
    letter-spacing: 0.2rem;
}

.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    /* background-color: #ffffff;
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px; */
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
}

/* search input box */
.search-input-box {
    position: relative;
    width: 100%;
}

.search-input-box > input {
    border-radius: 3px;
    overflow: hidden;
    height: 50px;
    padding-left: 20px;
}

.search-input-box > svg {
    position: absolute;
    right: 20px;
    top: 16px;
}

[dir="rtl"] .search-input-box > svg {
    right: auto;
    left: 20px;
}

.search-input-box .form-control:focus {
    border-width: 1px !important;
    border-color: var(--primary) !important;
    outline: none;
    box-shadow: none;
}

.tt-text {
    color: var(--dark);
    display: block;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
}

.logo-wrap {
    margin: 10px;
    max-height: 100%;
    position: relative;
}

.logo-wrap .header-logo-img {
    max-height: 84px;
}

/******** header-login ********/
.header .item-right {
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-end;
}

.item-left {
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-icon-1 {
    text-align: center;
    margin-right: 20px;
    margin-top: 16px;
    margin-bottom: 10px;
}

.tp-icon {
    color: var(--soft-secondary);
    font-size: 20px;
    text-align: center;
}
.account-wrap {
    margin-left: 10px;
}

.log-in {
    color: var(--dark);
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.text-color a {
    color: var(--blue);
}

.user-icon {
    position: relative;
    display: block;
}

.nav-user-img {
    display: block;
}

.user-icon:hover .nav-user-img {
    border-color: transparent !important;
    box-shadow: none !important;
}

.user-icon:hover .nav-user-img > svg * {
    fill: var(--pink);
}

/******** nav ********/

.nav-menu {
    background-color: var(--hov-blue);
    text-align: left;
}
.navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 256px;
}

.all-category {
    background-color: var(--hov-blue);
}

/******** banner slider ********/
.home-slider {
    max-width: 100% !important;
}

.subtitle {
    position: relative;
}
.subtitle h6 {
    position: relative;
    color: var(--bg-primary);
    font-size: 14px !important;
    font-weight: 600;
    line-height: 16px;
    display: inline-block;
    text-transform: uppercase;
}

.subtitle span.sub-line {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    top: -4px;
    width: 100px;
    height: 1px;
    background: var(--bg-primary);
}

.category-wrap {
    position: relative;
    /* padding: 20px; */
}

.category-img {
    position: relative;
    /* padding: 20px; */
    overflow: hidden;
}

.aiz-card-box .disc-amount {
    margin-right: -52%;
    opacity: 0 !important;
}

.stock-bg {
    background-color: #254cc8;
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    text-align: center;
    padding: 2px 6px;
    margin-bottom: 5px;
}

.product-container {
    background-color: var(--gray);
}

.aiz-card-box {
    overflow: hidden;
    background-color: var(--white);
}

.fnp.tabs-container {
    max-height: 560px;
    overflow-y: hidden;
}

.tabs-container .aiz-nav-tabs {
    position: relative;
    justify-content: center;
    display: flex;
    /* border-bottom: 1px solid var(--bg-primary); */
}

.tabs-container .aiz-nav-tabs a {
    background-color: var(--hov-blue);
    /* border-radius: 4px; */
    color: var(--white);
    padding: 15px;
    margin: 0;
}

.tabs-container .aiz-nav-tabs a.active {
    background-color: var(--danger);
    border: none;
    /* border-bottom: 2px solid var(--danger); */
    color: var(--white);
}

.tabs-title {
    background-color: var(--bg-primary); 
    padding: 0 0 0 20px;
}

.tabs-container .pt-tabs {
    display: flex;
    justify-content: end;
}

.tabs-container .pt-tabs a {
    /* background-color: var(--hov-blue); */
    /* border-radius: 4px; */
    color: var(--gray-dark);
    padding:15px 0;
    margin: 0 10px 0 10px;
}

.tabs-container .pt-tabs a.active {
    /* background-color: var(--danger); */
    border: none;
    border-bottom: 2px solid var(--danger);
    color: var(--danger);
}

/* client testimonails */
.client-section {
    position: relative;
    background: url(../img/frontend/bg-9.png) var(--bg-primary);
    background-repeat: repeat;
    max-height: 390px;
}

.client-wrap {
    position: relative;
    padding: 30px;
}

.quote {
    color: var(--secondary);
    font-size: 40px;
}

.client-img {
    float: left;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.client-img img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
}

.client-dtl {
    margin-left: 90px;
    padding-top: 15px;
}

.ads-section {
    position: relative;
    margin-top: 120px;
}

.subscribe-section {
    /* background-color: var(--orange); */
    background-color: var(--darkcyan);
}

.phone-number a {
    color: var(--orange);
}

.cart-btn {
    background: var(--primary);
    opacity: 0.7;
    transform: translateY(100%);
    transition: 0.3s;
    overflow: hidden;
}

.product-wrap {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(360deg, #000 -45%, #10000000 100%);
    min-height: 100%;
    z-index: 1;
}

.p-title {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
}

.p-title h4 {
    color: #fff;
    font-size: 20px;
}

.deal-section {
    position: relative;
    /* background-color: #17a2b8; */
    /* background-color: #dc3545; */
}

.deal-section .flash-deal-price del {
    color: #fcc201 !important;
}

.count-timer ul li {
    background-color: #17a2b8;
    /* background-color: #dc3545; */
    border-radius: 4px;
    color: var(--white);
    display: inline-block;
    list-style-type: none;
    font-size: 0.875em;
    font-weight: 500;
    padding: 0.5em 1em;
    margin-right: 10px;
    text-align: center;
}
.count-timer ul li span {
    color: var(--white);
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Flexbox stuff */

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    flex: 0 1 20%;
    margin-bottom: 0;
}

.insta-like span {
    margin-right: 4px;
}

.iconsbox {
    text-align: center;
}

.iconsbox span {
    color: #dc3545;
    font-size: 32px;
}

.footer-container {
    background-color: #dc3545;
}

.footer-bottom {
    background-color: #dc3545;
}

.search-wrap {
    display: none;
}

.wrapper-1 {
    max-width: 300px;
    margin: 0 auto;
}

.wrapper-1 .search-input {
    background: #fff;
    width: 100%;
    border-radius: 2px;
    position: relative;
}

.search-input input {
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 2px;
    padding: 0 40px 0 20px;
    font-size: 14px;
}

.search-input.active input {
    border-radius: 2px 2px 0 0;
}

.search-input .autocom-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .autocom-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    transition: all 0.3s;
    user-select: none;
}

.search-input.active .autocom-box li {
    display: block;
}

.autocom-box li:hover {
    background: #efefef;
    cursor: pointer;
}

.search-input .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 38px;
    font-size: 20px;
    color: #757575;
    cursor: pointer;
}

.styleResault {
    display: none;
    transition: all 1s;
    font-size: large;
    margin-top: 50px;
    padding: 20px;
    border-radius: 8px;
    font-weight: bolder;
    text-align: center;
}

.styleResault:hover {
    transform: scale(110%);
}

.front-header-search {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.front-header-search.active {
    display: flex !important;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    opacity: 1;
}

.payment {
    padding-left: 0;
}

.payment li {
    background-color: #ffffff;
    border-radius: 4px;
    display: inline-block;
    display: inline-block;
    list-style: none;
    padding: 2px 6px;
    margin-bottom: 5px;
}

.payment li img {
    display: inline-block;
    max-width: 100%;
    max-height: 32px;
}

ul.list-inline.social i {
    font-weight: normal;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: none !important;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.rating i {
    /*color: #ffa707 !important;*/
}

.moretext {
    display: none;
}

.sm-gutters-16 {
    margin-right: -17px !important;
    margin-left: -16px;
}

.xs-gutters-16 {
    margin-right: -13px !important;
    margin-left: -12px;
}

@media (max-width: 1400px) {
    .container-fluid {
        padding: 0 30px;
    }
    .header .menu > ul > li > a {
        font-size: 12px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: calc(100% - 20px);
    }

    .logo-title {
        font-size: 14px;
        font-weight: 500;
        margin-left: 12px;
    }
    
    .logo-title span.logo-title-slogan {
        font-size: 12px;
        letter-spacing: 0.1rem;
    }
}


@media (max-width: 991px) {
    .tabs-title {
    background-color: var(--bg-primary);
    padding: 10px 0 0 10px;
    }
}

@media (max-width: 991px) {
    .card {
        flex: 0 1 25%;
    }

    .sticky {
        position: static;
    }

    .search-wrap {
        display: block;
        position: absolute;
        right: 10px;
        top: 5px;
    }

    .fnp.tabs-container {
        max-height: 640px;
        overflow-y: hidden;
    }
}

@media (max-width: 768px) {
    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .card {
        flex: 0 1 33%;
    }

    .logo-wrap img {
        width: 80px;
    }

    .tp-icon {
        font-size: 16px;
    }

    .tt-text {
        font-size: 11px;
        line-height: 13px;
    }
    .user-icon-1 {
        font-size: 19px;
        text-align: center;
        margin-right: 10px;
        margin-top: 16px;
        margin-bottom: 10px;
    }

    ul.social a {
        display: inline-block;
        width: 30px;
        height: 30px;
        border-radius: 50em;
        line-height: 34px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    ul.social i {
        font-size: 16px;
        font-weight: 700;
    }

    /* .fnp.tabs-container {
        max-height: 400px;
    } */

    .custom-btn-1 {
        font-size: 13px;
        padding: 8px 30px;
    }

    .container-fluid {
        padding: 0 18px;
    }

    .top-info ul li {
        margin-right: 6px;
    }
    
}

@media (max-width: 576px) {
    .logo-wrap img {
        width: 70px;
    }

    .card {
        flex: 0 1 50%;
    }

    .card-overlay .p-title {
        padding: 10px;
    }

    .card-overlay .p-title a.btn-visit {
        width: 10rem;
    }

    .fnp.tabs-container {
        max-height: 650px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .top-info ul li {
        margin-right: 4px;
    }

     .auto-tabs {
        max-height: 400px !important;
    }
}

@media (max-width: 480px) {
    .col-xs {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
    }

    .row-cols-xs-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xs-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xs-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-cols-xs-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xs-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xs-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xs-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xs-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xs-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xs-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xs-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xs-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xs-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xs-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xs-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xs-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xs-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xs-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xs-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xs-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xs-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xs-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xs-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xs-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xs-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xs-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xs-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xs-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xs-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xs-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xs-0 {
        margin-left: 0;
    }

    .offset-xs-1 {
        margin-left: 8.333333%;
    }

    .offset-xs-2 {
        margin-left: 16.666667%;
    }

    .offset-xs-3 {
        margin-left: 25%;
    }

    .offset-xs-4 {
        margin-left: 33.333333%;
    }

    .offset-xs-5 {
        margin-left: 41.666667%;
    }

    .offset-xs-6 {
        margin-left: 50%;
    }

    .offset-xs-7 {
        margin-left: 58.333333%;
    }

    .offset-xs-8 {
        margin-left: 66.666667%;
    }

    .offset-xs-9 {
        margin-left: 75%;
    }

    .offset-xs-10 {
        margin-left: 83.333333%;
    }

    .offset-xs-11 {
        margin-left: 91.666667%;
    }

     .auto-tabs {
        max-height: 480px !important;
    }
}

@media (max-width: 991px) {
    .client-section {
        max-height: inherit;
    }

    .ads-section {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .tabs-container .aiz-nav-tabs a {
        padding: 10px 16px;
    }
}
