/*
Theme Name: A Sleeky Theme
Author: Sleeky
Author URI: https://sleeky.co.uk
Description: Just another Sleeky theme.
Version: 1.0
License: (c) Copyright of Sleeky. All Rights Reserved.
Text Domain: sleeky
*/

body {
	max-width: 2500px;
	margin: auto !important;
  overflow-x: hidden !important;
}
.wrapper {
  overflow-x: hidden !important;
}
p {
	font-size: 13px;
	  font-family: "Open Sans", sans-serif;
  font-weight: 400;
      margin: 0px 0px 5px 0px;
}
/*burger menu--------------*/
.menuToggle {
  display: block;
  position: relative;
  top: 0px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  a {
    text-decoration: none;
    color: #232323;
    transition: all 0.3s ease;
    &:hover {
      color: #D12426;
    }
  }
  input {
    display: block;
    width: 21px;
    height: 32px;
    position: absolute;
    top: -7px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }
  span {
    position: relative;
    display: block;
    width: 21px;
        height: 2px;
        margin-bottom: 5px;
        position: relative;
        background: #000;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
    &:first-child {
      transform-origin: 0% 0%;
    }
    &:nth-last-child(2) {
      transform-origin: 0% 100%;
    }
  }
}

.menuToggle {
  input {
    &:checked ~ span {
      opacity: 1;
      transform: rotate(45deg) translate(-2px, -2px);
      background: #232323;
      &:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
      }
      &:nth-last-child(2) {
        transform: rotate(-45deg) translate(4px, -3px);
      }
    }
    &:checked ~ .menuItem {
      transform: translate(65%, 0);
    }
    
  }
}

.menuItem {
	    height: 100vh;
    opacity: 0.97;
  position: absolute;
  width: 300px;
  padding: 50px;
  padding-top: 125px;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  li {
    padding: 10px 0;
    font-size: 22px;
  }
}
.menu--right {
position: relative;
    width: 21px;
    height: 21px;
}
.menu--right {
  .menuToggle {
    position: absolute;
    right: 0;
    input {
      right: 0px;
    }
    span {
      right: 0px;
    }
  }
  .menuItem {
    right: -30px;
    margin: -100px 0 0 0;
    transform: translate(200%, 0);
    li {
      a {
        &:hover {
          padding-left: 5px;
        }
      }
    }
  }
}

.menuItem  li a {
		  color: #000;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-decoration: none;
}
.menuItem  li a:hover {
      color: #D12426;
    }

@media screen and (max-width: 1598px) {
	.menuToggle {
    & input {
        &:checked ~ .menuItem {
            transform: translate(6.5%, 0);
        }
		}
	}
}
@media screen and (max-width: 1490px) {
	.menuToggle {
    & input {
        &:checked ~ .menuItem {
            transform: translate(5%, 0);
        }
		}
	}
}

@media screen and (max-width: 1200px) {
.menuItem {
    width: 200px;
}
}
/*header --------------------------*/
header {
	position: relative;
}
.logo {
	width: 160px;
}
.spacer {
	width: 120px;
}
.header-top {
	max-width: 1100px;
    margin: auto;
    gap: 30px;
    display: flex;
    justify-content: flex-end;
    padding: 30px 30px 20px 30px;
}
.header-bottom {
	background-color: #F0EFEF;
    padding: 10px 30px;
}
.header-bottom ul {
	display: flex;
	justify-content: space-between;
	max-width: 1020px;
    margin: auto;
	gap: 0px;
}
.main-nav ul li a {
	position: relative;
}
.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #D12426;
    transition: width .5s ease;
    -webkit-transition: width .5s ease;
}
.main-nav ul li a:hover:after {
    width: 100%;
    left: 0;
    background: #D12426;
}
.header-bottom ul li a {
	color: #000;
	font-size: 15px;
	font-family: "Playfair Display", serif;
  font-weight: 500;
  text-decoration: none;
}
header ul {
	list-style-type: none;
	margin: 0;
}
.main-nav li a {
	color: #000;
	font-size: 15px;
	  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.main-nav, .main-nav ul {
	display: flex;
    padding: 0;
    align-items: center;
    gap: 20px;
}
.burger-wrap {
	display: flex;
    flex-direction: row;
    gap: 15px;
        align-items: center;
}
.header-bottom ul li a {
	transition: 0.3s;
}
.header-bottom ul li a:hover {
	transition: 0.3s;
	opacity: 0.7;
}
header ul.sub-menu {
	display: none;
	position: absolute;
    background-color: #F0EFEF;
    padding: 10px;
    left: -10px;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    width: 200px;
    margin: auto;
    gap: 8px;
	transition: 0.3s;
	opacity: 0;
	align-items: baseline;
    z-index: 2;
}
header .main-nav ul.sub-menu {
max-width: 200px;
    background-color: #fff;
    border-left: 2px solid #D12426;
    left: -2px;
}

header .menu-item-has-children {
	position: relative;
}
header .menu-item-has-children:hover .sub-menu {
	display: flex;
	transition: 0.3s;
opacity: 1;
}
.top-nav ul .menu-item-has-children {
	position: relative;
	padding-right: 20px;
}
.top-nav ul .menu-item-has-children::after {
	content: '⯆';
	position: absolute;
        top: -1.5px;
    right: -2px;
}
.main-nav.top-nav-left ul.menu-top-menu {
	gap:60px;
}
@media screen and (max-width:1500px) {
	.main-nav li a {
    font-size: 14px;
}
.header-bottom ul li a {
    font-size: 14px;
}
}
@media screen and (max-width:1300px) {
	.hero-ad-wrap .ad {
		display: none;
	}
}
@media screen and (max-width:1000px) {
.main-nav {
    display: none;
}
	.header-top {
    justify-content: space-between;
	}
}

@media screen and (max-width:600px) {
    .header-bottom ul li a {
        font-size: 13px;
    }
	.header-bottom ul {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
}
@media screen and (max-width:426px) {
header .btn {
    padding: 10px 10px;
}
}
/*---------------------------*/
.hero-ad-wrap {
	display: flex;
}
.ad {
	position: relative;
	z-index: 99;
	width: 169px;
}
/*hero---------------------------*/
#hero {
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	min-height: 74vh;
}
.hero-center-wrap {
	width: 100%;
	display: flex;
    flex-direction: column;
}
.hero-text {
	background-color: #000000c9;
    color: #fff;
    max-width: 466px;
    padding: 50px;
    margin: 90px 0 0 90px;

	height: fit-content;
}
#hero_banner {
	background-color: #000;
	color: #fff;
	text-align: center;
}
#hero_banner p {
	margin: 0px;
	font-weight: 500;
	font-size: 12px;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
}
.hero_banner_inner {
	padding: 10px 30px;
}
.subtitle {
	font-family: "futura-pt", sans-serif;
font-weight: 500;
font-size: 11px;
    letter-spacing: 0.8px;
}
#hero h2 {
	max-width: 340px;
}
#hero h2, .title {
	font-size: 30px;
	line-height: 120%;
	font-weight: 500;
	font-family: "Playfair Display", serif;
}
.hero-text p {
	    line-height: 150%;
    letter-spacing: 0.5px;
    max-width: 390px;
}
#hero .btn {
margin-top: 30px;
}
.title {
	margin: 20px 0px;
}
.hero-text-wrap {
	    min-height: 74vh;
    height: 100%;
	display: flex;
    justify-content: space-between;
}
.hero-right {
	min-height: 74vh;
	background-color: #D12426;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
        gap: 15px;
    justify-content: center;
}
.ad img {
	width: auto;
    height: 100%;
}
.hero-right img {
	max-width: 150px;
	max-height: 102px;
	margin-bottom: 10px;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}
.hero-right a {
	transition: 0.3s;
	text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 150px;
    color: #fff;
    font-size: 14.6px;
    line-height: 120%;
    font-weight: 500;
	padding-bottom: 10px;
    font-family: "Playfair Display", serif;
}
.hero-right a p {
	padding: 0;
	color: #fff;
	line-height: 120%;
	font-size: 15px;
	font-family: "Playfair Display", serif;
  font-weight: 500;
  text-decoration: none;
}
.right-item {
	border-bottom: 1px solid white;
	width: 100%;
	max-width: 150px;
}
.right-item.last {
	border: none;
}
.hr-inner {
	    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}
.ri-title {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	transition: 0.3s;
}
.ri-title:hover {
	opacity: 0.7;
	transition: 0.3s;
}
.ri-title p {
	font-family: "futura-pt", sans-serif;
font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
	color: #fff;
}
.ri-title img {
	height: 18px;
	width: 12px;
	margin: 0 0 5px 0;
}
.ri-title-mob {
	display: none;
}
.ri-title.ri-title-mob img {
    height: 12px;
    width: 18px;
    margin: 0 0 5px 0;
}
.hr-img {
    max-width: 150px;
    max-height: 102px;
    margin-bottom: 10px;
	overflow: hidden;
}
.right-item:hover .hr-img img {
	transform: scale(1.1);
	transition: 0.3s;
}
.right-item:hover p.link-title {
	opacity: 0.7;
	transition: 0.3s;
}
.sidepanel {
  height: 0px; 
  width: 0; 
  transition: 0.5s; 
}
#mySidepanel {
	width: 0px;
	opacity: 0;
	transition: ease-out width 0.3s;
}
#mySidepanel.show {
	opacity: 1;
	width: 250px;
	transition: ease-out width 0.3s;
}
.hr-inner-wrap {
	display: flex;
    gap: 10px;
}
.side-panel-inner {
	display: flex;
	flex-direction: column;
}
.side-panel-inner p {
	color: #fff;
    height: 150px;
}
@media screen and (max-width:1600px) {
	.title {
    font-size: 24px;
    line-height: 120% !important;
	}
	.hero-text {
    padding: 40px;
    margin: 60px 0 0 60px;
}
.hero-right a p {
    line-height: 100%;
    font-size: 13px;
}
.hero-right {
    padding: 35px 20px 20px 20px;
}
}
@media screen and (max-width:770px) {
	.ri-title {
	display: none;
}
	.hero-text-wrap {
    flex-direction: column;
    gap: 30px;
	}
    .hero-right {
		min-height: 0;
    	gap: 10px;
        padding: 20px 20px 20px 20px;
    }
	.hr-inner {
		    flex-direction: row;
    justify-content: space-between;
    display: flex;
		gap: 10px;
	}
        .hero-text {
        margin: 60px;
    }
    .right-item {
    border-bottom: none;
}
    .hero-right a p {
        font-size: 13px;
        margin: 0;
        padding: 5px 0px;
    }
    .header-bottom ul {
    	padding: 0px;
    }
    .spacer {
    	display: none;
    }
}

@media screen and (max-width:665px) {
	.hero-right {
		display: none;
	}
}
@media screen and (max-width:505px) {
	.hero-text {
        margin: 7%;
    }
    .hr-inner {
    	display: grid;
    	grid-template-columns: 1fr 1fr;
    }
    .right-item {
        text-align: center;
    }
    .hero-text p.title {
    	font-size: 20px;
    }
    .hero-text {
        padding: 30px 20px;
    }
	.hero-text p.subtitle {
        display: block;
    }
	.hero-text p {
		display: none;
	}
}
@media screen and (max-width:410px) {
	#hero h2 {
		font-size: 28px;
	}
	header .btn {
		white-space: nowrap;
	}
	.search-img {
		width: 17px;
		height: 17px;
	}
}
@media screen and (max-width:380px) {
	#hero h2 {
		font-size: 24px;
	}
}
/*general------------------------------*/
.container {
	padding: 50px 10%;
}
header, main, footer {
	max-width: 1500px;
	margin: auto;
}
footer .col4 {
	text-align: right;
}
@media screen and (max-width: 1750px) {
header,	main , footer {
	margin: 0px 130px !important;
}
}
@media screen and (max-width: 1500px) {
	.container {
	padding: 50px 5%;
	}
}
/*buttons-----------------------------*/
.btn {
	font-family: "futura-pt", sans-serif;
font-weight: 500;
font-size: 10px;
text-decoration: none;
padding: 10px 20px;
transition: 0.3s;
display: block;
width: fit-content;
	letter-spacing: 1px;
}

.btn-black-outline {
	color: black;
	background: transparent;
border: 1px solid black;
transition: 0.3s;
}
.btn-black-outline:hover {
	color: white;
	background: black;
border: 1px solid black;
}
.btn-white-outline {
	transition: 0.3s;
	color: #fff;
	background: transparent;
border: 1px solid #fff;
}
.btn-white-outline:hover {
	color: black;
	background: white;
border: 1px solid black;
}
/*footer -------------------------------------*/
footer a {
	font-size: 13px;
	text-decoration: none;
	transition: 0.3s;
	color: #000;
	font-family: "Open Sans", sans-serif;
}
footer p {
	font-size: 13px;
}
footer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
footer ul li {
	padding-bottom: 10px;
}
footer a:hover {
	opacity: 0.7;
	transition: 0.3s;
}
.footer-cols {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0px 60px 0px;
}
.footer-bottom {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.socials {
	display: flex;
    gap: 10px;
}
.col1 p {
	line-height: 160%;
}
.f-title {
	font-family: "futura-pt", sans-serif;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 20px;
}
.copyright p, .copyright a {
	font-size: 11px;
}
.newsletter {
	background-color: #D12426;
}
footer .logo {
	width: 128px;
}
.newsletter * {
	color: #fff;
}
.newsletter .subtitle {
	font-weight: 700;
	font-size: 15px;
	position: relative;
}
.newsletter .subtitle::after {
	content: '';
	width: 90%;
	height: 1px;
	position: absolute;
	background-color: #fff;
    left: unset;
    right: 0px;
    top: 10px;
}
.form-title {
	font-weight: 500;
}
.newsletter h2 {
	font-size: 30px;
	font-family: "Playfair Display", serif;
  font-weight: 500;
  max-width: 200px;
  margin: 0;
}
.newsletter-inner {
	padding-top: 40px;
	display: flex;
	    align-items: baseline;
    gap: 75px;
}
.form-wrap {
	display: flex;
	gap: 40px;
}
form label {
	    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}
.form-right {
	display: flex;
    flex-direction: column;
}
form input[type="email"], form input[type="text"] {
	padding: 10px;
    border: none;
    width: 100%;
    max-width: 440px;
    color: #0A2515;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}
form input[type="email"]::placeholder, form input[type="text"]::placeholder {
	 font-size: 13px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
	color: #0A2515;
	
}
form input[type="submit"] {
		cursor: pointer;
	    padding: 10px 35px;
	    margin-top: 10px;
	font-size: 10px;
	letter-spacing: 1.1px;
}
@media screen and (max-width:1220px) {
	.form-wrap {
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.form-right {
	margin-bottom: 10px;
}
.newsletter .subtitle::after {
    width: 85%;
}
}

@media screen and (max-width:900px) {
.newsletter-inner {
    gap: 45px;
}
form input[type="email"], form input[type="text"] {
    border: none;
    width: 90%;
}
    .newsletter .subtitle::after {
        width: 80%;
    }
}

@media screen and (max-width:826px) {
footer .col4 {
    text-align: left;
}
}
@media screen and (max-width:650px) {
.newsletter-inner {
    padding-top: 20px;
    gap: 25px;
    flex-direction: column;
}
    .newsletter .subtitle::after {
        width: 75%;
    }
}

@media screen and (max-width:570px) {
	.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
}
@media screen and (max-width:500px) {
    .newsletter .subtitle::after {
        width: 65%;
    }
}
@media screen and (max-width:370px) {
    .newsletter .subtitle::after {
        width: 55%;
    }
}
/*timeline------------------------------------------------*/
#timeline {
	background-color: #fceaea;
}
#timeline .container {
	position: relative;
}
.thirty {
	position: absolute;
	max-width: 125px;
	    right: 60px;
}
#timeline .title-section {
	    text-align: center;
    margin-bottom: 80px;
}
#timeline .subtitle {
	color: #D12426;
}
#timeline h2 {
	font-size: 30px;
	font-weight: 500;
	font-family: "Playfair Display", serif;
}
.times {
	    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15%;
}
#timeline .btn-wrap {
	   display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}
.btn.dropdown {
	padding: 10px 35px 10px 20px;
	position: relative;
}
.btn.dropdown::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 10px;
	background-image: url(images/dropdown.png);
	width: 11px;
	height: 12px;
	background-size: cover;
	background-repeat: no-repeat;
}
.btn.dropdown:hover::after {
	filter: brightness(0) invert(1);
}
.date {
	background-color: #D12426;
	color: #fff;
	padding: 9px 30px;
	margin-top: 10px;
	font-size: 11px;
	width: fit-content;
}
.ti-2 {
	text-align: center;
}
.ti-2 .date {
	margin: 10px auto 0 auto;
}
.ti-3 {
	text-align: right;
}
.ti-3 .date {
	margin: 10px 0 0 auto;
}
#timeline h3 {
	font-size: 21px;
	font-weight: 500;
	font-family: "Playfair Display", serif;
	line-height: 120%;
}
@media screen and (max-width:1500px) {
	#timeline h3 {
    font-size: 20px;
}
.thirty {
    position: absolute;
    max-width: 120px;
}
}
@media screen and (max-width:1200px) {
	#timeline h3 {
    font-size: 18px;
}
.thirty {
    position: absolute;
    max-width: 110px;
}
}
@media screen and (max-width:1050px) {
	#timeline h3 {
    font-size: 16px;
}
.thirty {
    position: absolute;
    max-width: 100px;
}
.times {
    grid-gap: 9%;
}
}
@media screen and (max-width:800px) {
.times {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
.times .time-item {
	text-align: center;
}
.ti-3 .date, .ti-2 .date, .time-item .date {
    margin: 10px auto 0 auto;
}
#timeline .title-section {
    margin-bottom: 40px;
}
.times {
       margin-top: 20px;
    }
    .thirty {
        max-width: 90px;
        right: 30px;
    }
  
}
@media screen and (max-width:600px) {
#timeline .container {
	text-align: center;
}
.thirty {
	position: relative;
    right: unset;
    margin-bottom: 20px;
}
    #timeline .title-section {
        margin-bottom: 10px;
    }
}
/*blog grid 1-----------------------------------------------*/
.blog-grid-1 {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 55px;
    grid-column-gap: 55px;
    padding-bottom: 50px;
}
.blog-grid-1 .title {
	font-size: 22px;
	font-weight: 500;
}
img {
	width: 100%;
	height: auto;
}
.blog-grid-1 img {
	max-height: 380px;
	max-width: 380px;
	aspect-ratio: 1;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-grid-1 img.clock {
	width: 11px;
	height: 11px;
}
.blog-grid-1 .three-blog-item img , .three-blog-item img{
	width: 115px;
    height: 115px;
}
.three-blog-item .title {
    margin: 5px 0px;
}
.blog-grid-1 .btn {
	margin-top: 25px;
}
.three-blog-item {
	display: flex;
	gap: 20px;
}
.three-blog-items {
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.three-blog-item .text-wrap {
	padding-bottom: 10px;
    border-bottom: 1px solid black;
}
.blog-img {
	position: relative;
}
#competitions .red-tag {
	display: flex;
    align-items: center;
    gap: 3px;
}
.clock {
	width: 11px;
}
.three-blog-item img.clock {
	width: 11px;
	height: 11px;
}
.red-tag {
	z-index: 2;
	position: absolute;
	right: 20px;
	top: 20px;
	background-color: #D12426;
	padding: 10px;
}
.red-tag p {
	font-size: 8px;
	color: #fff;
	margin: 0;
	padding: 0;
}
.three-blog-items .red-tag {
    right: 10px;
    top: 10px;
}
.bold-subtitle {
    font-family: "futura-pt", sans-serif;
    font-weight: 800;
    font-size: 14.2px;
    letter-spacing: 0.5px;
    color: #000;
    position: relative;
}
.bold-subtitle {
	margin-left: 50px;
}
.bold-subtitle::before {
	content: '';
	width: 200px;
	height: 1px;
	position: absolute;
	background-color: #000;
    left: -210px;
    top: 9px;
}
.title-section {
	margin-bottom: 30px;
}
#competitions .title-section.wrap, #top_stories .title-section.wrap {
	display: flex;
	justify-content: space-between;
}
.bold-subtitle.sub2 {
    margin-left: 0px;
    margin-right: 210px;
}
.sub2.bold-subtitle::before {
    content: '';
    width: 340px;
    height: 1px;
    position: absolute;
    background-color: #000;
    left: unset;
    top: 9px;
    right: -360px;
}
.three-blog-items .three-blog-item:nth-child(3) .text-wrap {
	border-bottom: none;
}
@media screen and (max-width:1600px) {
	.three-blog-item p.title {
		font-size: 18px;
	}
	.three-blog-item p {
		font-size: 13px;
		line-height: 120%;
	}
	.three-blog-item .red-tag p {
        font-size: 8px;
    }
    .three-blog-item img {
    width: 100px;
    height: 100px;
}
}

@media screen and (max-width:1270px) {
.blog-grid-1 {
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}
}

@media screen and (max-width:1200px) {
.blog-grid-1 .title {
    font-size: 19px;
}
.three-blog-item {
    gap: 10px;
}
p {
    font-size: 14px;
}
    .three-blog-item p.title {
        font-size: 16px;
        line-height: 100%;
    }
}
@media screen and (max-width:975px) {
	.blog-grid-1 {
    grid-template-columns: 1fr 1fr;
	}
	.three-blog-items {
    grid-column: 1 / span 2;
}
.three-blog-item .text-wrap {
    width: 100%;
}
}

@media screen and (max-width:770px) {
.title {
    margin: 10px 0px;
}
p {
        font-size: 13px;
    }
    .blog-grid-1 .btn {
    margin-top: 15px;
}
}
@media screen and (max-width:500px) {
	.blog-grid-1 {
    grid-template-columns: 1fr;
	}
	    .three-blog-items {
        grid-column: 1 / span 1;
    }
}
/*img story ---------------------------------*/
#image_story .wrap {
	display: flex;
}
#image_story .img {
	width: 75%;
	max-height: 607px;
}
#image_story .img img {
	height: 100%;
	object-fit: cover;
}
#image_story .story-text {
	width: 25%;
	background-color: black;
	padding: 5%;
}
#image_story .story-text .btn {
	margin-top: 25px;
}
#image_story .story-text p {
    line-height: 160%;
    max-width: 400px;
	font-size: 14px;
    color: white;
	max-width: 230px;
}
#image_story .story-text p.subtitle {
    line-height: auto;
	letter-spacing: 1px;
    max-width: 500px;
    font-size: 12.4px;
	position: relative;
}
#image_story .story-text p.subtitle::after {
	width: 90%;
	height: 1px;
	position: absolute;
	right: 0;
	top: 8px;
}
#image_story .story-text p.title {
	line-height: 120%;
	font-size: 30px;
	max-width: 260px;
}
@media screen and (max-width: 1300px) {
	#image_story .story-text p.title {
    font-size: 24px;
}
#image_story .img {
    width: 65%;
}
#image_story .story-text {
    width: 35%;
}
}
@media screen and (max-width: 770px) {
	#image_story .story-text p.title {
    font-size: 20px;
}
#image_story .img {
    width: 50%;
}
#image_story .story-text {
    width: 50%;
}
}
@media screen and (max-width: 560px) {
#image_story .img {
    width: 100%;
    max-height: 500px;
}
#image_story .story-text {
    width: auto;
}
#image_story .wrap {
    flex-direction: column-reverse;
}
#image_story .story-text p {
    max-width: 100%;
}
}
/*news tabs---------------------------------------*/
#news_tabs .banner-ad {
	margin-bottom: 50px;
}
.tab-content {
	display: none;
}
.tab-content.current, .three-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}
#news_tabs .wrap {
	    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    margin-bottom: 50px;
}
.blog-tabs ul {
	padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.blog-section {
	margin-bottom: 50px;
}
.blog-item.long {
  grid-column: 1 / span 2;
}
.blog-item.long img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 379px;
}
.blog-section .title {
    font-size: 22px;
    font-weight: 500;
}
.blog-section .btn {
    margin-top: 25px;
}
.tab-link {
	cursor: pointer;
}
.three-grid .blog-img img, .two-item .blog-img img {
    max-height: 380px;
    max-width: 380px;
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1100px) {
	.tab-content.current, .three-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.blog-section .title {
    font-size: 19px;
    font-weight: 500;
    margin: 10px 0px;
}
.blog-section .btn {
    margin-top: 15px;
}
}
@media screen and (max-width:975px) {
.blog-item.long {
    grid-column: 1 / span 1;
}
.blog-section .three-blog-items {
        grid-column: 2 / span 2;
    }
}
@media screen and (max-width:780px) {
.tab-content.current, .three-grid {
    grid-template-columns: 1fr 1fr;
}
.blog-section .three-blog-items {
        grid-column: 2 / span 1;
    }
        .tab-content.current, .three-grid {
        grid-column-gap: 15px;
        grid-row-gap: 20px;
    }
}
@media screen and (max-width:670px) {
.tab-content.current, .three-grid {
    grid-template-columns: 1fr;
}
.blog-section .three-blog-items {
        grid-column: 1 / span 1;
    }
    .blog-section img {
    	max-height: 400px;
    height: 100%;
    object-fit: cover;
    }
}

@media screen and (max-width:550px) {
#news_tabs .wrap {
	flex-direction: column;
}
}
/*featured_story--------------------------*/
#featured_story {
	background-color: #6561612b;
}
#featured_story .wrap {
	display: flex;
    gap: 20px;
}
.featured-text {
	width: 33%;
}
#featured_story .img {
	width: 77%;
	max-height: 505px;
}
.featured-text-inner p {
	font-size: 14px;
}
#featured_story .img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-text p.title {
	line-height: 120%;
}
.featured-text p {
	line-height: 160%;
}
.featured-text .btn {
	margin-top: 25px;
}
.subtitle.red {
	color: #D12426;
	font-weight: 600;
	position: relative;
    font-size: 13px;
    letter-spacing: 1px;
}
.featured-text-inner {
	max-width: 280px;
}
.subtitle.red::before {
	content: '';
	width: 112px;
	height: 1px;
	position: absolute;
	background-color: #D12426;
    left: -158px;
    top: 9px;
}
#fw_image .excerpt p {
    font-size: 14px;
}
@media screen and (max-width:1600px) {
	.featured-text p.title {
    font-size: 24px;
}
}

@media screen and (max-width:1100px) {
	.featured-text {
    width: 45%;
}
#featured_story .img {
    width: 65%;
}
}
@media screen and (max-width: 818px) {
    .featured-text p.title {
        font-size: 20px;
    }
}

@media screen and (max-width: 650px) {
#featured_story .wrap {
    flex-direction: column;
}
.featured-text {
    width: 100%;
}
#featured_story .img {
    width: 100%;
}
.featured-text-inner {
    max-width: 100%;
}
.subtitle.red::before {
    left: -130px;
}
}
/*fw image ------------------------------------------------*/
#fw_image {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
	max-height: 1000px;
}
.fw_image_text {
	background-color: #fff;
	max-width: 500px;
	padding: 30px 40px;
}
#fw_image .inner {
	    display: flex;
    justify-content: flex-end;
}
.fw-text-inner {
	max-width: 430px;
}
#fw_image .btn {
	margin-top: 25px;
}
#fw_image .subtitle.red::before {
    content: '';
    width: 90%;
    height: 1px;
    position: absolute;
    background-color: #D12426;
    left: unset;
    top: 8px;
    right: -40px;
}
@media screen and (max-width:1600px) {
	#fw_image p.title {
    font-size: 24px;
}
}
@media screen and (max-width:500px) {
	#fw_image p.title {
    font-size: 20px;
}
.fw_image_text {
    padding: 30px 20px;
}
}
@media screen and (max-width:400px) {
#fw_image .subtitle.red::before {
    width: 75%;
    right: -20px;
}
}
/*-----------------------------------------------------*/
.ts-ad {
	padding-bottom: 50px;
}
#top_stories .bold-subtitle.sub2 {
    margin-right: 260px;
}
#top_stories .sub2.bold-subtitle::before {
    width: 247px;
    right: -260px;
}
/*---------------------------------------------------*/
.interviews {
	background-color: #D12426;
}
.interviews * {
	color: #fff;
}
.interviews .bold-subtitle {
    margin-left: 0px;
}
.interviews .bold-subtitle::before {
    content: '';
    width: 130px;
    height: 1px;
    position: absolute;
    background-color: #fff;
    left: -145px;
}
.two-grid {
	display: grid;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
	grid-column-gap: 80px;
}
.interviews .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 380px !important;
}
.interviews .blog-section {
    margin-bottom: 0px;
}
@media screen and (max-width: 1300px) {
	.two-grid {
    grid-column-gap: 40px;
}
}
@media screen and (max-width: 850px) {
	.two-grid {
    grid-template-columns: 1fr;
}
}
body {
	background-color: #6D827D;
}
header, footer {
	position: relative;
	background-color: #fff;
}
main {
	max-width: 1500px;
    margin: auto;
    background-color: #fff;
}
.new-col-ad-right {
	max-width: 202px;
    max-height: 990px;
    position: fixed;
    right: 0px;
    top: 0;
	z-index:1;
}
.new-col-ad-left {
	max-width: 202px;
    max-height: 990px;
    position: fixed;
    left: 0px;
    top: 0;
	z-index:1;
}
.myMobNav {
  height: 100%;
  width: 0; 
  position: fixed; 
  z-index: 10; 
  top: 0;
  right: 202px;
  background-color: #F0EFEF; 
  overflow-x: hidden; 
  transition: 0.5s; 
}
.myMobNav ul {
	border-left: 4px solid #D12426;
	padding: 40% 30px 30px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.myMobNav ul li {
	    color: #000;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-decoration: none;
}
.closebtn {
  position: absolute;
}
@media screen and (max-width: 1825px) {
	.new-col-ad-right, .new-col-ad-left {
    max-width: 160px;
	}
.myMobNav {
  right: 160px;
	}
}
@media screen and (max-width: 1800px) {
	.new-col-ad-right, .new-col-ad-left {
    max-width: 130px;
	}
	.myMobNav {
  right: 130px;
	}
}
@media screen and (max-width: 1200px) {
	.new-col-ad-right, .new-col-ad-left {
    display: none;
	}
	header, main, footer {
        margin: 0px 0 !important;
    }
	.myMobNav {
  right: 0px;
	}
	body {
		background-color:#fff;
	}
}
/*-----------------------------------------------*/
.newsletter .wpcf7-not-valid-tip {
    color: #fff;
}
.newsletter .wpcf7-radio {
	display: flex;
    flex-direction: column;
    gap: 3px;
}
.three-blog-items a {
	text-decoration: none;
}
.three-blog-items a .red-tag p {
	color: #fff;
}
.three-blog-items a p {
	color: #000;
}
@media screen and (max-width: 975px) {
	.bold-subtitle.sub2 {
		display: none;
	}
}

@media screen and (max-width: 670px) {
.three-grid .blog-img img, .two-item .blog-img img {
    max-width: 100%;
    aspect-ratio: auto;
}
	* {
		animation-delay: 0.2s !important;
	}
}
/*----------------------------------------------------*/
.blog-item .blog-img {
	overflow: hidden;
}
.blog-item .blog-img img, .three-blog-item .blog-img img {
	transition: 0.3s;
}
.blog-item:hover .blog-img img, .three-blog-item:hover .blog-img img {
	transition: 0.3s;
	transform: scale(1.1);
}
.three-blog-item .blog-img {
	overflow: hidden;
    min-height: 115px;
    min-width: 115px;
}
.search-img {
	transition: 0.3s;
}
.search-img:hover {
	opacity:0.6;
	transition: 0.3s;
}
.wpcf7-radio label {
	    display: flex;
    align-items: center;
    gap: 5px;
}
.newsletter input[type='radio']:after {
        width: 11px;
        height: 11px;
        border-radius: 11px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #fff;
        content: '';
        display: inline-block;
        visibility: visible;
	cursor: pointer;
        border: 2px solid white;
    }
.newsletter input[type='radio']:checked:after {
        width: 11px;
        height: 11px;
        border-radius: 11px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #D12426;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }
@media screen and (max-width: 650px) {
	.newsletter input[type='radio']:after {
        display: none;
    }
.newsletter input[type='radio']:checked:after {
	display: none;
    }
}