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

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

@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css?family=Prata);

: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: 30px;
    --spacer-35: 35px;
    --spacer-40: 40px;
    --spacer-45: 45px;
    --spacer-50: 50px;
   /*TYPOGRAPHY*/
    --fontFamily: 'Montserrat', sans-serif;
    --fontSize: 0.9rem;
    
    /*COLORS*/
    --gray: #eeeeee;
    --lightBlack: #212121;
    --black: #000000;
    --red: #DD0525;
    --white: #FFFFFF;
    --darkGray: #707070;
    --blue:#7DD5D2;
    --lightWhite:#FFFCFC;
    --lightGray: #dbdbdb;
    --primary: #ffffff;
    --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 a{
	color:var(--blue);
}
.single-post-content a:hover{
	text-decoration: underline;
	color:var(--blue);
}
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: 3;
}
span.editors-choice{
  background-color: var(--red);
  color:var(--white);
  padding:0px 5px;
  margin-right:7px;
  white-space:nowrap;
}
.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;
}
.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{
  color: var(--black);
  font-weight: 600;
  margin:0;
  font-size: 1rem;
  position: relative;
  text-align: center;
}
h2.posts-title span{
  position: relative;
  z-index: 1;
  background-color: var(--primary);
  padding:0 15px;
  color:var(--textColor);
}
h2.posts-title::after{
  content: "";
  width:100%;
  height:6px;
  background-color: var(--blue);
  position: absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  z-index: 0;
}
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}
.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 5 Free";
  content: "\f185";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--black);
  font-size: 16px;
}

input:checked + .slider {
  background-color: var(--lightBlack);
}
input:checked + .slider:before {
  transform: translateX(24px);
  content: "\f186";
  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;
}

.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:50px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  
}

.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(90deg, var(--unnamed-color-000000) 0%, #383838 86%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(90deg, #000000 0%, #383838 86%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
	mix-blend-mode: multiply;
	position:absolute;
	z-index:1;
	left:0;
	top:0;
	height:100%;
	width:61%;
}
.post-layout{
  position: relative;
  z-index: 1;
}
.post-info{
	min-height:85px;
}
.layout-one .post-layout{
  max-width: 50%;
}

.post-layout h2{
  font-weight: 600;
  margin: 0;
  max-width:90%;
}

.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: 0.9rem;
}
.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: 500;
}
.post-meta span{
  font-weight: 300;
}
.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);
}


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

.layout-small .post-img{
  flex:1;
}
.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-form .wpcf7-list-item{
  margin-left:0;
}
#newsletter-form .wpcf7-list-item label{
  display: flex;
  align-items: center;
}

.home-media-partners{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.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:300px;
}

.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{
  border-left:6px solid var(--blue);
  padding-left:15px;
  font-weight: 600;
}

.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;
}

.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%;
}

/*------------------------------------*\
    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;
  }
}


@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) {
	.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-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;
	}
}

@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) {

}