/*
	Theme Name: InsideTelecom New v2
	Description: InsideTelecom's New Theme v2
	Version: 3.0.0
	Author: InsideTelecom
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans-Light.woff2') format('woff2'),
        url('fonts/GillSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans.woff2') format('woff2'),
        url('fonts/GillSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans-Bold.woff2') format('woff2'),
        url('fonts/GillSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans-LightItalic.woff2') format('woff2'),
        url('fonts/GillSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans-BoldItalic.woff2') format('woff2'),
        url('fonts/GillSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gill Sans';
    src: url('fonts/GillSans-Italic.woff2') format('woff2'),
        url('fonts/GillSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}




:root {
    --header-height:175px;
	--thinBorder: 0.5px solid #707070;
	--border: 1px solid #707070;
   /*SPACERS*/
    --spacer-5: 5px;
    --spacer-10: 10px;
    --spacer-15: 15px;
    --spacer-20: 20px;
    --spacer-25: 25px;
    --spacer-30: 80px;
    --spacer-35: 35px;
    --spacer-40: 40px;
    --spacer-45: 45px;
    --spacer-50: 50px;
   /*TYPOGRAPHY*/
    --fontFamily: 'Gill Sans', sans-serif;
    --fontSize: 0.9rem;
    
    /*COLORS*/
    --gray: #eeeeee;
    --lightBlack: #212121;
    --backgroundGray: #797878;
    --black: #000000;
    --red: #DD0525;
    --white: #FFFFFF;
    --darkGray: #707070;
    --blue:#7f7f7f;
    --lightWhite:#FFFCFC;
    --lightGray: #dbdbdb;
    --primary: #E4E4E4;
    --textColor: #000000;
    --dropDown: #000000;
}

.g-5, .gx-5 {
    --bs-gutter-x: 3.5rem;
}

html[data-theme=dark]:root{
   --primary: #000000;
   --textColor: #ffffff;
   --dropDown: #212121;
   --thinBorder: 0.5px solid #707070;
   --border: 1px solid #707070;
}

body {
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--textColor);
  line-height: normal;
  padding-top:var(--header-height);
  background-color:var(--primary);
  overflow-x:hidden;
}
a{
	text-decoration: none;
	color:var(--textColor);
}
a:hover{
	text-decoration: none;
	color:var(--textColor);
}
.single-post-content{
	font-size:20px;
	line-height:27px;
	font-weight:100;
}
.single-post-content a{
	color:var(--bs-link-color);
}
.single-post-content a:hover{
	text-decoration: underline;
	color:var(--bs-link-color);
}
img{
  max-width: 100%;
  height:auto;
}

.h7{
  font-size: 0.9rem;
}

header{
  position: fixed;
  background-color: var(--primary);
  width: 100%;
  top:0;
  left:0;
  z-index: 4;
}
span.editors-choice{
  background-color: var(--red);
  color:var(--white);
  padding:0px 5px;
  margin-right:7px;
  white-space:nowrap;
}

.editors-choice .post-layout a:hover{
	color: var(--black);
}
.two-lines{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.it-form input[type="text"],.it-form input[type="email"]{
  border:1px solid var(--darkGray);
  background-color:var(--white);
  color:var(--black);
  width:100%;
  padding:10px;
  font-size:0.9rem;
  height:40px;
}
.it-form input[type="submit"]{
  padding:10px 20px;
  background-color: var(--red);
  color:var(--white);
  text-align: center;
  border: none;
  height:40px;
  font-weight:bold;
}
.it-form input[type="text"]:focus-visible,.it-form input[type="email"]:focus-visible{
  outline: none;
}

.it-form input[type="checkbox"]{
  width:17px;
  height: 17px;
  margin-right:4px;
}

.dark-layout .it-form input[type="text"],.it-form input[type="email"]{
  background-color: var(--black);
  color:var(--white);
}
.privacy-input{
  display: flex;
}

.fixed-height{
	height:95px;
}

.spacer-50{
	height:var(--spacer-50);
}
.spacer-45{
	height:var(--spacer-45);
}
.spacer-40{
	height:var(--spacer-40);
}
.spacer-35{
	height:var(--spacer-35);
}
.spacer-30{
	height:var(--spacer-30);
}
.spacer-25{
	height:var(--spacer-25);
}
.spacer-20{
	height:var(--spacer-20);
}
.spacer-15{
	height:var(--spacer-15)
}
.spacer-10{
	height:var(--spacer-10);
}
.spacer-5{
	height:var(--spacer-5);
}

hr{
  width:100%;
  margin:0;
  padding:0;
  height:1px;
  background-color: var(--gray);
}
h2.posts-title.dark-title{
  background-color: var(--lightBlack);
  padding:10px;
}
h2.posts-title.dark-title span{
 color:var(--white);
}
h2.posts-title{
  color: var(--black);
  font-weight: 300;
  margin:0;
  font-size: 3.3rem;
  position: relative;
}
h2.small-title{
  font-weight: bold;
  font-size: 2.5rem;
}
h2.posts-title span{
  position: relative;
  z-index: 1;
  color:var(--textColor);
}

#latest-slider .slick-prev, #latest-slider .slick-next{
	top:45%;
	z-index:1;
}

#latest-slider .slick-prev{
	left: 10px;
}
#latest-slider .slick-next{
	right:10px;
}

.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-bottom:10px;
	margin-right:10px;
}
.theme-switch {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 45px;
}
.theme-switch input {
  display: none;
}
.slider {
  background-color: var(--gray);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
.slider:before {
  background-color: var(--white);
  bottom: 2px;
  content: "";
  height: 16px;
  left: 2px;
  position: absolute;
  transition: 0.4s;
  width: 16px;
  font-family: "Font Awesome 6 Pro";
  /*content: "\f185";*/
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="13" width="13" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5L19.7 136.3c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4L256 450.9l82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1L375.7 19.7zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4L402 242.4c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3L269.6 402c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3L64.8 335.2 110 269.6c5.7-8.2 5.7-19 0-27.2L64.8 176.8l78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3L242.4 110c8.2 5.7 19 5.7 27.2 0zM256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z"/></svg>');
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--black);
  font-size: 16px;
}

.latest-slider-container{
	margin-top:13px;
}

input:checked + .slider {
  background-color: var(--lightBlack);
}
input:checked + .slider:before {
  transform: translateX(24px);
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="13" width="9" viewBox="0 0 384 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--><path d="M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z"/></svg>');
  font-size: 12px;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header{
	display: flex;
	justify-content: space-between;
}

.header-2{
	display:flex;
	justify-content: center;
	align-items: flex-end;
}

.header-2.controls a{
	color:inherit;
	text-decoration: none;
	font-weight: 600;
}

.header-2.controls a:hover{
	color:var(--blue);
}

.box-border{
	border:var(--border);
	border-right: 0;
	padding:10px 15px;
}

html[data-theme=dark] .newsletter-section{
	border:1px solid var(--blue);
}

.box-border:last-child{
	border-right:1px solid var(--darkGray);
}

.box-border.dark{
	background-color: var(--lightBlack);
	color:var(--white);
}

.box-border.dark i{
	color:var(--white);
}

.logo img{
	width:300px;
	display:none;
}

.burger-menu{
  display: block;
  position: relative;
  border-color: var(--lightBlack);
}

.burger-menu:hover{
  background-color: var(--blue);
  cursor: pointer;
  border-color:var(--blue);
}

.burger-menu:hover i{
  color:var(--lightBlack);
}
#search-btn{
  position:relative;
  z-index: 1;
}

#search-btn i{
  position:relative;
  z-index: -1;
}

.small-submenu{
  position:absolute;
  top:100%;
  right:-1px;
  z-index: 3;
  background-color: var(--black);
  padding:7px 10px;
  border-top:6px solid var(--blue);
  display: none;
}
.social-sharing-box i{
  color:var(--textColor);
}
.social-sharing-box i:hover{
  color:var(--blue);
}
.small-submenu ul{
  list-style-type: none;
  padding:0;
  margin: 0;
}

.small-submenu ul li a {
  font-size: 0.7rem;
  white-space: nowrap;
  display:block;
  padding-bottom:10px;
}

.small-submenu ul li a:hover{
  color:var(--blue) !important;
}

.burger-menu:hover .small-submenu{
  display: block;
}

html[data-theme="light"] .logo .black-logo{
	display: inline;
}

html[data-theme="dark"] .logo .white-logo{
	display: inline;
}

.white-element, .black-element{
	display: none;
}
.home-media-partner img{
  display: none;
}

.home-media-partners .slick-track{
  display: flex;
  align-items: center;
}

.home-media-partner{
  text-align:center;
}

html[data-theme="light"] .white-element{
	display: inline;
}
html[data-theme="dark"] .black-element{
	display: inline;
}

.menu-header{
	background-color: var(--lightBlack);
  position:relative;
}
ul.navbar-nav{
	display: flex;
	align-items: center;
	flex-direction: row;
}
ul.navbar-nav a{
	color:var(--white);
	font-weight:600;
	font-size:14px;
}
ul.navbar-nav > li > a{
	padding:22px 20px;
	font-weight: 600;
	display: block;
	font-size:1rem;
}
ul.navbar-nav > li > a:hover{
	background-color: var(--blue);
	color:var(--lightBlack);
}



.mega-menu{
  list-style-type: none;
  padding:0;
  margin:0;
  position:absolute;
  background-color: var(--dropDown);
  border-top: 6px solid var(--blue);
  width:100%;
  z-index: 3;
  left:0;
  display: none;
  top:100%;
}

.mega-menu-posts{
  display: flex;
}
.mega-menu-post{
  width:20%;
}
.mega-menu-image{
  width: 100%;
  height:150px;
  overflow: hidden;
  border:1px solid var(--darkGray);
}

.mega-menu-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu-title{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 0.9rem;
}

.mega-menu-title a:hover{
  color: var(--blue);
}

.mega-menu-meta{
  color:var(--white);
  font-size:0.7rem;
}

.mega-menu-links{
  text-align: center;
  border-top:1px solid var(--darkGray);
  border-bottom: 1px solid var(--darkGray);
}

.mega-menu-links a{
  margin:0 5px;
}

.mega-menu-links a:hover{
  color: var(--blue);
}

ul.navbar-nav > li:hover > .mega-menu{
  display: block;
}





.layout-one{
  height:100%;
}

.layout-one-content{
  position: relative;
  padding:15px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 16/9;
  margin-bottom:15px;
  
}

.layout-one-content a:hover{
	color:var(--blue) !important;
}
.layout-one-image{
  position: absolute;
  top:0;
  left:0;
  z-index:0;
  height:100%;
  width: 100%;
}
.layout-one-image img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gradient-overlay{
	background: transparent linear-gradient(0deg, #000000 0%, #383838 86%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(0deg, #000000 0%, #383838 86%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
	mix-blend-mode: multiply;
	position:absolute;
	z-index:1;
	left:0;
	bottom:0;
	height:30%;
	width:100%;
}
.post-layout{
  position: relative;
  z-index: 1;
}
.post-info{
	min-height:85px;
}


.post-layout h2{
  font-weight: normal;
  margin: 0;
}
.min-height-60{
	min-height: 60px;
}
.post-layout p{
  overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
   margin: 0;
   font-size: 1.1rem;
}
.post-layout p.two-lines{
	-webkit-line-clamp: 2 !important; /* number of lines to show */
           line-clamp: 2 !important; 
}
.post-layout a:hover{
  color:var(--blue);
}

.post-layout.white-content h2, .post-layout.white-content p, .post-layout.white-content h3, .post-layout.white-content h4, .post-layout.white-content a,.post-layout.white-content span{
  color:var(--white);
}


.post-layout.with-border{
  border: var(--thinBorder);
  border-bottom: 0;
  padding:20px 15px;
}
.post-layout.with-border:last-child{
  border-bottom: var(--thinBorder);
}


.post-layout.with-border-bottom{
  border-bottom: var(--thinBorder);
}
.post-layout.with-border-bottom:last-child{
  border-bottom: 0;
}
.post-meta a{
  font-weight: bold;
}
.post-meta span{
  font-weight: normal;
}
.post-meta a, .post-meta span{
  font-size: 0.8rem;
}

.layout-one-content .overlay{
  position: absolute;
  height: 100%;
  width: 100%;
  top:0;
  left:0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.dark-layout{
  background-color:var(--lightBlack);
}

.dark-layout h2.posts-title span{
  background-color: var(--lightBlack);
  color:var(--white);
} 

.dark-layout a:hover{
  color:var(--blue);
}

.dark-layout a, .dark-layout span, .dark-layout h2, .dark-layout p, .dark-layout label{
  color:var(--white);
}

.dark-background{
  background-color:var(--backgroundGray);
}

.dark-background a, .dark-background span, .dark-background h2, .dark-background p, .dark-background label{
  color:var(--white);
}

.layout-small .post-layout{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-image img{
  width:100%;
}

.layout-small .post-img{

}
.layout-small .post-info{
  flex:3;
  min-height:auto;
}

.form-inputs{
  display: flex;
  position: relative;
}

.form-inputs span:first-child{
  flex:1;
}
.form-inputs .wpcf7-not-valid-tip{
  text-align: left;
  margin-top:4px;
}
.form-inputs .wpcf7-spinner{
  position:absolute;
  margin:0;
  right: -40px;
  top:50%;
  transform: translateY(-50%);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  border:none;
}

.dark-layout .wpcf7 form.invalid .wpcf7-response-output, .dark-layout .wpcf7 form.unaccepted .wpcf7-response-output, .dark-layout .wpcf7 form.payment-required .wpcf7-response-output{
  color: var(--white);
}

.newsletter-section{
	padding-top:4rem;
	padding-bottom:4rem;
}

.newsletter-inputs .form-inputs p{
	display:flex;
	position:relative;
	width:100%;
}

#newsletter-form .wpcf7-list-item{
  margin-left:0;
}
#newsletter-form .wpcf7-list-item label{
  display: flex;
  align-items: center;
}

.home-media-partners{
 
}

.home-media-partner img{
	max-width:200px;
	margin:10px;
}

footer{
  width:100%;
  background-color: var(--lightBlack);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-logo img{
  width:200px;
}

.footer-menu ul{
  list-style-type: none;
  padding:0;
  margin:0;
}

.footer-menu a{
  margin-bottom:10px;
  display: block;

}

.footer-menu a:hover{
  color: var(--blue);
}

.two-columns{
  -webkit-column-count: 2;
  -moz-column-count: 2;
       column-count: 2;
}

.footer-menu ul a{
  color:var(--white);
}

.inner-title{
  font-weight: 700 !important;
  font-size: 3rem;
}

.child-categories{
  text-align: right;
}

.child-categories a{
  margin-left:7px;
  display: inline-block;
  margin-bottom:5px;
}

.child-categories a:hover{
  color:var(--blue);
}

.load-more-text{
  background-color: var(--red);
  color:var(--white);
  padding:5px 13px;
  text-align: center;
}
.load-more-text:hover{
  cursor: pointer;
  opacity: 0.8;
}
.tags ul{
  list-style-type: none;
  margin:0;
  padding:0;
}
.tags li{
  margin-right: 5px;
  display: inline-block;
}
.tags li.tag-list {
  font-size: 15px;
  text-align: center;
  padding: 9px 15px;
  border: 1px solid #e4e5e6;
  background: #e4e5e6;
  color:var(--black);
}

.tags li a {
  font-size: 15px;
  text-align: center;
  padding: 9px 15px;
  border: var(--border);
  color: var(--textColor);
  font-weight: 400;
  display:block;
}

.tags li a:hover {
  background: #e4e5e6;
  color: var(--black);
}

.single-post-img{
  border:var(--thinBorder);
  padding:30px;
  position:relative;
}

.video-overlay{
	position:absolute;
	height: calc(100% - 60px);
	width: calc(100% - 60px);
	background-color:rgba(0,0,0,0.4);
	display:flex;
	align-items:center;
	justify-content:center;
}
.video-overlay i{
	font-size:85px;
	color:#ffffff;
}
.single-post-meta{
  border:var(--thinBorder);
  border-top:none;
  display: flex;
}

.meta-box{
  border-right:var(--thinBorder);
  text-align: center;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex:1;
}

.meta-box p{
  margin:0;
}

.meta-box:last-child{
  border-right:none;
}

.single-post-info{
  flex:2;
}

.meta-box a:hover{
  color:var(--blue);
}

.social-sharing-box a{
  margin:0 5px;
}

.media-partner{
  border:var(--thinBorder);
  display: flex;
  align-items: center;
  justify-content: center;
	height:150px;
}

.media-partner a{
	width:70%;
}

.media-partner img{
  max-width: 100%;
}

.search-form-container{
  position: absolute;
  width: 100%;
  top:100%;
  left:0;
  opacity: 0;
  transform: translateY(-9999px);
  transition: opacity 0.1s linear;
  
}

.search-form-container.open-search{
  opacity:1;
  transform: translateY(0);
}

.search-content{
  background-color: var(--lightBlack);
  padding:15px;
  border-top:6px solid var(--blue);
  
}

.search-form-container input[type='search']{
  background-color: var(--black);
  border:none;
  padding:10px;
  color:var(--white);
  width: 100%;
}

.search-form-container input:focus{
  outline: none;
  border: none;
}


.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea, .contact-form select{
  width:100%;
  background-color: var(--lightGray);
  padding:10px 10px;
  border:none;
  margin-bottom:15px;
}

.contact-form .wpcf7-not-valid-tip{
  margin-top:-10px;
  margin-bottom:10px;
}

.contact-form input[type=text]:focus,.contact-form input[type=email]:focus, .contact-form textarea:focus, .contact-form select:focus{
  outline: none;
  border:none;
}

.contact-form input[type=submit]{
  background-color: var(--red);
  color:var(--white);
  border:none;
  padding:7px 10px;
  margin-top:15px;
}

.contact-form input[type=submit]:hover{
  opacity:0.8;
}

.contact-form .wpcf7 form .wpcf7-response-output{
  margin-left:0;
  padding-left:0;
  margin-top:10px;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,.contact-form .wpcf7 form.payment-required .wpcf7-response-output{
  color:var(--red);
}

.contact-form .wpcf7-not-valid-tip{
  color:var(--red);
}

.contact-form .wpcf7-spinner{
  transform: translateY(7px);
}




.mobile-menu-overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  opacity: 0;
  background-color: rgba(0,0,0,0.5);
  transition:all 0.2s linear;
  top:0;
  left:0;
  visibility: hidden;
}

.mobile-menu-container.open .mobile-menu-overlay{
  opacity:1;
  visibility: visible;
}

.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  background-color: var(--primary);
  width: 80%;
  height:100%;
  z-index: 102;
  transform:translateX(-100%);
  transition:all 0.2s linear;
  visibility: hidden;
}

.mobile-menu-container.open .mobile-menu{
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-header{
  padding: 15px 30px;
  text-align: right;
}

.close-menu i{
  font-size:24px;
}

.close-menu:hover{
  cursor: pointer;
}



.mobile-menu ul {
  list-style-type: none;
  padding:0;
  margin:0;
  width: 100%;
}
.mobile-menu > ul > li {
  padding:10px 30px;
  border-top:1px solid var(--lightGray);
}

.mobile-menu > ul > li:last-child {
  border-bottom:1px solid var(--lightGray);
}
.mobile-menu > ul > li > div{
  display: flex;
  justify-content: space-between;
}

.mobile-menu > ul > li  > a, .mobile-menu > ul > li > div > a{
  font-size: 17px;
}

.mobile-menu ul li i{
  font-size:14px;
}

.mobile-menu ul.sub-menu li a{
  display: block;
  color:var(--textColor);
}
.mobile-menu ul.sub-menu li{
  padding:10px 15px;
  border-bottom: 1px solid var(--lightGray);
}

.mobile-menu ul.sub-menu li:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.mobile-menu a[aria-expanded=true] i::before{
  content: "\f068";
}

.social-side{
  position:fixed;
  top:50%;
  right:50px;
  transform:translateY(-50%);
  z-index: 2;
}

.social-side ul{
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding:0;
  margin:0;
}
.social-side ul a{
  padding:12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:var(--blue);
  color:var(--white);
  border-radius: 5px;
  text-decoration: none;
  margin-bottom:10px;
  font-size:16px;
}
.social-side ul li:last-child a{
  margin-bottom:0;
}
.social-side ul a:hover{
  opacity:0.9;
}
.social-footer{
  display: none;
}
.social-footer ul{
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:0;
  margin:0;
  margin-top:30px;
  
}

.social-footer a{
  color:var(--white);
  margin:3px 5px;
}

.copyright p{
  color:var(--white);
  margin-top:5px;
  margin-bottom: 0;
}

.breaking-news{
	position:relative;
}

.breaking-news h4{
	flex:1;
	background-color:var(--red);
	color: var(--white);
	padding:10px;
	text-align:center;
	font-size:1.2rem;
	margin:0;
	
	
}

.breaking-news-container{
	flex:5;
	background-color:var(--lightBlack);
	padding:10px;
	height:100%;
	padding-top:13px;
}

.breaking-news-carousel a{
	color:var(--white);
	font-weight:600;
}

.featured-posts{
	height:100%;
}
.featured-posts .post-layout{
	height:100%;
}

.featured-posts .post-layout h2{
	width:70%;
}

.status-title,.status-icon i,.status-text{
	color:black !important;
}

.layout-one{
  /*height:40vh;*/
	/*aspect-ratio: 16/9;*/
}

#editors-arrows{
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}
#editors-arrows span{
  font-size:2.5rem;
  cursor: pointer;
}
#editor-previous-arrow{
  margin-right:5px;
}

.series-accordion {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}
.series-accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
.series-accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 16.666%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 500ms ease;
}
.series-accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}
.series-accordion ul li div a {
  display: block;
  height: 500px;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  transition: all 200ms ease;
  background: rgba(0, 0, 0, 0.2);
}
.series-accordion ul li div a * {
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.series-accordion ul li div a h2 {
  text-overflow: clip;
  font-size: 2rem;
  text-transform: uppercase;
  width: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  right:15px;
  bottom:15px;
  transform: rotate(180deg);
}

.series-accordion ul li div a p {
  top: 160px;
  font-size: 13.5px;
}
.series-accordion ul:hover li, .series-accordion ul:focus-within li {
  width: 8%;
}
.series-accordion ul li:focus {
  outline: none;
}
.series-accordion ul:hover li:hover,
.series-accordion ul li:focus, .series-accordion ul:focus-within li:focus {
  width: 60%;
}

.series-accordion ul:hover li {
  width: 8% !important;
}

.series-accordion ul:hover li:hover {
  width: 60% !important;
}


@media screen and (max-width: 600px) {
  .series-accordion {
    height: auto;
    width:100% !important;
  }
  .series-accordion ul li, .series-accordion ul li:hover, .series-accordion ul:hover li, .series-accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
  .series-accordion ul li{
    height:250px;
    width: 100% !important;
  }
  .series-accordion ul li div a {
    height:250px;
    width: 100% !important;
  }
  .series-accordion ul:hover li{
    width: 100% !important;
  }
  .series-accordion ul:hover li, .series-accordion ul:focus-within li{
    width:100% !important;
  }
  .series-accordion ul:hover li:hover{
    width: 100% !important;
  }
  .series-accordion ul:hover li:hover, .series-accordion ul li:focus, .series-accordion ul:focus-within li:focus{
    width:100% !important;
  }
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1500px) {
  .social-side{
    right:30px;
  }
}

@media only screen and (max-width:1450px) {
  .social-side{
    right:15px;
  }
}

@media only screen and (max-width:1399px) {
  .social-side{
    right:30px;
  }
	
	#latest-slider .slick-prev, #latest-slider .slick-next{
		top:42%;
	}
}


@media only screen and (max-width:1280px) {
}

@media only screen and (max-width:1270px) {
  .social-side{
    right:15px;
  }
}

@media only screen and (max-width:1199px) {
  
}

@media only screen and (max-width:1140px) {

}

@media only screen and (max-width:1024px) {
  .social-side{
    display: none;
  }

  .social-footer{
    display: block;
  }
  
  .copyright p{
    margin-top:10px;
  }
}

@media only screen and (max-width:992px) {
	.layout-small h2.posts-title{
	padding-top:50px;
}
	.box-border{
    border-bottom:1px solid var(--darkGray);
  }
	.post-layout h2{
		max-width:auto;
	}
  .burger-menu{
    border-right:1px solid var(--darkGray);
  }
  .main-header{
    align-items: center;
  }
  :root{
    --header-height: 80px;
  }
  .logo img{
    width: 215px;
    margin-top:2px;
  }
  .box-border{
    border: none;
    padding:5px 10px;
  }

  .two-columns{
        -webkit-column-count:1;
        -moz-column-count: 1;
        column-count: 1;
  }

  .footer-logo{
    text-align: center;
    margin-bottom:30px;
  }

  footer ul li{
    text-align: center;
  }

  .child-categories{
    text-align: left;
    margin-top:10px;
  }

  .single-post-meta{
    flex-direction: column;
  }

  .meta-box{
    border-right:none;
    border-bottom:1px solid var(--lightGray);
  }
  .meta-box:last-child{
    border-bottom:none;
  }

  .layout-one .post-layout{
    max-width: 100%;
  }
	
	.form-inputs{
		display: block;
	}
	
	.newsletter-inputs .form-inputs p{
		display:block;
	}

	#newsletter-form input[type=submit]{
		width:100%;
	}
	.box-border:last-child{
		border-right:none;
	}
	.post-info{
		min-height:auto;
	}
	.two-lines {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		line-clamp: 4;
			-webkit-box-orient: vertical;
	}
	.featured-posts .post-layout h2{
		width:auto;
	}
	.gradient-overlay{
		background:var(--black);
		opacity:0.6;
		width:100%;
	}
	
	.copyright{
		text-align:center;
		margin-bottom:15px;
	}
	
	.fixed-height{
		height: auto;
	}
	.theme-switch-wrapper{
		margin-bottom:4px;
		margin-right:0;
	}
}

@media only screen and (max-width:768px) {
	
}

@media only screen and (max-width:576px) {

}

@media only screen and (max-width:480px) {

}

@media only screen and (max-width:380px) {

}


@media only screen and (max-width:320px) {

}