@charset "utf-8";
/*
Theme Name: tigaman network Theme
Theme URI: https://www.tigaman.com/
Author: tigaman webdesign
Author URI: https://www.tigaman.hu/
Description: A tigaman webdesign által működtetett oldalak alapártelmezett megjelenése.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout, custom-menu, featured-images, responsive, mobil ready
*/
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('font-awesome.min.css');
@import url("mobil-navigation.css");
@import url("darkmode.css");
@import url("breaking-news.css");
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;    
        

  }
}

body {
	margin: 0;
	padding: 0;
	font-size: .8vw;
	font-family: 'Oswald', sans-serif;
	background-image: repeating-linear-gradient(45deg, rgba(255, 102, 0, 0.17) 0, rgba(255, 102, 0, 0.17) 0.5px, transparent 0, transparent 50%);
	background-size: 12px 12px;
	background-color: #fff;
	background-attachment: fixed;
}

a {
	text-decoration: none;
	color: #333333;
	transition: color .8s ease-out
}
a:hover {
	text-decoration: none;
	color: rgba(131,141,143,1);
	transition: color .8s ease-out
}
.clear {
	clear: both;
}
blockquote {
	border: 0;
	background: #eeeeee;
	margin: 3vw 0;
	padding: 1em;
	font-size: 130%;
	line-height: 1em;
	position: relative;
    font-family: 'Oswald', sans-serif;
	

}
blockquote:before {
	color: #9BA78A;
	font-family: 'FontAwesome';
	content: '\f10e';
	font-size: 5em;
	left: 1%;
	top: .5em;
	position: absolute;
	opacity: .2;
}

h1, h2, h3, h4, h5 {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}




#menu {
	display: flex;
	width: 90%;
	position: sticky;
	top: 0;
	background-color: #FFFFFF;
	justify-content: space-between;
	align-items: center;
	margin: 10px auto;
	z-index: 2;

}

.logo {
	width: 30%;
	background-color: #4A4A4A;
}
.logo img {
	width: 90%;
	height: auto;
	margin: 10px 5%;
} 

 .social-buttons {
	width: 50px;
	position: relative;
}
.toggle-switch {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.menu {
	width: calc(80% - 50px);
	margin: 0px auto 0 auto;
}

.menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;  
	display: flex;
	justify-content: space-around;
}

.menu li {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	font-size: 120%;
	font-weight: 400;
	letter-spacing: .4em;
	margin: 0 3vw;
}

.menu li a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}
.menu li a:hover {
	color: #4A4A4A;
	transition: .4s ease-in-out;
}

		
/* submenu  */
.menu li:hover > ul {
	display: flex;
	flex-direction: column;
	animation: slide-in 0.3s ease-in-out;
}
.menu ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	background-color: #4A4A4A;

}


.menu ul ul li {
	position: relative;
	margin: 0;
	list-style-type: none;
	border-bottom: 1px solid rgba(255, 255, 255, .9);	

}
.menu ul ul a {
  padding: 1em 2em;
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 70%;
  letter-spacing: 1px;  
  white-space: nowrap; 
  background: linear-gradient(to right, #4A4A4A, #000000);
  background-size: 200% 100%; 
  transition: background-position 0.5s ease;

}

.menu ul ul a:hover {
  background-position: -100% 0; /* Move the background position to the left */
}



.menu li > a:after {
	content: '+';
	position: absolute;
	right: -15px;
	top: 45%;
	transform: translateY(-50%);
	font-size: 250%;
	opacity: 1;
	color: #4A4A4A;
}
.menu li > a:only-child:after { content: ''; }
@keyframes slide-in {
    0% {
        transform: translateX(-10px); /* Change translateY to translateX */
        opacity: 0;
    }
    50% {
        transform: translateX(0); /* Change translateY to translateX */
        opacity: 1;
    }
    70% {
        transform: translateX(-5px); /* Change translateY to translateX */
    }
    100% {
        transform: translateX(0); /* Change translateY to translateX */
    }
}

.headline {
	width: cacl(100% - 20px);
	text-align: center;
	margin: 10px;
	color: #FFFFFF;
	padding: 50% 0 0 0;
	position: relative;
	background-size: cover;
}
.headline h1 {
	font-size: 200%;
	margin: 0 0 0 0;
	font-weight: 700;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 0 0 5px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.6);
	width: 90%;
}
.headline span {
	font-size: 100%;
	font-weight: 400;
	margin: 0 0 0 0;
	position: absolute;
	top: 5px;
	left: 5px;
	background-color: #333333;
	padding: 5px;
}

#content {
	width: 90%;
	margin: calc(25px - 1.5625vw) auto;
}

.newsgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	grid-column-gap: 2em;
} 
.relatedgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 2em;
}
.newsgriditem {
	border: 1px solid #4A4A4A;
	padding: 2% 2% 70px 2%;
	margin: 0 0 2em 0;
	text-align: center;
	position: relative;
	background-color: #FFFFFF;
	cursor: pointer;
}


.newsgriditem h2 {
	font-size: 250%;
	margin: 0 0 0 0;
}
.newsgriditemimage {
	width: 100%;
	height: auto;
	padding: 50% 0 0 0;
	margin: 0 0 1vw 0;
	position: relative;

}
.background-zoom {
	background-position: center center;
	transition: background-size 2s;
	background-size: 100% auto;	
}



.newsgriditem:hover .background-zoom, 
.sidebarnews:hover .background-zoom {
	background-size: 150% auto;  transition: background-size 2s;	background-position: center center;
}

.background-zoom:focus{
	background-size: 100% auto;  transition: background-size 2s;	background-position: center center;
}

.newsdate {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #4A4A4A;
	color: #FFFFFF;
	padding: 5px;
	font-size: 150%;
}
.post-date{
	width: 60px;
	height: 61px;
	font-size: 14px;
	position: absolute;
	top: 2px;
	left: 2px;
	font-weight: 500;	
	border: 1px solid rgba(255,255,255,.3);
}
.post-date a{
	color: #fff;
}


.month, .date {
	display: flex;
	justify-content: center; /* vízszintesen középre */
	align-items: center;     /* függőlegesen középre */
	width: 60px;
	height: 30px;	
	color: #fff;
	text-transform: uppercase;
    transition: background-color 0.5s ease; 	
}
.date {
	background-color: #666666;	

}

.month {
	background-color: #000000;	
	border-bottom: 1px solid rgba(255,255,255,1);

}

.headline:hover .date, .newsgriditem:hover .date{
	background-color: #000000;    
	transition: background-color 0.5s ease; 

}
.headline:hover .month, .newsgriditem:hover .month{
background-color: #666666;    
transition: background-color 0.5s ease; 

}

.category {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #4A4A4A;
	color: #FFFFFF;
	padding: 5px;
	font-size: 150%;
}

/* link alapstílus */
.category a {
	color: #FFFFFF;
}

/* kör alakú, középre igazított kategóriák */
.category.category-1,
.category.category-10023,
.category.category-10024,
.category.category-10025,
.category.category-10026,
.category.category-10027
 {
	display: inline-flex;           /* inline-flex legyen, hogy flexboxként viselkedjen, de ne törje a sort */
	align-items: center;
	justify-content: center;
	width: 2em;                    /* fix szélesség */
	height: 2em;                   /* fix magasság */
	border-radius: 50%;            /* kör alak */
	padding: 0;                    /* padding helyett fix méret */
	font-size: 200%;
	top: 5px;
	right: 5px;
	overflow: hidden;
}

/* színek */
.category-1 {
	background-color: #000000;
}

.category-10023 {
	background-color: #ff0000;
}

.category-10024 {
	background-color: #4267B2;
}
.category-10026 {
	background-color: #FFFFFF;
	background-image: url(images/ads.gif);
	width: 110%;
	height: auto;
	color: rgba(255,255,255,0.01);
	background-repeat: no-repeat;
	background-position: center center;
}

.category-10025 {
background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );


}

.category-10027 {
	background-color: #1a121f;
	background-image: url('images/tiktok-color.svg');
	width: 110%;
	height: auto;
	color: rgba(255,255,255,0.01);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70% auto;
}
.category-279 a {

	color: rgba(255,255,255,0.01);

}

.instagram-media {
    width: 90%;
    margin: 20px 5%;
}
.newsgriditem p {
	text-align: left;
	color: rgba(0,0,0,.7);
	font-size: 145%;
	font-weight: 300;
}

.readmore {
	background-color: #4A4A4A;
	color: rgba(255,255,255,1);
	transition: background-color 0.5s ease;
	display: inline-block;
	padding: 20px 0;
	letter-spacing: 0.6em;
	text-transform: uppercase;
	margin:  0 0 0 0;
	font-weight: 500;
	cursor: pointer;
	position: absolute;
	bottom: 10px;
	left: 10%; /* Center horizontally */
	width: 80%;
}
.readmore:hover {
	background-color: rgba(0,0,0,.75);
	transition: background-color 0.5s ease;
}

.fleft {
	float: left;
	width: 70%;	
	margin: 0 2% 0 0;
}
.content {
	width: calc(100% - 2px - 4em);
	margin: 0 0 2em 0;
	border: 1px solid #4A4A4A;
	padding: 2em 2em 50px 2em;
	font-size: 160%;
	color: rgba(0,0,0,.7);
	position: relative;
	font-weight: 300;
		background-color: #FFFFFF;

}
.content h1 {
	margin: 0;
	padding: 0;
}
.content img, .wp-caption {
	max-width: 90%;
	height: auto;
}

iframe {
  max-width: 100%;

}
.twd-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  margin: 8px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.fb-twd-social-button {
  background-color: #3b5998;
}

.yt-twd-social-button {
  background-color: #ff0000;
}
.ig-twd-social-button {
background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );

}
.tt-twd-social-button {
	background-color: #000000;
}
.tt-twd-social-button::before {
	content: "";
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url('images/tiktok-color.svg');
  background-size: 100% 100%;
	background-repeat: no-repeat;
	margin-right: 0.5em;
	vertical-align: middle;
	background-position: center center;
}

.twd-social-button i {
  font-size: 24px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.twd-social-button span {
  transition: transform 0.3s ease;
}

.twd-social-button:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

.twd-social-button:hover i {
  transform: scale(1.15) rotate(8deg);
}

.twd-social-button:hover span {
  transform: translateX(5px);
}

.twd-social-button:visited {
  color: #fff;
  text-decoration: none;
}


.sidebar {
	float: left;
	width: calc(28% - 2px);

	margin: 0;
}
.box {
	margin: 0px 0 30px 0;
	background-color: #FFFFFF;
	background-image: url(images/sidebar_box_bg.jpg);
	background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center top;
	border: 1px solid #4A4A4A;
	color: #666666;
	font-size: 120%;
}
.box:last-child {
	margin: 0px 0 0px 0;

}
 h2.boxtitle{
	border-bottom: 1px solid #4A4A4A;
	text-align: center;
	width: 80%;
	margin: 0 10%;
	padding: 1vw 0;
	font-size: 200%;
	color: #000000;
}
.boxcontent {
	padding:10px  20px;	
}
.boxcontent img {
	max-width:100%;
}

.boxcontent ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.boxcontent li  {
	margin: 0 0 5px 0;
}


.boxcontent a  {

	text-transform: uppercase;
	font-weight: 300;
	color: #000;
	display: block;
}
.boxcontent a:hover  {
	text-shadow: 2px 2px 2px #000;
	color: #666;
	transition:  .4s color ease-in;

}
.boxcontent form div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .boxcontent input[type="text"],
  .boxcontent input[type="submit"] {
	height: 40px;
	margin: 5px;
	box-sizing: border-box;
	border: 0;
  }

.boxcontent input[type="text"] {
	width: 85%;
	padding: 0 0 0 10px;
	color: rgba(58,58,90,1);
	background-color: rgba(255,255,255,0.5);
	transition: 1.3s ease;	
box-shadow: 0px 0px 8px 4px rgba(58,58,90,.25); inset;	

}
.boxcontent input[type="text"]:focus {
	background-color: rgba(255,255,255,0.1);
	outline: none;
	color: rgba(58,58,90,1);
	transition: 0.6s ease;	
	
}
#searchsubmit {
	width: calc(15% - 5px);
	font-size: 0;
	color: #FFFFFF;
	cursor: pointer;
	background-color: #666666;
	background-image: url(images/search.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	transition: background-color .4s ease;	
}
#searchsubmit:hover {
	background-color: rgba(58,58,90,1);
	transition: background-color .4s ease;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.search-title {
  font-size: 250%;
  margin: 0;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.search-keyword {
	font-size: 20px;
	color: #FFF;
	background-color: #333;
	padding: 5px 10px;
	border-radius: 3px;
	display: flex;
	align-items: center;
	height: 100%;
}

.search-count {
	font-size: 20px;
	color: #F30;
	background-color: #000000;
	padding: 5px 10px;
	border-radius: 3px;
	display: flex;
	align-items: center;
	height: 100%;
}

.no-results-title {
  font-size: 250%;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}



.box .screen-reader-text {
	display: none;
}

.footerad {
	border: 1px solid #4A4A4A;
	margin: 30px auto;
	max-width: 100%;
	padding: 2%;
}


#footer {
	width: 100%;
	background-color: #4A4A4A;
	color: #FFF;
	margin: 3vw 0 0 0;
	font-size: 150%;
	font-weight: 400;

}
#footer a {
	font-weight: 500;
	color: #FFF;	
}
#footer a:hover {

	border-bottom: 1px solid #fff;
}

.footer1 {
	padding: 100px 0 ;
	width: 90%;
	margin: 0 auto;
	position: relative;
}


.top {
	background-color: #4A4A4A;
	color: rgba(255,255,255,1);
	transition: background-color 0.5s ease;
	padding: .7vw 1vw 1vw 1vw;
	font-size: 100%;
	border: 1px solid #FFFFFF;
	position: absolute;
	top: -2vw;
	left: 50%;
	transform: translateX(-50%);	
}
a.top , a.top:hover {
	color: rgba(255,255,255,1);
}
.top:hover {
	background-color: rgba(102,102,102,1);
	transition: background-color 0.5s ease;
}




.pagination {
	display: flex;
	justify-content: space-between;
	width: 30%;
	margin: 20px auto 50px auto;
}

.pagination div {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: 0 0 8px rgba(0,0,0,.5);
	padding: 20px 0;  
}

.pagination div:first-child, .pagination div:last-child {
	background-color: #696969;
	color: #FFFFFF;
	cursor: pointer;
}
.pagination div:first-child:hover, .pagination div:last-child:hover {
	background-color: #000C00;
	color: #FFFFFF;
}
.pagination div a {
	color: #FFFFFF;
}



.mobil{
	display: none;
}
.nomobil{
	display: inline;
}





/* ----------------------------  mobil -------------------------------------   */
@media screen and (max-width: 980px) {
/**/
.mobil{
	display: inline;
}
.nomobil{
	display: none;
}
body {

	font-size: 10px;

}
#header, #menu {display:none;}
.toggle-switch {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: calc(100% - 90px);
  transform: translateY(-50%);
}

#content {
	width: 95%;
	margin: calc(25px - 1.5625vw) auto;
}
.newsgrid {
	grid-template-columns: repeat(1, 1fr);

}
.relatedgrid {

	grid-template-columns: repeat(1, 1fr);

}
.fleft {
	width: 99.5%;	
	margin: 0 0.25%;
}

.content {
	width: calc(100% - 2px - 2em);
	padding: 1em 1em 50px 1em;
}

.headline h1 {
	font-size: 100%;

}
.category.category-10023,
.category.category-10024 {

	font-size: 100%;

}

.sidebar {
	width: calc(99.5% - 2px);
	margin: 0 .25%;
}

