/*
============================
Theme Name: Helpy
Theme URI: 
Author: Vikinglab
Author URI: 
Description: Helpy - IT Solutions & Technology Startup WordPress Theme
============================
*/


/*
-----------------------------------------------
CSS LIST
-----------------------------------------------
==============
1. Typography CSS
==============
2. Blog CSS
==============
3. Blog Sidebar CSS
==============
4. Widget CSS
==============
*/


/* 
==============
Typography CSS
============== */


select {
  padding: 12px;
  width: 100%;
  border-radius: 4px;
}

button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

 
 :root {
  --vl-core-body-color-1: #514F4C;
  --vl-core-color-1: #181713;
  --vl-core-color-2: #FBD459;
  --vl-core-color-3: #95999D;
  --vl-core-white-color-1: #ffffff;

  --vl-core-bg-color-1: #FBD459 ;
  --vl-core-bg-color-2: #F6F4EE;
  --vl-core-bg-color-3: #f8f9fa;
  --vl-core-bg-color-4: #f8f9fa;
  --vl-core-white-bg: #ffffff;
  --vl-core-bg-black-color:#181713 ;

  --vl-core-border-1: #d6d6d6;
  --vl-core-border-2: #949494;
  --vl-core-border-3: #E0E2E3;
  --vl-core-border-4: #d1d1d1;
  --vl-core-border-5: #FBD459;

  --vl-core-input-bg-1: #f8f9fa;

  --vl-core-preloader-bg:#FBD459;
  --vl-core-preloader-line-1:#ffffff;
  --vl-core-preloader-line-2:#181713;

  --vl-core-back-btn-color-1:#FBD459;
  --vl-core-back-btn-color-2:#FBD459;

  --vl-core-box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
  --vl-core-base-font: 'Nunito Sans', sans-serif;
  --vl-core-heading-font: 'Quicksand', sans-serif;

  --vl-core-base-font-size:16px;

}


body{
  font-family: var(--vl-core-base-font);
  font-size: var(--vl-core-base-font-size);
  line-height: 28px;
  color: var(--vl-core-body-color-1);
}



h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--vl-core-heading-font);
  color: var(--vl-core-color-1);
}

time {
  font-family: var(--vl-core-heading-font);
  color: var(--vl-core-color-1);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  font-family: var(--vl-core-base-font);
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: var(--vtc-text-text-white-text-1);
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: var(--vl-core-base-font-size);
  color: var(--vl-core-color-1);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid var(--vl-core-border-3);
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--vl-core-color-3);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--vl-core-color-3);
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--vl-core-color-3);
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--vl-core-color-3);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: var(--vl-core-color-3);
}

[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--vl-core-color-1);
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--vl-core-bg-black-color);
  color: var(--vl-core-white-color-1);
  text-shadow: none;
}

::-moz-selection {
  background: var(--vl-core-bg-black-color);
  color: var(--vl-core-white-color-1);
  text-shadow: none;
}

::selection {
  background: var(--vl-core-bg-black-color);
  color: var(--vl-core-white-color-1);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea,
select,
option {
  max-width: 100%;
}


ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  padding: 0;
  margin: 0;
}

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

a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  transition: all .3s;
}

/* 
==============
Header CSS
============== */


header .sticky {
  border: none;
}


.header_area_default{
  padding: 12px 0;
}

.header_area_default .header-elements {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: space-between;
}

.header_area_default.sticky .header-elements .main-menu-ex {
  padding: 7px 24px;
  position: relative;
}


.header_area_default {
  background-color: var(--vl-core-white-color-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header_area_default {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .header_area_default {
    padding: 20px 20px;
  }
}

.header_area_default .main-menu-ex ul li .mega-menu-all {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: var(--vl-core-white-bg);
  top: 201.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 36px 0;
  left: -400px;
  width: 1000px;
  min-height: 320px;
  overflow-x: hidden;
  overflow-y: hidden;
  transform-origin: top;
  display: block;
  border: 4px solid rgba(106, 92, 255, 0.1098039216);
}


.header_area_default .main-menu-ex ul li ul {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 4px;
  width: 220px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  padding: 10px;
}

.header_area_default .main-menu-ex ul li ul li ul {
  left: 200px;
}
.header_area_default .main-menu-ex ul li ul li a {
  color: var(--vl-core-color-1);
}
.header_area_default .main-menu-ex ul li ul li a::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 0%;
  height: 2px;
  color: var(--vl-core-white-color-1);
  border-radius: 4px;
  transition: all 0.4s;
  z-index: -1;
  opacity: 1;
}
.header_area_default .main-menu-ex ul li ul li a:hover::after {
  background-color: var(--vl-core-bg-color-1);
  border-radius: 4px;
  width: 50px;
  left: 17px;
  opacity: 1;
}
.header_area_default .main-menu-ex ul li a {
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s;
}
.header_area_default .main-menu-ex ul li:hover .tp-submenu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 150.3%;
  position: absolute;
  transition: all 0.4s;
  transform: scale(1);
}

.header_area_default .header-elements .main-menu-ex {
  padding: 2px 24px;
  position: relative;
}
.header_area_default .header-elements .main-menu-ex ul li ul {
  position: absolute;
  left: 0;
  top: 50px;
  border-radius: 4px;
  border: 2px solid rgba(106, 92, 255, 0.1098039216);
  background: var(--vl-core-white-bg);
  -webkit-backdrop-filter: blur(27px);
          backdrop-filter: blur(27px);
  width: 220px;
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;

}

.header_area_default .header-elements .main-menu-ex ul li ul li ul {
  left: 190px;
  top: 10px;
}

.header_area_default .header-elements .main-menu-ex ul li ul li a {
  color: var(--vl-core-color-1);
  display: flex;
  justify-content: space-between;
}


.header_area_default .header-elements .main-menu-ex ul li a {
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  display: block;
  font-weight: 400;
  padding: 6px 16px;
  transition: all 0.3s;
}

.header_area_default .header-elements .main-menu-ex ul li a:hover{
  color: var(--vl-core-color-2);
  transition: all .3s;
}


.header_area_default .header-elements .main-menu-ex ul li:hover .mega-menu-all {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(-30px);
}

.header_area_default.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-color: var(--vl-core-white-bg);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  box-shadow: rgba(0, 0, 0, 0.068) 0px 20px 30px;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.header_area_default .main-menu-ex.main-menu-ex1 ul li a.active {
  color: var(--vl-core-bg-color-1);
}

.header_area_default .main-menu-ex li {
  display: inline-block;
}

.header_area_default .main-menu-ex li {
  position: relative;
  z-index: 9;
}

.header_area_default .main-menu-ex li li {
  display: block;
}

.header_area_default .main-menu-ex li > ul {
  opacity: 0;
  visibility: hidden;
  top: 60px;
  right: 0;
  transition: all 0.3s;
  transform: translateY(20px) rotateX(45deg);
}

.header_area_default .main-menu-ex li li > ul {
  left: 100%;
  right: auto;
}

.header_area_default .main-menu-ex li li:hover > ul {
  top: 0;
}

.header_area_default .main-menu-ex li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 50px;
  transition: all 0.3s;
  z-index: 99;
  transform: translateY(0);
}

.header_area_default li.has-dropdown1 {
  position: relative;
}

.header_area_default li.has-dropdown1 span {
  position: absolute;
  right: 10px;
}

.header_area_default.sticky{
  padding: 0;
}

/* 
==============
Blog CSS
============== */

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

.vl-postbox-area .blog_gallery_slider .owl-nav button {
  width: 80px;
  height: 80px;
  background: var(--vl-core-bg-color-1);
  border-radius: 50%;
  border: 1px solid var(--vl-core-color-2);
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -40px;
  color: var(--vl-core-white-color-1);
}

.vl-postbox-area .blog_gallery_slider .owl-nav button.owl-next {
  left: auto;
  right: 10px;
}

.vl-postbox-area .blog_gallery_slider .owl-nav button:hover {
  background: var(--vl-core-white-bg);
  color: var(--vl-core-color-2);
}

.vl-postbox-content p{
  font-size: var(--vl-core-base-font-size);
  line-height: 26px;
}

.postbox_quote__item {
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.postbox_quote__item .post__text p {
  font-style: italic;
}

.vl-pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.vl-pagination ul li {
  display: inline-block;
}

.vl-pagination ul li:not(:last-child) {
  margin-right: 6px;
}

.vl-pagination ul li a, .vl-pagination ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid rgba(2, 11, 24, 0.1);
  font-size: var(--vl-core-base-font-size);
  font-weight: 500;
  color: var(--vl-core-body-color-1);
}

.vl-pagination ul li a:hover, .vl-pagination ul li a.current, .vl-pagination ul li span:hover, .vl-pagination ul li span.current {
  background: var(--vl-core-bg-color-1);
  border-color: var(--vl-core-bg-color-1);
  color: var(--vtc-text-text-white-text-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__area {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__area {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.breadcrumb__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__bg {
    left: 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 (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__bg {
    top: 0;
  }
}

.breadcrumb__title {
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -1.92px;
  color: var(--vl-core-white-color-1);
  margin-bottom: 0;
  text-transform: capitalize;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb__title {
    text-align: center;
    margin-bottom: 20px;
  }
}

.breadcrumb__list span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  color: var(--vl-core-white-color-1);
}

.breadcrumb__list span:not(:last-of-type) {
  margin-right: 8px;
}

.breadcrumb__list span a:hover {
  color: var(--vl-core-color-2);
}

.offcanvas__area {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(-100% - 80px));
  -moz-transform: translateX(calc(-100% - 80px));
  -ms-transform: translateX(calc(-100% - 80px));
  -o-transform: translateX(calc(-100% - 80px));
  transform: translateX(calc(-100% - 80px));
  background: #ffffff none repeat scroll 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-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 (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .offcanvas__area {
    right: 0;
    left: auto;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__area.home-2-pos {
    right: 0;
    left: auto;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
  }
}

.offcanvas__area.home-3-pos {
  right: 0;
  left: auto;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
}

.offcanvas__area::-webkit-scrollbar {
  display: none; 
}

.offcanvas__area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .offcanvas__top {
    margin-bottom: 30px;
  }
}

.offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 999;
  min-height: 100%;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 30px;
  }
}

.offcanvas__close {
  position: absolute;
  top: 35px;
  right: 30px;
}

@media (max-width: 575px) {
  .offcanvas__close {
    right: 20px;
    top: 20px;
  }
}

.offcanvas__close-btn {
  position: relative;
  display: inline-block;
  font-size: var(--vl-core-base-font-size);
  height: 44px;
  width: 44px;
  line-height: 40px;
  border-radius: 10px;
  background-color: var(--vl-core-bg-color-2);
  color: var(--vl-core-body-color-1);
}

.offcanvas__close-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--vl-core-bg-color-1);
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 0;
}

.offcanvas__close-btn svg {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.offcanvas__close-btn:hover::after {
  opacity: 1;
}

.offcanvas__close-btn:hover svg {
  color: var(--vl-core-white-color-1);
  transform: rotate(45deg);
}

.offcanvas__inner h4 {
  font-family: var(--vl-core-base-font);
  font-size: 24px;
  color: var(--vl-core-white-color-1);
  line-height: 1.3;
  margin-bottom: 15px;
}

.offcanvas__inner p {
  font-family: var(--vl-core-base-font);
  font-size: var(--vl-core-base-font-size);
  line-height: 22px;
  color: var(--vl-core-white-color-1);
  margin-bottom: 30px;
}

.offcanvas__inner > img {
  margin-bottom: 30px;
}

.offcanvas__menu ul li {
  list-style: none;
  margin-bottom: 10px;
}

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

.offcanvas__menu ul li a {
  font-weight: 700;
  font-size: 20px;
  color: var(--vl-core-color-1);
}

.offcanvas__menu ul li:hover > a {
  color: var(--vl-core-color-2);
}

.offcanvas__text p {
  font-family: var(--vl-core-base-font);
  font-weight: 400;
  font-size: var(--vl-core-base-font-size);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--vl-core-color-1);
  margin-bottom: 25px;
}

.offcanvas__contact {
  margin-bottom: 30px;
}

.offcanvas__contact-content {
  margin-bottom: 10px;
}

.offcanvas__contact-content-icon i {
  color: #6EC1E4;
  margin-right: 10px;
}

.offcanvas__contact-content-content a {
  font-size: var(--vl-core-base-font-size);
}

.offcanvas__social {
  margin-bottom: 22px;
  padding-bottom: 40px;
}

.offcanvas__social .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  text-align: center;
  background: transparent;
  color: var(--vl-core-white-color-1);
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.offcanvas__social .icon.facebook {
  background-color: #4661C5;
}

.offcanvas__social .icon.twitter {
  background-color: #4CCEF9;
}

.offcanvas__social .icon.youtube {
  background-color: #FF0000;
}

.offcanvas__social .icon.linkedin {
  background-color: #0072b1;
}

.offcanvas__social .icon:hover {
  transform: translateY(-8px);
}

.offcanvas__title {
  font-size: 24px;
  color: var(--vl-core-color-1);
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .offcanvas__popup {
    display: none;
  }
}

.offcanvas__popup p {
  margin-bottom: 20px;
}

.offcanvas__popup-gallery {
  margin-bottom: 30px;
}

.offcanvas__popup-gallery a {
  margin: 5px 3px;
  display: inline-block;
}

.offcanvas__popup-gallery a img {
  height: 100px;
  max-width: 100px;
  object-fit: cover;
}

.offcanvas__info-item {
  margin-bottom: 38px;
}

.offcanvas__info-item-title {
  font-family: var(--vl-core-base-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--vl-core-white-color-1);
  margin-bottom: 12px;
}

.offcanvas__info-item p {
  font-size: var(--vl-core-base-font-size);
  color: var(--vl-core-body-color-1);
  margin-bottom: 0;
  line-height: 22px;
}

.offcanvas__info-item p a:hover {
  color: var(--vl-core-color-2);
}

.vl-postbox-item {
  border-radius: 4px;
  background: var(--vl-core-white-bg);
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
}

.vl-postbox-thumb {
  border-radius: 4px;
}

.vl-postbox-thumb img {
  width: 100%;
  border-radius: 4px 4px 0px 0px;
}

.vl-postbox-thumb-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50px, -50px);
}

a.play-btn.popup-video {
  width: 80px;
  height: 80px;
  text-align: center;
  background: var(--vl-core-bg-color-1);
  display: inline-block;
  border-radius: 50%;
  line-height: 80px;
  font-size: 22px;
  color: var(--vl-core-white-color-1);
  transition: all .3s;
  border: 1px solid transparent;
}

a.play-btn.popup-video:hover {
  border: 1px solid var(--vl-core-bg-color-1);
  background: transparent;
  color: var(--vl-core-bg-color-1);
}

.vl-postbox-thumb-date {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 4px;
  padding: 7px 16px;
  z-index: 1;
  background: var(--vl-core-white-bg);
  border-top: 2px solid var(--vl-core-color-2);
}

.vl-postbox-thumb-date span {
  font-size: 20px;
  font-weight: 500;
  display: block;
  letter-spacing: -0.8px;
  background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
}

.vl-postbox-thumb-date p {
  color: var(--vl-core-body-color-1);
  margin: 0;
}

.vl-postbox-content {
  padding: 30px 30px 30px;
}

.vl-postbox-content p {
  color: var(--vl-core-body-color-1);
  margin-bottom: 25px;
}

.vl-postbox-meta {
  margin-bottom: 15px;
}

.vl-postbox-meta span {
  font-family: var(--vl-core-base-font);
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-body-color-1);
  margin-right: 24px;
  text-transform: capitalize;
}

.vl-postbox-meta span i {
  color: var(--vl-core-body-color-1);
  margin-right: 5px;
}

.vl-postbox-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--vl-core-color-1);
  font-family: var(--vl-core-heading-font);
}
.vl-postbox-title a{
  font-family: var(--vl-core-heading-font);
}

@media (max-width: 575px) {
  .vl-postbox-title {
    font-size: 24px;
  }
}

.vl-postbox-title a:hover {
  color: var(--vl-core-bg-color-1);
}

.vl-postbox-btn {
  font-size: var(--vl-core-base-font-size);
  font-weight: 600;
  letter-spacing: 0.8px;
  background: var(--vl-core-bg-color-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vl-postbox-pagination {
    margin-bottom: 30px;
  }
}

.vl-postbox-pagination ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

.vl-postbox-pagination ul li a {
  position: relative;
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-bg-color-1);
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--vl-core-bg-color-1);
  z-index: 1;
}
.vl-postbox-pagination ul li .current, .vl-postbox-pagination ul li a:hover {
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 4px;
  color: var(--vl-core-white-color-1);
  background: var(--vl-core-bg-color-1);
}

.vl-postbox-nav button {
  position: absolute;
  top: 50%;
  left: 30px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  font-size: var(--vl-core-base-font-size);
  font-weight: 500;
  color: var(--vl-core-white-color-1);
  background: #D8E5EB;
  z-index: 1;
  transform: translateY(-50%);
}

.vl-postbox-nav button:hover i {
  background: var(--vl-core-white-bg);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.vl-postbox-nav button:hover::before {
  opacity: 1;
}

.vl-postbox-nav button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  opacity: 0;
  background-image: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.vl-postbox-nav button i {
  background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.vl-postbox-nav button.vl-blog-next-1 {
  right: 30px;
  left: auto;
}

.vl-postbox-item-thumb {
  margin-bottom: 30px;
}

.vl-postbox-item-thumb img {
  width: 100%;
  border-radius: 4px;
}

.vl-postbox-item-wrapper p {
  color: var(--vl-core-body-color-1);
  margin-bottom: 10px;
}

.vl-postbox-meta2 {
  position: absolute;
  bottom: -20px;
  background: var(--vl-core-white-bg);
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
  padding: 16px 40px;
  margin: 0 14%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .vl-postbox-meta2 {
    margin: 0 8%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .vl-postbox-meta2 {
    margin: 0 2%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl-postbox-meta2 {
    margin: 0 7%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .vl-postbox-meta2 {
    margin: 0 1%;
    padding: 16px 25px;
  }
}

@media (max-width: 575px) {
  .vl-postbox-meta2 {
    position: static;
    padding: 16px 30px;
    margin: 16px 10%;
  }
}

.vl-postbox-meta2 span {
  font-family: var(--vl-core-base-font);
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-body-color-1);
  display: inline-block;
}

.vl-postbox-meta2 span:not(:last-of-type) {
  margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .vl-postbox-meta2 span:not(:last-of-type) {
    margin-right: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .vl-postbox-meta2 span:not(:last-of-type) {
    margin-right: 10px;
  }
}

.vl-postbox-meta2 span i {
  margin-right: 2px;
}

.vl-postbox-title2 {
  font-size: 40px;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .vl-postbox-title2 {
    font-size: 42px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .vl-postbox-title2 {
    font-size: 38px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .vl-postbox-title2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .vl-postbox-title2 {
    font-size: 30px;
  }
}

.vl-postbox-list-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .vl-postbox-list-wrapper {
    flex-wrap: wrap;
  }
}

.vl-postbox-list-title {
  font-weight: 600;
  letter-spacing: -0.96px;
}

.vl-postbox-list-title i {
  font-size: var(--vl-core-base-font-size);
  font-weight: 900;
  height: 16px;
  width: 16px;
  margin-right: 2px;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
  transform: translateY(-2px);
  color: var(--vl-core-white-color-1);
  background: var(--vl-core-bg-color-1);
}

.vl-postbox-share-wrapper {
  margin-top: 60px;
  padding: 30px 0px 10px 0px;
  border-top: 1px solid rgba(103, 104, 122, 0.200000003);
  border-bottom: 1px solid rgba(103, 104, 122, 0.200000003);
}

@media (max-width: 575px) {
  .vl-postbox-share-wrapper {
    padding-bottom: 35px;
  }
}

.vl-postbox-share-social .vl-footer-widget-social a {
  background: #F6F6F9;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.vl-postbox-share-social .vl-footer-widget-social a i {
  color: var(--vl-core-color-2);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.vl-postbox-share-social .vl-footer-widget-social a:hover {
  background: none;
}

.vl-postbox-share-social .vl-footer-widget-social a:hover i {
  color: var(--vl-core-white-color-1);
}

.vl-postbox-comment ul li {
  list-style: none;
}

.vl-postbox-comment ul li.children {
  margin-left: 110px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vl-postbox-comment ul li.children {
    margin-left: 0;
  }
}

.vl-postbox-comment ul li .vl-postbox-comment-box.border-mr {
  margin-bottom: 30px;
  padding-bottom: 45px;
  border-bottom: 1px solid #E3E3E3;
}

@media (max-width: 575px) {
  .vl-postbox-comment ul li .vl-postbox-comment-box-inner {
    flex-wrap: wrap;
  }
}

.vl-postbox-comment ul li .vl-postbox-comment-avater {
  margin-right: 30px;
}

@media (max-width: 575px) {
  .vl-postbox-comment ul li .vl-postbox-comment-avater {
    margin-bottom: 10px;
  }
}

.vl-postbox-comment ul li .vl-postbox-comment-avater img {
  border-radius: 140px;
}

.vl-postbox-comment ul li .vl-postbox-comment-content p {
  color: var(--vl-core-body-color-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 (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vl-postbox-comment ul li .vl-postbox-comment-content p br {
    display: none;
  }
}

.vl-postbox-comment ul li .vl-postbox-comment-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  margin-bottom: 18px;
  margin-right: 15px;
}

.vl-postbox-comment ul li .vl-postbox-comment-date {
  font-size: var(--vl-core-base-font-size);
  color: var(--vl-core-body-color-1);
  margin-bottom: 18px;
}

.vl-postbox-comment ul li .vl-postbox-comment-reply {
  position: absolute;
  bottom: 0;
  left: 132px;
}

.vl-postbox-comment ul li .vl-postbox-comment-reply a {
  font-size: var(--vl-core-base-font-size);
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 10px 13px;
  border-radius: 4px;
  color: var(--vl-core-color-2);
  background: rgba(103, 104, 122, 0.1000000015);
}

.vl-postbox-comment ul li .vl-postbox-comment-reply a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}

.vl-postbox-comment ul li .vl-postbox-comment-reply a i {
  margin-left: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vl-postbox-reply {
    margin-bottom: 30px;
  }
}

.vl-postbox-reply-title {
  position: relative;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.54px;
}

.vl-postbox-reply-title::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background: var(--vl-core-bg-color-1);
}

.vl-postbox-input input {
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  height: 70px;
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  margin-bottom: 20px;
  background: var(--vl-core-white-bg);
}

.vl-postbox-input input::placeholder {
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-body-color-1);
}

.vl-postbox-input input:focus {
  box-shadow: none;
  color: var(--vl-core-body-color-1);
  border: 1px solid var(--vl-core-bg-color-1);
}

.vl-postbox-input textarea {
  height: 188px;
  resize: none;
  border-radius: 4px;
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  margin-bottom: 20px;
  border: 1px solid #E3E3E3;
}

.vl-postbox-input textarea::placeholder {
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-body-color-1);
}

.vl-postbox-input textarea:focus {
  border: 1px solid var(--vl-core-bg-color-1);
  color: var(--vl-core-body-color-1);
}

.vl-postbox-input-btn .vl-btn {
  width: 100%;
  border-radius: 4px;
  padding: 22px 0;
}

blockquote {
  position: relative;
  padding: 25px 115px 25px 40px;
  margin-bottom: 35px;
  background: var(--vl-core-white-bg);
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
  z-index: 1;
}

@media (max-width: 575px) {
  blockquote {
    padding: 25px 80px 25px 35px;
  }
}

blockquote img {
  position: absolute;
  top: 64px;
  right: 28px;
}

blockquote::after {
  position: absolute;
  content: "";
  height: 100px;
  width: 2px;
  top: 25px;
  left: 0;
  background-color: var(--vl-core-bg-color-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  blockquote::after {
    top: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  blockquote::after {
    height: 145px;
    top: 32px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  blockquote::after {
    height: 185px;
  }
}

.vl-postbox-thumb iframe {
  width: 100%;
}

.vl-postbox-item-thumb iframe {
  width: 100%;
}

.vl-postbox-comment .latest-comments ul li .children {
  margin-left: 60px;
}
@media (max-width: 575px) {
  .vl-postbox-comment .latest-comments ul li .children {
    margin-left: 0;
  }
}

.postbox__comment-reply span {
  font-size: var(--vl-core-base-font-size);
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 6px 15px;
  border-radius: 4px;
  color: var(--vl-core-white-color-1);
  background: var(--vl-core-bg-color-1);
  margin-top: 20px;
  display: inline-block;
  transition: 0.3s;
}

.postbox__comment-reply span:hover {
  background-color: var(--vl-core-bg-black-color);
  color: var(--vl-core-white-color-1);
}

.postbox__comment-title {
  font-weight: 600;
}

.vl-rc__post:not(:last-of-type) {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.vl-rc__post-thumb img {
  border-radius: 4px;
}

.vl-rc__post-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.vl-rc__post-title a:hover {
  color: var(--vtc-text-common-color-3);
}

.vl-rc__post-meta span {
  font-family: var(--vl-core-base-font);
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  color: var(--vl-core-color-1);
}

.vl-rc__post-meta span i {
  color: var(--vl-core-color-1);
  margin-right: 10px;
}

.vl-rc__post-thumb a img {
  width: 80px !important;
  height: 80px !important;
}

.vl-rc__post-thumb {
  flex: 0 0 auto;
}



.theme-btn-default {
  display: inline-block;
  background-color: var(--vl-core-bg-color-1);
  border-radius: 30px;
  padding: 12px 12px 12px 20px;
  color: var(--vl-core-color-1);
  font-weight: 700;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  border: none;
  font-family: var(--vl-core-base-font);
}

.theme-btn-default:hover {
  color: var(--vl-core-white-color-1);
  transform: translateY(-4px);
  transition: all 0.4s;
  background-color: var(--vl-core-bg-black-color);
}

a.theme-btn-default span {
  margin-left: 8px;
  width: 30px;
  height: 30px;
  background: var(--vl-core-white-bg);
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.theme-btn-default:hover span{
  color: var(--vl-core-color-1);
}
/* 
==============
Blog Sidebar CSS
============== */


.vl-sidebar-wrapper{
  position: sticky;
  top: 100px;
}
   
.vl-sidebar-widget-content ul li ul {
  border-top: 1px solid #E3E3E3;
  margin-top: 20px;
  padding-top: 20px;
}
.vl-sidebar-widget {
  padding: 30px;
  border-radius: 4px;
  background: var(--vl-core-white-bg);
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
}

.vl-sidebar-widget-content ul li {
  list-style: none;
}

.vl-sidebar-widget-content ul li:not(:last-of-type) {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.vl-sidebar-widget-content ul li a {
  font-size: 20px;
  font-weight: 400;
  display: block;
  position: relative;
  color: var(--vl-core-color-1);
}

.vl-sidebar-widget-content ul li a:hover {
  color: var(--vl-core-bg-color-1);
}

.vl-sidebar-widget-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: -0.96px;
  color: var(--vl-core-color-1);
}

.vl-sidebar-search-input {
  position: relative;
}

.vl-sidebar-search-input input {
  font-size: var(--vl-core-base-font-size);
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  background: var(--vl-core-input-bg-1);
  padding: 0 25px;
  padding-right: 25px;
  padding-right: 60px;
  border: 1px solid transparent;
}

.vl-sidebar-search-input input::placeholder {
  font-size: var(--vl-core-base-font-size);
  color: var(--vl-core-body-color-1);
}

.vl-sidebar-search-input input:focus {
  font-size: var(--vl-core-base-font-size);
  color: var(--vl-core-body-color-1);
  border: 1px solid var(--vl-core-color-2);
}

.vl-sidebar-search-input button {
  position: absolute;
  top: 15px;
  right: 30px;
}

.vl-sidebar-search-input button i {
  font-size: var(--vl-core-base-font-size);
  font-weight: 900;
  background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.vl-sidebar-work {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
}

.vl-sidebar-work::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0.8999999762;
  background: var(--vl-core-bg-black-color);
  z-index: 0;
}

.vl-sidebar-work-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  padding: 11px;
  margin: 0;
  z-index: 1;
  letter-spacing: -0.96px;
  border-radius: 5px 5px 0 0;
  color: var(--vl-core-white-color-1);
  background: var(--vl-core-bg-color-1);
}

.vl-sidebar-work-content {
  padding: 40px 30px;
}

.vl-sidebar-work-content p {
  position: relative;
  z-index: 1;
  color: var(--vl-core-white-color-1);
}

.vl-sidebar-work-icon span {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  border-radius: 5px;
  background: var(--vl-core-white-bg);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tagcloud a {
  font-size: var(--vl-core-base-font-size) !important;
  color: var(--vl-core-color-1);
  padding: 8px 26px;
  display: inline-block;
  background: var(--vl-core-bg-color-4);
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tagcloud a {
    margin-right: 7px;
  }
}

.tagcloud a:hover {
  color: var(--vl-core-white-color-1);
  background-color: var(--vl-core-bg-color-1);
}
  
.blog-sidebar__search form input {
  font-size: var(--vl-core-base-font-size);
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  background: var(--vl-core-bg-color-4);
  padding: 0 25px;
  padding-right: 25px;
  padding-right: 25px;
  padding-right: 60px;
  border: 1px solid transparent;
}

.vl-postbox-wrapper .blog-sidebar__search form button {
  position: absolute;
  top: 3px;
  right: 0px;
}
  
.blog-search-content p {
  margin-bottom: 12px;
}

.blog-sidebar__search form button i {
  font-size: var(--vl-core-base-font-size);
  font-weight: 900;
  color: var(--vl-core-color-1);
}

.comment-reply-title {
  position: relative;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.54px;
  color: var(--vl-core-color-1);
}

.comment-reply-title::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background: var(--vl-core-bg-color-1);
}

.postbox__comment-input input {
  border: 1px solid var(--ztc-bg-bg-1);
  border-radius: 5px;
  height: 70px;
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  margin-bottom: 20px;
  background: var(--vl-core-white-bg);
}
  
.postbox__comment-input input:focus {
  box-shadow: none;
  color: var(--vl-core-body-color-1);
  border: 1px solid var(--vl-core-bg-color-1);
}

.postbox__comment-input textarea:focus {
  box-shadow: none;
  color: var(--vl-core-body-color-1);
  border: 1px solid var(--vl-core-bg-color-1);
}

.postbox__comment-input textarea {
  height: 188px;
  resize: none;
  border-radius: 5px;
  font-size: var(--vl-core-base-font-size);
  font-weight: 400;
  margin-bottom: 20px;
  border: 1px solid #E3E3E3;
}

.postbox__comment-form .vl-btn, .form-inner-btn .vl-btn{
  width: auto;
  border-radius: 5px;
  padding: 16px 18px;
  background: var(--vl-core-bg-color-1);
  font-size: var(--vl-core-base-font-size);
  font-weight: 700;
  color: var(--vl-core-white-color-1);
}


.vl-single-blog-widget-social a {
  display: inline-block;
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  background-color: var(--vl-core-bg-color-4);
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin: 0px 2px;
  transition: all 0.4s;
}

.vl-single-blog-widget-social a:hover {
  color: var(--vl-core-white-bg);
  background-color: var(--vl-core-bg-color-1);
  transition: all 0.4s;
}


/* 
==============
Widget CSS
============== */


.vl-rc__post-content .vl-rc__post-title a:hover {
  color: var(--vl-core-bg-color-1);
}


/* 
==============
BreadCrumb CSS
============== */

.vl_default_breadcrumb {
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--vl-core-bg-color-2)
}

.vl_default_breadcrumb .main-heading span.span {
  display: inline-block;
  font-size: var(--vl-core-base-font-size);
  line-height: 16px;
  font-weight: 700;
  color: var(--vl-core-bg-color-1);
  margin-bottom: 16px;
}
.vl_default_breadcrumb .main-heading span.span img {
  margin-top: -3px;
  margin-right: 2px;
}
.vl_default_breadcrumb .main-heading span.span span.arrow {
  display: inline-block;
  padding: 0px 3px;
}
.vl_default_breadcrumb .main-heading span.span a {
  color: var(--vl-core-bg-color-1);
}

.vl_default_breadcrumb .main-heading h1 {
  font-size: 54px;
  line-height: 60px;
  font-weight: 700;
  color: var(--vl-core-color-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_default_breadcrumb .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .vl_default_breadcrumb .main-heading h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
.vl_default_breadcrumb::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/hero2-main-bg.png);
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_default_breadcrumb::after {
    background-size: cover;
    top: 0;
  }
}
@media (max-width: 767px) {
  .vl_default_breadcrumb::after {
    background-size: cover;
    top: 0;
  }
}

.vl_default_breadcrumb p {
  font-size: var(--vl-core-base-font-size);
  line-height: 28px;
  font-weight: 400;
  color: var(--vl-core-body-color-1);
}
.vl_default_breadcrumb .common-image {
  text-align: end;
}

.bg-cover{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_default_breadcrumb .common-image {
    text-align: start;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .vl_default_breadcrumb .common-image {
    text-align: start;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .vl_default_breadcrumb .circle-shapes {
    margin-top: 140px;
  }
}
.vl_default_breadcrumb .circle-shapes .shape1 {
  position: absolute;
  bottom: 0;
  right: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_default_breadcrumb .circle-shapes .shape1 {
    left: 0;
    top: 175px;
    right: auto;
    bottom: auto;
  }
}
.vl_default_breadcrumb .circle-shapes .shape2 {
  position: absolute;
  bottom: 46px;
  right: 105px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_default_breadcrumb .circle-shapes .shape2 {
    left: 45px;
    top: 225px;
    right: auto;
    bottom: auto;
  }
}
.vl_default_breadcrumb.error {
  padding-bottom: 100px;
}
.vl_default_breadcrumb.error::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/bg/hero2-main-bg2.png) !important;
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.vl_default_breadcrumb.error p {
  color: var(--vl-core-color-1);
}


/* 
==============
Footer CSS
============== */


.vl_footer_default{
  background: var(--vl-core-bg-color-2);
  padding-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_footer_default {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .vl_footer_default {
    padding-top: 50px;
  }
}
.vl_footer_default .single-footer-items h3 {
  color: var(--vl-core-color-1);
  line-height: 24px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vl_footer_default .single-footer-items h3 {
    margin-bottom: 16px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .vl_footer_default .single-footer-items h3 {
    margin-bottom: 16px;
    margin-top: 30px;
  }
}
.vl_footer_default .single-footer-items .social-links {
  padding-top: 24px;
}
.vl_footer_default .single-footer-items .social-links {
  display: inline-block;
}
.vl_footer_default .single-footer-items .social-links a {
  display: inline-block;
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  background-color: var(--vl-core-bg-color-4);
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin: 0px 2px;
  transition: all 0.4s;
}

.vl_footer_default .single-footer-items .social-links a:hover {
  color: var(--vl-core-white-bg);
  background-color: var(--vl-core-bg-color-1);
  transition: all 0.4s;
}

.vl_footer_default .single-footer-items .menu li a {
  display: inline-block;
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  line-height: 26px;
  font-weight:400;
  padding: 10px 0px;
  transition: all 0.4s;
}

.vl_footer_default .single-footer-items .menu li a:hover {
  color: var(--vl-core-bg-color-1);
  transform: translateX(5px);
  transition: all 0.4s;
}

.vl_footer_default .single-footer-items .contact-box {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.vl_footer_default .single-footer-items .contact-box .icon {
  margin-right: 16px;
}

.vl_footer_default .single-footer-items .footer-info li {
  display: inline-block;
  color: var(--vl-core-color-1);
  font-size: var(--vl-core-base-font-size);
  line-height: 26px;
  font-weight: 400;
  transition: all 0.4s;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  padding-left: 30px;
}

 .vl_footer_default .single-footer-items .footer-info li i {
     position: absolute;
     left: 0;
     top: 6px;
     font-size: 18px;
     color: var(--vl-core-color-1);
 }

.vl_footer_default .single-footer-items .footer-info li:last-child{
     margin-bottom: 0;
}
.vl_footer_default .single-footer-items .footer-info li:hover {
  color: var(--vl-core-bg-color-1);
  transition: all 0.4s;
}

.vl_footer_default .copyright-area {
  border-top: 1px solid var(--vl-core-border-1);
}
.vl_footer_default .copyright-area .coppyright p {
  font-size: var(--vl-core-base-font-size);
  line-height: 28px;
  font-weight: 400;
  color: var(--vl-core-body-color-1);
}
@media (max-width: 767px) {
  .vl_footer_default .copyright-area .coppyright p {
    padding-top: 16px;
  }
}
.vl_footer_default .copyright-area .coppyright a {
  font-size: var(--vl-core-base-font-size);
  line-height: 28px;
  font-weight: 400;
  color: var(--vl-core-body-color-1);
  display: inline-block;
}
.vl_footer_default .copyright-area .coppyright.right-area {
  text-align: end;
}
@media (max-width: 767px) {
  .vl_footer_default .copyright-area .coppyright.right-area {
    text-align: start;
  }
}

.vl_footer_default .copyright-area .coppyright.right-area a {
  padding: 20px 20px;
}

.vl_footer_default .copyright-area .coppyright.right-area a:nth-child(1) {
  position: relative;
}

@media (max-width: 767px) {
  .vl_footer_default .copyright-area .coppyright.right-area a:nth-child(1) {
    padding: 20px 20px 20px 0px;
  }
}

.vl_footer_default .copyright-area .coppyright.right-area a:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 2px;
  height: 20px;
  background-color: var(--vl-core-border-1);
}


.footer-logo-area {
  padding-right: 70px;
}


/* #Progress
================================================== */

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 99;
}

.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  color: var(--vl-core-back-btn-color-2);
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f062";
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--vl-core-back-btn-color-1);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}


/*===================
 PRRELOADER AREA CSS 
 ========================
*/
/* Preloader */
.ctn-preloader {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9009999;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid var(--vl-core-preloader-line-1);
  border-top-color: var(--vl-core-preloader-line-2);
  height: 7em;
  width: 7em;
}

.ctn-preloader.ctn-preloader1 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader.ctn-preloader1 .loader-section-left {
  background: var(--vl-core-preloader-bg);
}

.ctn-preloader.ctn-preloader1 .loader-section-right {
  background: var(--vl-core-preloader-bg);
}

.ctn-preloader .loader-section {
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
    color: var(--vl-core-white-color-1);
  }
}
@media screen and (max-width: 500px) {

  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Montserrat", sans-serif;
  }
}

@media screen and (max-width: 990px) {
  .vl_default_breadcrumb {
      padding: 100px 0 !important;
  }
}