/* ---------------- Google fonts ------------------ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Roman.otf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/* ---------------- Basic css ------------------ */

html{
	font-size: 30.5%;
}

:root {
	scroll-behavior: unset;
	--archivoFont: 'Archivo', sans-serif;
	--unnaFont: 'Unna', serif;
	--helveticaNeueFont: 'Helvetica Neue';
	--red: #d01f27;
	--black: #000000;
	--textColor: #333333;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a{
	text-decoration: none;
	-webkit-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
	color: inherit;
}

a:hover{
	color: inherit;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 4rem;
	line-height: 1.37;
	font-weight: 400;
	font-family: var(--helveticaNeueFont);
	color: var(--textColor);
	overflow-x: hidden;
}


/* row */
.row{
	--bs-gutter-x: 7.5rem;
}


/* title */

.title_xxl{
	font-size: 9rem;
	color: var(--black);
	line-height: 1.11;
	font-weight: 700;
	font-family: var(--unnaFont);
}

.title_xl{
	font-size: 5.6rem;
	color: var(--black);
	line-height: 1;
	font-weight: 400;
	font-family: var(--archivoFont);
	text-transform: uppercase;
}

.title_lg{
	font-size: 5rem;
	color: var(--black);
	line-height: 1.12;
	font-weight: 700;
	font-family: var(--unnaFont);
}

.title_md{
	font-size: 4rem;
	color: var(--black);
	line-height: 1.1;
	font-weight: 700;
	font-family: var(--unnaFont);
}


/* Font weight */

.f-300{
	font-weight: 300 !important;
}



/* preloader */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loader3 {
	width: 10rem;
	height: 10rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 10rem;
	height: 10rem;
	border-radius: 100%;
	background: var(--black);
	-webkit-animation: loader3 1.5s linear infinite;
	        animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		        transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		-webkit-transform: scale(1, 1);
		        transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		        transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		-webkit-transform: scale(1, 1);
		        transform: scale(1, 1);
		opacity: 0;
	}
}




/* Back to top */
.back-to-top {
	width: 8.5rem;
	height: 8.5rem;
	line-height: 7.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	border-radius: 50%;
	background: var(--black);
	z-index: 1000;
}

.back-to-top:hover{
	background-color: #181818;
}

.back-to-top img{
	width: 4rem;
}



/* ---------------- Header area ------------------ */

.site_header{
	position: sticky;
	top: -17rem;
	left: 0;
	width: 100%;
	z-index: 1024;
	background-color: #fff;
}

.header_top{
	padding-top: 5rem;
}

.site_logo{
	display: inline-block;
	width: 87rem;
}

.header_top p{
	font-size: 3.5rem;
	font-family: var(--archivoFont);
	text-transform: uppercase;
}

.navbar_nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 5rem 0;
}

.navbar_nav button{
	padding: 0;
	border: none;
	background-color: transparent;
	display: inline-block;
}

.navbar_nav button:hover img{
	filter: brightness(0) saturate(100%) invert(21%) sepia(8%) saturate(2%) hue-rotate(13deg) brightness(96%) contrast(96%);
}

.hamburger{
	position: relative;
	z-index: 222;
}

.hamburger img{
	width: 4.3rem;
}

.search img{
	width: 4rem;
}


.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: left;
	    -ms-flex-align: left;
	        align-items: left;
	align-items: left;
	gap: 0 9rem;
}

.menu>li>a {
	color: #000000;
	font-size: 3.6rem;
	font-family: var(--archivoFont);
}

.menu>li>a:hover{
	color: var(--red);
}


    




/* ---------------- Footer area ------------------ */

.site_footer{
	background-color: var(--black);
	color: #fff;
	text-align: center;
}

.footer_top{
	padding: 7.5rem 0 6rem;
}

.footer_logo{
	display: inline-block;
	width: 57rem;
}

.footer_menu{
	width: 72%;
	margin-left: auto;
	margin-right: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 6.5rem 11rem;
	padding: 7rem 0;
}

.footer_menu a{
	font-size: 3.2rem;
	text-transform: uppercase;
	color: #b2b2b2;
	font-family: var(--archivoFont);
}

.footer_menu a:hover{
	color: #fff;
}

.social_links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: right;
	-ms-flex-align: right;
	align-items: right;
	-webkit-box-pack: right;
	-ms-flex-pack: center;
	justify-content: right;
	gap: 0 6.8rem;
}

.social_links a{
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.social_links a:hover{
	opacity: 0.7;
}

.social_links img{
	width: 4rem;
}


.copyright{
	font-size: 2.8rem;
	text-transform: uppercase;
	color: #b2b2b2;
	font-family: var(--archivoFont);
	border-top: 1px solid #272727;
	padding: 4rem 0;
}





/* ---------------- Content area ------------------ */



/* ads */
.ads{
	text-align: center;
}

.ads img{
	width: 200rem;
}


.line_thick{
	width: 100%;
	position: relative;
}

.line_thick::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: .8rem;
	background: url(../images/line-thick.png) no-repeat center;
	background-size: 100% 100%;
	overflow: hidden;
}



/* Blog Card */

.blog_img{
	display: block;
	overflow: hidden;
}

.blog_img img{
	width: 100%;
	-webkit-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.reviewLink{
	color: var(--red) !important;
	font-size: 3.2rem;
	font-family: var(--archivoFont);
	text-transform: uppercase;
	line-height: 1.12;
}

.blog_user{
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--archivoFont);
	font-size: 2.8rem;
}


/* blog card large */

.blog_card_lg:hover .blog_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.blog_card_lg .card_body{
	position: relative;
	text-align: center;
	background-color: #fff;
	margin-top: -5.7rem;
	margin-left: 7.5rem;
	margin-right: 7.5rem;
	padding: 4rem 6.4rem 0 6.4rem;
}

.blog_card_lg .reviewLink{
	font-size: 3.6rem;
}

.blog_card_lg .title_xxl{
	padding: 4rem 0 3.5rem;
}

.blog_card_lg .blog_user{
	font-size: 3.2rem;
	padding-top: 4rem;
}



/* blog card small */

.blog_card{
	text-align: center;
}

.blog_card:hover .blog_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.blog_card .card_body{
	padding-top: 2.4rem;
}	

.blog_card .title_lg{
	padding: 2rem 0 2.6rem;
}




.blog_cards_row1{
	padding-left: 4.5rem;
	padding-right: 4.5rem;
}



/* title_box */

.title_box{
	text-align: center;
}

.title_box .title_xl{
	display: inline-block;
	background-color: #fff;
	position: relative;
}

.title_box .line_thick + .title_xl{
	-webkit-transform: translateY(-2rem);
	    -ms-transform: translateY(-2rem);
	        transform: translateY(-2rem);
	padding: 0 3rem;
}



/* blog_card_hr */
.blog_card_hr{
	display: -ms-grid;
	display: grid;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-grid-columns: 41rem 5rem 1fr;
	grid-template-columns: 41rem 1fr;
	gap: 0 5rem;
	padding: 5rem 0;
	border-top: 1px solid #dddee3;
}

.blog_card_hr.v1{
	-ms-grid-columns: 36rem 4rem 1fr;
	grid-template-columns: 36rem 1fr;
	gap: 0 4rem;
}

.blog_card_hr .title_md{
	margin-bottom: 2.5rem;
}

.blog_card_hr:hover .blog_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}


.blog_card_hr_row{
	--bs-gutter-x: 20rem;
}

.vr_ads{
	width: 60rem;
	display: block;
}



.row.blog_with_ads{
	--bs-gutter-x: 14.5rem;
	padding-right: 7rem;
}


.sec{
	padding: 10rem 0;
}




/* blog_card v2 */

.blog_card.v2 .card_body{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 14rem 1fr;
	grid-template-columns: 14rem 1fr;
	text-align: left;
}

.blog_card.v2 .num{
	font-size: 20rem;
	color: var(--red);
	font-family: var(--archivoFont);
	font-weight: 100;
	line-height: .9;
}




/* blog_card_hr v2 */

.blog_card_hr.v2{
	-ms-grid-columns: 83rem 6rem 1fr;
	grid-template-columns: 83rem 1fr;
	gap: 0 6rem;
}

.blog_card_hr.v2>div:nth-child(2){
	padding-top: 2rem;
}

.blog_card_hr.v2 .title_md{
	font-size: 5.6rem;
	margin: 0;
}

.blog_card_hr.v2 .subText{
	font-size: 3.6rem;
	padding: 3.5rem 0;
}


/* pagination */
.pagination{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 3.4rem;
	color: var(--textColor);
	text-transform: uppercase;
	gap: 0 7.5rem;
	border-top: 1px solid #dddee3;
	padding: 10rem 0;
}

.pagination a:hover{
	color: var(--red);
}

.pagination a.active{
	color: var(--red);
	font-weight: 700;
}



.single_blog_details{
	padding-top: 5rem;
}


.single_page_feature .reviewLink{
	font-size: 3.6rem;
}

.single_page_feature .subText{
	margin: 3.5rem 0;
}

.single_page_feature .blog_user{
	font-size: 3.2rem;
}

.single_page_feature .blog_date{
	margin-top: 1rem;
	margin-bottom: 6rem;
	font-family: var(--archivoFont);
	font-size: 3rem;
	color: #7A7A7A;
}

.single_page_feature .feature_img figcaption{
	margin-top: 2rem;
	font-size: 2.8rem;
	color: #555555;
}

.single_page_feature .title_xxl{
	padding: 4rem 0 0;
}

.single_page_details_copyright {
    font-size: 3.5rem;
    border-top: 1px solid #dddee3;
    padding-top: 3rem;
	margin-top: 6rem;
	color: #6E6C68;
}

.single_blog_sidebar .title_xl{
	border-top: 1px solid #dddee3;
	padding-top: 5rem;
}

.single_blog_sidebar .blog_card_hr.v3 {
    -ms-grid-columns: 10rem 4rem 1fr;
    grid-template-columns: 10rem 1fr;
    gap: 0 4rem;
	border-top: none;
	border-bottom: 1px solid #dddee3;
}

.single_blog_sidebar .blog_card_hr:last-child{
    border-bottom: none !important;
}

.single_blog_sidebar .blog_card_hr .num {
    font-size: 20rem;
    color: var(--red);
    font-family: var(--archivoFont);
    font-weight: 100;
    line-height: .9;
}

.blog-details-content h2{
	margin-bottom: 20px;
	font-size: 33px;
}

.blog-details-content h2{
	margin-bottom: 20px;
	font-size: 33px;
}

.blog-details-content h3{
	margin-bottom: 20px;
	font-size: 29px;
}

.blog-details-content h4{
	margin-bottom: 20px;
	font-size: 25px;
}

.blog-details-content h5{
	margin-bottom: 20px;
	font-size: 21px;
}

.blog-details-content h6{
	margin-bottom: 17px;
	font-size: 33px;
}

.blog-details-content h2{
	margin-bottom: 20px;
	font-size: 33px;
}


.blog-details-content P{
	margin-bottom: 8rem;
	color: #555555;
	font-weight: 400;
}

.blog-details-content P a{
	color: var(--red);
	cursor: pointer;
}

.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  background-color: rgba(0, 0, 0, 0); 
  z-index: 1000; 
  transition: background-color 0.4s ease; 
}
.overlay.active {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 100px;
  left: -50%;
  width: 50%;
  height: 100vh;
  background-color: #449bb2;
  transition: right 0.3s ease-in-out;
  z-index: 1026;
}
.mobile-menu.active {
    left: 0;
    top:100px;
}
.mobile-menu a {
  color: #08294a;  
}


.follow-us {
    background-color: white;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    border-top: 1px solid #e5e5e5;
    padding-top: 29px;
}
.follow-us-title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    color: #555
}
.follow-us-links {
    padding-top: 16px;
    padding-bottom: 32px;
    display: flex;
    justify-content: center;
}
.follow-us-links a {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    color: #121212;
    position: relative
}
.follow-us-links .fg-1 {
    text-align: center;
    max-width: 66px;
}
.fg-1 {
    flex-grow: 1;
}


/* Style the hamburger menu icon */
.menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #d01f27;
    margin: 3px 0;
    transition: transform 0.3s ease-in-out;
}

/* Style the individual bars when the "active" class is added */
.bar.active:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.bar.active:nth-child(2) {
    opacity: 0;
}

.bar.active:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.off-canvas {
    position: fixed;
    z-index: 1025;
    top: 70px;
    left: -255px; 
    background: #fff;
    overflow-y: auto;
    width: 250px;
    transition: left 0.3s ease-in-out;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
}

.off-canvas.open {
    left:0;
}


.off-canvas .container {
  border-top: 1px solid #e5e5e5;
}
.off-canvas-main {
  background-image:linear-gradient(#fff, #fff);
}

.search-form {
    position: relative;
}
.off-canvas .search-form input {
  height: 50px;

}

.off-canvas .search-form button {
    width: 1.5625rem;
    height: 1.5625rem;
    padding: .625rem;
    padding-right: 0.7rem;
    margin-top: 0.3rem;
    border: none;
    background:  #fff;
}

.off-canvas-main .side-menu {
  padding: 20px;
}

.off-canvas-main .side-menu a {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #08294a;
}
.off-canvas{
  height:100%;
  overflow-y: scroll;
}
.page-nav .side-menu a, .page-nav .item {
    display: block;
    line-height: 24px;
    padding: 12px 15px;
}

.off-canvas .grid2 {
    margin-top: 4.375rem
}

.searchform {
  position: relative;
  display: inline-block;
}
.searchform form {
  position: absolute;
  top: 0;
  right: 32px;
  width: 0;
  overflow: hidden;
  transition: 0.3s;
}
.searchbox.active {
  width: 275px;
}
.searchbox {
  height: 28px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 32px;
  width: 0;
  overflow: hidden;
  transition: 0.3s;
  
}
.searchbox .form-text {
    border: 1px solid #ccc;
    background-color: white;
    color: #575958;
    text-indent: 5px;
    margin: 0;
    font-size: 16px;
    
}
.form-submit {
    border: 0;
    background-color: #d01f27;
    color: white;
    width: 90px;
    font-size: 15px;
    padding: 3px 5px;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 992px) {
  .bar {
      width: 25px;
      height: 3px;
      background-color: #d01f27;
      margin: 2px 0;
      transition: transform 0.3s ease-in-out;
  }  
  .bar.active:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px);
  }
  .bar.active:nth-child(2) {
      opacity: 0;
  }
  .bar.active:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
  }  
}
    
div.join-comment {
    margin: 2rem 0 0.5rem;
    border-top: 5px solid #ed1c24;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}
.join-comment:before {
    content: "";
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ed1c24;
    top: 0%;
    left: 50%;
}
.facebook-in {
  margin-bottom: 25px;
} 
.logo-wrap {
  text-align: center !important;
}
@media (min-width: 992px) {
  .logo-wrap {
    text-align: left !important;
  }
}    
.w-90 {
  width: 90% !important;
}
.header-date {
  min-height: 100%;
  margin-top: auto; 
}
.navbar_nav_inner {
  display: flex;
}
.navbar_nav_inner .menu {
  padding-left: 40px;
}
@media (min-width: 992px) {
  .search img {
    width: 5rem;
  }
}


main img {
	width: 100%;
	height: auto;
}
figcaption {
    margin-top: 2rem;
    font-size: 2.8rem;
    color: #555555;
}
.menu li {text-transform: uppercase;}