@charset "UTF-8";

/*-----------------------------------------------------------------------------------

    Template Name: Learts – Handmade Shop eCommerce HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    00 - Helpers (Variables & Mixins)
    01 - Basic (Typography, Common Classes)
        01.01 - Typrography
        01.02 - Common Classes
    02 - Layout (Header, Footer, Section, Main Container/Wrapper and Page Header Styles)
        02.01 - Header
        02.02 - Footer
        02.03 - Main Content Wrapper, Sections & Section Heading
    03 - Modules (Template Design Elements as Modules and Third party Plugins Custom Styles)
    04 - Pages (Single Pages Specify Styles)

-----------------------------------------------------------------------------------*/


/*----------------------------------------*/


/*  01. Template default CSS
/*----------------------------------------*/


/* Common Style */

*,
*::after,
*::before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    position: relative;
    visibility: visible;
    overflow-x: hidden;
    color: var(--alternative-color);
    background-color: #FFFFFF;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 15px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit-SemiBold", serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    color: #1D3557;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: inherit;
    margin: 0;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

a:hover,
a:active,
a:focus {
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

a,
button,
img,
input {
    transition: all 0.5s ease 0s;
}

*:focus {
    outline: none;
}

a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

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

button,
input[type=submit] {
    cursor: pointer;
}

img {
    height: auto;
    max-width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}

ul {
    margin: 0;
    padding: 0;
}

ul:last-child {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

hr {
    border-top-width: 2px;
}


/*----------------------------------------*/


/*  Template Classes CSS
/*----------------------------------------*/

.bg-img {
    background: no-repeat center center;
    background-size: cover;
}

.wrapper {
    overflow-x: hidden;
}

.section-space {
    padding-bottom: 110px;
    padding-top: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-space {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .section-space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-top-space {
    padding-top: 50px;
}

/* @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-top-space {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .section-top-space {
        padding-top: 80px;
    }
} */

.section-bottom-space {
    padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-bottom-space {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .section-bottom-space {
        padding-bottom: 80px;
    }
}

.row-gutter-20 {
    margin-right: -10px;
    margin-left: -10px;
}

.row-gutter-20 .col,
.row-gutter-20 [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
}

.btn {
    background-color: var(--principal-color);
    border: 1px solid var(--principal-color);
    box-shadow: none;
    border-radius: 30px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 1.2;
    padding: 11px 26px 9px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .btn {
        font-size: 11px;
        padding: 9px 23px 8px;
    }
}

.btn:hover {
    background-color: #231942;
    border-color: #231942;
    color: #FFFFFF;
}

.btn:focus {
    box-shadow: none;
}

.btn.btn-white {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

.btn.btn-white:hover {
    background-color: var(--principal-color);
    border-color: var(--principal-color);
    color: #FFFFFF;
}

.btn.btn-border-primary {
    background-color: transparent;
    border-color: var(--principal-color);
    border-radius: 31px;
    color: #1D3557;
    font-size: 18px;
    letter-spacing: 3.235px;
    padding: 19.5px 60.5px 17.5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .btn.btn-border-primary {
        font-size: 14px;
        padding: 14px 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn.btn-border-primary {
        font-size: 13px;
        letter-spacing: 1.5px;
        padding: 9px 17px;
    }
}

@media only screen and (max-width: 767px) {
    .btn.btn-border-primary {
        font-size: 12px;
        letter-spacing: 0.5px;
        padding: 9px 17px;
    }
}

.btn.btn-border-primary:hover {
    background-color: var(--principal-color);
    border-color: var(--principal-color);
    color: #FFFFFF;
}

.btn-border-secondary {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .btn-border-secondary {
        border-radius: 25px;
        border-width: 2px;
        font-size: 14px;
        padding: 11px 25px;
    }
}

.btn-border-secondary:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.btn-load-more {
    border: 2px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-top: 50px;
    padding: 17px 30px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .btn-load-more {
        border-radius: 30px;
        font-size: 13px;
        letter-spacing: 0.1em;
        padding: 15px 25px;
    }
}

.btn-load-more:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.btn-load-more:hover .icon {
    color: #FFFFFF;
}

.btn-load-more .icon {
    color: var(--alternative-color);
    margin-left: 12px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .btn-load-more .icon {
        margin-left: 5px;
    }
}

.offcanvas-backdrop,
.modal-backdrop {
    background-color: rgba(43, 43, 43, 0.92);
    cursor: url("../images/icons/cancel-white.png"), auto;
}

.offcanvas-backdrop.show,
.modal-backdrop.show {
    opacity: 1;
}

@media only screen and (max-width: 575px) {
    .pt-sm-40 {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .pt-md-max-0 {
        padding-top: 0 !important;
    }
}


/*----------------------------------------*/


/*  Header CSS
/*----------------------------------------*/

@media only screen and (max-width: 991px) {
    .header-area {
        padding: 18px 0;
    }
}

@media only screen and (max-width: 479px) {
    .header-logo img {
        max-width: 115px;
    }
}

.header-transparent {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.header-transparent .main-nav>li.active>a {
    color: #FFFFFF;
}

.header-transparent .main-nav>li>a {
    color: #FFFFFF;
}

.header-transparent .header-search-box .form-control {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.header-transparent .header-search-box .form-control::-webkit-input-placeholder {
    color: var(--alternative-color);
}

.header-transparent .header-search-box .form-control:-moz-placeholder {
    color: var(--alternative-color);
}

.header-transparent .header-search-box .form-control::-moz-placeholder {
    color: var(--alternative-color);
}

.header-transparent .header-search-box .form-control:-ms-input-placeholder {
    color: var(--alternative-color);
}

.header-transparent .header-search-box .btn-src {
    color: #1D3557;
}

.header-transparent .header-action-cart {
    color: #FFFFFF;
}

.header-transparent .header-action-cart .cart-icon svg {
    fill: #FFFFFF;
}

.header-transparent .btn-search-menu svg {
    fill: #FFFFFF;
}

.header-transparent .btn-search-menu svg:hover {
    fill: #1D3557;
}

.header-transparent .btn-menu {
    background-color: #1D3557;
}

.header-transparent .btn-menu:hover {
    background-color: #FFFFFF;
    color: var(--alternative-color);
}

.header-navigation {
    position: relative;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
}

.main-nav>li {
    position: relative;
    /*margin: 0 20px;*/
}

@media only screen and (max-width: 1199px) {
    .main-nav>li {
        margin: 0 18px;
    }
}

.main-nav>li:first-child {
    margin-left: 0;
}

.main-nav>li:first-child>a {
    padding-left: 0;
}

.main-nav>li:last-child {
    margin-right: 0;
}

.main-nav>li:last-child>a {
    padding-right: 0;
}

.main-nav>li>a {
    color: var(--nav-letters-color);
    font-size: 14px;
    font-weight: 500;
    padding: 36px 12.33px;
    display: inline-block;
    line-height: 1;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.main-nav>li>a:hover {
    color: #1D3557;
}

.main-nav .has-submenu:hover a {
    color: var(--nav-letters-hover-color);
}

.main-nav .has-submenu:hover .submenu-nav,
.main-nav .has-submenu:hover .submenu-nav-mega {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}

.main-nav .has-submenu .submenu-nav,
.main-nav .has-submenu .submenu-nav-mega {
    box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
    background-color: #FFFFFF;
    border-radius: 0 0 4px 4px;
    color: #000000;
    left: -15px;
    opacity: 0;
    margin-top: 30px;
    min-width: 230px;
    padding: 0 0;
    position: absolute;
    pointer-events: none;
    top: 100%;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    visibility: hidden;
    width: 230px;
    z-index: 9999;
}

.main-nav .has-submenu .submenu-nav>li,
.main-nav .has-submenu .submenu-nav-mega>li {
    border-bottom: 1px solid rgba(173, 181, 189, 0.15);
    padding: 0;
    margin-bottom: 0;
}

.main-nav .has-submenu .submenu-nav>li:last-child,
.main-nav .has-submenu .submenu-nav-mega>li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.main-nav .has-submenu .submenu-nav>li a,
.main-nav .has-submenu .submenu-nav-mega>li a {
    color: #1d1d1d;
    display: block;
    font-size: 13px;
    padding: 11px 25px 10px;
    position: relative;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.main-nav .has-submenu .submenu-nav>li a:hover,
.main-nav .has-submenu .submenu-nav-mega>li a:hover {
    color: var(--principal-color);
    background-color: rgba(173, 181, 189, 0.15);
}

.main-nav .has-submenu .submenu-nav .has-submenu,
.main-nav .has-submenu .submenu-nav-mega .has-submenu {
    position: relative;
}

.main-nav .has-submenu .submenu-nav .has-submenu a:before,
.main-nav .has-submenu .submenu-nav-mega .has-submenu a:before {
    content: "\f105";
    font-family: "FontAwesome";
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.main-nav .has-submenu .submenu-nav .has-submenu .submenu-nav,
.main-nav .has-submenu .submenu-nav-mega .has-submenu .submenu-nav {
    border-radius: 0;
    box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
    left: 100%;
    right: auto;
    top: 8px;
    opacity: 0;
    visibility: hidden;
    margin-top: 30px;
}

.main-nav .has-submenu .submenu-nav .has-submenu .submenu-nav a:before,
.main-nav .has-submenu .submenu-nav-mega .has-submenu .submenu-nav a:before {
    display: none;
}

.main-nav .has-submenu .submenu-nav .has-submenu .submenu-nav a:hover,
.main-nav .has-submenu .submenu-nav-mega .has-submenu .submenu-nav a:hover {
    color: var(--principal-color);
}

.main-nav .has-submenu .submenu-nav .has-submenu:hover a,
.main-nav .has-submenu .submenu-nav-mega .has-submenu:hover a {
    color: var(--principal-color);
}

.main-nav .has-submenu .submenu-nav .has-submenu:hover .submenu-nav,
.main-nav .has-submenu .submenu-nav-mega .has-submenu:hover .submenu-nav {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.main-nav .has-submenu .submenu-nav .has-submenu:hover .submenu-nav a,
.main-nav .has-submenu .submenu-nav-mega .has-submenu:hover .submenu-nav a {
    color: #1d1d1d;
}

.main-nav .has-submenu .submenu-nav .has-submenu:hover .submenu-nav a:hover,
.main-nav .has-submenu .submenu-nav-mega .has-submenu:hover .submenu-nav a:hover {
    color: var(--principal-color);
}

.main-nav .has-submenu .submenu-nav-mega {
    display: flex;
    left: 50%;
    min-width: 100%;
    padding: 0;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    min-width: 720px;
}

.main-nav .has-submenu .submenu-nav-mega li {
    border-right: 1px solid rgba(173, 181, 189, 0.15);
    border-bottom: none;
    flex-basis: 50%;
    margin: 0;
    padding: 0 0;
}

.main-nav .has-submenu .submenu-nav-mega li:last-child {
    border-right: none;
}

.main-nav .has-submenu .submenu-nav-mega li ul>li {
    border-bottom: 1px solid rgba(173, 181, 189, 0.15);
}

.main-nav .has-submenu .submenu-nav-mega li ul>li>a {
    color: #1d1d1d !important;
    font-size: 13px;
    padding: 11px 35px 10px;
}

.main-nav .has-submenu .submenu-nav-mega li ul>li>a:hover {
    background-color: rgba(173, 181, 189, 0.15);
    color: var(--principal-color) !important;
    text-decoration: none;
}

.main-nav .has-submenu .submenu-nav-mega li ul>li:first-child {
    border-top: 1px solid rgba(173, 181, 189, 0.15);
}

.main-nav .has-submenu .submenu-nav-mega li ul>li:last-child {
    border-bottom: none;
}

.main-nav .has-submenu .submenu-nav-mega li:hover .mega-title {
    color: var(--principal-color);
    text-decoration: none;
}

.main-nav .has-submenu .submenu-nav-mega .mega-title {
    color: #2d2d2d;
    font-size: 13px;
    font-weight: 600;
    padding: 18px 35px 15px;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav .has-submenu .submenu-nav-mega .mega-title:hover {
    background-color: transparent;
    color: #2d2d2d;
    cursor: auto;
    text-decoration: none;
}

.main-nav li.active a {
    color: var(--nav-letters-hover-color);
}

.main-nav li.active ul li.active a {
    color: var(--principal-color);
}

.main-nav li.active ul li.active ul li.active a {
    color: var(--principal-color) !important;
}

.main-nav li.active ul li.active a {
    color: #FF6565;
}

.main-nav li.active ul li.active ul li.active a {
    color: #FF6565 !important;
}

.header-action {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.header-search-box {
    background-color: transparent;
    margin-right: 81px;
    max-width: 230px;
    position: relative;
    width: 100%;
}

@media only screen and (max-width: 1199px) {
    .header-search-box {
        margin-right: 23px;
    }
}

.header-search-box .form-control {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid var(--nav-letters-color);
    border-radius: 50px;
    font-size: 13px;
    color: var(--nav-letters-color);
    height: 40px;
    width: 100%;
    padding: 5px 55px 7px 29px;
}

.header-search-box .form-control::-webkit-input-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.header-search-box .form-control:-moz-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.header-search-box .form-control::-moz-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.header-search-box .form-control:-ms-input-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.header-search-box .btn-src {
    background-color: transparent;
    border: none;
    color: var(--nav-letters-color);
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
    width: 53px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.header-search-box .btn-src:hover {
    color: var(--alternative-color);
}

.header-action-cart {
    background-color: transparent;
    border: none;
    color: var(--nav-letters-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    padding: 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
    .header-action-cart {
        margin-top: 3px;
    }
}

@media only screen and (max-width: 359px) {
    .header-action-cart {
        font-size: 0;
    }
}

.header-action-cart .cart-icon {
    margin-left: 11px;
    position: relative;
    top: -2px;
}

.header-action-cart .cart-icon svg {
    fill: var(--nav-letters-color);
}

.header-action-cart:hover {
    color: #1D3557;
}

.btn-menu {
    background-color: var(--principal-color);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    color: #FFFFFF;
    font-size: 17px;
    height: 30px;
    line-height: 29px;
    margin-left: 22px;
    text-align: center;
    width: 31px;
}

@media only screen and (max-width: 479px) {
    .btn-menu {
        margin-left: 12px;
    }
}

.btn-menu:hover {
    background-color: var(--alternative-color);
}

.btn-search-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: var(--principal-color);
    font-size: 17px;
    margin-left: 22px;
}

@media only screen and (max-width: 479px) {
    .btn-search-menu {
        margin-left: 12px;
    }
}

.btn-search-menu svg {
    fill: var(--principal-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-search-menu:hover svg {
    fill: var(--alternative-color);
}

.sidebar-cart-modal {
    background-color: #FFFFFF;
    box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
    top: 0;
    width: 403px;
    padding: 0;
    min-height: 100vh;
    bottom: 0;
    z-index: 9999;
    right: 0;
}

@media only screen and (max-width: 575px) {
    .sidebar-cart-modal {
        padding: 0 15px 15px;
        width: 310px;
    }
}

.sidebar-cart-modal .offcanvas-header {
    padding: 0;
    position: absolute;
    right: 21px;
    top: 13px;
}

.sidebar-cart-modal .offcanvas-header .btn-close {
    background-image: none;
    border: none;
    box-shadow: none;
    color: var(--alternative-color);
    font-size: 32px;
    line-height: 1;
    margin: 0;
    opacity: 1;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sidebar-cart-modal .offcanvas-header .btn-close:hover {
    color: var(--principal-color);
}

.sidebar-cart-modal .sidebar-cart-inner {
    padding: 0;
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .cart-close {
    color: #000000;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
    line-height: 36px;
    top: 11px;
    right: 23px;
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .cart-close i {
    font-weight: 600;
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .cart-close:hover {
    color: var(--principal-color);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .sidebar-cart-all {
    height: 100%;
    overflow-y: auto;
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .sidebar-cart-all .cart-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

@media only screen and (max-width: 575px) {
    .sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .sidebar-cart-all .cart-header {
        padding: 20px 15px;
    }
}

.sidebar-cart-modal .sidebar-cart-inner .sidebar-cart-content .sidebar-cart-all .cart-header>h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.cart-content ul li {
    display: flex;
    margin-bottom: 20px;
}

.cart-content ul li:last-child {
    margin-bottom: 0;
}

.cart-content ul li .cart-img {
    flex: 0 0 70px;
}

.cart-content ul li .cart-img a img {
    border-radius: 4px;
    width: 100%;
}

.cart-content ul li .cart-title {
    margin-left: 20px;
}

.cart-content ul li .cart-title h4 {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    width: 100%;
    margin: 0 0 11px;
}

.cart-content ul li .cart-title h4 a {
    color: #000000;
    font-weight: 400;
    font-size: 15px;
}

.cart-content ul li .cart-title h4 a:hover {
    text-decoration: underline;
}

.cart-content ul li .cart-title h4.font-size-width-inc {
    font-size: 16px;
    font-weight: 500;
}

.cart-content ul li .cart-title span {
    font-size: 15px;
    color: #1D3557;
}

.cart-content ul li .cart-title span span.price {
    color: var(--alternative-color);
    font-size: 16px;
}

.cart-content ul li .cart-delete {
    display: flex;
    flex-grow: 100;
    justify-content: flex-end;
}

.cart-content ul li .cart-delete a {
    color: #000000;
    display: block;
    font-size: 20px;
    margin-top: -6px;
    text-align: right;
}

.cart-content ul li .cart-delete a:hover {
    color: var(--principal-color);
}

.cart-content .cart-total {
    display: block;
    width: 100%;
    border-top: 1px dashed #e5e5e5;
    border-bottom: 1px dashed #e5e5e5;
}

.cart-content .cart-total.cart-total-padding-2 {
    padding: 15px 0;
    margin: 18px 0;
}

.cart-content .cart-total h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    color: #000000;
}

.cart-content .cart-total h4 span {
    font-size: 18px;
    color: var(--principal-color);
    float: right;
    font-weight: 600;
    margin-top: -3px;
}

.cart-content .cart-checkout-btn {
    display: block;
    width: 100%;
}

.cart-content .cart-checkout-btn a {
    width: 100%;
    display: block;
    margin: 10px 0 0;
    text-align: center;
    padding: 13px 20px 12px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cart-content .cart-checkout-btn a.cart-btn {
    color: #000000;
    border: 1px solid #e5e3e3;
}

.cart-content .cart-checkout-btn a.cart-btn:hover {
    background-color: var(--alternative-color);
    border-color: var(--alternative-color);
    color: #FFFFFF;
}

.cart-content .cart-checkout-btn a.checkout-btn {
    background-color: var(--principal-color);
    border: 1px solid var(--principal-color);
    color: #FFFFFF;
}

.cart-content .cart-checkout-btn a.checkout-btn:hover {
    border: 1px solid #1D3557;
    background-color: #1D3557;
}

.cart-content .cart-checkout-btn a:first-child {
    margin-top: 0;
}

.cart-content.cart-content-padding ul {
    margin: 0;
    padding: 30px;
}

@media only screen and (max-width: 575px) {
    .cart-content.cart-content-padding ul {
        padding: 30px 0;
    }
}

.cart-content.cart-content-padding .cart-total {
    padding: 24px 30px;
}

@media only screen and (max-width: 575px) {
    .cart-content.cart-content-padding .cart-total {
        padding: 24px 0;
    }
}

.cart-content.cart-content-padding .cart-checkout-btn {
    padding: 36px 30px 30px;
}

@media only screen and (max-width: 575px) {
    .cart-content.cart-content-padding .cart-checkout-btn {
        padding: 36px 0 30px;
    }
}

.aside-search-box-wrapper .offcanvas-header {
    justify-content: flex-end;
    padding: 0;
}

.aside-search-box-wrapper .btn-close {
    position: absolute;
    background-image: none;
    background-color: transparent;
    box-shadow: none;
    color: var(--principal-color);
    opacity: 1;
    font-size: 38px;
    top: 0;
    width: 40px;
    padding: 0;
    margin: 0;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    right: 30px;
}

.aside-search-box-wrapper .btn-close:hover {
    color: #1D3557;
}

.aside-search-box-wrapper .offcanvas-body {
    padding-top: 64px;
}

.aside-search-box-wrapper .search-note p {
    font-size: 13px;
    text-transform: capitalize;
    color: var(--alternative-color);
    margin-bottom: 10px;
}

.aside-search-box-wrapper .search-form {
    position: relative;
}

.aside-search-box-wrapper .search-form .form-control {
    border: 1px solid var(--principal-color);
    color: #1D3557;
    box-shadow: none;
    border-radius: 50px;
    height: 50px;
    font-size: 13px;
    line-height: 50px;
    text-transform: capitalize;
    padding: 10px 55px 10px 24px;
}

.aside-search-box-wrapper .search-form .form-control::-webkit-input-placeholder {
    color: rgba(69, 123, 157, 0.6);
}

.aside-search-box-wrapper .search-form .form-control:-moz-placeholder {
    color: rgba(69, 123, 157, 0.6);
}

.aside-search-box-wrapper .search-form .form-control::-moz-placeholder {
    color: rgba(69, 123, 157, 0.6);
}

.aside-search-box-wrapper .search-form .form-control:-ms-input-placeholder {
    color: rgba(69, 123, 157, 0.6);
}

.aside-search-box-wrapper .search-form .search-button {
    background-color: transparent;
    border: none;
    color: var(--principal-color);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    font-size: 18px;
}

.aside-search-box-wrapper .search-form .search-button:hover {
    color: var(--principal-color);
}

.aside-search-box-wrapper.offcanvas-top {
    height: 215px;
}

.aside-side-menu-wrapper {
    padding: 0;
}

@media only screen and (max-width: 479px) {
    .aside-side-menu-wrapper.offcanvas-end {
        width: 310px;
    }
}

.aside-side-menu-wrapper .offcanvas-header {
    align-items: center;
    background-color: var(--alternative-color);
    cursor: pointer;
    height: 60px;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 30px;
}

.aside-side-menu-wrapper .offcanvas-header h5 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.aside-side-menu-wrapper .offcanvas-header .btn-close {
    background: none;
    box-shadow: none;
    color: #FFFFFF;
    font-size: 32px;
    height: auto;
    margin: 0;
    opacity: 1;
    padding: 0;
    width: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.aside-side-menu-wrapper .offcanvas-header .btn-close:hover {
    color: var(--principal-color);
}

.aside-side-menu-wrapper .offcanvas-body {
    padding: 0 30px 20px;
}

.offcanvas-menu {
    position: relative;
    z-index: 1;
}

.offcanvas-menu::before {
    background-color: #FFFFFF;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.offcanvas-menu ul ul {
    display: none;
}

.offcanvas-menu>ul>li>ul li {
    border-bottom: 0px;
}

.offcanvas-menu>ul>li>ul li a {
    padding: 7px 15px;
    font-weight: 400;
    font-size: 14px;
    color: var(--alternative-color);
}

.offcanvas-menu>ul>li>ul li a:not(:only-child):after {
    font-size: 18px;
    right: 3px;
    top: 3px;
}

.offcanvas-menu>ul>li>ul li>ul li {
    border-bottom: 0px;
}

.offcanvas-menu>ul>li>ul li>ul li a {
    padding: 7px 30px;
    font-size: 13px;
    color: var(--alternative-color);
}

.offcanvas-menu li.active>ul {
    display: block;
}

.offcanvas-menu li a {
    display: block;
    text-transform: capitalize;
    color: var(--alternative-color);
    padding: 10px 0px;
    position: relative;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 479px) {
    .offcanvas-menu li a {
        font-size: 15px;
    }
}

.offcanvas-menu li a:hover {
    color: var(--principal-color);
}

.offcanvas-menu li a:hover:after {
    color: var(--principal-color);
}

.offcanvas-menu a:not(:only-child):after {
    color: var(--alternative-color);
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 479px) {
    .offcanvas-menu a:not(:only-child):after {
        font-size: 24px;
        top: 1px;
    }
}

.offcanvas-menu .active>a:not(:only-child):after {
    content: "\f106";
}


/*----------------------------------------*/


/*  Footer CSS
/*----------------------------------------*/

.footer-area {
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 15px;
}

.footer-main {
    background: #F7F8F9;
    border-radius: 100px 100px 0px 0px;
    padding: 103px 0 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-main {
        padding: 70px 0 58px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main {
        padding: 75px 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main {
        border-radius: 50px 50px 0px 0px;
        padding: 60px 0 50px;
    }
}

@media only screen and (max-width: 575px) {
    .footer-main {
        border-radius: 30px 30px 0px 0px;
        padding: 60px 0 40px;
    }
}

.footer-main .widget-title {
    font-size: 24px;
    margin-bottom: 39px;
    padding-bottom: 17px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main .widget-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-title {
        display: none;
    }
}

.footer-main .widget-title:after {
    background-color: var(--principal-color);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 46px;
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-title:after {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .footer-main .widget-title.widget-collapsed-title {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-title.widget-collapsed-title {
        background-color: var(--principal-color);
        border-radius: 10px;
        color: #FFFFFF;
        cursor: pointer;
        display: block;
        font-size: 17px;
        margin-bottom: 0;
        padding: 15px 20px 17px;
        position: relative;
    }
}

@media only screen and (max-width: 575px) {
    .footer-main .widget-title.widget-collapsed-title {
        font-size: 15px;
        padding: 12px 20px 14px;
    }
}

.footer-main .widget-title.widget-collapsed-title:before {
    font-family: "FontAwesome";
    font-size: 14px;
    content: "\2b";
    position: absolute;
    right: 0;
    height: 100%;
    width: 60px;
    text-align: center;
    top: calc(50% - 8px);
}

.footer-main .widget-title.widget-collapsed-title:not(.collapsed) {
    border-radius: 10px 10px 0 0;
}

.footer-main .widget-title.widget-collapsed-title:not(.collapsed):before {
    content: "\f068";
    font-family: "FontAwesome";
}

.footer-main .widget-collapse-body {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

@media only screen and (min-width: 768px) {
    .footer-main .widget-collapse-body {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-collapse-body {
        background-color: var(--principal-alternative-color);
        border: 1px solid var(--principal-color);
        border-radius: 0 0 10px 10px;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-collapse-body .widget-nav {
        padding: 30px 22px 20px;
    }
}

.footer-main .widget-logo {
    display: inline-block;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-logo {
        margin-bottom: 25px;
    }
}

.footer-main .desc {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 33px;
    max-width: 250px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main .desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        margin-top: 4px;
        max-width: none;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: none;
    }
}

.footer-main .widget-nav li {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: all 0.5s ease 0s;
    margin-bottom: 27px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main .widget-nav li {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-nav li {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .footer-main .widget-nav li {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.footer-main .widget-nav li a {
    color: var(--alternative-color);
    transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 767px) {
    .footer-main .widget-nav li a {
        color: #000000;
    }
}

.footer-main .widget-nav li a:hover {
    color: var(--principal-color);
    padding-left: 8px;
}

.footer-main .widget-social {
    display: flex;
}

.footer-main .widget-social a {
    color: var(--alternative-color);
    font-size: 19px;
}

.footer-main .widget-social a+a {
    margin-left: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main .widget-social a+a {
        margin-left: 35px;
    }
}

.footer-main .widget-social a+a+a {
    margin-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-main .widget-social a+a+a {
        margin-left: 30px;
    }
}

.footer-main .widget-social a:hover {
    color: var(--principal-color);
}

.footer-bottom {
    background: #F7F8F9;
}

.footer-bottom-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 20px 0 30px;
}

@media only screen and (max-width: 575px) {
    .footer-bottom-content {
        display: block;
    }
}

.footer-bottom-content p {
    font-size: 14px;
    color: #1D3557;
}

@media only screen and (max-width: 575px) {
    .footer-bottom-content p {
        font-size: 13px;
        margin-top: 20px;
    }
}

.footer-bottom-content p i {
    color: #eb3e32;
    font-size: 13px;
    margin: 0 2px;
}


/*----------------------------------------*/


/*  Wrapper CSS
/*----------------------------------------*/

.section-title {
    margin-bottom: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        margin-bottom: 36px;
    }
}

.section-title .title {
    font-size: 48px;
    margin-bottom: 15px;
    margin-top: -10px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title .title {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title .title {
        font-size: 36px;
        margin-top: -8px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .title {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: -7px;
    }
}

@media only screen and (max-width: 575px) {
    .section-title .title {
        font-size: 24px;
        margin-top: -6px;
    }
}

.section-title p {
    font-size: 18px;
    line-height: 28px;
    max-width: 450px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 575px) {
    .section-title p {
        font-size: 13px;
    }
}

.page-header-area {
    padding: 62px 0 57px;
}

@media only screen and (max-width: 767px) {
    .page-header-area {
        padding: 58px 0 57px;
    }
}

.page-header-title {
    font-size: 48px;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .page-header-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .page-header-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .page-header-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.showing-pagination-results {
    color: var(--alternative-color);
    font-family: "Kanit-SemiBold", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .showing-pagination-results {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .showing-pagination-results {
        font-size: 13px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .showing-pagination-results {
        font-weight: 400;
    }
}

.breadcrumb {
    margin-bottom: 6px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb {
        margin-bottom: 15px;
    }
}

.breadcrumb-item {
    font-size: 18px;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-item {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-item {
        font-size: 13px;
    }
}

.breadcrumb-item.active {
    color: var(--alternative-color);
}

.breadcrumb-item a {
    color: var(--alternative-color);
}

.breadcrumb-item+.breadcrumb-item:before {
    color: var(--alternative-color);
}

.newsletter-content-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    border-radius: 0 0 0 50px;
    padding: 48px 0 87px 170px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .newsletter-content-wrap {
        padding: 60px 0 65px 150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-content-wrap {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 50px 0 70px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-content-wrap {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 50px 0 60px;
    }
}

@media only screen and (max-width: 479px) {
    .newsletter-content-wrap {
        background-color: #f7f8f9;
        background-image: none !important;
        border-radius: 30px;
        padding: 50px 0 60px;
        text-align: center;
    }
}

.newsletter-content-wrap .newsletter-content {
    max-width: 431px;
}

@media only screen and (max-width: 767px) {
    .newsletter-content-wrap .newsletter-content {
        max-width: 300px;
    }
}

.newsletter-content-wrap .newsletter-content .title {
    font-size: 36px;
    margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
    .newsletter-content-wrap .newsletter-content .title {
        font-size: 24px;
        margin-bottom: 18px;
    }
}

.newsletter-content-wrap .newsletter-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 23px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .newsletter-content-wrap .newsletter-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-content-wrap .newsletter-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.newsletter-content-wrap .newsletter-form {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .newsletter-content-wrap .newsletter-form {
        margin-bottom: 6px;
    }
}

@media only screen and (max-width: 479px) {
    .newsletter-content-wrap .newsletter-form {
        margin: 0 15px;
    }
}

.newsletter-content-wrap .newsletter-form .form-control {
    box-shadow: none;
    border: 2px solid var(--principal-color);
    border-radius: 3px 20px 3px 3px;
    font-size: 12px;
    color: #1D3557;
    height: 50px;
    width: 100%;
    padding: 7px 58px 7px 29px;
}

.newsletter-content-wrap .newsletter-form .form-control::-webkit-input-placeholder {
    color: var(--alternative-color);
}

.newsletter-content-wrap .newsletter-form .form-control:-moz-placeholder {
    color: var(--alternative-color);
}

.newsletter-content-wrap .newsletter-form .form-control::-moz-placeholder {
    color: var(--alternative-color);
}

.newsletter-content-wrap .newsletter-form .form-control:-ms-input-placeholder {
    color: var(--alternative-color);
}

@media only screen and (max-width: 479px) {
    .newsletter-content-wrap .newsletter-form .form-control {
        padding: 7px 58px 7px 15px;
    }
}

.newsletter-content-wrap .newsletter-form .btn-submit {
    background-color: var(--principal-color);
    border: none;
    border-radius: 30px 30px 3px 30px;
    color: #fff;
    right: 6px;
    height: 40px;
    padding: 0;
    display: inline-block;
    font-size: 13px;
    line-height: 40px;
    margin: 0;
    position: absolute;
    top: 50%;
    width: 40px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.newsletter-content-wrap .newsletter-form .btn-submit:hover {
    background-color: #ff4141;
}

.ht-popup-video {
    align-items: center;
    display: flex;
    position: relative;
}

.ht-popup-video .icon {
    background-color: var(--principal-color);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 59px;
    font-size: 14px;
    padding-left: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ht-popup-video .icon {
        height: 48px;
        line-height: 48px;
        width: 48px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ht-popup-video .icon {
        height: 35px;
        line-height: 35px;
        width: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .ht-popup-video .icon {
        height: 35px;
        line-height: 35px;
        width: 35px;
    }
}

.ht-popup-video span {
    color: #1D3557;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3.235px;
    margin-left: 14px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ht-popup-video span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ht-popup-video span {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-left: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .ht-popup-video span {
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-left: 10px;
    }
}

.ht-popup-video .video-popup {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ht-popup-video:hover span {
    color: var(--principal-color);
}

textarea,
input {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fancybox__content {
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
}

.fancybox__backdrop {
    cursor: url("../images/icons/cancel-white.png"), auto;
}

.scroll-to-top {
    background-color: #1D3557;
    border: none;
    border-radius: 50%;
    bottom: 85px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 50px;
    text-align: center;
    width: 50px;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .scroll-to-top {
        right: 30px;
        bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .scroll-to-top {
        bottom: 70px;
    }
}

@media only screen and (max-width: 359px) {
    .scroll-to-top {
        font-size: 18px;
        height: 30px;
        line-height: 32px;
        width: 30px;
    }
}

.scroll-to-top:hover {
    background-color: var(--principal-color);
    box-shadow: none;
    color: #FFFFFF;
}


/*----------------------------------------*/


/*  Home Slider CSS
/*----------------------------------------*/

.hero-slider-area {
    margin: 0 auto;
    max-width: 1650px;
    padding: 0 15px;
}

.hero-slide-item {
    align-items: center;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50px;
    height: 700px !important;
    display: flex;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slide-item {
        height: 600px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slide-item {
        border-radius: 30px;
        height: 480px !important;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slide-item {
        border-radius: 30px;
        height: 460px !important;
    }
}

@media only screen and (max-width: 575px) {
    .hero-slide-item {
        height: auto !important;
        padding: 77px 0 120px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slide-item {
        height: auto !important;
        padding: 47px 0 103px;
    }
}

.hero-slide-item .container {
    position: relative;
}

.hero-slide-item .hero-social {
    bottom: -61px;
    left: 15px;
    position: absolute;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slide-item .hero-social {
        bottom: 0;
    }
}

.hero-slide-item .hero-social:after {
    background-color: #737373;
    content: "";
    height: 2px;
    left: calc(100% + 23px);
    position: absolute;
    top: 50%;
    width: 73px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-item .hero-social:after {
        height: 1px;
    }
}

.hero-slide-item .hero-social a {
    color: #817979;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-right: 26px;
    text-transform: uppercase;
}

.hero-slide-item .hero-social a:hover {
    color: var(--principal-color);
}

.hero-slide-item .hero-social a:last-child {
    margin-right: 0;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-shape-img,
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-sub-title,
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-title,
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-desc,
.hero-slide-item.swiper-slide-active .hero-slide-content .btn,
.hero-slide-item.swiper-slide-active .hero-slide-content .ht-popup-video {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-shape-img {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-sub-title {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-title {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-desc {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-meta .btn {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-meta .ht-popup-video {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.hero-slide-item.swiper-slide-active .hero-slide-thumb {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.hero-slide-content {
    margin-top: -23px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-content {
        margin-top: 0;
    }
}

@media only screen and (max-width: 575px) {
    .hero-slide-content {
        margin-bottom: 79px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slide-content {
        margin-bottom: 49px;
    }
}

.hero-slide-content .hero-slide-shape-img {
    position: absolute;
    top: -95px;
    left: -91px;
    z-index: -1;
    pointer-events: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-content .hero-slide-shape-img {
        left: -45px;
        top: -49px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-slide-content .hero-slide-shape-img {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-content .hero-slide-shape-img img {
        width: 90px;
    }
}

.hero-slide-content .hero-slide-sub-title {
    color: var(--alternative-color);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-content .hero-slide-sub-title {
        font-size: 15px;
    }
}

.hero-slide-content .hero-slide-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 84px;
    margin-bottom: 26px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slide-content .hero-slide-title {
        font-size: 48px;
        line-height: 1.3;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slide-content .hero-slide-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slide-content .hero-slide-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
}

.hero-slide-content .hero-slide-desc {
    color: #1D3557;
    font-size: 18px;
    line-height: 28px;
    max-width: 550px;
    margin-bottom: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-slide-content .hero-slide-desc {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slide-content .hero-slide-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slide-content .hero-slide-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

.hero-slide-meta {
    align-items: center;
    display: flex;
}

.hero-slide-meta .ht-popup-video {
    margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-meta .ht-popup-video {
        margin-left: 15px;
    }
}

.hero-slide-thumb {
    left: 100px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-thumb {
        left: 0;
    }
}

.hero-slide-thumb img {
    max-width: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-slide-thumb img {
        width: 100%;
    }
}

.hero-two-slide-item {
    align-items: center;
    background-color: #00c1eb;
    height: 950px !important;
    display: flex;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-two-slide-item {
        height: 820px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-item {
        height: 620px !important;
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-item {
        height: 520px !important;
    }
}

.hero-two-slide-item .container {
    height: 100%;
    position: relative;
}

.hero-two-slide-item .hero-two-social {
    bottom: 31px;
    left: 215px;
    position: absolute;
    z-index: 9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-item .hero-two-social {
        left: 115px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-item .hero-two-social {
        bottom: 27px;
        left: 95px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-item .hero-two-social {
        left: 15px;
    }
}

.hero-two-slide-item .hero-two-social:before {
    background-color: #FFFFFF;
    content: "";
    height: 2px;
    position: absolute;
    right: calc(100% + 89px);
    top: calc(50% - 4px);
    width: 2000px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-item .hero-two-social:before {
        right: calc(100% + 50px);
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-item .hero-two-social:before {
        height: 1px;
        right: calc(100% + 40px);
        top: calc(50% - 2px);
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-item .hero-two-social:before {
        display: none;
    }
}

.hero-two-slide-item .hero-two-social a {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
    margin-right: 51px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-item .hero-two-social a {
        font-size: 16px;
        margin-right: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-item .hero-two-social a {
        font-size: 14px;
    }
}

.hero-two-slide-item .hero-two-social a:after {
    background-color: #FFFFFF;
    content: "";
    height: 2px;
    position: absolute;
    right: -47px;
    top: 10px;
    width: 35.36px;
    transform: rotate(-66.05deg);
    -webkit-transform: rotate(-66.05deg);
    -moz-transform: rotate(-66.05deg);
    -ms-transform: rotate(-66.05deg);
    -o-transform: rotate(-66.05deg);
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-item .hero-two-social a:after {
        right: -32px;
        top: 9px;
        width: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-item .hero-two-social a:after {
        right: -27px;
        top: 8px;
        width: 18px;
    }
}

.hero-two-slide-item .hero-two-social a:hover {
    color: #1D3557;
}

.hero-two-slide-item .hero-two-social a:last-child {
    margin-right: 0;
}

.hero-two-slide-item .hero-two-social a:last-child:after {
    display: none;
}

.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-shape-img,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-stroke-title,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-title,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-desc {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-shape-img {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-stroke-title {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-title {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-desc {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-shape-img,
.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-product-img,
.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-subtitle,
.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-desc {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-shape-img {
    -webkit-animation-delay: 0.4;
    animation-delay: 0.4;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-product-img {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-subtitle {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

.hero-two-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-desc {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

.hero-two-slide-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 291px);
    justify-content: space-between;
    margin-top: 174px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-two-slide-content {
        margin-top: 150px;
        height: calc(100% - 280px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-content {
        margin-top: 120px;
        height: calc(100% - 210px);
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-content {
        margin-top: 120px;
        height: calc(100% - 210px);
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-content {
        margin-top: 110px;
        height: calc(100% - 205px);
    }
}

@media only screen and (max-width: 479px) {
    .hero-two-slide-content {
        margin-top: 95px;
        height: calc(100% - 195px);
    }
}

.hero-two-slide-content .hero-two-slide-shape-img {
    position: absolute;
    top: calc(50% - 32px);
    left: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
    .hero-two-slide-content .hero-two-slide-shape-img {
        top: calc(50% - 5px);
        width: 55%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-two-slide-content .hero-two-slide-shape-img {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-content .hero-two-slide-shape-img {
        top: calc(50% - 10px);
        width: 65%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-content .hero-two-slide-shape-img {
        top: calc(50% - 10px);
        width: 65%;
    }
}

@media only screen and (max-width: 479px) {
    .hero-two-slide-content .hero-two-slide-shape-img {
        top: calc(50% - 5px);
        width: 60%;
    }
}

.hero-two-slide-content .hero-two-slide-stroke-title {
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #FFFFFF;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-two-slide-content .hero-two-slide-stroke-title {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-two-slide-content .hero-two-slide-stroke-title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-content .hero-two-slide-stroke-title {
        font-size: 40px;
    }
}

.hero-two-slide-content .hero-two-slide-title {
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 160px;
    font-weight: 900;
    left: -10px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    text-align: right;
    text-transform: uppercase;
    top: -5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-two-slide-content .hero-two-slide-title {
        font-size: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .hero-two-slide-content .hero-two-slide-title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-content .hero-two-slide-title {
        font-size: 40px;
    }
}

.hero-two-slide-content .hero-two-slide-desc {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 11.2px;
    line-height: 1;
    margin: 0;
    position: absolute;
    right: 0;
    top: 19px;
    text-transform: uppercase;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-two-slide-content .hero-two-slide-desc {
        font-size: 18px;
        letter-spacing: 7px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-two-slide-content .hero-two-slide-desc {
        font-size: 18px;
        letter-spacing: 6px;
        top: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slide-content .hero-two-slide-desc {
        font-size: 17px;
        letter-spacing: 5px;
    }
}

.hero-two-slider-pagination {
    bottom: 38px !important;
    display: inline-block;
    float: right;
    line-height: 1;
    margin-right: 7px;
    margin-top: -18px;
    position: relative;
    width: auto !important;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .hero-two-slider-pagination {
        margin-top: -10px;
    }
}

.hero-two-slider-pagination .swiper-pagination-bullet {
    background-color: transparent;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    opacity: 1;
    padding: 0 50px 0 11px;
    position: relative;
    transition: all 0.5s ease 0s;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .hero-two-slider-pagination .swiper-pagination-bullet {
        font-size: 16px;
        padding: 0 42px 0 11px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slider-pagination .swiper-pagination-bullet {
        font-size: 14px;
    }
}

.hero-two-slider-pagination .swiper-pagination-bullet:before {
    color: #FFFFFF;
    content: "0";
    font-size: 18px;
    font-weight: 500;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .hero-two-slider-pagination .swiper-pagination-bullet:before {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slider-pagination .swiper-pagination-bullet:before {
        font-size: 14px;
    }
}

.hero-two-slider-pagination .swiper-pagination-bullet:after {
    background-color: #FFFFFF;
    content: "";
    height: 2px;
    position: absolute;
    right: -1px;
    top: 9px;
    width: 35.36px;
    transform: rotate(-66.05deg);
    -webkit-transform: rotate(-66.05deg);
    -moz-transform: rotate(-66.05deg);
    -ms-transform: rotate(-66.05deg);
    -o-transform: rotate(-66.05deg);
}

@media only screen and (max-width: 767px) {
    .hero-two-slider-pagination .swiper-pagination-bullet:after {
        top: 7px;
        width: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-two-slider-pagination .swiper-pagination-bullet:after {
        right: 4px;
        width: 18px;
    }
}

.hero-two-slider-pagination .swiper-pagination-bullet:last-child {
    padding-right: 0;
}

.hero-two-slider-pagination .swiper-pagination-bullet:last-child:after {
    display: none;
}

.hero-two-slider-pagination .swiper-pagination-bullet:hover {
    color: #1D3557;
}

.hero-two-slider-pagination .swiper-pagination-bullet:hover:before {
    color: #1D3557;
}

.hero-two-slider-pagination .swiper-pagination-bullet:focus {
    color: #FFFFFF;
}

.hero-two-slider-pagination .swiper-pagination-bullet:focus:before {
    color: #FFFFFF;
}

.hero-two-slider-pagination .swiper-pagination-bullet-active {
    color: #ebebeb;
}

.hero-two-slider-pagination .swiper-pagination-bullet-active:before {
    color: #ebebeb;
}

.hero-three-slide-content {
    height: calc(100% - 291px);
    margin-top: 297px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-three-slide-content {
        margin-top: 260px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content {
        height: calc(100% - 260px);
        margin-top: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content {
        height: calc(100% - 260px);
        margin-top: 160px;
    }
}

.hero-three-slide-content .hero-three-slide-shape-img {
    position: absolute;
    top: calc(50% - 135px);
    left: 0;
    z-index: -1;
    pointer-events: none;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-three-slide-content .hero-three-slide-shape-img {
        left: 50px;
        width: 55%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-shape-img {
        left: 0;
        top: calc(50% - 35px);
        width: 65%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-shape-img {
        left: 0;
        top: calc(50% - 35px);
        width: 65%;
    }
}

.hero-three-slide-content .hero-three-slide-product-img {
    position: absolute;
    top: calc(50% - 97px);
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-three-slide-content .hero-three-slide-product-img {
        left: calc(50% - 50px);
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-product-img {
        left: calc(50% - 30px);
        top: calc(50% + 7px);
        width: 70%;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-product-img {
        left: calc(50% - 35px);
        top: calc(50% + 7px);
        width: 67%;
    }
}

@media only screen and (max-width: 479px) {
    .hero-three-slide-content .hero-three-slide-product-img {
        left: calc(50% - 20px);
        width: 77%;
    }
}

.hero-three-slide-content .hero-three-slide-subtitle {
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    text-transform: uppercase;
    top: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-subtitle {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-subtitle {
        font-size: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-three-slide-content .hero-three-slide-subtitle {
        font-size: 36px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-three-slide-content .hero-three-slide-subtitle {
        font-size: 26px;
    }
}

.hero-three-slide-content .hero-three-slide-title {
    color: #1D1E1F;
    font-family: "Roboto", sans-serif;
    font-size: 240px;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 0.945;
    margin-bottom: 3px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-three-slide-content .hero-three-slide-title {
        font-size: 190px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-title {
        font-size: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-title {
        font-size: 110px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-three-slide-content .hero-three-slide-title {
        font-size: 98px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-three-slide-content .hero-three-slide-title {
        font-size: 70px;
    }
}

.hero-three-slide-content .hero-three-slide-title:before {
    content: "Merier";
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 250px;
    font-weight: 900;
    letter-spacing: 0.31em;
    line-height: 1;
    margin-bottom: 0;
    position: absolute;
    left: 50%;
    top: calc(50% - 3px);
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.05);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-three-slide-content .hero-three-slide-title:before {
        font-size: 186px;
        left: calc(50% + 28px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-title:before {
        font-size: 141px;
        left: calc(50% + 22px);
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-title:before {
        font-size: 104px;
        left: calc(50% + 15px);
    }
}

@media only screen and (max-width: 575px) {
    .hero-three-slide-content .hero-three-slide-title:before {
        font-size: 93px;
        left: calc(50% + 15px);
    }
}

@media only screen and (max-width: 479px) {
    .hero-three-slide-content .hero-three-slide-title:before {
        font-size: 68px;
        left: 50%;
    }
}

.hero-three-slide-content .hero-three-slide-desc {
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    font-weight: 900;
    left: -10px;
    line-height: 1;
    margin: 0;
    position: relative;
    text-align: right;
    text-transform: uppercase;
    top: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-three-slide-content .hero-three-slide-desc {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-three-slide-content .hero-three-slide-desc {
        font-size: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-three-slide-content .hero-three-slide-desc {
        font-size: 36px;
        left: -3px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-three-slide-content .hero-three-slide-desc {
        font-size: 26px;
    }
}

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

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -60px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/*----------------------------------------*/


/*  Product CSS
/*----------------------------------------*/

.product-item {
    background-color: #F7F8F9;
    border-radius: 30px;
    padding: 30px 35px 41px;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .product-item {
        padding: 20px 20px 35px;
    }
}

.product-item .product-thumb {
    border-radius: 30px;
    display: block;
    margin-bottom: 35px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .product-item .product-thumb {
        margin-bottom: 20px;
    }
}

.product-item .product-thumb img {
    transition: all 0.5s ease 0s;
    width: 100%;
}

.product-item .product-info {
    padding-right: 55px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .product-item .product-info {
        padding-right: 31px;
    }
}

.product-item .product-info .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 9px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-item .product-info .title {
        font-size: 16px;
    }
}

.product-item .product-info .title a {
    color: #1D3557;
}

.product-item .product-info .title a:hover {
    color: var(--principal-color);
}

.product-item .product-action {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 49px;
    justify-content: center;
    top: 50px;
}

@media only screen and (max-width: 767px) {
    .product-item .product-action {
        right: 35px;
        top: 40px;
    }
}

.product-item .product-action .product-action-btn {
    background-color: var(--principal-color);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    margin: 3px 0;
    opacity: 0;
    text-align: center;
    transition: all 0.5s ease 0s;
    transition-delay: 150ms;
    width: 45px;
    transform: translate(0, -15px);
    -webkit-transform: translate(0, -15px);
    -moz-transform: translate(0, -15px);
    -ms-transform: translate(0, -15px);
    -o-transform: translate(0, -15px);
}

@media only screen and (max-width: 767px) {
    .product-item .product-action .product-action-btn {
        font-size: 14px;
        height: 30px;
        line-height: 28px;
        width: 30px;
    }
}

.product-item .product-action .product-action-btn:hover {
    background-color: var(--alternative-color);
}

.product-item .product-action .product-action-btn.action-btn-cart {
    font-size: 17px;
}

@media only screen and (max-width: 767px) {
    .product-item .product-action .product-action-btn.action-btn-cart {
        font-size: 14px;
    }
}

.product-item .product-action .product-action-btn.action-btn-compare {
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .product-item .product-action .product-action-btn.action-btn-compare {
        font-size: 14px;
    }
}

.product-item .product-action .action-btn-cart {
    transition-delay: 200ms;
}

.product-item .product-action .action-btn-compare {
    transition-delay: 250ms;
}

.product-item .info-btn-wishlist {
    background-color: var(--principal-color);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    display: inline-block;
    font-size: 20px;
    height: 45px;
    line-height: 47px;
    position: absolute;
    right: -20px;
    text-align: center;
    top: 13px;
    width: 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-item .info-btn-wishlist {
        line-height: 45px;
        top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .product-item .info-btn-wishlist {
        font-size: 16px;
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
}

.product-item .info-btn-wishlist i {
    transition: all 0.8s ease 0s;
}

.product-item .info-btn-wishlist:hover i {
    transform: rotateY(360deg);
}

.product-item .price {
    align-items: baseline;
    color: #ff3c00;
    display: flex;
    font-family: "Kanit-SemiBold", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-item .price {
        font-size: 16px;
    }
}

.product-item .price .price-old {
    color: var(--alternative-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: 11px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    -webkit-text-decoration-color: rgba(69, 123, 157, 0.35);
    text-decoration-color: rgb(0 0 0);;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-item .price .price-old {
        font-size: 13px;
    }
}

.product-item .badges {
    background-color: var(--principal-color);
    border-radius: 40px;
    color: #FFFFFF;
    display: inline-block;
    font-family: "Kanit-SemiBold", serif;
    font-size: 13px;
    left: 29px;
    line-height: 1;
    padding: 4px 18px 8px;
    position: absolute;
    text-align: center;
    top: 31px;
}

@media only screen and (max-width: 767px) {
    .product-item .badges {
        left: 12px;
        top: 20px;
    }
}

.product-item:hover .product-thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-item:hover .product-action .product-action-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
}

.product-item-border {
    background-color: transparent;
    border: 1px solid var(--principal-color);
}

@media only screen and (min-width: 1550px),
only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-items-two .product-item {
        padding: 25px 25px 38px;
    }

    .product-items-two .product-item .product-action {
        right: 40px;
    }

    .product-items-two .product-item .product-action .product-action-btn {
        height: 35px;
        line-height: 35px;
        width: 35px;
    }

    .product-items-two .product-item .product-info .title {
        font-size: 16px;
    }

    .product-items-two .product-item .product-info .price {
        font-size: 16px;
    }

    .product-items-two .product-item .badges {
        left: 15px;
        top: 25px;
    }

    .product-items-two .product-item .info-btn-wishlist {
        font-size: 18px;
        height: 35px;
        line-height: 36px;
        top: 5px;
        width: 35px;
    }
}

.product-banner-item {
    border-radius: 30px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-banner-item img {
    transition: all 0.5s ease 0s;
    width: 100%;
}

.product-banner-item:before {
    background-color: rgba(255, 255, 255, 0.09);
    content: "";
    height: 200%;
    left: -280px;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 1;
}

.product-banner-item:after {
    background-color: rgba(255, 255, 255, 0.09);
    content: "";
    height: 200%;
    left: 180%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 1;
}

.product-banner-item:hover img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.product-banner-item:hover:before {
    left: 180%;
}

.product-banner-item:hover:after {
    left: -280px;
}

.product-banner-wrp {
    align-items: center;
    border-radius: 30px;
    display: flex;
    padding-top: 2px;
    padding-bottom: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-banner-wrp {
        background-position: 65% center;
    }
}

@media only screen and (max-width: 767px) {
    .product-banner-wrp {
        display: block;
        padding: 68px 0 80px;
    }
}

@media only screen and (max-width: 575px) {
    .product-banner-wrp {
        display: block;
        padding: 48px 0 60px;
    }
}

.product-banner-wrp .product-banner-thumb {
    min-width: 315px;
    padding-left: 37px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-banner-wrp .product-banner-thumb {
        min-width: 265px;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .product-banner-wrp .product-banner-thumb {
        padding-left: 28px;
    }
}

@media only screen and (max-width: 479px) {
    .product-banner-wrp .product-banner-thumb {
        padding-left: 0;
    }
}

.product-banner-content {
    padding-left: 58px;
    padding-top: 7px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-banner-content {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .product-banner-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.product-banner-content:before {
    background-color: #FFFFFF;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 5px;
    width: 1px;
}

@media only screen and (max-width: 767px) {
    .product-banner-content:before {
        display: none;
    }
}

.product-banner-content h3 {
    color: #FFFFFF;
    font-size: 36px;
    margin-bottom: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-banner-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .product-banner-content h3 {
        font-size: 24px;
    }
}

.product-banner-content p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    max-width: 263px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-banner-content p {
        font-size: 13px;
    }
}

.product-category-item {
    border-radius: 20px;
    background-color: var(--principal-color);
    display: block;
    margin-top: 122px;
    padding: 0 30px 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-category-item {
        margin-top: 85px;
        padding: 20px 30px 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-category-item {
        margin-top: 62px;
        padding: 20px 30px 22px;
    }
}

@media only screen and (max-width: 767px) {
    .product-category-item {
        margin-top: 62px;
        padding: 20px 30px 22px;
    }
}

@media only screen and (max-width: 575px) {
    .product-category-item {
        margin-top: 110px;
    }
}

.product-category-item:hover {
    background-color: #F1FAEE;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.15);
}

.product-category-thumb {
    display: inline-block;
    margin-top: -147px;
}

@media only screen and (max-width: 575px) {
    .product-category-thumb {
        display: block;
        text-align: center;
    }
}

.product-category-thumb img {
    max-width: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-category-thumb img {
        max-width: 100%;
    }
}

.product-category-title {
    color: var(--alternative-color);
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-category-title {
        font-size: 18px;
    }
}

.product-category-title span {
    color: var(--alternative-color);
    font-weight: 900;
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .product-category-title span {
        font-size: 20px;
    }
}

.product-category-title span:hover {
    color: var(--principal-color);
}

.product-category-desc {
    color: var(--alternative-color);
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 300;
    height: 100%;
    line-height: 28px;
    letter-spacing: 0.3em;
    margin: 0;
    position: absolute;
    right: 25px;
    text-align: center;
    text-transform: uppercase;
    top: 3px;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-category-desc {
        font-size: 18px;
        right: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-category-desc {
        font-size: 14px;
        right: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .product-category-desc {
        font-size: 14px;
        right: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .product-category-desc {
        font-size: 18px;
        right: 23px;
    }
}

.product-two-category-item {
    background-color: #ff3c0035;
    border-radius: 15px;
    display: block;
    margin-top: 25px;
    padding: 0 30px 23px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 479px) {
    .product-two-category-item {
        padding: 0 30px 18px;
    }
}

.product-two-category-item:hover {
    background-color: #ff3c0070;
    box-shadow: 5px 15px 25px rgba(0, 0, 0, 0.2);
}

.product-two-category-item:hover .product-two-category-title {
    color: #FFFFFF;
}

.product-two-category-item:hover img {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

.product-two-category-thumb {
    display: inline-block;
    margin-bottom: 33px;
    margin-top: -25px;
    max-width: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 479px) {
    .product-two-category-thumb {
        margin-bottom: 17px;
    }
}

.product-two-category-title {
    color: #1D3557;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 479px) {
    .product-two-category-title {
        font-size: 18px;
        line-height: 1.3;
    }
}

.shop-top-bar-area {
    border-bottom: 1px solid var(--principal-color);
    line-height: 1;
    padding: 17px 0;
}

@media only screen and (max-width: 767px) {
    .shop-top-bar-area {
        padding: 25px 0 15px;
    }
}

@media only screen and (min-width: 1550px),
only screen and (min-width: 1200px) and (max-width: 1549px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .shop-top-bar-area.top-bar-two {
        margin-top: -9px;
        padding: 0 0 2px;
    }

    .shop-top-bar-area.top-bar-two .shop-top-bar {
        height: 36px;
    }

    .shop-top-bar-area.top-bar-two .shop-top-bar .select-price-range {
        min-height: 20px;
    }
}

.shop-top-bar {
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .shop-top-bar {
        display: block;
        height: auto;
    }
}

.shop-top-bar .select-shoing {
    width: 23.29%;
}

@media only screen and (max-width: 767px) {
    .shop-top-bar .select-shoing {
        width: 50%;
    }
}

.shop-top-bar .select-price-range {
    width: 53.42%;
}

@media only screen and (max-width: 767px) {
    .shop-top-bar .select-price-range {
        width: 100%;
    }
}

.shop-top-bar .select-on-sale {
    width: 23.29%;
}

@media only screen and (max-width: 767px) {
    .shop-top-bar .select-on-sale {
        width: 50%;
    }
}

.select-shoing {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    border: none;
    color: #1D3557;
    cursor: pointer;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.select-shoing:after {
    display: none;
}

.select-shoing .current {
    padding: 0 28px 0 0;
    position: relative;
}

.select-shoing .current:after {
    border-color: var(--alternative-color) transparent transparent transparent;
    border-style: solid;
    border-width: 6px 5.66px 0;
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
}

.select-shoing.open .current:after {
    margin-top: 0;
}

.select-shoing option {
    font-size: 14px;
}

.select-on-sale {
    display: flex;
    justify-content: flex-end;
}

.select-on-sale h5 {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 10px;
}

.select-on-sale .select-on-sale-form {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    border: none;
    color: var(--alternative-color);
    cursor: pointer;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    height: auto;
    line-height: 1;
    margin: 0;
    padding: 0 20px 0 0;
    width: 90px;
}

.select-on-sale .select-on-sale-form:after {
    border-color: transparent var(--alternative-color) var(--alternative-color) transparent;
    border-style: solid;
    border-width: 4px 4px 4px;
    content: "";
    height: auto;
    margin-top: -6px;
    right: 0;
    width: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .select-on-sale .select-on-sale-form:after {
        margin-top: -5px;
    }
}

.select-on-sale .select-on-sale-form.open:after {
    margin-top: -3px;
}

.select-on-sale .select-on-sale-form option {
    font-size: 14px;
}

.select-price-range {
    align-items: center;
    border-left: 1px solid var(--principal-color);
    border-right: 1px solid var(--principal-color);
    display: flex;
    justify-content: center;
    min-height: 40px;
}

@media only screen and (max-width: 767px) {
    .select-price-range {
        border-top: 1px solid #f2f2f2;
        border-left: none;
        border-right: none;
        justify-content: start;
        margin-top: 18px;
        padding-top: 11px;
    }
}

@media only screen and (max-width: 575px) {
    .select-price-range {
        justify-content: space-between;
    }
}

.select-price-range .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 26px;
}

.select-price-range-slider {
    align-items: center;
    display: flex;
}

.select-price-range-slider .noUi-connect {
    background-color: var(--alternative-color);
}

.select-price-range-slider .noUi-horizontal {
    background-color: var(--principal-color);
    height: 2px;
}

.select-price-range-slider .noUi-horizontal .noUi-handle {
    background-color: var(--alternative-color);
    cursor: pointer;
    width: 13px;
    height: 13px;
    top: 50%;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
}

.select-price-range-slider .noUi-horizontal .noUi-handle.noUi-handle-lower {
    display: none;
}

.select-price-range-slider .noUi-background {
    background-color: var(--principal-color);
}

.select-price-range-slider .noUi-target {
    border-radius: 0;
    width: 130px;
}

@media only screen and (max-width: 767px) {
    .select-price-range-slider .noUi-target {
        width: 360px;
    }
}

@media only screen and (max-width: 575px) {
    .select-price-range-slider .noUi-target {
        width: 300px;
    }
}

@media only screen and (max-width: 479px) {
    .select-price-range-slider .noUi-target {
        width: 160px;
    }
}

.select-price-range-slider .slider-labels {
    margin-left: 22px;
}

.select-price-range-slider .slider-labels span {
    color: #1D3557;
    display: none;
    font-family: "Kanit-SemiBold", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    min-width: 55px;
}

#slider-range-value2 {
    display: inline-block;
}

.product-details {
    border-bottom: 1px solid var(--principal-color);
    margin-bottom: 70px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-details {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details {
        padding-bottom: 80px;
    }
}

.product-details-thumb {
    position: relative;
}

.product-details-thumb img {
    border-radius: 30px;
    width: 100%;
}

.product-details-thumb .badges {
    background-color: var(--principal-color);
    border-radius: 50px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 9px 22px 10px;
    line-height: 1;
    position: absolute;
    top: 30px;
    right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-thumb .badges {
        font-size: 14px;
        padding: 5px 18px 8px;
    }
}

.product-details-thumb .lightbox-image {
    display: block;
    position: relative;
}

.single-product-thumb-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--principal-color);
    height: 10px;
    opacity: 1;
    width: 10px;
}

.single-product-thumb-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--alternative-color);
}

.single-product-nav-slider {
    margin-top: 30px;
}

.single-product-nav-slider .nav-item {
    border-radius: 30px;
    cursor: pointer;
}

.single-product-nav-slider .nav-item.swiper-slide-thumb-active img {
    border-color: var(--principal-color);
}

.single-product-nav-slider .nav-item img {
    border: 1px solid transparent;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 575px) {
    .single-product-nav-slider .nav-item img {
        margin-bottom: 1px;
    }
}

.product-details-content {
    padding-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-content {
        margin-top: 40px;
    }
}

.product-details-content .product-details-title {
    font-size: 36px;
    margin-bottom: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-content .product-details-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
}

.product-details-content .product-details-desc {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 34px;
    margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-content .product-details-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        margin-right: 0;
    }
}

.product-details-review {
    align-items: center;
    display: flex;
    margin-bottom: 32px;
}

.product-details-review .product-review-icon {
    display: flex;
    font-size: 18px;
    color: var(--principal-color);
    letter-spacing: 5px;
    line-height: 1;
    margin-right: 18px;
}

.product-details-review .product-review-show {
    background: none;
    border: none;
    color: var(--principal-color);
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1;
}

.product-details-review .product-review-show:hover {
    color: #1D3557;
}

.product-details-size-list {
    display: flex;
    margin: 0 0 30px;
}

.product-details-size-list .size-list-check {
    line-height: 1;
    margin-right: 20px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-size-list .size-list-check {
        margin-right: 15px;
    }
}

.product-details-size-list .form-check-input {
    background-color: transparent;
    border: 2px solid var(--principal-color);
    cursor: pointer;
    box-shadow: none;
    width: 50px;
    height: 50px;
    margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-size-list .form-check-input {
        height: 35px;
        width: 35px;
    }
}

.product-details-size-list .form-check-input:checked[type=radio] {
    background-image: none;
    box-shadow: none;
    border-color: #1D3557;
}

.product-details-size-list .form-check-label {
    color: var(--alternative-color);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-size-list .form-check-label {
        font-size: 13px;
        top: calc(50% - 1px);
    }
}

@media only screen and (max-width: 575px) {
    .product-details-size-list .form-check-label {
        font-size: 13px;
        top: 50%;
    }
}

.group-product-list {
    margin-bottom: 35px;
    padding-top: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .group-product-list {
        overflow-x: auto;
    }
}

.group-product-list .info-text {
    font-size: 16px;
    display: block;
    margin-bottom: 25px;
}

@media only screen and (max-width: 479px) {
    .group-product-list .info-text {
        font-size: 14px;
    }
}

.group-product-list .info-text .text-primary {
    color: var(--principal-color);
    font-weight: 500;
}

.group-product-list table {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px dotted #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .group-product-list table {
        min-width: 400px;
    }
}

.group-product-list table tbody tr td {
    padding: 10px 10px 10px 0;
    border-width: 0 0 1px 0;
    border-style: dotted;
    border-color: #e5e5e5;
    background-color: transparent;
}

.group-product-list table tbody tr .thumb {
    width: 50px;
}

.group-product-list table tbody tr .title {
    font-size: 14px;
    text-transform: capitalize;
}

.group-product-list table tbody tr .title a {
    color: #1D3557;
}

.group-product-list table tbody tr .title a:hover {
    color: var(--principal-color);
}

.group-product-list table tbody tr input {
    cursor: pointer;
}

.group-product-list table tbody tr .price {
    padding-right: 0;
    text-align: right;
}

.group-product-list table tbody tr .price .pro-price span {
    font-size: 14px;
    font-weight: 500;
    color: #1D3557;
}

.group-product-list table tbody tr .price .pro-price .old {
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
    opacity: 0.5;
}

.product-details-color-list {
    border-top: 1px solid var(--principal-color);
    border-bottom: 1px solid var(--principal-color);
    display: flex;
    margin: 0 0 18px;
    padding: 35px 0 33px;
}

.product-details-color-list h4 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-color-list h4 {
        font-size: 14px;
    }
}

.product-details-color-list .color-list-check {
    line-height: 1;
    margin-right: 30px;
}

.product-details-color-list .form-check-input {
    cursor: pointer;
    box-shadow: none;
    width: 16px;
    height: 16px;
    background-color: #BABABA;
    border: 2px solid transparent;
    margin-right: 7px;
    margin-top: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-color-list .form-check-input {
        height: 13px;
        margin-right: 4px;
        width: 13px;
    }
}

.product-details-color-list .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%231D3557'/%3E%3C/svg%3E");
    background-size: 12px;
    box-shadow: none;
    border-color: #1D3557;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-color-list .form-check-input:checked[type=radio] {
        background-size: 11px;
    }
}

.product-details-color-list .form-check-input.bg-red {
    background-color: #FF0000;
}

.product-details-color-list .form-check-input.bg-green {
    background-color: #0ADC51;
}

.product-details-color-list .form-check-input.bg-blue {
    background-color: #0066FF;
}

.product-details-color-list .form-check-label {
    color: #1D3557;
    cursor: pointer;
    font-size: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-color-list .form-check-label {
        font-size: 15px;
    }
}

.product-details-pro-qty {
    align-items: center;
    border-bottom: 1px solid var(--principal-color);
    display: flex;
    padding-bottom: 18px;
    margin-bottom: 40px;
}

.product-details-pro-qty h4 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-pro-qty h4 {
        font-size: 14px;
    }
}

.pro-qty {
    display: inline-block;
    position: relative;
}

.pro-qty input {
    width: 100px;
    height: 50px;
    font-size: 18px;
    border: 2px solid var(--principal-color);
    border-radius: 35px;
    color: #1D3557;
    padding: 0 25px 0;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .pro-qty input {
        font-size: 16px;
        height: 45px;
    }
}

.pro-qty .qty-btn {
    cursor: pointer;
    position: absolute;
    line-height: 21px;
    color: #1D3557;
    top: 50%;
    transform: translate(0%, -50%);
    font-size: 18px;
    text-align: center;
    transition: all 0.5s ease 0s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pro-qty .qty-btn:hover {
    color: var(--principal-color);
}

.pro-qty .dec {
    right: 0;
    padding-right: 18px;
}

.pro-qty .inc {
    left: 0;
    padding-left: 18px;
}

.product-details-action {
    align-items: center;
    display: flex;
    margin-top: 33px;
}

.product-details-action .product-action-btn {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-right: 30px;
    padding: 10px 26px;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-action .product-action-btn {
        border-width: 2px;
        font-size: 14px;
        padding: 13px 23px;
    }
}

@media only screen and (max-width: 575px) {
    .product-details-action .product-action-btn {
        border-radius: 30px;
        font-size: 13px;
        letter-spacing: 0.1em;
        padding: 12px 25px;
    }
}

.product-details-action .product-action-btn:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.product-details-action .product-action-wishlist {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50%;
    box-shadow: none;
    color: var(--principal-color);
    font-size: 22px;
    height: 54px;
    line-height: 52px;
    text-align: center;
    width: 54px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-action .product-action-wishlist {
        border-width: 2px;
        font-size: 18px;
    }
}

.product-details-action .product-action-wishlist:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.product-details-price {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-details-price {
        font-size: 36px;
    }
}

.product-details-price .price-old {
    color: var(--alternative-color);
    font-size: 18px;
    font-weight: 400;
    margin-left: 11px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    -webkit-text-decoration-color: rgba(69, 123, 157, 0.35);
    text-decoration-color: rgba(69, 123, 157, 0.35);
}

.product-details-nav {
    display: flex;
    margin-bottom: 49px;
}

.product-details-nav .nav-link {
    color: var(--principal-color);
    padding: 0;
    border: none;
    background-color: transparent;
    line-height: 1.2;
    font-family: "Kanit-SemiBold", serif;
    font-weight: 600;
    font-size: 24px;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .product-details-nav .nav-link {
        font-size: 20px;
    }
}

.product-details-nav .nav-link.active {
    color: #1D3557;
}

.product-details-nav .nav-link+.nav-link {
    margin-left: 62px;
}

@media only screen and (max-width: 575px) {
    .product-details-nav .nav-link+.nav-link {
        margin-left: 35px;
    }
}

.product-review-item {
    background: #FAFAFA;
    border-radius: 30px;
    margin-bottom: 15px;
    padding: 35px 30px 30px;
    position: relative;
}

.product-review-item .product-review-top {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .product-review-item .product-review-top {
        display: block;
    }
}

.product-review-item .product-review-thumb {
    margin-right: 20px;
}

@media only screen and (max-width: 575px) {
    .product-review-item .product-review-thumb {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.product-review-item .product-review-thumb img {
    border-radius: 50%;
}

.product-review-item .product-review-content {
    align-items: center;
    display: flex;
}

@media only screen and (max-width: 575px) {
    .product-review-item .product-review-content {
        display: block;
    }
}

.product-review-item .product-reviewer-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-review-item .product-reviewer-name {
        font-size: 14px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .product-review-item .product-reviewer-name {
        font-size: 16px;
        margin-bottom: 8px;
        margin-right: 0;
    }
}

.product-review-item .product-reviewer-designation {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 44px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-review-item .product-reviewer-designation {
        font-size: 14px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .product-review-item .product-reviewer-designation {
        font-size: 12px;
        margin-bottom: 22px;
        margin-right: 0;
    }
}

.product-review-item .product-review-icon {
    display: flex;
    font-size: 13px;
    color: var(--alternative-color);
    letter-spacing: 4px;
    line-height: 1;
}

.product-review-item .desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .product-review-item .desc {
        font-size: 13px;
        line-height: 1.6;
    }
}

.product-review-item .review-reply {
    border-radius: 0;
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 53px;
    right: 50px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-review-item .review-reply {
        right: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .product-review-item .review-reply {
        right: 38px;
        top: 50px;
    }
}

.product-review-item .review-reply:hover {
    color: var(--principal-color);
}

.product-review-reply {
    margin-left: 30px;
    margin-right: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-reviews-form-wrap {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 575px) {
    .product-reviews-form-wrap {
        margin-top: 60px;
    }
}

.product-reviews-form .form-input-item {
    margin-bottom: 45px;
}

.product-reviews-form .form-control {
    box-shadow: none;
    color: #1D3557;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 0;
    resize: none;
    border-width: 0 0 1px 0;
    border-color: var(--principal-color);
    border-style: solid;
    padding: 0 0 45px 0;
}

.product-reviews-form .form-control::-webkit-input-placeholder {
    color: #1D3557;
}

.product-reviews-form .form-control:-moz-placeholder {
    color: #1D3557;
}

.product-reviews-form .form-control::-moz-placeholder {
    color: #1D3557;
}

.product-reviews-form .form-control:-ms-input-placeholder {
    color: #1D3557;
}

.product-reviews-form textarea.form-control {
    min-height: 113px;
    padding: 0 0 15px 0;
}

@media only screen and (max-width: 575px) {
    .product-reviews-form textarea.form-control {
        min-height: 90px;
    }
}

.product-reviews-form [type=submit] {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 23px;
    padding: 13px 35px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-reviews-form [type=submit] {
        border-width: 2px;
        font-size: 14px;
        margin-top: 0;
    }
}

.product-reviews-form [type=submit]:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.product-reviews-form .form-ratings-item {
    display: flex;
    align-items: center;
}

.product-reviews-form .form-ratings-item .title {
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    margin: 0 0 0 25px;
}

@media only screen and (max-width: 575px) {
    .product-reviews-form .form-ratings-item .title {
        font-size: 16px;
    }
}

.product-reviews-form .product-ratingsform-form-icon {
    display: flex;
    cursor: pointer;
    font-size: 16px;
    color: var(--alternative-color);
    letter-spacing: 5px;
    line-height: 1;
}

.product-reviews-form .product-ratingsform-form-icon:hover {
    color: var(--principal-color);
}

.product-reviews-form .product-ratingsform-form-icon i {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product-reviews-form .product-ratingsform-form-icon i:hover {
    color: var(--principal-color);
}

.product-reviews-form .product-ratingsform-form-icon i:hover+i {
    color: var(--alternative-color);
}

.product-reviews-form .product-ratingsform-form-icon i:hover+i+i {
    color: var(--alternative-color);
}

.product-reviews-form .product-ratingsform-form-icon i:hover+i+i+i {
    color: var(--alternative-color);
}

.product-reviews-form .product-ratingsform-form-icon i:hover+i+i+i+i {
    color: var(--alternative-color);
}

.product-form-title {
    font-size: 24px;
    margin-bottom: 79px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-form-title {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .product-form-title {
        margin-bottom: 50px;
    }
}

.product-details-info-wrap {
    border-bottom: 1px solid var(--principal-color);
    margin-bottom: 32px;
    padding-bottom: 22px;
}

.product-details-info-wrap li {
    color: var(--alternative-color);
    font-size: 15px;
    list-style: none;
    margin: 0 0 13px;
    display: flex;
}

.product-details-info-wrap li span {
    color: #1D3557;
    display: inline-block;
    font-weight: 500;
    margin: 0 26px 0 0;
    min-width: 85px;
}

.cart-table-wrap .cart-table table {
    width: 100%;
}

.cart-table-wrap .cart-table table thead {
    background-color: #f3f3f3;
}

.cart-table-wrap .cart-table table thead>tr th {
    color: var(--alternative-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 14px 23px 14px;
}

.cart-table-wrap .cart-table table thead>tr th.width-thumbnail {
    min-width: 130px;
}

.cart-table-wrap .cart-table table thead>tr th.width-name {
    min-width: 400px;
}

.cart-table-wrap .cart-table table thead>tr th.width-price {
    min-width: 162px;
}

.cart-table-wrap .cart-table table thead>tr th.width-quantity {
    min-width: 170px;
}

.cart-table-wrap .cart-table table thead>tr th.width-subtotal {
    min-width: 145px;
}

.cart-table-wrap .cart-table table thead>tr th.width-remove {
    min-width: 101px;
}

.cart-table-wrap .cart-table table tbody>tr {
    border-bottom: 1px solid #e5e5e5;
}

.cart-table-wrap .cart-table table tbody>tr td {
    padding: 23px;
}

.cart-table-wrap .cart-table table tbody>tr td.product-thumbnail a {
    display: block;
}

.cart-table-wrap .cart-table table tbody>tr td.product-thumbnail a img {
    width: 80px;
}

.cart-table-wrap .cart-table table tbody>tr td.product-name h5 {
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: #1D3557;
}

.cart-table-wrap .cart-table table tbody>tr td.product-name h5 a {
    color: #1D3557;
}

.cart-table-wrap .cart-table table tbody>tr td.product-name h5 a:hover {
    color: var(--principal-color);
}

.cart-table-wrap .cart-table table tbody>tr td.product-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--alternative-color);
}

.cart-table-wrap .cart-table table tbody>tr td.product-total span {
    font-size: 16px;
    font-weight: 500;
    color: #1D3557;
}

.cart-table-wrap .cart-table table tbody>tr td.cart-quality .product-details-quality input {
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #1D3557;
    width: 95px;
    height: 40px;
    font-weight: 500;
    padding: 0 10px;
}

.cart-table-wrap .cart-table table tbody>tr td.cart-quality .product-details-quality input::-webkit-inner-spin-button {
    cursor: pointer;
    opacity: 1;
}

.cart-table-wrap .cart-table table tbody>tr td.cart-quality .product-details-quality input::-webkit-outer-spin-button {
    cursor: pointer;
    opacity: 1;
}

.cart-table-wrap .cart-table table tbody>tr td.product-remove a {
    font-size: 18px;
    color: var(--principal-color);
    display: inline-block;
}

.cart-table-wrap .cart-table table tbody>tr td.product-remove a:hover {
    color: #1D3557;
}

.cart-calculate-discount-wrap h4 {
    font-size: 20px;
    margin: 0 0 30px;
}

.cart-shiping-update-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .cart-shiping-update-wrapper {
        margin: 40px 0 60px;
    }
}

@media only screen and (max-width: 479px) {
    .cart-shiping-update-wrapper {
        display: block;
    }
}

.cart-shiping-update-wrapper .cart-shiping-btn a {
    font-size: 14px;
    background-color: var(--principal-color);
}

@media only screen and (max-width: 479px) {
    .cart-shiping-update-wrapper .cart-shiping-btn a {
        display: block;
        width: 100%;
    }
}

.cart-shiping-update-wrapper .cart-shiping-btn a.btn {
    border-radius: 3px;
    padding: 11px 20px;
}

.cart-shiping-update-wrapper .cart-shiping-btn a.btn-link {
    background-color: #1D3557;
    border: none;
    color: #FFFFFF;
    text-decoration: none;
}

.cart-shiping-update-wrapper .cart-shiping-btn a i {
    font-size: 16px;
    margin-right: 2px;
    position: relative;
    top: 0;
}

.cart-shiping-update-wrapper .cart-shiping-btn.continure-btn a {
    background-color: var(--principal-color);
}

@media only screen and (max-width: 479px) {
    .cart-shiping-update-wrapper .cart-shiping-btn.continure-btn a {
        margin-bottom: 15px;
    }
}

.cart-shiping-update-wrapper .cart-shiping-btn.continure-btn a:hover {
    background-color: #1D3557;
}

.cart-shiping-update-wrapper .cart-shiping-btn.update-btn a {
    background-color: #1D3557;
}

.cart-shiping-update-wrapper .cart-shiping-btn.update-btn a:hover {
    background-color: var(--principal-color);
}

.select-style {
    margin-bottom: 15px;
}

.select-style .select-active {
    border: solid var(--principal-color);
    border-width: 0 0 1px 0;
    border-radius: 0;
    width: 100%;
    height: 52px;
    line-height: 52px;
    color: #1D3557;
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 20px;
}

@media only screen and (max-width: 767px) {
    .select-style .select-active {
        height: 42px;
        line-height: 42px;
    }
}

.select-style .select2-container--default {
    display: block;
}

.select-style .select2-container--default .select2-selection--single {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 52px;
    line-height: 52px;
}

.select-style .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
    right: 10px;
}

.select-style .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1D3557;
    line-height: 52px;
    padding-left: 16px;
    padding-right: 20px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e5e5;
    height: 52px;
    background-color: transparent;
}

.calculate-discount-content p {
    font-size: 14px;
    margin-bottom: 18px;
    display: block;
    color: var(--alternative-color);
}

.calculate-discount-content .input-style {
    margin-bottom: 15px;
}

.calculate-discount-content .input-style input {
    color: #1D3557;
    height: 52px;
    border: solid var(--principal-color);
    border-width: 0 0 1px 0;
    background-color: transparent;
    padding: 2px 16px 2px 0;
    width: 100%;
}

.calculate-discount-content .input-style input::-webkit-input-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

.calculate-discount-content .input-style input:-moz-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

.calculate-discount-content .input-style input::-moz-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

.calculate-discount-content .input-style input:-ms-input-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

.calculate-discount-content .input-style input:focus {
    border-color: #1D3557;
}

.calculate-discount-content .calculate-discount-btn a {
    background-color: #1D3557;
    font-size: 14px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .calculate-discount-content .calculate-discount-btn a {
        font-size: 14px;
    }
}

.calculate-discount-content .calculate-discount-btn a.btn {
    border-radius: 3px;
    padding: 11px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .calculate-discount-content .calculate-discount-btn a.btn {
        padding: 11px 19px;
    }
}

.calculate-discount-content .calculate-discount-btn a.btn-link {
    border: none;
    text-decoration: none;
    color: #FFFFFF;
}

.calculate-discount-content .calculate-discount-btn a:hover {
    background-color: var(--principal-color);
}

.grand-total-wrap .grand-total-content {
    padding: 30px;
    padding: 34px 30px 33px;
    background-color: #f5f5f5;
}

.grand-total-wrap .grand-total-content h3 {
    font-size: 16px;
    margin: 0;
    border-bottom: 1px solid var(--principal-color);
    display: flex;
    justify-content: space-between;
    padding: 0 0 18px;
}

.grand-total-wrap .grand-total-content h3 span {
    font-size: 16px;
    font-weight: 600;
    color: var(--principal-color);
}

.grand-total-wrap .grand-total-content .grand-shipping {
    padding: 38px 0 32px;
}

.grand-total-wrap .grand-total-content .grand-shipping>span {
    font-size: 16px;
}

.grand-total-wrap .grand-total-content .grand-shipping ul {
    padding: 17px 0 0px;
    margin: 0;
}

.grand-total-wrap .grand-total-content .grand-shipping ul li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.grand-total-wrap .grand-total-content .grand-shipping ul li:last-child {
    margin-bottom: 0;
}

.grand-total-wrap .grand-total-content .grand-shipping ul li input {
    width: auto;
    height: auto;
}

.grand-total-wrap .grand-total-content .grand-shipping ul li input:hover {
    cursor: pointer;
}

.grand-total-wrap .grand-total-content .grand-shipping ul li label {
    font-size: 16px;
    font-weight: 400;
    color: #1D3557;
    margin-left: 10px;
}

.grand-total-wrap .grand-total-content .shipping-country {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 35px;
    margin-bottom: 30px;
}

.grand-total-wrap .grand-total-content .shipping-country p {
    display: block;
    padding: 10px 20px;
    background-color: #4bb1cf;
    font-weight: 400;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    border-left: 6px solid #3198b6;
}

.grand-total-wrap .grand-total h4 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.grand-total-wrap .grand-total h4 span {
    color: var(--principal-color);
}

.grand-total-wrap .grand-total-btn {
    margin-top: 24px;
}

.grand-total-wrap .grand-total-btn a {
    font-size: 15px;
    text-transform: uppercase;
    background-color: var(--principal-color);
    display: block;
    font-weight: 500;
}

.grand-total-wrap .grand-total-btn a.btn {
    padding: 15px 20px;
    border-radius: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .grand-total-wrap .grand-total-btn a.btn {
        padding: 14px 10px;
    }
}

.grand-total-wrap .grand-total-btn a.btn-link {
    text-decoration: none;
    color: #FFFFFF;
}

.grand-total-wrap .grand-total-btn a:hover {
    background-color: #1D3557;
}

.checkout-coupon-wrap>p {
    background-color: #f3f3f3;
    padding: 1.188rem 1.25rem;
    border-radius: 3px;
    position: relative;
}

.checkout-coupon-wrap>p.cart-page-title {
    font-size: 14px;
    color: #000000;
}

.checkout-coupon-wrap>p i {
    font-size: 13px;
    position: relative;
    top: 1px;
}

.checkout-coupon-wrap>p a {
    color: #4bb1cf;
    margin-left: 6px;
    font-size: 14px;
}

.checkout-coupon-wrap .checkout-coupon-content form p {
    color: #666;
    margin: 0;
}

.checkout-coupon-wrap .checkout-coupon-content form input {
    height: 55px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #495057;
    font-size: 15px;
    padding: 2px 16px;
    margin: 25px 0 15px;
    width: 100%;
}

.checkout-coupon-wrap .checkout-coupon-content form button {
    border: none;
    background-color: var(--alternative-color);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 18px 35px 17px;
    position: relative;
    top: -2px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.checkout-coupon-wrap .checkout-coupon-content form button:hover {
    background-color: var(--principal-color);
}

.billing-info-wrap h3 {
    font-size: 20px;
    margin: 0 0 23px;
}

.billing-info-wrap .billing-info label {
    color: #000000;
    display: block;
    margin: 0 0 15px;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info label {
        margin-bottom: 10px;
    }
}

.billing-info-wrap .billing-info label abbr {
    color: var(--alternative-color);
}

.billing-info-wrap .billing-info input {
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #1D3557;
    font-size: 14px;
    padding: 2px 16px;
}

.billing-info-wrap .billing-info input::-webkit-input-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info input::-webkit-input-placeholder {
        font-size: 12px;
    }
}

.billing-info-wrap .billing-info input:-moz-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info input:-moz-placeholder {
        font-size: 12px;
    }
}

.billing-info-wrap .billing-info input::-moz-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info input::-moz-placeholder {
        font-size: 12px;
    }
}

.billing-info-wrap .billing-info input:-ms-input-placeholder {
    color: #1D3557;
    font-size: 14px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info input:-ms-input-placeholder {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .billing-info input {
        height: 42px;
    }
}

.billing-info-wrap .billing-info input:focus {
    border-color: #1D3557;
}

.billing-info-wrap .billing-info input.billing-address {
    margin-bottom: 20px;
}

.billing-info-wrap .billing-select .select-style .select-active {
    border-color: #e5e5e5;
    border-width: 1px;
    padding-left: 16px;
}

.billing-info-wrap .billing-select label {
    color: #000000;
    display: block;
    margin: 0 0 15px;
}

.billing-info-wrap .billing-select label abbr {
    color: #f33;
}

.billing-info-wrap .checkout-account input {
    border: 1px solid #e5e5e5;
    display: inline-block;
    float: left;
    height: 10px;
    width: 10px;
    position: relative;
    top: 10px;
    color: #495057;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .billing-info-wrap .checkout-account input {
        top: 8px;
    }
}

.billing-info-wrap .checkout-account input.checkout-toggle {
    cursor: pointer;
}

.billing-info-wrap .checkout-account span {
    margin: 0 0 0 12px;
    font-size: 14px;
}

.billing-info-wrap .additional-info-wrap {
    margin: 19px 0 -5px;
}

.billing-info-wrap .additional-info-wrap label {
    color: #000000;
    display: block;
    margin: 0 0 15px;
}

.billing-info-wrap .additional-info-wrap textarea {
    width: 100%;
    min-height: 92px;
    background-color: transparent;
    padding: 12px 16px;
    color: #1D3557;
    font-size: 14px;
    border: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .additional-info-wrap textarea::-webkit-input-placeholder {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .additional-info-wrap textarea:-moz-placeholder {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .additional-info-wrap textarea::-moz-placeholder {
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .billing-info-wrap .additional-info-wrap textarea:-ms-input-placeholder {
        font-size: 12px;
    }
}

.billing-info-wrap .additional-info-wrap textarea:focus {
    border-color: #1D3557;
}

.checkout-coupon-content,
.different-address {
    display: none;
}

.your-order-area h3 {
    font-size: 20px;
    margin: 0 0 21px;
}

.your-order-area .your-order-wrap {
    background-color: #f6f6f6;
    padding: 36px;
}

@media only screen and (max-width: 575px) {
    .your-order-area .your-order-wrap {
        padding: 30px 20px;
    }
}

.your-order-area .your-order-wrap .your-order-title h4 {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e5e5e5;
}

.your-order-area .your-order-wrap .your-order-product {
    padding-bottom: 21px;
}

.your-order-area .your-order-wrap .your-order-product ul {
    margin: 0;
}

.your-order-area .your-order-wrap .your-order-product ul li {
    display: flex;
    justify-content: space-between;
    margin: 0 0 16px;
}

.your-order-area .your-order-wrap .your-order-product ul li:last-child {
    margin: 0 0 0;
}

.your-order-area .your-order-wrap .your-order-product ul li span {
    font-size: 16px;
    color: var(--principal-color);
    font-weight: 500;
}

.your-order-area .your-order-wrap .your-order-subtotal {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
}

.your-order-area .your-order-wrap .your-order-subtotal h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.your-order-area .your-order-wrap .your-order-subtotal h3 span {
    font-size: 18px;
    font-weight: 600;
    color: var(--principal-color);
}

.your-order-area .your-order-wrap .your-order-shipping {
    padding: 21px 0 22px;
}

.your-order-area .your-order-wrap .your-order-shipping>span {
    font-size: 15px;
    font-weight: 500;
}

.your-order-area .your-order-wrap .your-order-shipping ul {
    padding: 17px 0 0px;
    margin: 0;
}

.your-order-area .your-order-wrap .your-order-shipping ul li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.your-order-area .your-order-wrap .your-order-shipping ul li:last-child {
    margin-bottom: 0;
}

.your-order-area .your-order-wrap .your-order-shipping ul li input {
    cursor: pointer;
    width: auto;
    height: auto;
}

.your-order-area .your-order-wrap .your-order-shipping ul li label {
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}

.your-order-area .your-order-wrap .your-order-total {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
}

.your-order-area .your-order-wrap .your-order-total h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.your-order-area .your-order-wrap .your-order-total h3 span {
    font-size: 22px;
    font-weight: 600;
    color: var(--principal-color);
}

.your-order-area .your-order-wrap .payment-method {
    padding: 40px 0 10px;
}

.your-order-area .your-order-wrap .payment-method .sin-payment {
    margin-bottom: 25px;
}

.your-order-area .your-order-wrap .payment-method .sin-payment input {
    cursor: pointer;
    width: auto;
    display: inline-block;
    float: left;
    height: auto;
    margin-top: 6px;
}

.your-order-area .your-order-wrap .payment-method .sin-payment label {
    color: #1D3557;
    cursor: pointer;
    font-size: 15px;
    margin: 0px 0 0 21px;
    display: flex;
    align-items: center;
}

.your-order-area .your-order-wrap .payment-method .sin-payment label img {
    max-width: 140px;
    display: inline-block;
    margin: 0 5px;
}

.your-order-area .your-order-wrap .payment-method .sin-payment label a {
    color: #000000;
    text-decoration: underline;
}

.your-order-area .your-order-wrap .payment-method .sin-payment label a:hover {
    color: var(--principal-color);
}

.your-order-area .your-order-wrap .payment-method .sin-payment .payment-box {
    margin: 6px 0 0 21px;
    display: none;
}

.your-order-area .your-order-wrap .payment-method .sin-payment .payment-box p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.your-order-area .your-order-wrap .payment-condition {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0 0;
    margin: 0 0 10px;
}

.your-order-area .your-order-wrap .payment-condition p {
    font-size: 14px;
    line-height: 1.9;
}

.your-order-area .your-order-wrap .payment-condition p a {
    color: var(--principal-color);
    font-size: 14px;
}

.your-order-area .your-order-wrap .payment-condition p a:hover {
    text-decoration: underline;
}

.your-order-area .your-order-wrap .payment-checkbox {
    display: flex;
    align-items: center;
}

.your-order-area .your-order-wrap .payment-checkbox input {
    width: auto;
    height: auto;
}

.your-order-area .your-order-wrap .payment-checkbox span {
    color: #888;
    font-size: 14px;
    margin-left: 10px;
}

.your-order-area .your-order-wrap .payment-checkbox span a {
    color: var(--principal-color);
    font-size: 14px;
}

.your-order-area .your-order-wrap .payment-checkbox span a:hover {
    text-decoration: underline;
}

.your-order-area .place-order {
    margin-top: 20px;
}

.your-order-area .place-order a {
    padding: 18px 35px 18px;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    text-align: center;
    background-color: var(--principal-color);
}

@media only screen and (max-width: 767px) {
    .your-order-area .place-order a {
        font-size: 16px;
    }
}

.your-order-area .place-order a:hover {
    background-color: var(--alternative-color);
}

.wishlist-table-content .table-content table {
    width: 100%;
}

.wishlist-table-content .table-content table thead {
    background-color: #f3f3f3;
}

.wishlist-table-content .table-content table thead>tr th {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 12px 14px;
}

.wishlist-table-content .table-content table thead>tr th.width-thumbnail {
    min-width: 130px;
}

.wishlist-table-content .table-content table thead>tr th.width-name {
    min-width: 300px;
}

.wishlist-table-content .table-content table thead>tr th.width-price {
    min-width: 162px;
}

.wishlist-table-content .table-content table thead>tr th.width-stock-status {
    min-width: 170px;
}

.wishlist-table-content .table-content table thead>tr th.width-subtotal {
    min-width: 145px;
}

.wishlist-table-content .table-content table thead>tr th.width-remove {
    min-width: 50px;
}

.wishlist-table-content .table-content table tbody>tr {
    border-bottom: 1px solid #e5e5e5;
}

.wishlist-table-content .table-content table tbody>tr td {
    padding: 23px 12px;
}

.wishlist-table-content .table-content table tbody>tr td.product-thumbnail a {
    display: block;
}

.wishlist-table-content .table-content table tbody>tr td.product-thumbnail a img {
    width: 80px;
}

.wishlist-table-content .table-content table tbody>tr td.product-name h5 {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
}

.wishlist-table-content .table-content table tbody>tr td.product-name h5 a {
    color: #000000;
}

.wishlist-table-content .table-content table tbody>tr td.product-name h5 a:hover {
    color: var(--principal-color);
}

.wishlist-table-content .table-content table tbody>tr td.product-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--alternative-color);
}

.wishlist-table-content .table-content table tbody>tr td.stock-status span {
    font-size: 14px;
    font-weight: 500;
    color: var(--alternative-color);
}

.wishlist-table-content .table-content table tbody>tr td.stock-status span i {
    font-size: 11px;
}

.wishlist-table-content .table-content table tbody>tr td.product-remove a {
    font-size: 28px;
    color: #c3c3c3;
    display: inline-block;
}

.wishlist-table-content .table-content table tbody>tr td.product-remove a:hover {
    color: var(--principal-color);
}

.wishlist-table-content .table-content table tbody>tr td.wishlist-cart a {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    padding: 11px 16px 10px;
    line-height: 1;
    white-space: pre;
    background-color: var(--principal-color);
}

.wishlist-table-content .table-content table tbody>tr td.wishlist-cart a:hover {
    background-color: #1D3557;
}

.compare-table .table tbody tr {
    margin-bottom: 20px;
}

.compare-table .table tbody tr td {
    padding: 20px 20px;
    vertical-align: middle;
    border-color: #e5e5e5;
    color: #000000;
}

.compare-table .table tbody tr td.first-column {
    min-width: 175px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.compare-table .table tbody tr td.product-image-title {
    min-width: 310px;
    vertical-align: bottom;
    text-align: left;
}

.compare-table .table tbody tr td.product-image-title .image {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    display: block;
}

.compare-table .table tbody tr td.product-image-title .image img {
    width: 100%;
}

.compare-table .table tbody tr td.product-image-title .category {
    float: left;
    clear: both;
    color: var(--alternative-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.compare-table .table tbody tr td.product-image-title .title {
    color: #000000;
    clear: both;
    float: left;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 5px;
    text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
    color: var(--principal-color);
}

.compare-table .table tbody tr td.pro-desc p {
    margin: 0;
    line-height: 30px;
    text-align: left;
}

.compare-table .table tbody tr td a.check-btn {
    color: #000000;
    font-size: 15px;
}

.compare-table .table tbody tr td a.check-btn:hover {
    color: var(--principal-color);
}

.compare-table .table tbody tr td.pro-price,
.compare-table .table tbody tr td.pro-color,
.compare-table .table tbody tr td.pro-stock {
    font-size: 15px;
    font-weight: 400;
    color: var(--alternative-color);
}

.compare-table .table tbody tr td.pro-remove button {
    border: none;
    background-color: transparent;
    color: var(--principal-color);
    padding: 0;
    cursor: pointer;
}

.compare-table .table tbody tr td.pro-remove button:hover {
    color: #1D3557;
}

.compare-table .table tbody tr td.pro-remove button i {
    font-size: 18px;
}

.compare-table .table tbody tr td.pro-ratting i {
    color: var(--principal-color);
}

.product-cart-view-modal .modal-dialog {
    max-width: 1180px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .product-cart-view-modal .modal-dialog {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-cart-view-modal .modal-dialog {
        max-width: 540px;
    }
}

.product-cart-view-modal .modal-body {
    padding: 30px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .product-cart-view-modal .modal-body {
        padding: 30px 15px 60px;
    }
}

.product-cart-view-modal .modal-content {
    border: none;
}

.product-cart-view-modal .product-single-info {
    padding-bottom: 0;
    padding-top: 20px;
    margin-left: 0;
    margin-bottom: 0;
}

.product-cart-view-modal .product-single-info .prices {
    margin: 20px 0 20px 0;
}

.product-cart-view-modal .product-single-info .desc {
    margin-bottom: 20px;
}

.product-cart-view-modal .btn-close {
    background-color: rgba(168, 218, 220, 0.5);
    box-shadow: none;
    border: none;
    background-image: none;
    font-size: 30px;
    line-height: 1;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 2;
    width: 30px;
    height: 30px;
    color: var(--alternative-color);
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product-cart-view-modal .btn-close:hover {
    background-color: var(--principal-color);
    color: var(--principal-color);
}

.single-product-quick-view-slider .thumb-item img {
    width: 100%;
}

.single-product-quick-view-slider .swiper-button-next,
.single-product-quick-view-slider .swiper-button-prev {
    background-color: transparent;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    top: 50%;
    width: 50px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

@media only screen and (max-width: 479px) {

    .single-product-quick-view-slider .swiper-button-next,
    .single-product-quick-view-slider .swiper-button-prev {
        display: none;
    }
}

.single-product-quick-view-slider .swiper-button-next:before,
.single-product-quick-view-slider .swiper-button-prev:before {
    color: #000000;
    font-family: "FontAwesome";
    font-size: 48px;
    left: -2px;
    line-height: 1;
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.single-product-quick-view-slider .swiper-button-next:after,
.single-product-quick-view-slider .swiper-button-prev:after {
    display: none;
}

.single-product-quick-view-slider .swiper-button-next:hover,
.single-product-quick-view-slider .swiper-button-prev:hover {
    color: var(--principal-color);
}

.single-product-quick-view-slider .swiper-button-next:hover:before,
.single-product-quick-view-slider .swiper-button-prev:hover:before {
    color: var(--principal-color);
}

.single-product-quick-view-slider .swiper-button-prev {
    left: 20px;
}

.single-product-quick-view-slider .swiper-button-prev:before {
    content: "\f104";
}

.single-product-quick-view-slider .swiper-button-next {
    right: 20px;
}

.single-product-quick-view-slider .swiper-button-next:before {
    content: "\f105";
    left: auto;
    right: -2px;
}

.product-action-modal .modal-content {
    border-radius: 0 0 5px 5px;
}

.product-action-modal .product-action-view-content .btn-close {
    background-image: none;
    box-shadow: none;
    border-radius: 5px 5px 0 0;
    font-size: 18px;
    width: 100%;
    height: 32px;
    line-height: 18px;
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: var(--principal-color);
    color: #FFFFFF;
    opacity: 1;
    text-align: center;
    padding: 0;
    margin: 0;
}

.product-action-modal .product-action-view-content .modal-action-messages {
    font-size: 15px;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 17px;
}

.product-action-modal .product-action-view-content .modal-action-messages i {
    position: relative;
    top: 0px;
    margin-right: 5px;
}

.product-action-modal .product-action-view-content .modal-action-product .thumb img {
    border-radius: 8px;
    width: 100%;
}

.product-action-modal .product-action-view-content .modal-action-product .product-name {
    margin: 18px 0 2px;
    font-size: 18px;
    text-align: center;
}


/*----------------------------------------*/


/*  Blog Post CSS
/*----------------------------------------*/

.post-item .thumb {
    border-radius: 30px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .post-item .thumb {
        border-radius: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .post-item .thumb {
        border-radius: 30px;
    }
}

.post-item .thumb img {
    transition: all 0.5s ease 0s;
    width: 100%;
}

.post-item .thumb:before {
    background-color: rgba(255, 255, 255, 0.09);
    content: "";
    height: 200%;
    left: -280px;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 1;
}

.post-item .thumb:after {
    background-color: rgba(255, 255, 255, 0.09);
    content: "";
    height: 200%;
    left: 180%;
    position: absolute;
    top: -50%;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    z-index: 1;
}

.post-item .content {
    margin-top: 33px;
    padding-right: 20px;
}

@media only screen and (max-width: 767px) {
    .post-item .content {
        margin-top: 18px;
    }
}

.post-item .content .post-category {
    color: #1D3557;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-item .content .post-category {
        font-size: 13px;
    }
}

.post-item .content .post-category:hover {
    color: var(--principal-color);
}

.post-item .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    margin-top: 1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .post-item .content .title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .post-item .content .title {
        font-size: 16px;
    }
}

.post-item .content .title a {
    color: #1D3557;
}

.post-item .content .title a:hover {
    color: var(--principal-color);
}

.post-item .content .meta {
    align-items: center;
    display: flex;
}

.post-item .content .meta .author-info {
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-item .content .meta .author-info {
        font-size: 16px;
    }
}

.post-item .content .meta .author-info .author-thumb {
    border-radius: 50%;
    margin-right: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-item .content .meta .author-info .author-thumb {
        max-width: 50px;
    }
}

.post-item .content .meta .author-info a {
    color: #1D3557;
}

.post-item .content .meta .author-info a:hover {
    color: var(--principal-color);
}

.post-item .content .meta .post-date {
    font-size: 14px;
    font-weight: 400;
    margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-item .content .meta .post-date {
        margin-left: 20px;
    }
}

.post-item .content .meta .post-date a {
    color: #1D3557;
}

.post-item .content .meta .post-date a:hover {
    color: var(--principal-color);
}

.post-item .content .post-date-two {
    color: #1D3557;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-item .content .post-date-two {
        font-size: 13px;
    }
}

.post-item .content .post-date-two:hover {
    color: var(--principal-color);
}

.post-item:hover .thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.post-item:hover .thumb:before {
    left: 180%;
}

.post-item:hover .thumb:after {
    left: -280px;
}

.post-items-two .post-item .content .title {
    font-size: 22px;
    line-height: 1.5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-items-two .post-item .content .title {
        font-size: 18px;
    }
}

.post-two-item {
    overflow: hidden;
    position: relative;
}

.post-two-item .thumb {
    border-radius: 30px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.post-two-item .thumb img {
    transition: all 0.5s ease 0s;
    width: 100%;
}

.post-two-item .content {
    /* background-color: #FFFFFF; */
    bottom: 0;
    max-width: 330px;
    padding: 42px 30px 8px;
    position: absolute;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content {
        padding: 25px 30px 8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content {
        max-width: 270px;
    }
}

.post-two-item .content .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .post-two-item .content .title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .title {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

.post-two-item .content .title a {
    color: #1D3557;
}

.post-two-item .content .title a:hover {
    color: var(--principal-color);
}

.post-two-item .content .meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.post-two-item .content .meta .author-thumb {
    border-radius: 50%;
    min-width: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .post-two-item .content .meta .author-thumb {
        max-width: 50px;
        min-width: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .meta .author-thumb {
        max-width: 40px;
        min-width: 40px;
    }
}

.post-two-item .content .meta .author-info {
    color: #1D3557;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .meta .author-info {
        font-size: 14px;
    }
}

.post-two-item .content .meta .author-info .author-name {
    color: #1D3557;
    display: block;
    font-weight: 600;
    margin-bottom: 11px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .meta .author-info .author-name {
        margin-bottom: 7px;
    }
}

.post-two-item .content .meta .author-info .author-name:hover {
    color: var(--principal-color);
}

.post-two-item .content .meta .author-info span {
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .meta .author-info span {
        font-size: 12px;
    }
}

.post-two-item .content .meta .post-date {
    color: #1D3557;
    font-size: 14px;
    display: inline-block;
    place-self: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .meta .post-date {
        font-size: 13px;
        line-height: 1.4;
    }
}

.post-two-item .content .meta .post-date:hover {
    color: var(--principal-color);
}

.post-two-item .content .btn-blog-link {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-weight: 500;
    font-size: 14px;
    float: right;
    line-height: 1;
    margin-top: 21px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item .content .btn-blog-link {
        font-size: 13px;
    }
}

.post-two-item .content .btn-blog-link:hover {
    color: var(--principal-color);
}

.post-two-item .content .btn-blog-link:hover:after {
    width: 60px;
}

.post-two-item .content .btn-blog-link:before {
    background-color: var(--alternative-color);
    bottom: 2px;
    content: "";
    height: 1px;
    left: calc(-100% - 12px);
    position: absolute;
    width: 60px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-two-item .content .btn-blog-link:after {
    background-color: var(--principal-color);
    bottom: 2px;
    content: "";
    height: 1px;
    left: calc(-100% - 12px);
    position: absolute;
    width: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-two-item:hover .thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.post-two-item:hover .content {
    padding: 42px 30px 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 479px) {
    .post-two-item:hover .content {
        padding: 25px 30px 28px;
    }
}

.post-three-item .thumb {
    border-radius: 30px;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.post-three-item .thumb img {
    transition: all 0.5s ease 0s;
    width: 100%;
}

.post-three-item .content {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.post-three-item .content .title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 28px;
    margin-top: -9px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .post-three-item .content .title {
        font-size: 24px;
        line-height: 1.4;
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 18px;
        margin-top: 0;
    }
}

.post-three-item .content .title a {
    color: #1D3557;
}

.post-three-item .content .title a:hover {
    color: var(--principal-color);
}

.post-three-item .content .desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 27px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .desc {
        font-size: 13px;
        line-height: 1.6;
    }
}

.post-three-item .content .meta {
    align-items: center;
    color: #1D3557;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .meta {
        font-size: 14px;
    }
}

.post-three-item .content .meta .author-thumb {
    border-radius: 50%;
    min-width: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .meta .author-thumb {
        max-width: 40px;
        min-width: 40px;
    }
}

.post-three-item .content .meta .author-name {
    color: #1D3557;
    margin-bottom: 0;
    margin-left: 19px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .meta .author-name {
        margin-left: 12px;
    }
}

.post-three-item .content .meta .author-name:hover {
    color: var(--principal-color);
}

.post-three-item .content .meta span {
    font-size: 14px;
    margin-left: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .meta span {
        font-size: 13px;
        margin-left: 14px;
    }
}

.post-three-item .content .meta .post-date {
    color: #1D3557;
    font-size: 14px;
    display: inline-block;
    margin-left: 26px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .post-three-item .content .meta .post-date {
        font-size: 13px;
        margin-left: 15px;
    }
}

.post-three-item .content .meta .post-date:hover {
    color: var(--principal-color);
}

.post-three-item:hover .thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.blog-detail-img {
    border-radius: 30px;
}

@media only screen and (max-width: 575px) {
    .blog-detail-img {
        border-radius: 15px;
    }
}

.blog-detail .meta {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 40px;
    margin-right: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-detail .meta {
        font-size: 14px;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .blog-detail .meta {
        display: block;
        font-size: 14px;
        margin-bottom: 0;
        margin-right: 0;
    }
}

.blog-detail .meta .author-info {
    color: #1D3557;
}

@media only screen and (max-width: 359px) {
    .blog-detail .meta .author-info {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }
}

.blog-detail .meta .author-thumb {
    border-radius: 50%;
    min-width: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .blog-detail .meta .author-thumb {
        max-width: 40px;
        min-width: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .blog-detail .meta .author-thumb {
        display: none;
    }
}

.blog-detail .meta .author-name {
    color: #1D3557;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 15px;
}

@media only screen and (max-width: 767px) {
    .blog-detail .meta .author-name {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .blog-detail .meta .author-name {
        margin-left: 0;
    }
}

@media only screen and (max-width: 359px) {
    .blog-detail .meta .author-name {
        font-size: 16px;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.blog-detail .meta .author-name:hover {
    color: var(--principal-color);
}

.blog-detail .meta span {
    font-size: 14px;
    margin-left: 24px;
}

@media only screen and (max-width: 767px) {
    .blog-detail .meta span {
        margin-left: 0;
    }

    .blog-detail .meta span:last-child {
        margin-left: 24px;
    }
}

@media only screen and (max-width: 359px) {
    .blog-detail .meta span {
        font-size: 11px;
        margin-bottom: 12px;
    }
}

.blog-detail .meta span .icon {
    font-size: 16px;
    margin-right: 7px;
}

.blog-detail .meta .post-date {
    color: #1D3557;
    font-size: 14px;
    display: inline-block;
    margin-left: 26px;
}

@media only screen and (max-width: 767px) {
    .blog-detail .meta .post-date {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 359px) {
    .blog-detail .meta .post-date {
        font-size: 12px;
        margin-left: 0;
    }
}

.blog-detail .meta .post-date:hover {
    color: var(--principal-color);
}

.blog-detail .meta .meta-like-comment {
    align-items: center;
    display: flex;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .blog-detail .meta .meta-like-comment {
        margin-top: 20px;
        margin-bottom: 18px;
    }
}

.blog-detail .category {
    color: var(--alternative-color);
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.blog-detail .category span {
    font-weight: 400;
}

.blog-detail-title {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .blog-detail-title {
        font-size: 20px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 575px) {
    .blog-detail-title {
        font-size: 17px;
    }
}

.blog-detail .desc {
    font-size: 14px;
    line-height: 24px;
}

.blog-detail-blockquote {
    margin: 38px 100px 0;
    padding: 32px 0 53px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .blog-detail-blockquote {
        margin: 38px 40px 0;
    }
}

@media only screen and (max-width: 575px) {
    .blog-detail-blockquote {
        margin: 35px 15px 0;
    }
}

.blog-detail-blockquote .desc {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
    .blog-detail-blockquote .desc {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-detail-blockquote .desc {
        font-size: 14px;
        line-height: 24px;
    }
}

.blog-detail-blockquote .user-name {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-weight: 600;
    font-size: 18px;
    float: right;
    line-height: 1;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .blog-detail-blockquote .user-name {
        font-size: 16px;
    }
}

.blog-detail-blockquote .user-name:before {
    background-color: var(--alternative-color);
    content: "";
    height: 1px;
    left: calc(-100% + 15px);
    position: absolute;
    top: calc(50% + 1px);
    width: 70px;
}

.blog-detail-blockquote .quote-icon {
    left: -40px;
    position: absolute;
    top: -7px;
    z-index: -1;
}

@media only screen and (max-width: 575px) {
    .blog-detail-blockquote .quote-icon {
        left: -20px;
        width: 75px;
    }
}

.blog-detail-tag-social {
    align-items: center;
    border-bottom: 1px solid var(--principal-color);
    display: flex;
    justify-content: space-between;
    margin: 72px 0 40px;
    padding-bottom: 12px;
}

@media only screen and (max-width: 575px) {
    .blog-detail-tag-social {
        display: block;
        margin: 40px 0;
    }
}

.blog-detail-tag {
    line-height: 1;
}

@media only screen and (max-width: 575px) {
    .blog-detail-tag {
        margin-bottom: 30px;
    }
}

.blog-detail-tag a {
    color: var(--alternative-color);
    font-size: 14px;
    font-style: italic;
    margin-right: 6px;
}

.blog-detail-tag a:last-child {
    margin-right: 0;
}

.blog-detail-tag a:hover {
    color: #1D3557;
}

.blog-detail-social {
    line-height: 1;
}

.blog-detail-social span {
    font-size: 14px;
    font-weight: 700;
    margin-right: 42px;
}

.blog-detail-social a {
    font-size: 18px;
    margin-right: 33px;
}

.blog-detail-social a:last-child {
    margin-right: 0;
}

.blog-detail-social a:hover {
    color: var(--principal-color);
}

.blog-detail-social a .fa-facebook {
    position: relative;
    top: 1px;
}

.blog-detail-nav {
    display: flex;
    max-width: 275px;
    overflow: hidden;
}

@media only screen and (max-width: 575px) {
    .blog-detail-nav {
        display: inline-flex;
    }
}

.blog-detail-nav .text-prev,
.blog-detail-nav .text-next {
    border: 1px solid var(--alternative-color);
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 1;
    min-width: 90px;
    padding: 10px 15px 8px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blog-detail-nav .text-prev:hover,
.blog-detail-nav .text-next:hover {
    background-color: var(--alternative-color);
    color: #FFFFFF;
}

.blog-detail-nav .thumb {
    display: flex;
}

.blog-detail-nav .content {
    padding-left: 20px;
}

.blog-detail-nav img {
    border-radius: 10px;
    max-width: 85px;
    max-height: 85px;
}

.blog-detail-nav .title {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 7px;
    max-width: 170px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blog-detail-nav .title:hover {
    color: var(--alternative-color);
}

.blog-detail-nav .post-date {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-weight: 400;
    font-size: 14px;
    display: block;
    line-height: 1;
    margin-bottom: 0;
}

.blog-detail-nav .btn-text {
    color: #1D3557;
    cursor: pointer;
    display: inline-block;
    font-family: "Kanit-SemiBold", serif;
    font-weight: 400;
    font-size: 14px;
    float: right;
    line-height: 1;
    margin-top: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blog-detail-nav .btn-text:after {
    background-color: var(--principal-color);
    bottom: 2px;
    content: "";
    height: 1px;
    left: calc(-100% - 531px);
    position: absolute;
    width: calc(100% + 500px);
}

.blog-detail-nav .btn-text:hover {
    color: var(--alternative-color);
}

.blog-detail-nav.blog-nav-next {
    flex-direction: row-reverse;
    justify-content: flex-end;
    float: right;
}

.blog-detail-nav.blog-nav-next .thumb {
    display: flex;
    flex-direction: row-reverse;
}

.blog-detail-nav.blog-nav-next .content {
    padding-left: 0;
    padding-right: 20px;
}

.blog-detail-nav.blog-nav-next .btn-text {
    float: left;
}

.blog-detail-nav.blog-nav-next .btn-text:after {
    left: calc(100% + 30px);
}

.comment-area {
    padding-right: 30px;
}

.comment-area-title {
    font-size: 24px;
    margin-bottom: 79px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .comment-area-title {
        margin-bottom: 40px;
    }
}

.single-comment {
    background: #FAFAFA;
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 35px 30px 30px;
    position: relative;
}

@media only screen and (max-width: 575px) {
    .single-comment {
        padding: 25px 15px 20px;
    }
}

.single-comment-top {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .single-comment-top {
        display: block;
    }
}

.single-comment-thumb {
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {
    .single-comment-thumb {
        max-width: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .single-comment-thumb {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.single-comment-thumb img {
    border-radius: 50%;
}

.single-comment-content {
    align-items: center;
    display: flex;
}

.single-comment-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 32px;
}

@media only screen and (max-width: 575px) {
    .single-comment-name {
        font-size: 14px;
        margin-right: 15px;
    }
}

.single-comment-designation {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    margin-right: 44px;
}

@media only screen and (max-width: 575px) {
    .single-comment-designation {
        font-size: 12px;
        margin-right: 10px;
    }
}

.single-comment-icon {
    display: flex;
    font-size: 13px;
    color: var(--alternative-color);
    letter-spacing: 4px;
    line-height: 1;
}

.single-comment .desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .single-comment .desc {
        font-size: 13px;
    }
}

.single-comment .reply-icon {
    border-radius: 0;
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 53px;
    right: 50px;
}

@media only screen and (max-width: 575px) {
    .single-comment .reply-icon {
        top: 31px;
        right: 25px;
    }
}

.single-comment .reply-icon:hover {
    color: var(--principal-color);
}

.single-comment-reply {
    margin-left: 30px;
    margin-right: -15px;
}

@media only screen and (max-width: 575px) {
    .single-comment-reply {
        margin-left: 15px;
    }
}

.comment-form-title {
    font-size: 24px;
    margin-bottom: 79px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .comment-form-title {
        margin-bottom: 60px;
    }
}

.comment-form .form-input-item {
    margin-bottom: 45px;
}

.comment-form .form-control {
    box-shadow: none;
    color: #1D3557;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 0;
    resize: none;
    border-width: 0 0 1px 0;
    border-color: var(--principal-color);
    border-style: solid;
    padding: 0 0 45px 0;
}

.comment-form .form-control::-webkit-input-placeholder {
    color: #1D3557;
}

.comment-form .form-control:-moz-placeholder {
    color: #1D3557;
}

.comment-form .form-control::-moz-placeholder {
    color: #1D3557;
}

.comment-form .form-control:-ms-input-placeholder {
    color: #1D3557;
}

.comment-form .form-control:active,
.comment-form .form-control:focus {
    border-bottom-color: var(--alternative-color);
}

.comment-form textarea.form-control {
    min-height: 113px;
    padding: 0 0 15px 0;
}

@media only screen and (max-width: 767px) {
    .comment-form textarea.form-control {
        min-height: 90px;
    }
}

.comment-form .form-note {
    font-family: "Kanit-SemiBold", serif;
    font-size: 16px;
    display: inline-block;
    line-height: 1;
}

.comment-form [type=submit] {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 5px;
    padding: 13px 35px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comment-form [type=submit] {
        border-width: 2px;
    }
}

@media only screen and (max-width: 767px) {
    .comment-form [type=submit] {
        border-width: 2px;
        font-size: 14px;
        padding: 11px 25px;
    }
}

@media only screen and (max-width: 575px) {
    .comment-form [type=submit] {
        margin-top: 0;
    }
}

.comment-form [type=submit]:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.pagination-area .page-numbers {
    display: flex;
    justify-content: start;
    margin-top: 30px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .pagination-area .page-numbers {
        margin-top: 10px;
    }
}

.pagination-area .page-number {
    border: 1px solid var(--principal-color);
    border-radius: 50%;
    color: var(--principal-color);
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 39px;
    margin-right: 10px;
    text-align: center;
}

.pagination-area .page-number:hover,
.pagination-area .page-number.active {
    background-color: var(--principal-color);
    border-color: var(--principal-color);
    color: #fff;
}


/*----------------------------------------*/


/*  Brand Logo CSS
/*----------------------------------------*/

.brand-logo-item {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 84px;
}


/*----------------------------------------*/


/*  Contact CSS
/*----------------------------------------*/

.contact-info-item {
    border: 1px solid var(--principal-color);
    border-radius: 30px;
    padding: 55px 25px 46px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .contact-info-item {
        padding: 44px 15px 41px;
    }
}

.contact-info-item h4 {
    color: #000000;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 18px;
    padding-bottom: 14px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .contact-info-item h4 {
        font-size: 22px;
    }
}

.contact-info-item h4:after {
    background-color: var(--alternative-color);
    bottom: 0;
    content: "";
    height: 1px;
    left: calc(50% - 22px);
    position: absolute;
    width: 44px;
}

.contact-info-item .content {
    font-size: 24px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-info-item .content {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .contact-info-item .content {
        font-size: 16px;
    }
}

.contact-info-item .content a {
    color: #1D3557;
    display: block;
    margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info-item .content a {
        margin-bottom: 3px;
    }
}

.contact-info-item .content a:hover {
    color: var(--alternative-color);
}

.contact-info-item .content a:last-child {
    margin-bottom: 0;
}

.contact-info-item .content p {
    color: #1D3557;
    line-height: 42px;
    margin: 0 auto;
    max-width: 300px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-info-item .content p {
        line-height: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .contact-info-item .content p {
        line-height: 29px;
    }
}

.contact-form-area {
    background-color: #fafafa;
    border-radius: 30px;
    padding: 56px 50px 66px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-form-area {
        padding: 56px 35px 66px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form-area {
        padding: 57px 30px 65px;
    }
}

@media only screen and (max-width: 575px) {
    .contact-form-area {
        padding: 50px 15px 58px;
    }
}

.contact-form-area h3 {
    font-size: 48px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .contact-form-area h3 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .contact-form-area h3 {
        font-size: 24px;
    }
}

.contact-form-area p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 69px;
    margin-right: 30px;
}

@media only screen and (max-width: 767px) {
    .contact-form-area p {
        margin-bottom: 50px;
        margin-right: 0;
    }
}

.contact-form .form-input-item {
    margin-bottom: 43px;
}

.contact-form .form-input-item .form-control {
    background-color: transparent;
    box-shadow: none;
    color: #1D3557;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 0;
    resize: none;
    border-width: 0 0 1px 0;
    border-color: var(--principal-color);
    border-style: solid;
    padding: 0 0 17px 0;
}

.contact-form .form-input-item .form-control::-webkit-input-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.contact-form .form-input-item .form-control:-moz-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.contact-form .form-input-item .form-control::-moz-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.contact-form .form-input-item .form-control:-ms-input-placeholder {
    color: var(--alternative-color);
    font-size: 12px;
}

.contact-form .form-input-item .form-control:active,
.contact-form .form-input-item .form-control:focus {
    border-bottom-color: var(--alternative-color);
}

.contact-form .form-input-item textarea.form-control {
    min-height: 113px;
    padding: 0 0 15px 0;
}

@media only screen and (max-width: 575px) {
    .contact-form .form-input-item textarea.form-control {
        min-height: 90px;
    }
}

.contact-form .form-input-item [type=submit] {
    background-color: transparent;
    border: 3px solid var(--principal-color);
    border-radius: 50px;
    color: #1D3557;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 27px;
    padding: 13px 35px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-form .form-input-item [type=submit] {
        border-width: 2px;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form .form-input-item [type=submit] {
        border-width: 2px;
        font-size: 14px;
        margin-top: 10px;
        padding: 11px 25px;
    }
}

@media only screen and (max-width: 575px) {
    .contact-form .form-input-item [type=submit] {
        margin-top: 0;
    }
}

.contact-form .form-input-item [type=submit]:hover {
    background-color: var(--principal-color);
    color: #FFFFFF;
}

.form-message.alert-success {
    margin-top: 30px;
    transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 767px) {
    .contact-thumb {
        padding-top: 70px;
    }
}

.contact-thumb img {
    left: -95px;
    max-width: none;
    position: relative;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-thumb img {
        left: -195px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-thumb img {
        left: -308px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-thumb img {
        left: 0;
        max-width: 100%;
        z-index: 1;
    }
}

.myaccount-tab-menu {
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .myaccount-tab-menu {
        margin-bottom: 40px;
    }
}

.myaccount-tab-menu.nav-tabs .nav-link {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    border-radius: 0;
    color: #000000;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
    text-align: left;
    text-transform: capitalize;
}

.myaccount-tab-menu.nav-tabs .nav-link:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.myaccount-tab-menu.nav-tabs .nav-link.active {
    background-color: var(--principal-color);
}

.myaccount-tab-menu.nav-tabs .nav-link:hover,
.myaccount-tab-menu.nav-tabs .nav-link.active {
    background-color: var(--principal-color);
    border-color: var(--principal-color);
    color: #FFFFFF;
}

.myaccount-content {
    border: 1px solid #eeeeee;
    padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .myaccount-content {
        padding: 20px;
    }
}

.myaccount-content form {
    margin-top: -20px;
}

.myaccount-content h3 {
    font-weight: 400;
    font-size: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.myaccount-content .welcome a:hover {
    color: var(--principal-color);
}

.myaccount-content .welcome strong {
    font-weight: 600;
    color: var(--principal-color);
}

.myaccount-content p {
    line-height: 28px;
    margin-bottom: 2px;
}

.myaccount-content fieldset {
    margin-top: 20px;
}

.myaccount-content fieldset legend {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.myaccount-content .account-details-form {
    margin-top: 50px;
}

.myaccount-content .account-details-form .single-input-item {
    margin-bottom: 20px;
}

.myaccount-content .account-details-form .single-input-item label {
    font-size: 14px;
    text-transform: capitalize;
    display: block;
    margin: 0 0 5px;
}

.myaccount-content .account-details-form .single-input-item input {
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 50px;
    background-color: transparent;
    padding: 2px 20px;
    color: #1D3557;
    font-size: 13px;
}

.myaccount-content .account-details-form .single-input-item input::-webkit-input-placeholder {
    color: #1f2226;
}

.myaccount-content .account-details-form .single-input-item input:-moz-placeholder {
    color: #1f2226;
}

.myaccount-content .account-details-form .single-input-item input::-moz-placeholder {
    color: #1f2226;
}

.myaccount-content .account-details-form .single-input-item input:-ms-input-placeholder {
    color: #1f2226;
}

.myaccount-content .account-details-form .single-input-item input:focus {
    border: 1px solid #1D3557;
}

.myaccount-content .account-details-form .single-input-item button {
    border: none;
    background-color: var(--principal-color);
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 25px;
    color: #fff;
    font-size: 13px;
}

.myaccount-content .account-details-form .single-input-item button:hover {
    background-color: #1f2226;
}

.myaccount-table {
    white-space: nowrap;
    font-size: 14px;
}

.myaccount-table table th,
.myaccount-table .table th {
    padding: 10px;
    font-weight: 600;
    background-color: #f8f8f8;
    border-color: #ccc;
    border-bottom: 0;
    color: #1f2226;
}

.myaccount-table table td,
.myaccount-table .table td {
    padding: 10px;
    vertical-align: middle;
    border-color: #ccc;
}

.myaccount-table table td a,
.myaccount-table .table td a {
    font-size: 14px;
    color: #000000;
}

.saved-message {
    background-color: #fff;
    border-top: 3px solid var(--principal-color);
    font-size: 14px;
    padding: 20px 0;
    color: #333;
}

.login-register-title h2 {
    font-size: 24px;
    margin: 0 0 15px;
    line-height: 1;
    text-transform: uppercase;
}

.login-register-title p {
    line-height: 1.6;
    color: var(--alternative-color);
    width: 85%;
}

@media only screen and (max-width: 767px) {
    .login-register-title p {
        width: 100%;
    }
}

.login-register-pr {
    padding-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .login-register-pr {
        padding-right: 0;
    }
}

.login-register-pl {
    padding-left: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .login-register-pl {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .login-register-pl {
        margin-top: 82px;
    }
}

.login-register-border {
    border-right: 1px solid #e5e5e5;
}

@media only screen and (max-width: 767px) {
    .login-register-border {
        border: none;
    }
}

.login-register-content .login-register-style {
    margin: 33px 0 0;
}

.login-register-content .login-register-style p {
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 35px;
}

.login-register-content .login-register-style form .login-register-input {
    position: relative;
    margin-bottom: 10px;
}

.login-register-content .login-register-style form .login-register-input input {
    color: #1D3557;
    width: 100%;
    height: 51px;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    padding: 2px 80px 2px 16px;
    font-size: 15px;
    border-radius: 5px;
}

.login-register-content .login-register-style form .login-register-input input::-webkit-input-placeholder {
    color: #495057;
    opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input:-moz-placeholder {
    color: #495057;
    opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input::-moz-placeholder {
    color: #495057;
    opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input:-ms-input-placeholder {
    color: #495057;
    opacity: 1;
}

.login-register-content .login-register-style form .login-register-input input:focus {
    border-color: #1D3557;
}

.login-register-content .login-register-style form .login-register-input .forgot {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.login-register-content .login-register-style form .login-register-input .forgot a {
    color: #4bb1cf;
    font-size: 15px;
}

.login-register-content .login-register-style form .login-register-paragraph {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
    margin: 30px 0 30px;
}

.login-register-content .login-register-style form .login-register-paragraph p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

.login-register-content .login-register-style form .login-register-paragraph p a {
    font-size: 14px;
    color: var(--principal-color);
}

.login-register-content .login-register-style form .login-register-paragraph p a:hover {
    color: #1D3557;
}

.login-register-content .login-register-style form .remember-me-btn {
    display: flex;
    align-items: center;
    margin: 19px 0 0px;
}

.login-register-content .login-register-style form .remember-me-btn input {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-right: 10px;
}

.login-register-content .login-register-style form .remember-me-btn label {
    color: #000000;
    font-size: 15px;
}

.login-register-content .login-register-style form .btn-register {
    margin: 21px 0 0px;
}

.login-register-content .login-register-style form .btn-register .btn-register-now {
    font-size: 14px;
    border-radius: 3px;
    color: #FFFFFF;
    background-color: var(--principal-color);
    border: none;
    line-height: 1;
    text-align: center;
    padding: 13px 32px 11px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.login-register-content .login-register-style form .btn-register .btn-register-now:hover {
    background-color: #1D3557;
}

.login-register-content .login-register-style .register-benefits {
    background-color: #f3f3f3;
    padding: 40px 30px;
    margin-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .login-register-content .login-register-style .register-benefits {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .login-register-content .login-register-style .register-benefits {
        margin-top: 87px;
    }
}

.login-register-content .login-register-style .register-benefits h3 {
    color: #1D3557;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.login-register-content .login-register-style .register-benefits p {
    line-height: 1.6;
    font-size: 14px;
    color: #1D3557;
    margin: 0 0 28px;
}

.login-register-content .login-register-style .register-benefits ul {
    margin: 0;
}

.login-register-content .login-register-style .register-benefits ul li {
    color: var(--alternative-color);
    font-size: 16px;
    margin: 0 0 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .login-register-content .login-register-style .register-benefits ul li {
        font-size: 15px;
    }
}

.login-register-content .login-register-style .register-benefits ul li:last-child {
    margin: 0 0 0;
}

.login-register-content .login-register-style .register-benefits ul li i {
    font-size: 20px;
    color: var(--alternative-color);
    margin-right: 12px;
    position: relative;
    top: 3px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .login-register-content .login-register-style .register-benefits ul li i {
        margin-right: 0;
    }
}

.error-content {
    padding: 191px 0 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .error-content {
        padding: 151px 0 160px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .error-content {
        padding: 142px 0 150px;
    }
}

@media only screen and (max-width: 575px) {
    .error-content {
        padding: 112px 0 120px;
    }
}

.error-content h1 {
    font-weight: 400;
    font-size: 42px;
    margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .error-content h1 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .error-content h1 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 575px) {
    .error-content h1 {
        font-size: 22px;
    }
}

.error-content p {
    line-height: 35px;
    color: #666;
    width: 90%;
    margin: 20px auto 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .error-content p {
        width: 100%;
    }
}

.error-content p a {
    color: var(--principal-color);
}

.error-content p a:hover {
    color: #1D3557;
}

.error-content .error-search {
    margin: 0 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .error-content .error-search {
        margin: 0;
    }
}

.error-content .error-search form {
    position: relative;
}

.error-content .error-search form input {
    border-radius: 50px;
    width: 100%;
    height: 48px;
    padding: 2px 50px 2px 20px;
    color: #1D3557;
    font-size: 15px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
}

.error-content .error-search form input::-webkit-input-placeholder {
    color: #495057;
}

.error-content .error-search form input:-moz-placeholder {
    color: #495057;
}

.error-content .error-search form input::-moz-placeholder {
    color: #495057;
}

.error-content .error-search form input:-ms-input-placeholder {
    color: #495057;
}

.error-content .error-search form input:focus {
    border-color: #1D3557;
}

.error-content .error-search form button {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    right: 16px;
    padding: 0;
    border: none;
    background-color: transparent;
}

.error-content .error-search form button img {
    opacity: 0.7;
    position: relative;
    top: -3px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.error-content .error-search form button:hover img {
    opacity: 1;
}

.map-area iframe {
    width: 100%;
    height: 750px;
    border-radius: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .map-area iframe {
        height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .map-area iframe {
        height: 360px;
    }
}

@media only screen and (max-width: 575px) {
    .map-area iframe {
        height: 260px;
    }
}


/*----------------------------------------*/


/*  About CSS
/*----------------------------------------*/

.about-area {
    padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-area {
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-area {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .about-area {
        padding-bottom: 40px;
    }
}

.about-content {
    padding-top: 65px;
}

@media only screen and (max-width: 767px) {
    .about-content {
        margin-bottom: 30px;
    }
}

.about-content .breadcrumb {
    margin-bottom: 4px;
}

.about-content-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 31px;
    margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-content-title {
        font-size: 36px;
        line-height: 1.3;
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-content-title {
        font-size: 30px;
        line-height: 1.3;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 25px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .about-content-title {
        font-size: 24px;
    }
}

.about-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 26px;
}

.about-content .ht-popup-video {
    line-height: 1;
}

.about-content .ht-popup-video span {
    margin-left: 0;
    margin-right: 17px;
    letter-spacing: 0.2em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.about-content .ht-popup-video .icon {
    background-color: transparent;
    border: 1px solid var(--alternative-color);
    color: var(--alternative-color);
    font-size: 20px;
    height: 70px;
    line-height: 70px;
    width: 70px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .about-content .ht-popup-video .icon {
        font-size: 18px;
        height: 50px;
        line-height: 50px;
        width: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .ht-popup-video .icon {
        font-size: 14px;
        height: 35px;
        line-height: 33px;
        width: 35px;
    }
}

.about-content .ht-popup-video:hover span {
    color: var(--alternative-color);
}

.about-content .ht-popup-video:hover .icon {
    background-color: var(--alternative-color);
    color: #FFFFFF;
}

.about-thumb img {
    left: -95px;
    max-width: none;
    position: relative;
    top: 50px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-thumb img {
        left: -170px;
    }
}

@media only screen and (max-width: 767px) {
    .about-thumb img {
        left: 0;
        max-width: 100%;
        top: 0;
    }
}

.funfact-item {
    background-color: #F1FAEE;
    border-radius: 10px;
    margin-top: 50px;
    padding: 0 25px 35px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.funfact-item img {
    margin-bottom: 50px;
    margin-top: -40px;
    max-height: 80px;
    max-width: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .funfact-item img {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .funfact-item img {
        margin-top: -35px;
        width: 70px;
    }
}

.funfact-item:hover {
    box-shadow: 5px 15px 25px rgba(0, 0, 0, 0.2);
}

.funfact-info {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .funfact-info {
        font-size: 36px;
    }
}

.funfact-info span {
    color: var(--alternative-color);
    display: block;
    font-size: 24px;
    margin-top: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (max-width: 767px) {
    .funfact-info span {
        font-size: 22px;
    }
}

.section-title.section-title-feature p {
    max-width: 620px;
}

.feature-thumb {
    margin-bottom: 67px;
}

.feature-item p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-item p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-item p {
        font-size: 14px;
        line-height: 1.4;
    }
}

.feature-title {
    align-items: center;
    display: flex;
    font-size: 24px;
    margin-bottom: 21px;
    min-height: 31px;
}

@media only screen and (max-width: 767px) {
    .feature-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .feature-title {
        font-size: 18px;
    }
}

.feature-title img {
    margin-right: 14px;
    position: relative;
    top: 2px;
}

.divider-content {
    margin-top: -14px;
}

.divider-content-title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 41px;
    margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .divider-content-title {
        font-size: 42px;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .divider-content-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .divider-content-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

.divider-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
    .divider-content p {
        margin-bottom: 25px;
    }
}

.divider-thumb img {
    border-radius: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .divider-thumb img {
        border-radius: 15px;
        margin-bottom: 50px;
        width: 100%;
    }
}


/*----------------------------------------*/


/*  Sidebar CSS
/*----------------------------------------*/

.sidebar-area .widget-item {
    margin-bottom: 32px;
}

.sidebar-area .widget-item p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
}

.sidebar-area .widget-title {
    border-bottom: 1px solid #1D3557;
    font-size: 18px;
    margin-bottom: 21px;
    padding-bottom: 9px;
}

.widget-search-box {
    position: relative;
}

.widget-search-box input {
    background-color: transparent;
    border: solid var(--principal-color);
    border-width: 0 0 1px 0;
    border-radius: 0;
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    padding: 0 35px 8px 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-search-box input::-webkit-input-placeholder {
    color: var(--alternative-color);
}

.widget-search-box input:-moz-placeholder {
    color: var(--alternative-color);
}

.widget-search-box input::-moz-placeholder {
    color: var(--alternative-color);
}

.widget-search-box input:-ms-input-placeholder {
    color: var(--alternative-color);
}

.widget-search-box input:active,
.widget-search-box input:focus {
    background-color: transparent;
    border-bottom-color: var(--alternative-color);
}

.widget-search-box .btn-src {
    background-color: transparent;
    border: none;
    bottom: 14px;
    color: #1D3557;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-newsletter-box {
    position: relative;
}

.widget-newsletter-box input {
    background-color: transparent;
    border: solid var(--principal-color);
    border-width: 0 0 1px 0;
    border-radius: 0;
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    padding: 0 35px 7px 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-newsletter-box input::-webkit-input-placeholder {
    color: var(--alternative-color);
}

.widget-newsletter-box input:-moz-placeholder {
    color: var(--alternative-color);
}

.widget-newsletter-box input::-moz-placeholder {
    color: var(--alternative-color);
}

.widget-newsletter-box input:-ms-input-placeholder {
    color: var(--alternative-color);
}

.widget-newsletter-box input:active,
.widget-newsletter-box input:focus {
    background-color: transparent;
    border-bottom-color: var(--alternative-color);
}

.widget-newsletter-box .btn-src {
    background-color: transparent;
    border: none;
    bottom: 13px;
    color: #1D3557;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-categories a {
    color: #1D3557;
    display: block;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 15px;
    padding-left: 27px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-categories a:last-child {
    margin-bottom: 0;
}

.widget-categories a:before {
    background-color: var(--principal-color);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: calc(50% - 3px);
    width: 6px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-categories a:after {
    background-color: var(--principal-color);
    border-radius: 0;
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(50% - 0.5px);
    width: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.widget-categories a:hover {
    padding-left: 41px;
}

.widget-categories a:hover:before {
    opacity: 0;
}

.widget-categories a:hover:after {
    opacity: 1;
    width: 18px;
}

.widget-blog-post {
    display: flex;
    margin-bottom: 18px;
    overflow: hidden;
}

.widget-blog-post:last-child {
    margin-bottom: 0;
}

.widget-blog-post .thumb {
    border-radius: 10px;
    display: flex;
    min-width: 85px;
    max-height: 85px;
    overflow: hidden;
}

.widget-blog-post img {
    border-radius: 10px;
    max-width: 85px;
    width: 100%;
    transition: all 0.5s ease 0s;
}

.widget-blog-post .content {
    padding-left: 15px;
}

.widget-blog-post .title {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-blog-post .title {
        font-size: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .widget-blog-post .title {
        margin-top: -6px;
    }
}

.widget-blog-post .title:hover {
    color: var(--alternative-color);
}

.widget-blog-post .post-date {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    display: block;
    line-height: 1;
    margin-bottom: 0;
}

.widget-blog-post .btn-text {
    color: #1D3557;
    cursor: pointer;
    display: inline-block;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    float: right;
    line-height: 1;
    margin-top: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-blog-post .btn-text {
        font-size: 12px;
        float: none;
        margin-top: 15px;
    }
}

.widget-blog-post .btn-text:after {
    background-color: var(--principal-color);
    bottom: 2px;
    content: "";
    height: 1px;
    left: calc(-100% - 531px);
    position: absolute;
    width: calc(100% + 500px);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-blog-post .btn-text:after {
        display: none;
    }
}

.widget-blog-post .btn-text:hover {
    color: var(--alternative-color);
}

.widget-blog-post:hover .thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.widget-product-item {
    display: flex;
    margin-bottom: 18px;
    overflow: hidden;
}

.widget-product-item:last-child {
    margin-bottom: 0;
}

.widget-product-item .thumb {
    border-radius: 10px;
    display: flex;
    min-width: 85px;
    max-height: 85px;
    overflow: hidden;
}

.widget-product-item img {
    border-radius: 10px;
    max-width: 85px;
    width: 100%;
    transition: all 0.5s ease 0s;
}

.widget-product-item .content {
    padding-left: 15px;
}

.widget-product-item .title {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-product-item .title {
        font-size: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .widget-product-item .title {
        margin-top: -6px;
    }
}

.widget-product-item .title:hover {
    color: var(--alternative-color);
}

.widget-product-item .product-price {
    color: #1D3557;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 0;
}

.widget-product-item .btn-text {
    color: #1D3557;
    cursor: pointer;
    display: inline-block;
    font-family: "Kanit-SemiBold", serif;
    font-size: 14px;
    float: right;
    line-height: 1;
    margin-top: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-product-item .btn-text {
        font-size: 12px;
        float: none;
        margin-top: 15px;
    }
}

.widget-product-item .btn-text:after {
    background-color: var(--principal-color);
    bottom: 2px;
    content: "";
    height: 1px;
    left: calc(-100% - 531px);
    position: absolute;
    width: calc(100% + 500px);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .widget-product-item .btn-text:after {
        display: none;
    }
}

.widget-product-item .btn-text:hover {
    color: var(--alternative-color);
}

.widget-product-item:hover .thumb img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
