/* Defined Fonts ---------------------------- */

@font-face {
    font-family: "Poppins";
    font-weight: normal;
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: 300;
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: 500;
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: 600;
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: 700;
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: 800;
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
}

*:focus {
    outline: none;
}

/* Defined colors ---------------------------- */
:root {
    --theme-primary-color: #f05836;
    --theme-secondary-color: #03274a;
    --theme-text-color: #333;
    --theme-accent-color: #f05836;
    --theme-red-color: #E50914;
    --theme-green-color: #1DB954;
    --theme-purple-color: #a46497;
    --theme-title-color: #7A99AC;
    --theme-bg-color: #f1f8ff;
    --social-facebook: #3b5997;
    --social-twitter: #28c3f0;
    --social-youtube: #f62d3a;
    --social-google: #e83e2e;
    --social-instagram: #db4a8c;
    --social-zalo: #008fe9;
    --social-tiktok: #000;
}

/* General ---------------------------- */

body {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--theme-text-color);
}

.container {
    width: 1140px;
    margin: 0 auto;
    max-width: 100%;
}

a {
    color: var(--theme-primary-color);
    text-decoration: none;
    outline: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--theme-accent-color);
}

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

b, strong {
    font-weight: 600;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

button, input, optgroup, select, textarea {
    background-color: #ffffff;
    color: #000000;
    border-radius: 3px;
    padding: 15px 20px !important;
    box-shadow: 0 4px 40px #e5e5e5 !important;
    border: none;
}

label {
    margin-bottom: 10px;
    display: inline-block;
}

form.comment-form p {
    margin-bottom: 20px;
}

form.comment-form .comment-form-comment {
    margin-bottom: 30px;
}

.comment-form-author, .comment-form-email, .comment-form-url {
    display: inline-block;
    vertical-align: top;
    width: 31%;
}

.comment-form-email, .comment-form-url {
    margin-left: 25px;
}

.site h1, .site h2, .site h3, .site h4, .site h5, .site h6 {
    font-weight: 600;
    line-height: 1.5;
    margin: 20px 0 15px;
    clear: none;

}

.site .entry-content h1, .site .entry-content h2, .site .entry-content h3, .site .entry-content h4, .site .entry-content h5, .site .entry-content h6 {
    color: inherit;
}

.site h1 {
    font-size: 32px;
}

.site h2 {
    font-size: 28px;
}

.site h3 {
    font-size: 24px;
}

.site h4 {
    font-size: 20px;
}

.site h5 {
    font-size: 18px;
}

.site h6 {
    font-size: 16px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt30 {
    margin-top: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb100 {
    margin-bottom: 100px;
}

.padding-90 {
    padding: 90px 0;
}

.padding-110 {
    padding: 110px 0;
}

.mt60 {
    margin-top: 60px;
}

.list-socials {
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.list-socials li {
    margin: 0;
    list-style: none;
    vertical-align: middle;
}

.list-socials li a {
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.list-socials li a {
    display: block !important;
    margin: 0;
    background-color: #555555;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    font-weight: normal;
    line-height: 40px;
}

.list-socials li a:hover, .list-socials li a:focus, .list-socials li a:active {
    text-decoration: none;
}

.list-socials li a i {
    display: block;
    line-height: 40px;
    font-size: 22px;
}

.list-socials li a img {
    height: 100%;
    width: 100%;
}

.list-socials li.social-item.facebook a,
.contact-content .contact-socials.list-socials li.social-item.facebook a:hover {
    background-color: var(--social-facebook);
}

.list-socials li.social-item.twitter a,
.contact-content .contact-socials.list-socials li.social-item.twitter a:hover {
    background-color: var(--social-twitter);
}

.list-socials li.social-item.youtube a,
.contact-content .contact-socials.list-socials li.social-item.youtube a:hover {
    background-color: var(--social-youtube);
}

.list-socials li.social-item.google a,
.contact-content .contact-socials.list-socials li.social-item.google a:hover {
    background-color: var(--social-google);
}

.list-socials li.social-item.instagram a,
.contact-content .contact-socials.list-socials li.social-item.instagram a:hover {
    background-color: var(--social-instagram);
}

.list-socials li.social-item.zalo a,
.contact-content .contact-socials.list-socials li.social-item.zalo a:hover {
    background-color: var(--social-zalo);
}

.list-socials li.social-item.tiktok a,
.contact-content .contact-socials.list-socials li.social-item.tiktok a:hover {
    background-color: var(--social-tiktok);
}

.list-socials li.social-item.zalo a i {
    font-size: 26px;
    position: relative;
    color: #fff;
}

.list-socials li.social-item.zalo a i::after {
    position: absolute;
    content: "Zalo";
    left: 10px;
    top: -1px;
    z-index: 1;
    display: block;
    font-size: 10px;
    text-transform: none;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: var(--social-zalo);
}

.slick-arrow {
    top: 50%;
    margin-top: -10px;
    position: absolute;
    font-family: 'FontAwesome', sans-serif;
    width: auto;
    height: auto;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    outline: none;
    border: none;
}

.home-slider .slick-arrow {
    top: 50%;
}

.slick-prev {
    left: 0 !important;
    z-index: 2;
}

.slick-prev:before {
    content: '\f137';
}

.slick-next {
    right: 0 !important;
    z-index: 2;
}

.slick-next:before {
    content: '\f138';
}

.slick-prev::before, .slick-next::before {
    color: var(--theme-primary-color) !important;
    font-size: 24px !important;
}

.main-slider .slider-item img {
    width: 100%;
    display: block;
    max-height: none;
}

.slick-slider .details {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    text-align: left;
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 10%;
    padding: 0 20px;
}

.slick-slider .details p {
    font-size: 30px;
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.hocwp-slider {
    display: none;
    margin-bottom: 0 !important;
}

.hocwp-slider .slick-prev, .hocwp-slider .slick-next {
    opacity: 0;
    transition: all 0.3s;
}

.hocwp-slider .slick-prev {
    left: 10px !important;
}

.hocwp-slider .slick-next {
    right: 10px !important;
}

.hocwp-slider:hover .slick-prev, .hocwp-slider:hover .slick-next {
    opacity: 0.6;
}

.hocwp-slider .slick-prev:hover, .hocwp-slider .slick-next:hover {
    opacity: 1;
}

.slick-dots {
    bottom: 15px;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

.slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.slick-dots li button {
    background-color: #728093;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
    padding: 0 !important;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slick-dots li button:hover {
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background-color: var(--theme-primary-color);
}

.search-form {
    width: 100%;
    display: flex;
}

.search-form label {
    width: calc(100% - 44px);
    margin: 0;
}

.search-form input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 5px 15px !important;
}

.search-form input[type="submit"] {
    background-color: var(--theme-secondary-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
    padding: 0 !important;
    text-align: center;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s;
}

.search-form input[type="submit"]:hover {
    background-color: var(--theme-primary-color);
}

.search-form input[type="search"], .search-form input[type="text"], .search-form input[type="submit"] {
    border: none;
    border-radius: 0;
}

.search-form:after, .search-form:before, .clearfix:after, .clearfix:before {
    display: none;
}

/* Site header ---------------------------- */
.site-header {
    background-color: var(--theme-secondary-color);
    position: relative;
    z-index: 2;
}

.d-flex {
    display: flex;
}

.header-logo {
    background: transparent url("../images/header-bg.png") no-repeat scroll center center /auto 100%;
    min-height: 100px;
}

.logo-contact-area {
    justify-content: space-between;
    align-items: center;
}

.header-box {
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.logo-menu {
    column-gap: 70px;
}

.logo-cart {
    justify-content: space-between;
    align-items: flex-end;
}

.site-branding.site-logo .site-title {
    margin: 28px 0;
}

.site-branding.site-logo .site-title a {
    display: block;
}

.site-branding .site-description {
    display: none;
}

.site-branding.site-logo img {
    max-height: 98px;
    width: auto;
}

.right-logo {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 80%;
}

.header-contact-icon .widget .icon-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header-contact-icon .widget .icon-box p:last-child {
    margin-bottom: 0;
}

.header-contact-icon .widget .icon-box, .header-contact-icon .widget .icon-box .widget-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.header-contact-icon {
    justify-content: space-between;
    column-gap: 60px;
    row-gap: 30px;
    align-items: center;
}

.header-contact-icon .widget .icon-wrapper i {
    color: var(--theme-primary-color);
    font-size: 26px;
}

.menu-social-area {
    justify-content: space-between;
    align-items: center;
}

.header-menu {
    background-color: var(--theme-secondary-color);
}

.primary-menus ul.menu::before, .primary-menus ul.menu::after {
    display: none;
}

.primary-menus ul.menu {
    display: flex;
    justify-content: right;
    column-gap: 50px;
}

.primary-menus ul.menu li {
    padding: 0;
}

.primary-menus ul.menu li {
    position: relative;
}

.primary-menus ul.menu li a {
    color: #333;
    font-size: 15px;
    text-decoration: none;
}

.primary-menus ul.menu > li > a {
    padding: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.primary-menus ul.menu > li:hover > a {
    color: var(--theme-accent-color);
}

.primary-menus ul.menu li.menu-item-has-children > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 14px;
}

.primary-menus ul.menu .sub-menu li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.primary-menus ul.menu .sub-menu li.menu-item-has-children > a:after {
    content: "\f105";
}

.primary-menus ul.menu li.menu-item-has-children > .sub-menu {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 230px;
    padding: 20px;
}

.primary-menus ul.menu .sub-menu li a {
    background-color: transparent;
    padding: 7px 15px;
    color: #333;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.primary-menus ul.menu .sub-menu li:hover > a, .primary-menus ul.menu .sub-menu li.current-menu-item > a {
    color: var(--theme-accent-color);
}

.primary-menu-area .primary-menus li.search-item {
    display: none;
}

.header-social.list-socials {
    column-gap: 35px;
    row-gap: 20px;
    justify-content: center;
}

.header-social.list-socials li.social-item {
    margin: 0;
}

.header-social.list-socials li.social-item a {
    background-color: transparent;
    color: #fff;
    height: auto;
    width: auto;
    line-height: 1;
    border-radius: 0;
}

.header-social.list-socials li.social-item a:hover {
    color: #ec2023;
}

.header-social.list-socials li.social-item a i {
    font-size: 22px;
    line-height: inherit;
}

.header-social.list-socials li.social-item.facebook a:hover {
    color: var(--social-facebook);
}

.header-social.list-socials li.social-item.twitter a:hover {
    color: var(--social-twitter);
}

.header-social.list-socials li.social-item.youtube a:hover {
    color: var(--social-youtube);
}

.header-social.list-socials li.social-item.google a:hover {
    color: var(--social-google);
}

.header-social.list-socials li.social-item.instagram a:hover {
    color: var(--social-instagram);
}

.header-social.list-socials li.social-item.zalo a:hover {
    background-color: var(--social-zalo);
}

.header-social.list-socials li.social-item.tiktok a:hover {
    color: var(--social-tiktok);
}

.header-social.list-socials li.social-item.zalo a {
    background-color: #333;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 5px;
}

.header-social.list-socials li.social-item.zalo a i {
    color: #fff;
    font-size: 18px;
    position: relative;
}

.header-social.list-socials li.social-item.zalo a i::after {
    color: #333;
    left: 3px;
    top: 0;
    font-size: 7px;
}

.header-social.list-socials li.social-item.zalo a:hover i::after {
    color: var(--social-zalo);
}

/* Home ---------------------------- */
.module-intro-banner {
    position: relative;
}

.module-intro-banner .module-group-text {
    position: absolute;
    color: #fff;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

h3.module-title, .loop-page h1.entry-title {
    text-align: left;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 20px;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4;
}

h3.module-title a {
    color: #333;
}

h3.module-title a:hover {
    color: var(--theme-secondary-color);
}

h3.module-title::before, .loop-page h1.entry-title::before {
    background-color: var(--theme-primary-color);
    width: 70px;
    height: 3px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}

.loop-page h1.entry-title {
    margin-bottom: 30px;
}

.loop-page h1.entry-title::before {
    width: 100px;
    height: 5px;
}

h3.module-title.border-left {
    padding-left: 85px;
    padding-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

h3.module-title.border-left::before {
    bottom: auto;
    top: 12px;
}

.hwp-module > h3.module-title {
    margin-bottom: 40px;
}

.module-text p {
    margin-top: 0;
    margin-bottom: 20px;
}

.module-text {
    color: #7b7a7a;
    font-size: 16px;
    font-weight: 400;
}

.module-text h4 {
    color: #333;
}

.module-intro-banner .module-text h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

a.text-link {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

a.text-link:hover {
    color: var(--theme-primary-color);
}

a.text-link i {
    color: var(--theme-primary-color);
    margin-left: 10px;
}

a.btn-read-more {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    text-transform: lowercase;
}

a.btn-read-more i {
    margin-left: 3px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

a.btn-read-more:hover {
    color: #999;
}

.module-intro-banner .module-text {
    color: #fff;
    font-size: 18px;
}

.module-intro-banner .module-text a.text-link {
    color: #fff;
    margin-left: 30px;
}

.module-intro-banner .module-text a.text-link:hover {
    color: var(--theme-primary-color);
}

.module-intro-banner .module-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 820px;
}

.btn-default, .comment-form .form-submit input[type="submit"] {
    display: inline-block;
    line-height: 1;
    background-color: var(--theme-primary-color);
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 4px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-weight: 500;
    text-transform: none;
    margin: 30px auto 0;
    box-shadow: none;
}

.btn-default:hover, .comment-form .form-submit input[type="submit"]:hover {
    background-color: var(--theme-secondary-color);
    color: #fff;
}

.btn-default > i {
    font-size: 16px;
}

.btn-default > i:first-of-type {
    margin-right: 15px;
}

.btn-default > i:last-of-type:not(:first-of-type) {
    margin-left: 10px;
}

.btn-default.btn-white {
    background-color: #fff;
    color: #333;
    text-shadow: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    font-size: 16px;
}

.btn-default.btn-white:hover {
    background-color: var(--theme-primary-color);
    color: #fff;
}

.group-banner-text.d-flex {
    justify-content: space-between;
    align-items: center;
    column-gap: 60px;
    row-gap: 30px;
    max-width: 100%;
}

.group-banner-text.d-flex > * {
    flex: 1;
}

.module-about-us .module-image {
    position: relative;
}

.module-about-us .module-image::before {
    background-color: var(--theme-primary-color);
    position: absolute;
    content: "";
    width: 195px;
    height: 95px;
    border-radius: 6px;
    left: -15px;
    bottom: -15px;
    z-index: -1;
}

.module-about-us .module-image img {
    border-radius: 5px;
}

.module-about-us .module-image .icon-item {
    position: absolute;
    padding: 15px 26px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, .06);
    display: flex;
    gap: 10px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 15px;
}

.module-about-us .module-image .icon-item.icon-top {
    right: 60px;
    top: -25px;
}

.module-about-us .module-image .icon-item.icon-bottom {
    left: 40%;
    bottom: -25px;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, .15);
}

.module-about-us .module-image .icon-item.icon-left {
    left: -50px;
    top: 35%;
    flex-direction: column;
    padding: 20px;
    row-gap: 20px;
}

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

.services-icon-widgets {
    gap: 30px;
    padding: 30px 0;
}

.services-icon-widgets .widget {
    flex: 1;
}

.services-icon-widgets .widget .icon-wrapper {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.services-icon-widgets .widget .icon-wrapper img {
    max-height: 100%;
}

.services-icon-widgets .widget .widget-title {
    font-size: 18px;
}

.services-icon-widgets .widget .icon-box p {
    font-size: 14px;
    color: #7B7A7A;
}

.module-completed {
    margin-bottom: 110px;
}

.module-completed .group-banner-text.d-flex {
    align-items: flex-start;
    column-gap: 30px;
}

.main-slider .slider-item img {
    width: 100%;
    display: block;
}

.home-slider {
    border-radius: 6px;
    overflow: hidden;
}

.module-completed .group-banner-text.d-flex .home-slider {
    flex: 1.2;
}

.home-slider .slick-arrow, .home-slider .slick-dots {
    display: none !important;
}

.module-gallery-images {
    position: absolute;
    width: 1140px;
    max-width: 100%;
    left: auto;
    z-index: 1;
}

.module-gallery-images .list-images {
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.list-images .image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-self: center;
}

.list-images .image-item .image-item-link {
    margin: 0;
    display: block;
}

.module-gallery-images .list-images .image-item img {
    max-height: 230px;
}

.module-gallery-images .list-images {
    gap: 30px;
    flex-wrap: wrap;
}

.module-statistical {
    background: transparent url(../images/section-bg.png) no-repeat scroll center center;
    background-size: cover;
    min-height: 380px;
    color: #fff;
}

.module-statistical .module-text {
    color: #fff;
}

.statistical-number ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 25px));
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.statistical-number ul li {
    border-left: 3px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
    transition: all 0.3s;
}

.statistical-number ul li:hover {
    border-left: 3px solid var(--theme-primary-color);
}

.statistical-number ul li .number {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.statistical-number ul li .text {
    font-size: 16px;
    line-height: 1.4;
}

.testimonials-carousel {
    display: none;
    margin-top: 40px;
}

.testimonials-carousel.slick-slider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.loop-carousel {
    padding: 15px 20px 20px;
    margin-bottom: 60px;
}

.loop-carousel .box-post {
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 30px;
}

.loop-carousel .box-avatar {
    position: relative;
}

.loop-carousel .box-avatar::before {
    background: transparent url(../images/quotes-right.png) no-repeat scroll 0 0 /100% auto;
    content: "";
    width: 45px;
    height: 39px;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
}

.testimonial-image .post-thumbnail {
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    display: block;
}

.testimonial-image .post-thumbnail img {
    width: 100%;
    height: 100%;
}

.loop-carousel .box-avatar .post-thumbnail {
    width: 83px;
    height: 83px;
}

.loop-carousel h2.entry-title {
    font-size: 20px;
    margin: 0 0 5px;
}

.short-title {
    color: var(--theme-secondary-color);
    font-size: 12px;
}

.loop-carousel .short-title {
    margin-bottom: 20px;
}

.loop-carousel .entry-excerpt {
    font-size: 14px;
    color: #7b7a7a;
}

.module-contacts {
    background: transparent url(../images/contact-bg.jpg) no-repeat scroll center center;
    background-size: cover;
    min-height: 480px;
    font-size: 15px;
}

.group-contacts.d-flex {
    justify-content: center;
    align-items: flex-start;
}

.group-contacts.d-flex > * {
    flex: 1;
}

::-moz-placeholder {
    font-style: normal;
    color: #666;
    font-weight: normal;
    font-family: "Poppins", Sans-serif;
}

::-webkit-input-placeholder {
    font-style: normal;
    color: #666;
    font-weight: normal;
    font-family: "Poppins", Sans-serif;
}

:-ms-input-placeholder {
    font-style: normal;
    color: #666;
    font-weight: normal;
    font-family: "Poppins", Sans-serif;
}

#ui-datepicker-div {
    z-index: 9999999999 !important;
}

.button-submit-form {
    padding: 15px 30px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
}

.test::after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    right: 10px;
    color: #fff;
    font-size: 30px;
}

.contact-icon .widget {
    margin-bottom: 20px;
}

.contact-icon .widget .icon-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
}

.contact-icon .widget .icon-box .icon-wrapper i {
    background-color: #03274a;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
    line-height: 40px;
}

.contact-icon .widget .icon-box .icon-wrapper i:hover {
    background-color: var(--theme-primary-color);
}

.contact-icon .widget .icon-box p {
    margin: 0;
}

/* Archive Post ---------------------------- */
.hocwp-breadcrumb {
    margin: 30px 0;
    color: #999;
    font-size: 16px;
}

.hocwp-breadcrumb a {
    color: #999;
}

.hocwp-breadcrumb a:hover {
    color: var(--theme-primary-color);
}

h1.archive-title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    margin: 0 0 40px;
}

.panel-group {
    grid-template-columns: calc(75% - 20px) calc(25% - 20px);
    column-gap: 40px;
}

.d-grid {
    display: grid;

}

.grid-columns-5 {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 8px));
    column-gap: 10px;
}

.grid-columns-3 {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 8px));
    column-gap: 9px;
}

.box-loop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.box-loop-grid .loop-item {
    margin-bottom: 40px;
}

.loop-item .entry-title {
    font-size: 18px;
    margin: 0 0 15px;
    font-weight: 500;
}

.loop-item .box-shadow .entry-title {
    margin: 0 0 17px;
}

.loop-item.loop-post-custom .entry-title {
    margin: 0 0 9px;
}

h2.entry-title a {
    color: #333;
}

.loop-item .entry-title::before {
    content: '';
    display: block;
    width: 47px;
    height: 5px;
    border-radius: 4px;
    background: #f05836;
    margin: 0 0 20px;
}

.loop-item.loop-post-custom .entry-title::before {
    border-radius: 0;
    margin: 0 0 18px;
}

.loop-item .entry-title a {
    color: #333;
}

.loop-item .post-thumbnail {
    display: block;
    overflow: hidden;
    position: relative;
}

.loop-item .box-post:not(.box-shadow) .post-thumbnail {
    margin-bottom: 30px;
}

.loop-item.loop-grid .box-post:not(.box-shadow) .post-thumbnail {
    border-radius: 0 20px;
}

.loop-item .post-thumbnail img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0;
    transition: all 0.3s;
}

.loop-item .post-thumbnail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    transition: all .3s ease;
    opacity: 0;
    z-index: 1;
}

.loop-item .post-thumbnail::after {
    content: "\e59e";
    font-family: "Font Awesome 6 Pro";
    speak: none;
    font-style: normal;
    font-weight: 300;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    z-index: 2;
}

.loop-item .post-thumbnail:hover::before, .loop-item .post-thumbnail:hover::after {
    opacity: 1;
}

.box-loop-posts .loop-item .post-meta .category-post {
    display: none;
}

.post-meta {
    font-size: 13px;
    color: #7b7a7a;
}

.post-meta > * {
    display: inline-block;
    vertical-align: middle;
}

.post-meta > *:not(:last-child) {
    margin-right: 15px;
}

.post-meta .text {
    margin-right: 5px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.post-meta .meta-comments {
    float: right;
}

.loop-item .post-meta .category-post a {
    font-weight: 600;
    color: var(--theme-primary-color);
    text-transform: uppercase;
}

.loop-item .post-meta a {
    color: #7b7a7a;
}

.loop-item .post-meta a:hover, .loop-item .entry-title a:hover, .loop-single .post-meta a:hover {
    color: var(--theme-primary-color);
}

.entry-excerpt {
    font-weight: normal;
    line-height: 1.5;
    font-size: 13px;
    color: #222;
    margin-bottom: 10px;
}

.loop-item .post-meta i, .loop-single .post-meta i {
    margin-right: 5px;
    color: var(--theme-primary-color);
}

.box-shadow {
    box-shadow: 0 4px 40px #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.loop-item .box-shadow .post-content {
    padding: 20px;
}

.box-loop-testimonial {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.loop-testimonial-item .testimonial-text {
    background: #f2f2f2 url(../images/quotes-left.png) no-repeat scroll right bottom;
    position: relative;
    padding: 25px 30px 35px;
    margin: 0 0 20px;
}

.loop-testimonial-item .testimonial-text p:last-child {
    margin-bottom: 0;
}

.loop-testimonial-item .testimonial-text::after {
    content: '';
    position: absolute;
    left: 62px;
    bottom: -33px;
    width: 30px;
    height: 36px;
    background: transparent url(../images/after.png) no-repeat scroll left top;
    background-size: 15px 18px;
}

.testimonial-customer {
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.loop-testimonial-item .testimonial-info .testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 20px;
}

.loop-testimonial-item .testimonial-info .testimonial-company {
    font-size: 13px;
    color: grey;
    line-height: 20px;
    font-style: italic;
}

.box-loop-posts .loop-item {
    margin-bottom: 40px;
}

.box-loop-posts .loop-item .box-post {
    display: grid;
    grid-template-columns: 30% calc(70% - 20px);
    column-gap: 20px;
}

.box-loop-posts .loop-post-custom .post-thumbnail {
    border-radius: 5px;
}

.box-loop-posts .loop-item .entry-title {
    margin-bottom: 15px;
    font-size: 20px;
}

.hocwp-pagination, .woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 0 0 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: none;
    border-right: 0;
    margin: 30px auto;
}

.hocwp-pagination li,
.woocommerce nav.woocommerce-pagination ul li {
    float: none;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

.hocwp-pagination .page-item .page-numbers,
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    background: transparent none no-repeat scroll 0 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: none;
    padding: 0;
    display: block;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50%;
    color: #333;
}

.hocwp-pagination .page-item .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
    background-color: #ddd;
}

.hocwp-pagination .page-item .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
    background: var(--theme-primary-color) none no-repeat scroll 0 0;
    border: none;
    color: #fff;
}

.aligncenter {
    clear: both;
    margin: 20px auto;
    display: block;
}

.pwb-brand-banner {
    margin: 40px 0;
}

.pwb-brand-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.pwb-brand-description {
    width: 1600px;
    margin: 40px auto 0;
}

/* Widgets ---------------------------- */
.hwp-sidebar .widget {
    margin-bottom: 40px;
    font-size: 14px;
}

.hwp-sidebar .widget.widget_text {
    background-color: var(--theme-secondary-color);
    color: #fff;
    padding: 30px;
}

.hwp-sidebar .widget.widget_text .textwidget {
    font-size: 13px;
}

.hwp-sidebar .widget .widget-title {

    margin-bottom: 25px;
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    position: relative;

}

.hwp-sidebar .widget.widget_text .widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hwp-sidebar .widget:not(.widget_text) .widget-title {
    border-top: 3px solid #333;
    padding-top: 25px;
}

.hwp-sidebar .widget ul, .hwp-sidebar .widget ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hwp-sidebar .widget ul li {
    background-color: #f2f2f2;
    border-bottom: 1px solid #fff;
    margin: 0;
    color: #333;
}

.hwp-sidebar .widget ul li a {
    border-left: 5px solid transparent;
    color: #333;
    padding: 14px 15px 14px 15px !important;
    display: block;
    transition: all 0.3s;
}

.hwp-sidebar .widget ul li a:hover {
    border-left: 5px solid var(--theme-primary-color);
}

.hwp-sidebar .widget.widget_brands_list .widget-title {
    padding: 10px 0;
    position: relative;
}

.hwp-sidebar .widget.widget_brands_list .widget-title:after {
    background-color: var(--theme-primary-color);
    content: "";
    width: 150px;
    left: 0;
    height: 2px;
    position: absolute;
    top: 100%;
    display: block;
}

.hwp-sidebar .widget ul.pwb-row {
    display: grid;
    grid-template-columns: repeat(4, 20%);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.hwp-sidebar .widget ul.pwb-row li.pwb-columns {
    padding: 0;
    float: none;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hwp-sidebar .widget ul.pwb-row li.pwb-columns-2 {
    width: auto;
}

.hwp-sidebar .widget ul.pwb-row li a {
    display: block;
}

.hwp-sidebar .widget ul.pwb-row li a img {
    width: auto;
    height: auto;
    display: block;
    max-height: 60px;
    max-width: 100%;
    transition: all 0.3s;
}

.hwp-sidebar .widget ul.pwb-row li a:hover img {
    filter: drop-shadow(1px 2px 2px gray);
}

.hwp-sidebar .widget .loop-item {
    margin-top: 10px;
    position: relative;
}

.hwp-sidebar .widget .loop-item a, .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
    color: #333;
}

.hwp-sidebar .widget .loop-item a:hover, .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a:hover {
    color: var(--theme-primary-color);
}

.hwp-sidebar .widget .loop-item a.post-link:not(.img-hyperlink),
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
    font-weight: 500;
    font-size: 16px;
}

.hwp-sidebar .widget .loop-item .posted-on time:not(.published) {
    display: none;
}

.hwp-sidebar .widget .loop-item .posted-on {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 10px;
    background-color: rgba(0, 145, 157, 0.8);
    color: #fff;
    padding: 2px 6px;
}

.hwp-sidebar .widget .loop-item .posted-on a {
    font-size: 11px;
    color: #fff;
}

.hwp-sidebar .widget .loop-item a.img-hyperlink img {
    display: block;
}

.hwp-sidebar .widget:not(.thumbnail_size_width0height0) .loop-item:not(.full-width-item):not(.thumbnail_size_width0height0) {

}

.hwp-sidebar .widget:not(.thumbnail_size_width0height0) ul .loop-item:not(.full-width-item):not(.thumbnail_size_width0height0) > .img-hyperlink,
.hwp-sidebar .widget .loop-item:not(.full-width-item).has-post-thumbnail .img-hyperlink {
    height: auto;
    float: left;
}

.hwp-sidebar .widget .loop-item:not(.full-width-item) {
    border-bottom: 1px dashed #eee;
    padding: 10px 0;
    display: table;
    width: 100%;
    margin: 0;
}

.hwp-sidebar .widget .loop-item:before, .hwp-sidebar .widget .loop-item:after {
    display: none;
}

.hwp-sidebar .widget:not(.thumbnail_size_width0height0) .loop-item .post-info {
    width: calc(100% - 135px);
}

.hwp-sidebar .widget .loop-item .post-info .post-link {
    font-size: 16px;
    font-weight: 400;
}

.hwp-sidebar .widget .loop-item .post-info .entry-meta {
    margin-top: 5px;
    font-size: 12px;
    color: #7b7b7b;
    font-weight: 400;
}

.hwp-sidebar .widget .loop-item .post-info .entry-summary {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}

.hwp-sidebar .widget .loop-item.full-width-item {
    margin-top: 30px;
    position: relative;
}

.hwp-sidebar .widget .loop-item.full-width-item img {
    width: 100%;
    height: auto;
}

.hwp-sidebar .widget .loop-item:not(.full-width-item).has-post-thumbnail .img-hyperlink img {
    width: auto;
    height: auto;
}

.hwp-sidebar .widget .loop-item.full-width-item .post-info {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #fff;
    padding: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(56%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 56%, rgba(0, 0, 0, 0.6) 100%);
}

.hwp-sidebar .widget .loop-item.full-width-item .post-link {
    font-size: 18px;
    font-weight: 500;
}

.hwp-sidebar .widget .loop-item.full-width-item .entry-meta {
    font-size: 12px;
    margin-top: 10px;
    color: #fff;
}

.hwp-sidebar .widget .loop-item.full-width-item .entry-meta a {
    color: #fff;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 ul {
    counter-reset: section;
    list-style-type: none;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item {
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 15px;
    column-gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item::before {
    color: #0f2438;
    font-size: 30px;
    display: inline-block;
    counter-increment: section;
    content: counter(section);
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item .post-info {
    width: 100%;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item .post-info .post-link {
    font-size: 16px;
    font-weight: 400;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item .post-info .entry-meta {
    color: #999;
    font-size: 11px;
    margin-right: 6px;
    font-weight: 400;
}

.hwp-sidebar .widget.thumbnail_size_width0height0 .loop-item .info {
    flex: 1;
}

.widget .gallery-columns-3 {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 10px) / 3));
    justify-content: space-between;
    gap: 5px;
}

.widget .gallery-columns-3 .gallery-item {
    margin: 0;
}

/* Single Post ---------------------------- */

.loop-single h1.entry-title {
    font-size: 38px;
    line-height: 1.4;
    margin: 0 0 20px;
    color: #333;
}

.loop-single .post-meta {
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
    color: #333;
}

.loop-single .post-meta .meta-author {
    display: inline-block !important;
}

.loop-single .post-meta a {
    color: #333;
}

.entry-content {
    font-size: 14px;
    line-height: 1.7;
    font-weight: normal;
}

.entry-content strong, .entry-content b {
    font-weight: 600;
}

table {
    border-spacing: 0;
}

.entry-content table {
    border: 1px solid #ddd;
}

.entry-content th, .entry-content td {
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 10px;
}

.entry-content tr td:first-child {
    border-right: 1px solid #ddd;
}

.site .entry-content h1 {
    font-size: 28px;
}

.site .entry-content h2 {
    font-size: 26px;
}

.site .entry-content h3 {
    font-size: 22px;
}

.site .entry-content h4 {
    font-size: 18px;
}

.site .entry-content h5 {
    font-size: 16px;
}

.site .entry-content h6 {
    font-size: 15px;
}

.tagged_as {
    margin: 30px 0;
}

.tagged_as > * {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    margin: 0 3px 6px;
    font-size: 14px;
}

.tagged_as i {
    color: var(--theme-primary-color);
}

.tagged_as a, .tagcloud a {
    display: inline-block;
    vertical-align: top;
    padding: 5px 8px 6px;
    font-size: 13px !important;
    color: #777;
    border: 1px solid #ccc;
    margin: 0 6px 7px 0;
    text-decoration: none !important;
    text-transform: lowercase;
    transition: all .3s ease;
}

.tagged_as a:hover, .tagcloud a:hover {
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);;
    color: #fff;
}

.about-author {
    background: #f2f2f2;
    padding: 20px 20px 15px;
    margin: 30px 0 50px;
    display: flex;
    gap: 25px;
}

.about-author .author-avatar img {
    width: 87px;
}

.about-author .author-info {
    width: calc(100% - 112px);
}

.about-author .author-info > * {
    margin-bottom: 10px;
}

.author-info label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #222;
    text-transform: uppercase;
}

.author-desc {
    line-height: 22px;
    font-size: 13px;
    color: #222;
}

.content-single-post.site-inner {
    margin-bottom: 30px;
}

.related-posts .related-title {
    margin-bottom: 20px;
}

.box-loop-related {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 15px));
    column-gap: 30px;
}

.box-loop-related .loop-item .entry-excerpt {
    display: none;
}

.box-loop-related .loop-item .entry-title {
    font-size: 16px;
    font-weight: 400;
}

h3#comments {
    font-size: 20px;
}

.comments-template > ol.commentlist {
    padding: 0;
}

.comments-template > ol.commentlist .children {
    padding-left: 20px;
}

.comment-meta .comment-author {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
}

.comment-meta .comment-author img {
    margin-right: 10px;
}

.comment-meta .comment-metadata {
    padding-left: 63px;
    color: #333;
    font-size: 12px;
}

.comment-meta .comment-metadata a {
    color: #777;
}

.comments-template > ol.commentlist li {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 20px 20px 10px;
    margin-bottom: 25px;
}

.comment .reply {
    text-align: right;
    margin-bottom: 0;
}

.comment .comment-content p:last-child {
    margin-bottom: 10px;
}

/* About Page ---------------------------- */
h1.page-title {
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    word-spacing: 0px;
    text-transform: none;
    margin: 30px 0;
}

.page-thumbnail img {
    display: block;
    margin: 0 auto 30px;
}

.history-widgets .widget .icon-box {
    display: grid;
    grid-template-columns: 85px 300px calc(100% - 445px);
    justify-content: space-between;
    gap: 30px;
}

.history-widgets .widget .icon-box > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-widgets .widget .icon-box .icon-wrapper {
    padding-left: 20px;
}

.history-widgets .widget .icon-box .icon-wrapper img {
    display: block;
    margin: 25px 0;
}

.history-widgets .widget .widget-title {
    position: relative;
    padding-right: 20px;
    margin: 0;
}

.history-widgets .widget .widget-title::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--theme-primary-color);
    border-radius: 100%;
    top: calc(50% - 6px);
    right: -5px;
    z-index: 1;
}

.history-widgets .widget .widget-title::after {
    background-color: #eaeaea;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
}

.history-widgets .widget .icon-box p {
    color: #9a9a9a;
}

.mission-widgets {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.mission-widgets .widget {
    flex: 1;
}

.mission-widgets .widget .widget-title {
    font-size: 20px;
    margin-bottom: 30px;
}

.wp-block-quote {
    background-color: #f2f2f2;
    border-left: 5px solid var(--theme-primary-color);
    color: #333;
    font-size: 16px;
    padding: 21px 30px 18px;
}

/* Contact Page ---------------------------- */
.contact-info, .contact-form-support {
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-feedback-form {
    flex: 66%;
}

.contact-info > *, .support-widgets-area {
    flex: calc(33% - 10px);
}

.contact-info iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-content {
    background: var(--theme-secondary-color) url(../images/contact-info.jpeg) no-repeat scroll center center;
    background-size: cover;
    padding: 45px 50px 40px;
    color: #fff;
    position: relative;
}

.contact-content::before {
    background: rgba(0, 3, 45, .9);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    left: 0;
}

.contact-content .entry-content {
    position: relative;
    z-index: 1;
}

.contact-content .entry-content h4 {
    margin: 0 0 25px;
}

.contact-content .entry-content ul:not(.contact-socials) {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-content .entry-content ul li {
    margin-bottom: 10px;
    display: flex;
}

.contact-content .entry-content ul:not(.contact-socials) li i {
    margin-right: 15px;
    color: var(--theme-primary-color);
    font-size: 16px;
    line-height: 22px;
}

.contact-content .entry-content a {
    color: #fff;
}

.contact-content .entry-content ul:not(.contact-socials) li a:hover {
    color: var(--theme-primary-color);
    text-decoration: underline;
}

.contact-content .contact-socials {
    margin-top: 30px;
    gap: 10px;
}

.contact-content .contact-socials.list-socials li a {
    background-color: #fff;
    border-radius: 50%;
    color: var(--theme-secondary-color);
    width: 32px;
    height: 32px;
}

.contact-content .contact-socials.list-socials li a i {
    font-size: 17px;
    line-height: 32px;
}

.contact-content .contact-socials.list-socials li a:hover {
    color: #fff;
}

.contact-form-support .form-title {
    margin-bottom: 30px;
}

.support-widgets .widget {
    clear: both;
}

.support-widgets .icon-wrapper {
    width: 87px;
    float: left;
    margin-right: 25px;
    margin-bottom: 80px;
}

.support-widgets .widget .widget-title {
    font-size: 18px;
    margin: 0 0 5px;
}

.support-widgets .widget p {
    line-height: 2;
    font-size: 13px;
}

.support-widgets .widget p strong {

}

/* 404 Page ---------------------------- */
@import url(https://fonts.googleapis.com/css?family=Raleway:300,700);
#not_found_404 {

}

.circles {
    background: #fff;
    text-align: center;
    position: relative;
    display: table;
    width: 60%;
    margin: 0 auto;
}

.circles p {
    font-size: 240px;
    color: #fff;
    padding-top: 60px;
    position: relative;
    z-index: 9;
    line-height: 1;
    margin: 30px 0;
}

.circles p small {
    font-size: 40px;
    line-height: 100%;
    vertical-align: top;
}

.circles .circle.small {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #48A9E6;
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 50%;
    animation: 7s smallmove infinite cubic-bezier(1, .22, .71, .98);
    -webkit-animation: 7s smallmove infinite cubic-bezier(1, .22, .71, .98);
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.circles .circle.med {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #48A9E6;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 10%;
    animation: 7s medmove infinite cubic-bezier(.32, .04, .15, .75);
    -webkit-animation: 7s medmove infinite cubic-bezier(.32, .04, .15, .75);
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.circles .circle.big {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #48A9E6;
    position: absolute;
    z-index: 1;
    top: 200px;
    right: 0;
    animation: 8s bigmove infinite;
    -webkit-animation: 8s bigmove infinite;
    animation-delay: 3s;
    -webkit-animation-delay: 1s;
}

@-webkit-keyframes smallmove {
    0% {
        top: 10px;
        left: 45%;
        opacity: 1;
    }
    25% {
        top: 300px;
        left: 40%;
        opacity: 0.7;
    }
    50% {
        top: 240px;
        left: 55%;
        opacity: 0.4;
    }
    75% {
        top: 100px;
        left: 40%;
        opacity: 0.6;
    }
    100% {
        top: 10px;
        left: 45%;
        opacity: 1;
    }
}

@keyframes smallmove {
    0% {
        top: 10px;
        left: 45%;
        opacity: 1;
    }
    25% {
        top: 300px;
        left: 40%;
        opacity: 0.7;
    }
    50% {
        top: 240px;
        left: 55%;
        opacity: 0.4;
    }
    75% {
        top: 100px;
        left: 40%;
        opacity: 0.6;
    }
    100% {
        top: 10px;
        left: 45%;
        opacity: 1;
    }
}

@-webkit-keyframes medmove {
    0% {
        top: 0px;
        left: 20%;
        opacity: 1;
    }
    25% {
        top: 300px;
        left: 80%;
        opacity: 0.7;
    }
    50% {
        top: 240px;
        left: 55%;
        opacity: 0.4;
    }
    75% {
        top: 100px;
        left: 40%;
        opacity: 0.6;
    }
    100% {
        top: 0px;
        left: 20%;
        opacity: 1;
    }
}

@keyframes medmove {
    0% {
        top: 0px;
        left: 20%;
        opacity: 1;
    }
    25% {
        top: 300px;
        left: 80%;
        opacity: 0.7;
    }
    50% {
        top: 240px;
        left: 55%;
        opacity: 0.4;
    }
    75% {
        top: 100px;
        left: 40%;
        opacity: 0.6;
    }
    100% {
        top: 0px;
        left: 20%;
        opacity: 1;
    }
}

@-webkit-keyframes bigmove {
    0% {
        top: 0px;
        right: 4%;
        opacity: 0.5;
    }
    25% {
        top: 100px;
        right: 40%;
        opacity: 0.4;
    }
    50% {
        top: 240px;
        right: 45%;
        opacity: 0.8;
    }
    75% {
        top: 100px;
        right: 35%;
        opacity: 0.6;
    }
    100% {
        top: 0px;
        right: 4%;
        opacity: 0.5;
    }
}

@keyframes bigmove {
    0% {
        top: 0px;
        right: 4%;
        opacity: 0.5;
    }
    25% {
        top: 100px;
        right: 40%;
        opacity: 0.4;
    }
    50% {
        top: 240px;
        right: 45%;
        opacity: 0.8;
    }
    75% {
        top: 100px;
        right: 35%;
        opacity: 0.6;
    }
    100% {
        top: 0px;
        right: 4%;
        opacity: 0.5;
    }
}

/* Site footer ---------------------------- */
.footer-widgets-area {
    background-color: var(--theme-secondary-color);
    color: #fff;
    font-size: 15px;
}

.footer-widgets {
    justify-content: space-between;
    column-gap: 60px;
    font-weight: 400;
}

.footer-widgets .widget {
    flex: 1;
}

.footer-widgets .widget a {
    color: #fff;
}

.footer-widgets .widget .menu li a:hover {
    color: var(--theme-primary-color);
}

.footer-widgets .widget .widget-title {
    font-size: 18px;
    margin: 15px 0 30px;
    font-weight: 800;
    color: #fff;
    text-transform: none;
}

.footer-socials-area {
    text-align: center;
}

.footer-socials {
    margin: 30px 0 0;
    gap: 15px;
    justify-content: flex-start;
}

.footer-socials.list-socials li.social-item a {
    background-color: transparent;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 17px;
    line-height: 34px;
}

.footer-socials.list-socials li.social-item a i {
    font-size: 17px;
    line-height: 34px;
}

.footer-socials.list-socials li.social-item a:hover {
    background-color: #008e6d;
}

.footer-widgets .widget ul li {
    margin-bottom: 15px;
}

.footer-widgets .widget ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-widgets .widget ul.menu li {
    width: 50%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #999;
}

.float-supports a {
    color: rgba(120, 120, 255, 0.3);
    transition: all 0.5s;
}

.float-supports .text {
    color: #333;
}

.float-supports[data-style="vertical"] .support-item[data-earthquake="1"] {
    margin-bottom: 5px;
    margin-top: 5px;
}

h3.form-name {
    background-color: #1DB95312;
    color: #A6B1B7;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

.forminator-ui#forminator-module-510.forminator-design--flat .forminator-button-submit {

}

.forminator-ui#forminator-module-510.forminator-design--flat .forminator-button-submit::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
    line-height: 40px;
}

/* Responsive ---------------------------- */

/* =========== For larger screen width =========== */

@media only screen and (min-width: 2133px) {

}

@media only screen and (min-width: 2400px) {

}

@media only screen and (min-width: 2560px) {

}

@media only screen and (min-width: 2880px) {

}

@media only screen and (min-width: 3840px) {

}

@media only screen and (min-width: 5760px) {

}

@media only screen and (min-width: 7680px) {

}

/*
 * Base screen width is 1920px
 */

/* =========== For smaller screen width =========== */

@media only screen and (max-width: 1745px) {

}

/* 125% screen width -------------------- */
@media only screen and (max-width: 1536px) {

}

@media only screen and (max-width: 1400px) {

    .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

}

/* 150% screen width -------------------- */
@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1240px) {

}

.mobile-menus-box {
    display: none;
    position: absolute !important;
    right: 0;
    top: 0;
}

.mobile-menu > .menu-toggle {
    background-color: transparent;
    display: inline-block;
    width: 50px;
    height: 70px;
    border: none;
    color: #fff;
    padding: 15px 0 0 !important;
    font-weight: 500;
    line-height: 70px;
    box-shadow: none;
}

.mobile-menu.position-right .menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    z-index: 999999;
}

.mobile-menu.has-close > .menu:before, .mobile-menu.has-close > .menu:after, .mobile-menu > .menu-toggle span[class*="line-"] {
    width: 30px;
    height: 4px;
    display: block;
    background: #fff;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}

.mobile-menu > .menu-toggle span[class*="line-"] {
    margin-bottom: 6px;
    background-color: #fff;
}

.mobile-menu > .menu-toggle[aria-expanded="true"] span[class*="line-"] {
    height: 26px;
    width: 4px;
    position: absolute;
    left: 23px;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.mobile-menu > .menu li a {
    font-weight: 500;
    font-size: 16px;
}

.mobile-menu .menu li .sub-menu a {
    text-transform: none;
}

.mobile-menu > .menu li.search-item, .mobile-menu .search-item {
    display: table;
}

.mobile-menu .search-item .search-form input[type="search"], .mobile-menu .search-item .search-form input[type="text"], .mobile-menu .search-item .search-form input[type="submit"] {
    box-shadow: none;
}

.mobile-menu .menu-item-has-children > a span.arrow {
    right: 10px;
}

@media only screen and (max-width: 1100px) {
    .mobile-menus-box, .mobile-menu > .menu-toggle {
        display: block !important;
    }

    .logo-contact-area {
        position: relative;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-menu, .header-contact-icon, .module-gallery-images, .module-about-us .module-image::before {
        display: none !important;
    }

    .header-logo {
        min-height: 70px;
    }

    .site-branding.site-logo .site-title {
        margin: 15px 0;
    }

    .site-branding.site-logo img {
        max-height: 50px;
    }

    .module-completed {
        margin-bottom: 0;
    }

    .module-intro-banner .module-text h3 {
        font-size: 38px;
    }

    .group-banner-text.d-flex {
        flex-direction: column;
    }

    .module-about-us .module-image .icon-item.icon-left {
        left: -10px;
        padding: 10px;
    }

    .module-about-us .module-image .icon-item {
        font-size: 12px;
        padding: 10px 15px;
    }

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

    .padding-90 {
        padding: 40px 0;
    }

    .services-icon-widgets, .loop-carousel .box-post, .group-contacts.d-flex,
    .footer-widgets, .mission-widgets, .about-author,
    .contact-info, .contact-form-support {
        flex-direction: column;
        flex-wrap: inherit;
    }

    h3.module-title, .loop-page h1.entry-title {
        font-size: 26px;
    }

    .module-text h4 {
        font-size: 16px;
    }

    .module-text {
        font-size: 14px;
    }

    .module-completed .group-banner-text.d-flex .home-slider,
    .contact-info > *, .support-widgets-area,
    .group-banner-text.d-flex > * {
        flex: 100%;
    }

    .group-banner-text.d-flex, .module-completed .group-banner-text.d-flex, .group-contacts.d-flex {
        align-items: inherit;
    }

    .module-about-us .group-banner-text.d-flex {
        gap: 60px;
    }

    .statistical-number ul {
        grid-template-columns: 100%;
        gap: 25px;
    }

    .module-intro-banner .module-image {
        height: 600px;
    }

    .loop-carousel .box-post, .group-contacts.d-flex {
        row-gap: 20px;
    }

    .loop-carousel {
        padding: 15px 0 0 20px;
        margin-bottom: 30px;
    }

    .content-home .box-loop-grid, .panel-group {
        grid-template-columns: 100%;
        align-items: inherit;
    }

    .contact-icon .widget .icon-box {
        align-items: flex-start;
    }

    .history-widgets .widget .icon-box {
        grid-template-columns: 100%;
        gap: 0;
    }

    .history-widgets .widget .icon-box .icon-wrapper {
        padding-left: 0;
    }

    .history-widgets .widget .icon-box .icon-wrapper img {
        margin: 0;
    }

    .history-widgets .widget .icon-box {
        padding-left: 35px;
        padding-top: 30px;
    }

    .history-widgets .widget .widget-title {
        position: static;
        padding-right: 0;
        margin: 0 0 20px;
    }

    .history-widgets .widget {
        position: relative;
    }

    .history-widgets .widget .widget-title::before, .history-widgets .widget .widget-title::after {
        display: none;
    }

    .history-widgets .widget::before {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        background-color: var(--theme-primary-color);
        border-radius: 100%;
        top: calc(50% - 6px);
        left: -5px;
        z-index: 1;
    }

    .history-widgets .widget::after {
        background-color: #eaeaea;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
    }

    .mb60 {
        margin-bottom: 30px;
    }

    .mb80 {
        margin-bottom: 40px;
    }

    .post-meta > * {
        margin-bottom: 10px;
    }

    .loop-single h1.entry-title {
        font-size: 28px;
    }

    .about-author .author-info {
        width: 100%;
    }

    .comment-content {
        font-size: 13px;
    }

    .contact-content {
        padding: 20px;
    }

    .support-widgets .icon-wrapper {
        margin-bottom: 50px;
    }

    .contact-info iframe {
        min-height: 300px;
    }
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 955px) {

}

@media only screen and (max-width: 880px) {

}

@media only screen and (max-width: 800px) {
    h1.archive-title {
        font-size: 38px;
        line-height: 50px;
    }

    .box-loop-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
    }

    .loop-item .entry-title {
        font-size: 15px;
        margin: 0 0 10px;
    }

    .loop-item .box-post:not(.box-shadow) .post-thumbnail {
        margin-bottom: 20px;
    }
}

/*
 * WordPress Admin Bar change height.
 */
@media only screen and (max-width: 782px) {

}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 740px) {

}

@media only screen and (max-width: 728px) {

}

@media only screen and (max-width: 640px) {

}

@media only screen and (max-width: 620px) {

}

/*
 * WordPress Admin Bar un-fixed.
 */
@media only screen and (max-width: 600px) {
    .admin-bar .mobile-menu > .menu {
        top: 46px;
    }

    .box-loop-testimonial {
        grid-template-columns: 100%;
    }

    .comment-form-author, .comment-form-email, .comment-form-url {
        display: block;
        width: 100%;
        margin-left: 0;
    }
}

@media only screen and (max-width: 568px) {

}

@media only screen and (max-width: 563px) {

}

@media only screen and (max-width: 549px) {

}

@media only screen and (max-width: 534px) {

}

@media only screen and (max-width: 480px) {

}

@media only screen and (max-width: 420px) {

}

@media only screen and (max-width: 360px) {

}

@media only screen and (max-width: 338px) {

}

@media only screen and (max-width: 330px) {

}

@media only screen and (max-width: 320px) {

}

@media print {

}