/* 
***************************************
Template Name: Starblogs - Personal and Travel Blog HTML Template
Author:  
Author Email: 
website: 
Version: 1.0
Description: 
***************************************

CSS INDEX
===================================
01. GLOBAL CSS 
02. HOME PAGE 1
03. HOME PAgE 2
04. BLOG DETAILS 1
05. BLOG DETAILS 2
06. CATEGORY
07. ABOUT US
08. ERROR PAGE
09. CONTACT PAGE

****************************************/

/*===========================
    GLOBAL CSS START
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

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

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--colorBlack);
}

p,
span {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.8;
  color: var(--paraColor);
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--bodyFont);
}

img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

input,
textarea {
  width: 100%;
  padding: 12px 20px;
  outline: none;
  resize: none;
  border: 1px solid #e4e7e9;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 300;
}

input::placeholder,
textarea::placeholder {
  color: #a6a6ac;
}

button {
  border: none;
}

:root {
  --colorPrimary: #f3974a;
  --paraColor: #777777;
  --colorBlack: #444444;
  --colorWhite: #ffffff;
  --bodyFont: "Poppins", sans-serif;
}

.common_btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--colorPrimary);
  border: 1px solid var(--colorPrimary);
  padding: 13px 33px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.common_btn i {
  margin-left: 5px;
}

.common_btn:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.button_bg {
  position: relative;
  background: var(--colorPrimary);
  display: inline-block;
  color: var(--colorWhite);
  font-size: 18px;
  padding: 9px 40px;
  font-weight: 500;
}

.button_bg::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--colorPrimary);
  transform: rotate(180deg);
  bottom: -12px;
  left: 15px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.title {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--colorWhite);
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.title:hover {
  color: var(--colorPrimary);
}

/*===========================
    GLOBAL CSS END
===========================*/

/*===========================
    HOME PAGE 1 START
===========================*/
/* header start */
header {
  width: 100%;
  height: 100px;
  background: var(--colorWhite);
  line-height: 100px;
}

header .header_date i {
  margin-right: 5px;
}

header .header_logo {
  width: 185px;
  display: block;
  margin: 0 auto;
}

header .header_icon {
  justify-content: end;
}

header .header_icon li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f3f3f8;
  border: 1px solid #cfcfe0;
  margin-left: 10px;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

header .header_icon li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

/* header end */

/* menu start */
.main_menu {
  background: #fef2e8;
  width: 100%;
  height: 80px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .menubar_icon {
  display: block;
  width: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .navbar-nav {
  line-height: 80px;
}

.main_menu ul .nav-item {
  position: relative;
}

.main_menu ul .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444444;
  margin: 0;
  padding: 0px 15px;
  transition: all linear 0.3s;
  position: relative;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu ul .nav-item .nav-link i {
  font-size: 14px;
}

.main_menu ul .nav-item:hover .nav-link,
.main_menu ul .nav-item .nav-link.active {
  color: var(--colorPrimary) !important;
}

.main_menu .search_form {
  width: 180px;
  border: 1px solid #facea7;
  position: relative;
  overflow: hidden;
}

.main_menu .search_form input {
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  padding-left: 35px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
}

.main_menu .search_form button {
  position: absolute;
  top: 0;
  right: -33px;
  background: var(--colorPrimary);
  width: 30px;
  height: 100%;
  color: var(--colorWhite);
  opacity: 0.5;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .search_form button:hover {
  background: var(--colorBlack);
}

.main_menu .search_form::after {
  position: absolute;
  content: "\f002";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 12px;
  top: 10px;
  left: 15px;
  color: #a6a6ac;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .search_form::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 35px;
  height: 100%;
  top: 0;
  right: 0;
}

.main_menu .search_form:hover button {
  opacity: 1;
  right: 0;
}

.main_menu .search_form:hover::after {
  opacity: 0;
  left: -5px;
}

.main_menu .search_form:hover input {
  padding-left: 20px;
}

.main_menu .droap_menu {
  width: 300px;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fef2e8;
  line-height: normal;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.2s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 9999;
}

.main_menu .droap_menu li {
  position: relative;
}

.main_menu .droap_menu li a {
  font-size: 16px;
  color: #444444;
  padding: 10px 20px;
  text-transform: capitalize;
  border-top: 1px solid #fffefe;
  border-left: 1px solid transparent;
  transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main_menu .droap_menu li:hover>a {
  color: var(--colorPrimary);
  border-left: 4px solid var(--colorPrimary);
}

.main_menu ul .nav-item:hover .droap_menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.main_menu.menu_fix {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 999 !important;
  animation: menu_animate 1s ease-in-out;
  -webkit-animation: menu_animate 1s ease-in-out;
}

@keyframes menu_animate {
  from {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

.main_menu .child_category {
  position: absolute;
  width: 180px;
  top: 10px;
  left: 100%;
  background: #fef2e8;
  line-height: normal;
  opacity: 0.5;
  visibility: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 9999;
}

.main_menu .droap_menu li:hover .child_category {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.home_2 .child_category {
  background: var(--colorWhite);
}

/* for mobile menu start*/
.navbar-toggler {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  border-radius: 0;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  border: none;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .close_icon {
  display: none;
}

.navbar-toggler.show .bar_icon {
  display: none;
}

.navbar-toggler.show .close_icon {
  display: block;
}

/* for mobile end */
.toggle_menu {
  z-index: 9999;
}

.toggle_menu button {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 0;
  display: block;
  border-radius: 50%;
  font-size: 12px;
  box-shadow: none;
}

.toggle_menu button:focus {
  box-shadow: none;
}

.offcanvas-body {
  padding: 30px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.offcanvas-body::-webkit-scrollbar {
  scrollbar-width: thin !important;
  background: #fff;
  height: 6px;
  width: 6px;
}

.toggle_menu .offcanvas-body h3 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.toggle_menu .offcanvas-body h3::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: var(--colorBlack);
  bottom: 0;
  left: 0;
}

.toggle_menu .hot_topic {
  margin-top: 25px;
  margin-bottom: 25px;
}

.toggle_menu .hot_topic li {}

.toggle_menu .hot_topic li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--paraColor);
  margin-top: 10px;
  transition: all linear 0.3s;
}

.toggle_menu .hot_topic li a span {
  color: var(--colorBlack);
  transition: all linear 0.3s;
}

.toggle_menu .hot_topic li a:hover {
  color: var(--colorPrimary);
}

.toggle_menu .hot_topic li a:hover span {
  color: var(--colorPrimary);
}

.toggle_menu .dont_miss {
  margin-bottom: 35px;
}

.toggle_menu .dont_miss li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.toggle_menu .dont_miss li .img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin-right: 10px;
}

.toggle_menu .dont_miss li .text {
  width: 75%;
}

.toggle_menu .dont_miss li .text a {
  font-size: 15px;
  font-weight: 500;
  color: var(--colorBlack);
  margin-bottom: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.toggle_menu .dont_miss li .text a:hover {
  color: var(--colorPrimary);
}

.toggle_menu .dont_miss li .text p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.toggle_menu .dont_miss li .text p span {
  font-size: 14px;
}

.toggle_banner {
  height: 400px;
  margin-top: 25px;
}

/* menu end */

/* banner start */
.banner {
  margin-top: 40px;
}

.banner_slider_item {
  position: relative;
  margin: 0 12px;
}

.banner_slider_img {
  height: 650px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.banner_slider_text {
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 0.639093137254902) 34%,
      rgba(22, 43, 73, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 30px;
}

.banner_slider_text .category {
  position: relative;
  background: var(--colorPrimary);
  display: inline-block;
  color: var(--colorWhite);
  font-size: 15px;
  padding: 5px 20px;
}

.banner_slider_text .category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--colorPrimary);
  transform: rotate(180deg);
  bottom: -12px;
  left: 15px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.banner_slider_text a {
  display: block;
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: var(--colorWhite);
  margin-top: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.banner_slider_text a:hover {
  color: var(--colorPrimary);
}

.banner_slider_text p {
  color: var(--colorWhite);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.banner_slider_text ul {
  margin-top: 10px;
  width: 100%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.banner_slider_text ul li {
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 400;
  margin-right: 40px;
}

.banner_slider_text ul li i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

.banner_slider .slick-list {
  padding: 0 !important;
}

.banner_slider .nextArrow,
.banner_slider .prevArrow {
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 50%;
  font-size: 40px;
  text-align: center;
  background: #f3974580;
  color: var(--colorWhite);
  position: absolute;
  top: 50%;
  cursor: pointer;
  right: 180px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 1;
}

.banner_slider .prevArrow {
  right: auto;
  left: 180px;
}

.banner_slider .nextArrow {
  background: var(--colorWhite);
  color: var(--colorPrimary);
}

.banner_slider .nextArrow:hover,
.banner_slider .prevArrow:hover {
  background: var(--colorWhite);
  color: var(--colorPrimary);
}

.banner_slider_item:hover .banner_slider_text p,
.banner_slider .slick-current .banner_slider_text p {
  height: 48px;
}

.banner_slider_item:hover .banner_slider_text a,
.banner_slider .slick-current .banner_slider_text a {
  margin-bottom: 10px;
}

.banner_slider_item:hover .banner_slider_text ul,
.banner_slider .slick-current .banner_slider_text ul {
  margin-top: 25px;
}

/* banner end */

/* about us start */
.about_img {
  width: 750px;
  height: auto;
  position: relative;
  left: -140px;
}

.about_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
}

.about_text h5 {
  background: #fdeee1;
  color: var(--colorPrimary);
  font-size: 15px;
}

.about_text h5::after {
  border-bottom-color: #fdeee1;
}

.about_text h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 25px;
}

.about_text p {
  margin-bottom: 35px;
}

/* about us end */

/* trendy news start */
.trendy_news h2 {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.trendy_news h2::after {
  position: absolute;
  content: "";
  background: url(../images/shapes_1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 60px;
  top: -63px;
  left: 50%;
  margin-left: 30px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.trendy_news_item {
  position: relative;
  margin: 0px 12px;
}

.trendy_news_img {
  height: 400px;
  position: relative;
}

.trendy_news_text {
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 0.639093137254902) 34%,
      rgba(22, 43, 73, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 20px;
  z-index: 9;
}

.trendy_news_text span {
  font-size: 12px;
}

.trendy_news_text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--colorWhite);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all linear 0.3s;
  height: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.trendy_news_text .time {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--colorWhite);
}

.trendy_news_text .time i {
  margin-right: 3px;
}

.trendy_news_item:hover .trendy_news_text p {
  margin-bottom: 20px;
  height: 50px;
}

.trendy_slider .nextArrow,
.trendy_slider .prevArrow {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  background: #fdede0;
  color: var(--colorPrimary);
  position: absolute;
  top: 50%;
  cursor: pointer;
  right: -100px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 1;
}

.trendy_slider .prevArrow {
  right: auto;
  left: -100px;
}

.trendy_slider .nextArrow,
.trendy_slider .nextArrow:hover,
.trendy_slider .prevArrow:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

/* trendy news end */

/* artical area start */
.large_artical {
  position: relative;
}

.large_artical_img {
  height: 480px;
}

.large_artical_text {
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 0.639093137254902) 34%,
      rgba(22, 43, 73, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 50px;
}

.large_artical_text a {
  font-size: 30px;
  max-width: 85%;
}

.large_artical_text .play_btn {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  color: var(--colorWhite);
  border: 2px solid var(--colorWhite);
  border-radius: 50%;
  bottom: 50px;
  right: 50px;
  z-index: 99;
}

.testimonial .heading,
.featured_post .heading,
.artical_area .heading,
.artical_sidebar .heading {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.testimonial .heading::after,
.featured_post .heading::after,
.artical_area .heading::after,
.artical_sidebar .heading::after {
  position: absolute;
  content: "";
  background: url(../images/shapes_2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 300px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.single_article {
  margin-bottom: 40px;
}

.single_article_img {
  height: 290px;
  display: block;
  overflow: hidden;
}

.single_article_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.single_article_text {
  margin-top: 20px;
}

.single_article_text ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.single_article_text ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--paraColor);
}

.single_article_text ul li i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

.single_article_text ul li span {
  font-size: 12px;
}

.single_article_text .title {
  color: var(--colorBlack) !important;
  margin-top: 10px;
}

.single_article_text .title:hover {
  color: var(--colorPrimary);
  text-decoration: underline;
}

.single_article_text .description {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single_article:hover .single_article_img img {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.large_artical_slider .large_artical {
  margin: 0px 12px;
}

.large_artical_slider .slick-dots {
  position: absolute;
  width: auto;
  bottom: 40px;
  right: 40px;
}

.large_artical_slider .slick-dots li {
  line-height: 7px;
}

.large_artical_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background: var(--colorPrimary);
  border-radius: 50%;
  opacity: 0.4;
}

.large_artical_slider .slick-dots li.slick-active button {
  opacity: 1;
}

.artical_sidebar .heading {
  font-size: 18px;
  display: block;
  margin: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.artical_sidebar .heading::after {
  width: 100%;
}

.sidebar_about {
  padding: 30px;
  background: #fefaf6;
  border: 1px solid #fdf0e4;
  margin-bottom: 40px;
}

.sidebar_about_img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.sidebar_about ul {
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 0.639093137254902) 34%,
      rgba(22, 43, 73, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: end;
  padding: 0px 30px;
  padding-bottom: 30px;
}

.author_share ul li a,
.details_blooger_img ul li a,
.sodebar_social_link li a,
.sidebar_about ul li a {
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  font-size: 13px;
  margin: 0px 5px;
  color: var(--colorWhite);
  background: #ddd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.author_share li a.facebook,
.details_blooger_img li a.facebook,
.blog_tags_area .social li a.facebook,
.sodebar_social_link li a.facebook,
.sidebar_about ul li a.facebook {
  background: #4268b3;
}

.author_share li a.instagram,
.details_blooger_img li a.instagram,
.blog_tags_area .social li a.instagram,
.sodebar_social_link li a.instagram,
.sidebar_about ul li a.instagram {
  background: #e9465b;
}

.author_share li a.pinterest,
.details_blooger_img li a.pinterest,
.blog_tags_area .social li a.pinterest,
.sodebar_social_link li a.pinterest,
.sidebar_about ul li a.pinterest {
  background: #e60024;
}

.author_share li a.twitter,
.details_blooger_img li a.twitter,
.blog_tags_area .social li a.twitter,
.sodebar_social_link li a.twitter,
.sidebar_about ul li a.twitter {
  background: #00acee;
}

.author_share li a.youtube,
.details_blooger_img li a.youtube,
.blog_tags_area .social li a.youtube,
.sodebar_social_link li a.youtube,
.sidebar_about ul li a.youtube {
  background: #e60024;
}

.sidebar_about_text {
  text-align: center;
}

.sidebar_about_text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}

.sidebar_about_text p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 40px;
}

.sidebar_about_text .img {
  width: 55px;
  margin: 0 auto;
}

.artical_area .margin_right {
  padding-right: 60px;
}

.sidebar_popular_post .trendy_news_item {
  margin: 0;
}

.sidebar_popular_post .time {
  font-weight: 400;
}

.sidebar_popular_post .time i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.sidebar_popular_post .title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--colorWhite);
}

.sidebar_popular_post .trendy_news_text {
  padding: 30px;
}

.sidebar_popular_post .trendy_news_img {
  height: 300px;
  position: relative;
}

.sidebar_popular_post {
  margin-bottom: 40px;
}

.sidebar_popular_post .list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.sidebar_popular_post .list li .img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 15px;
}

.sidebar_popular_post .list li .text {
  width: 68%;
}

.sidebar_popular_post .list li .text a {
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 0;
}

.sidebar_popular_post .list li .text a:hover {
  color: var(--colorPrimary);
}

.sidebar_popular_post .list li .text p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sidebar_popular_post .list li .text span {
  margin-right: 20px;
  font-size: 12px;
  font-weight: 400;
}

.sidebar_popular_post .list li .text span b,
.sidebar_popular_post .list li .text span i {
  color: var(--colorPrimary);
  margin-right: 3px;
  font-weight: 400;
}

.sodebar_social_link {
  margin-bottom: 40px;
}

.sodebar_subscribe {
  padding: 30px;
  background: #fefaf6;
  border: 1px solid #fdf0e4;
  margin-bottom: 40px;
  text-align: center;
}

.sodebar_subscribe h4 {
  font-size: 22px;
  font-weight: 600;
}

.sodebar_subscribe p {
  font-size: 15px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 25px;
}

.sodebar_subscribe p span {
  font-weight: 500;
  color: var(--colorBlack);
}

.sodebar_subscribe form input {
  background: #f5f5f5;
  text-align: center;
  margin-bottom: 15px;
}

.sodebar_subscribe form button {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  padding: 8px 28px;
}

.sodebar_subscribe .form-check {
  margin-top: 15px;
}

.sodebar_subscribe .form-check input {
  padding: 0;
  width: 15px;
  height: 15px;
  border-radius: 0;
  border-color: #777;
}

.sodebar_subscribe .form-check label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  color: var(--paraColor);
  margin-left: 5px;
}

.form-check-input:checked {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary) !important;
}

.form-check-input:focus {
  box-shadow: none;
}

.sodebar_add {
  height: 250px;
  overflow: hidden;
  margin-bottom: 40px;
}

.sidebar_instagram {
  margin-bottom: 27px;
}

.sidebar_instagram ul {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.sidebar_instagram ul>div {
  /* width: 24%; */
  height: 150px;
  position: relative;
  /* overflow: hidden; */
  margin-bottom: 10px;
}

.sidebar_instagram ul div a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.sidebar_instagram ul div .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #00000063;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  transform: scale(0.7);
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.sidebar_instagram ul .wrap-hov:hover .overlay {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.sidebar_category {
  padding: 30px;
  background: #fefaf6;
  border: 1px solid #fdf0e4;
}

.sidebar_category ul a {
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.sidebar_category ul li a span {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.sidebar_category ul li a:hover {
  color: var(--colorBlack);
}

.sidebar_category ul li a:hover span {
  color: var(--colorBlack);
}

.sidebar_category ul li:last-child a {
  margin: 0;
}

.weekly_news {
  background: #f1f5f8;
}

.weekly_news .single_article_img {
  height: 500px;
}

.weekly_news .single_article_text {
  position: relative;
}

.weekly_news .single_article_text ul {
  justify-content: start;
}

.weekly_news .single_article_text ul li {
  margin-right: 30px;
}

.weekly_news .description {
  -webkit-line-clamp: 4;
}

.weekly_news .single_article_text .share {
  position: absolute;
  top: 2px;
  right: 0;
  color: var(--paraColor);
  font-size: 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.weekly_news .single_article_text .share:hover {
  color: var(--colorPrimary);
}

.weekly_news .single_article {
  margin-bottom: 0;
}

.weekly_news .trendy_news_img {
  height: 330px;
}

.weekly_news .sidebar_popular_post {
  margin-bottom: 0;
}

/* artical area end */

/* futured post start */
.featured_post {
  position: relative;
}

.featured_post .time {
  font-size: 14px;
  font-weight: 400;
}

.featured_post .title {
  margin-bottom: 30px;
}

.featured_post .time i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.featured_post .trendy_news_img {
  height: 350px;
  position: relative;
}

.featured_post .trendy_news_text {
  padding: 30px;
}

.trendy_post_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.trendy_post_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background: var(--colorBlack);
  border-radius: 50%;
  opacity: 0.4;
  margin: 0px 4px;
}

.trendy_post_slider .slick-dots li.slick-active button {
  opacity: 1;
}

.featured_post::after {
  position: absolute;
  content: "";
  width: 1100px;
  height: 280px;
  background: #fef2e8;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* futured post end */

/* subscribe start */
.subscribe {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.subscribe_overlay {
  background: #f3974570;
}

.subscribe_text {
  text-align: center;
}

.subscribe_text h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--colorWhite);
  margin-bottom: 10px;
}

.subscribe_text p {
  font-size: 18px;
  color: var(--colorWhite);
  max-width: 75%;
  margin: 0 auto;
}

.subscribe_text form {
  background: var(--colorWhite);
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.subscribe_text form input {
  border-radius: 0;
  border-color: #dfdfdf;
  padding: 9px 20px;
}

.subscribe_text form button {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  padding: 12px 46px;
  margin-left: 15px;
  font-size: 14px;
  font-weight: 600;
}

/* subscribe end */

/* gallery start */
.gallery_item {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.gallery_overlay {
  position: absolute;
  content: "";
  background: #44444480;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorWhite);
  font-size: 40px;
  transform: scale(0.8);
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.gallery_item:hover .gallery_overlay {
  transform: scale(1);
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.gallery_slider {
  padding: 0px 12px;
}

/* gallery end */

/* footer start */
footer {
  background: #f3f3f8;
  position: relative;
  margin-top: 20px;
}

.footer_text .footer_logo {
  display: block;
  width: 180px;
  margin: 0 auto;
}

.footer_text .footer_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer_text .footer_menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorBlack);
  text-transform: capitalize;
  transition: all linear 0.3s;
  margin: 0px 25px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_text .footer_menu li a:hover {
  color: var(--colorPrimary);
}

.footer_text .footer_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_text .footer_link li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--paraColor);
  border: 1px solid #cfcfe0;
  margin: 0px 5px;
  transition: all linear 0.3s;
}

.footer_text .footer_link li a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  border-color: var(--colorPrimary);
}

.footer_copyright {
  border-top: 1px solid #f3974514;
  padding: 30px 0px;
  margin-top: 30px;
}

.footer_copyright p {
  text-align: center;
}

footer::after {
  position: absolute;
  content: "";
  background: #f3f3f8;
  width: 100%;
  height: 170px;
  top: 0;
  left: 0;
  z-index: -1;
}

/* footer end */

/* scroll button start */
.progress {
  background: transparent;
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--colorBlack);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress:hover::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  color: var(--colorBlack);
  transition: all 200ms linear;
}

.progress svg path {
  fill: none;
}

.progress svg.progress-svg path {
  stroke: var(--colorBlack);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* scroll button end */
/*===========================
    HOME PAGE 1 END
===========================*/

/*===========================
    HOME PAGE 2 START
===========================*/
.home_2 .button_bg {
  border-radius: 40px;
}

.home_2 .button_bg::after {
  left: 30px;
}

.home_2 .common_btn {
  border-radius: 50px;
}

/* header 2 start */
.home_2 header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
  border-bottom: 1px solid #ffffff42;
}

.home_2 .header_logo {
  margin: 0;
  width: 170px;
}

.home_2 header .search_form {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
}

.home_2 header form {
  line-height: normal;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.home_2 header form input {
  padding: 15px 20px;
  padding-left: 60px;
  font-weight: 400;
  border: none;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.home_2 header form button {
  position: absolute;
  top: 5px;
  right: -45px;
  background: var(--colorPrimary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: var(--colorWhite);
  opacity: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
}

.home_2 header form button:hover {
  background: var(--colorBlack);
}

.home_2 header form::after {
  position: absolute;
  content: "\f002";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 16px;
  top: 17px;
  left: 30px;
  color: #a6a6ac;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.home_2 .header_icon li a {
  background: var(--colorWhite);
  border-color: var(--colorWhite);
}

.home_2 header form:hover::after {
  left: -25px;
}

.home_2 header form:hover input {
  padding-left: 20px;
}

.home_2 header form:hover button {
  right: 5px;
}

/* header 2 end */

/* menu 2 start */
.home_2 .main_menu {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 999;
  background: transparent;
}

.home_2 .main_menu ul .nav-item .nav-link {
  color: var(--colorWhite);
  padding: 0px 20px;
}

.home_2 .main_menu .droap_menu {
  background: var(--colorWhite);
}

.home_2 .main_menu .droap_menu li a {
  border-top: 1px solid #f3974533;
}

.home_2 .main_menu .menubar_icon {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 42px;
  background: var(--colorWhite);
  border-radius: 50%;
  overflow: hidden;
  font-size: 16px;
  color: var(--colorPrimary);
}

.home_2 .main_menu .menubar_icon img {
  width: auto !important;
  height: auto !important;
}

.home_2 .main_menu.menu_fix {
  background: var(--colorWhite);
}

.home_2 .main_menu.menu_fix .nav-link {
  color: var(--colorBlack) !important;
}

.home_2 .main_menu .menubar_icon:hover,
.home_2 .menu_fix .menubar_icon {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

/* menu 2 end */

/* banner 2 start */
.banner_2 {
  position: relative;
  height: 100vh;
  top: 0;
  left: 0;
}

.banner_2 div {
  height: 100%;
}

.banner_2_slider_item {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.banner_2_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-top: 275px;
}

.banner_2_text .button_bg {
  font-size: 18px;
  padding: 9px 40px;
  font-weight: 500;
}

.banner_2_text h1 {
  font-size: 54px;
  font-weight: 600;
  color: var(--colorWhite);
  margin-top: 30px;
}

.banner_2_text p {
  color: var(--colorWhite);
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
  margin-top: 220px;
}

.banner_2_text p i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 44px;
  margin-top: 10px;
}

.banner_2_text p span {
  font-weight: 600;
  font-size: 22px;
  color: var(--colorWhite);
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.banner_2_slider .slick-dots {
  display: flex;
  justify-content: center;
  width: auto;
  position: absolute;
  right: 150px;
  bottom: 50px;
  z-index: 1;
}

.banner_2_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background: var(--colorWhite);
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 4px;
}

.banner_2_slider .slick-dots li.slick-active button {
  opacity: 1;
}

.banner_2_slider_overlay {
  background: rgb(22, 43, 73);
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 1) 0%,
      rgba(22, 43, 73, 0.6250875350140056) 35%,
      rgba(22, 43, 73, 0) 70%);
}

/* banner 2 end */

/* trendy news 2 start */
.home_2 .trendy_news_item {
  margin: 25px 0px 0px 0px;
}

.home_2 .trendy_news h2 {
  margin-bottom: 0;
}

/* trendy news 2 end */

/* artical area 2 start */
.artical_area_2 {
  background: #f5f7f8;
}

.artical_area_2 .heading {
  padding-bottom: 0;
  margin-bottom: 0;
}

.artical_area_2 .heading::after {
  display: none;
}

.artical_area_2 .single_article {
  margin-top: 25px;
  margin-bottom: 0;
}

.artical_area_2 .single_article_text ul {
  margin-top: 12px;
  justify-content: start;
}

.artical_area_2 .single_article_text ul li {
  margin-right: 20px;
}

.artical_area_2 .common_btn {
  margin-top: 45px;
}

.artical_area_2 .single_article_img {
  position: relative;
}

.artical_area_2 .single_article_img .button_bg {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: 12px;
}

.artical_filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}

.artical_filter button {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--paraColor);
  background: none;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.artical_filter button:hover {
  color: var(--colorPrimary);
}

.artical_filter button.active {
  color: var(--colorPrimary);
}

.artical_filter button::after {
  position: absolute;
  content: "/";
  top: 0;
  right: -3px;
  font-size: 16px;
  color: var(--paraColor);
}

.artical_filter button:last-child {
  margin-right: 0;
  padding-right: 0;
}

.artical_filter button:last-child::after {
  display: none;
}

/* artical area 2 end */

/* video start */
.video .heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 25px;
}

.video .trendy_news_img {
  height: 500px;
}

.video .trendy_news_text {
  padding: 30px;
}

.video .play_btn {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  color: var(--colorWhite);
  border: 2px solid var(--colorWhite);
  border-radius: 50%;
  top: 50px;
  right: 50px;
  z-index: 99;
}

.video .common_btn {
  margin-top: 50px;
}

/* video end */

/* blog start */
.blog .common_btn {
  margin-top: 50px;
}

.single_blog {
  margin-top: 30px;
  margin-bottom: 0;
}

.blog .artical_sidebar {
  margin-top: 30px;
}

.single_blog .button_bg {
  position: absolute;
  top: 30px;
  left: 30px;
}

.single_blog .single_article_img {
  position: relative;
  height: 220px;
}

.single_blog .button_bg {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 12px;
}

.single_blog .single_article_text {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
}

.single_blog .description {
  margin-top: 10px;
}

.single_blog .single_article_text ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--paraColor);
  margin-right: 30px;
}

.single_blog .single_article_text ul {
  margin-top: 15px;
}

.single_blog .single_article_text .title {
  margin-top: 0;
}

.blog .margin_right {
  padding-right: 60px;
}

.blog .sidebar_about_img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.blog .sidebar_about ul {
  background: none;
  position: static;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.blog .sidebar_about_text h3 {
  margin-bottom: 10px;
}

.blog .sidebar_about_text p {
  margin-bottom: 0;
}

/* blog end */

/* footer 2 start */
.footer_about h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer_about h3 span {
  font-size: 22px;
  font-weight: 600;
  color: var(--colorPrimary);
}

.footer_about p {
  margin-top: 30px;
  margin-bottom: 55px;
}

.footer_about ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_about ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #f3f3f8;
  color: var(--paraColor);
  border: 1px solid #cfcfe0;
  border-radius: 50%;
  transition: all linear 0.3s;
  margin-right: 10px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_about ul li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.footer_post h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer_post li {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer_post li .img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 15px;
}

.footer_post li .text {
  width: 68%;
}

.footer_post li .text a {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_post li .text a:hover {
  text-decoration: underline;
}

.footer_post li .text p span,
.footer_post li .text p b {
  font-size: 12px;
  font-weight: 400;
}

.footer_post li .text p span i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.footer_category h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer_category ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--paraColor);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_category ul li a span {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_category ul li a:hover,
.footer_category ul li a:hover span {
  color: var(--colorBlack);
}

.footer_2,
.footer_2::after {
  background: #f5f7f8;
}

.footer_2 .footer_copyright {
  background: #fefaf6;
  border: none;
  margin-top: 60px;
}

.footer_2 .footer_copyright ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_2 .footer_copyright ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--paraColor);
  transition: all linear 0.3s;
  margin-left: 50px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_2 .footer_copyright ul li a:hover {
  color: var(--colorBlack);
}

/* footer 2 end */
/*===========================
    HOME PAGE 2 END
===========================*/

/*===========================
    BLOG DETAILS START
===========================*/
.blog_details_img {
  /* height: 570px; */
  position: relative;
}

.author_share {
  position: absolute;
  top: 0;
  left: -90px;
}

.author_share .img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.author_share p {
  position: absolute;
  top: 0;
  right: 100%;
  font-weight: 400;
  width: 120px;
  text-align: right;
  padding-right: 10px;
}

.author_share p span {
  font-weight: 500;
  font-size: 18px;
  color: var(--colorPrimary);
  display: block;
}

.author_share ul {
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
}

.author_share ul li {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--paraColor);
}

.author_share ul li:first-child {
  margin-bottom: 10px;
}

.author_share ul li a {
  margin: 5px 0px;
}

.blog_details_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.blog_details_header li {
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
}

.blog_details_header li span {
  font-size: 15px;
  padding: 4px 30px;
}

.blog_details_header li i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.blog_details_text {
  position: relative;
}

.blog_details_text h1,
.blog_details_text h2,
.blog_details_text h3,
.blog_details_text h4,
.blog_details_text h5,
.blog_details_text h6 {
  font-weight: 600;
  margin-top: 30px;
}

.blog_details_text .details_heading {
  font-size: 30px;
}

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

.blog_details_text h2 {
  font-size: 24px;
}

.blog_details_text h3 {
  font-size: 19px;
}

.blog_details_text h4 {
  font-size: 16px;
}

.blog_details_text h5 {
  font-size: 12px;
}

.blog_details_text p {
  margin-top: 20px;
}

.details_quot_text {
  padding: 30px;
  background: #fdeee1;
  font-size: 20px;
  color: #414d60;
  position: relative;
}

.details_quot_text::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 80%;
  background: var(--colorPrimary);
  left: 0;
  top: 10%;
  z-index: 1;
}

.details_quot_text::before {
  position: absolute;
  content: "\f10d";
  font-family: "font awesome 5 free";
  font-size: 30px;
  font-weight: 600;
  color: var(--colorPrimary);
  bottom: 5px;
  right: 15px;
  z-index: 1;
}

.blog_details_video {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 25px;
}

.blog_details_video::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 0.639093137254902) 34%,
      rgba(22, 43, 73, 0) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.blog_details_video a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  color: var(--colorWhite);
  border: 2px solid var(--colorWhite);
  border-radius: 50%;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.blog_center_img {
  height: 350px;
  margin-top: 25px;
}

.blog_center_text {
  margin-top: 25px;
}

.blog_center_text ul {
  margin-top: 20px;
}

.blog_center_text ul li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--paraColor);
  padding-left: 30px;
  margin-top: 10px;
}

.blog_center_text ul li::after {
  position: absolute;
  content: "";
  background: url(../images/check_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  top: 2px;
  left: 0;
}

.blog_tags_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  margin-bottom: 35px;
}

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

.blog_tags_area .tags li {
  font-weight: 600;
  color: var(--colorBlack);
}

.blog_tags_area .tags li a {
  font-weight: 400;
  color: var(--paraColor);
  font-size: 16px;
  margin-left: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.blog_tags_area .tags li a:hover {
  color: var(--colorBlack);
}

.blog_tags_area .social {
  display: flex;
  flex-wrap: wrap;
}

.blog_tags_area .social li a {
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  font-size: 13px;
  margin-left: 10px;
  color: var(--colorWhite);
  background: #ddd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.details_blooger {
  padding: 30px;
  background: #fefaf6;
  border: 1px solid #fdf0e4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.details_blooger_img {
  width: 240px;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-right: 20px;
}

.details_blooger_img ul {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.details_blooger_text {
  width: 69%;
}

.details_blooger_text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 17px;
}

.blog_det_button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #ffdfc2;
  padding-bottom: 35px;
}

.blog_det_button li {
  width: 40%;
}

.blog_det_button li:last-child {
  text-align: right;
}

.blog_det_button li:last-child a i {
  margin-left: 10px;
  margin-right: 0;
}

.blog_det_button li a {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 30px;
  border-radius: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.blog_det_button li a:hover {
  background: var(--colorBlack);
}

.blog_det_button li a i {
  margin-right: 10px;
}

.blog_det_button li p {
  font-size: 18px;
  font-weight: 500;
  color: var(--colorBlack);
  margin-top: 15px;
}

.related_post .heading {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.related_post .heading::after {
  position: absolute;
  content: "";
  background: url(../images/shapes_2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 300px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.related_post .single_article_img {
  height: 190px;
}

.related_post .button_bg {
  border-radius: 5px;
}

.blog_details .margin_right {
  padding-right: 60px;
}

.related_post .title {
  font-size: 18px;
  margin-top: 15px;
}

.related_post .description {
  margin-top: 10px;
}

.comment_area {
  border-top: 1px solid #ffdfc2;
  padding-top: 28px;
}

.comment_area h2 {
  font-size: 26px;
  font-weight: 600;
}

.single_comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}

.single_comment .img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
}

.single_comment .text {
  width: 87%;
}

.single_comment .text h3 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single_comment .text h3 span i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.single_comment .text p {
  margin: 10px 0px;
}

.single_comment .text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--colorPrimary);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.single_comment .text a i {
  margin-left: 5px;
}

.single_comment .text a:hover {
  color: var(--colorBlack);
}

.comment_reply {
  margin-left: 90px;
}

.comment_reply .text {
  width: 86%;
}

.comment_input_area h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.comment_input_area form input,
.comment_input_area form textarea {
  background: #f5f5f5;
  border-radius: 0;
  margin-bottom: 20px;
  border: 1px solid #e4e7e999;
  padding: 17px 30px;
}

.comment_input_area form button {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  margin-top: 5px;
}

.comment_input_area form button:hover {
  background: var(--colorBlack);
  border-color: var(--colorBlack);
}

.comment_input_area form input:focus,
.comment_input_area form textarea:focus {
  color: var(--bs-body-color);
  background-color: var(--colorWhite);
  border-color: var(--colorPrimary);
  outline: 0;
  box-shadow: none;
}

/*===========================
    BLOG DETAILS END
===========================*/

/*===========================
    BLOG DETAILS 2 START
===========================*/
.blog_details_banner {
  height: 800px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
}

.blog_details_banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 1) 0%,
      rgba(22, 43, 73, 0.6250875350140056) 35%,
      rgba(22, 43, 73, 0) 70%);
  top: 0;
  left: 0;
}

.blog_details_banner div {
  height: 100%;
}

.blog_details_banner_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-top: 160px;
  position: relative;
  z-index: 1;
}

.blog_details_banner_text span {
  font-weight: 400;
}

.blog_details_banner_text h1 {
  font-size: 50px;
  font-weight: 600;
  color: var(--colorWhite);
  margin-top: 20px;
}

.blog_details_banner_text p {
  font-size: 20px;
  color: var(--colorWhite);
  margin-top: 30px;
  margin-bottom: 45px;
}

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

.blog_details_banner_text ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--colorWhite);
  margin-right: 70px;
}

.blog_details_banner_text ul li i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.blog_details_text .details_heading {
  font-size: 30px;
}

/*===========================
    BLOG DETAILS 2 END
===========================*/

/*===========================
    CATEGORY START
===========================*/
.category_banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  position: relative;
  padding: 320px 0px 140px 0px;
}

.category_banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(22, 43, 73, 1) 0%,
      rgba(22, 43, 73, 0.6250875350140056) 35%,
      rgba(22, 43, 73, 0) 70%);
  top: 0;
  left: 0;
}

.category_banner_text {
  position: relative;
  z-index: 11;
  text-align: center;
}

.category_banner_text h1 {
  font-size: 54px;
  font-weight: 600;
  color: var(--colorWhite);
  margin-bottom: 10px;
}

.category_banner_text p {
  color: var(--colorWhite);
  font-size: 15px;
}

.category_item .show_result {
  background: #fdf0e5;
  font-weight: 500;
  padding: 5px 25px;
  color: var(--colorPrimary);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.category_item .single_article {
  margin-bottom: 0;
  margin-top: 30px;
}

.category_item .single_article_img {
  height: 520px;
  position: relative;
}

.category_item .single_article_img .button_bg {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 12px;
}

.category_item .single_article_text ul {
  justify-content: start;
}

.category_item .single_article_text ul li {
  margin-right: 30px;
}

.category_item .single_article_text {
  margin-top: 35px;
}

.sidebar_popular_post .title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--colorWhite);
}

.category_item .title {
  margin-top: 15px;
  margin-bottom: 15px;
  color: var(--colorBlack) !important;
}

.trendy_news_text .title {
  color: var(--colorWhite) !important;
}

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

.pagination ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f5f5f5;
  padding: 0;
  border: none;
  color: var(--paraColor);
  border-radius: 50% !important;
  margin-right: 10px;
  outline: none;
}

.pagination ul li.active a {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.pagination ul li a:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.category_item .sidebar_instagram {
  margin-bottom: 0;
  margin-top: -25px;
}

/*===========================
    CATEGORY END
===========================*/

/*===========================
    ABOUT US START
===========================*/
.breadcrumb {
  margin: 20px 0px;
}

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

.breadcrumb ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--paraColor);
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.breadcrumb ul li a:hover {
  color: var(--colorBlack);
}

.breadcrumb ul li a::after {
  position: absolute;
  content: "/";
  font-size: 14px;
  top: 0;
  right: -4px;
}

.breadcrumb ul li:last-child a::after {
  display: none;
}

.breadcrumb ul li:last-child a {
  color: var(--colorBlack);
}

.about_banner {
  height: 650px;
}

.about_banner_text {
  margin-top: 30px;
  padding-right: 15px;
}

.about_banner_text.text_2 {
  padding-right: 0;
  padding-left: 15px;
}

.about_banner_text span {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #fdeee1;
  color: var(--colorPrimary);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about_banner_text h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about_banner_text p {
  text-align: justify;
}

.about_video .trendy_news_item {
  position: relative;
  margin: 30px 0px 0px 0px;
}

.testimonial {
  background: #f5f7f8;
}

.single_testimonial {
  border-bottom: 1px solid #f3974530;
  text-align: right;
  margin-top: 20px;
  padding-bottom: 20px;
}

.single_testimonial span {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fdeee1;
  color: var(--colorPrimary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.single_testimonial p {
  margin: 20px 0px;
  text-align: left;
}

.single_testimonial h4 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.single_testimonial h4 b {
  font-weight: 600;
  color: var(--colorPrimary);
}

.single_testimonial h4::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: var(--paraColor);
  top: 8px;
  left: -60px;
}

.testimonial .heading {
  margin-bottom: 10px;
}

.testimonial_border {
  border: none;
  padding-bottom: 0;
}

.about_us_related_post .button_bg {
  border-radius: 0;
  padding: 6px 25px;
}

/*===========================
    ABOUT US END
===========================*/

/*===========================
    ERROR PAGE START
===========================*/
.error_text {
  text-align: center;
}

.error_text .img {
  width: 550px;
  margin: 0 auto;
  height: auto;
}

.error_text h2 {
  font-size: 64px;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 50px;
}

.error_text a {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.error_text a i {
  margin-right: 5px;
}

/*===========================
    ERROR PAGE END
===========================*/

/*===========================
    CONTACT PAGE START
===========================*/
.contact_img {
  height: 650px;
}

.contact_info h2 {
  font-size: 24px;
  font-weight: 600;
}

.contact_info_box {
  position: relative;
  padding-left: 45px;
  padding-right: 50px;
  margin-top: 40px;
}

.contact_info_box i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25px;
  color: var(--colorPrimary);
}

.contact_info_box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact_form input,
.contact_form textarea {
  background: #f5f5f5;
  border-radius: 0;
  margin-top: 20px;
  border: 1px solid #e4e7e999;
  padding: 17px 30px;
}

.contact_form button {
  margin-top: 15px;
  background: var(--colorPrimary);
  color: var(--colorWhite);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contact_form input:focus,
.contact_form textarea:focus {
  color: var(--bs-body-color);
  background-color: var(--colorWhite);
  border-color: var(--colorPrimary);
  outline: 0;
  box-shadow: none;
}

.cntact_map {
  height: 600px;
}

.cntact_map iframe {
  width: 100%;
  height: 100%;
}

.sidebar_popular_post .title:hover {
  color: var(--colorPrimary) !important;
}

/*===========================
    CONTACT PAGE END
===========================*/
.image-info {
  z-index: 99;
  background-color: #406f82;
  bottom: 0px;
}

.image-info>p {
  display:-webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 5px;
  font-size: 12px;
  color: white;
  width: 50%;
}