@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

body {
  background: #fff;
  color: #000;
  font-family: "Inter", sans-serif;
}

a {
  color: #d10014;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #f2263a;
  outline: none;
  text-decoration: none;
}

.web-w {
  color: #fff;
}

.web-w:hover {
  color: #f2263a !important;
}

.web-a {
  color: #000;
}

.web-a:hover {
  color: #f2263a !important;
}

.grey-c {
  color: #0000009c;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
  color: #000;
  font-family: "Ubuntu", sans-serif;
}

hr {
  background-color: #8f8f8f;
  margin: 20px 0;
  width: 100%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*height: 80px;*/
  padding: 10px 0;
  z-index: 10;
  position: sticky;
  border-bottom: 1px solid #cccc;
  background: #fff;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  height: 50px;
  width:auto;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(34, 34, 34, 1);
  transition: 0.4s;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.nav-menu a:focus {
  display: block;
  position: relative;
  color: #fff;
  padding: 15px 30px;
  font-weight: 400;
  transition: 0.3s;
  border-bottom: 1px solid #ffffff26;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #ff9494;
  text-decoration: none;
}

.nav-menu-active {
  left: 0;
}

.nav-toggle {
    position: absolute;
    top: 15px;
    z-index: 9998;
    border: 0;
    transition: all .4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    background: #fff;
    border: 1px solid #f2263a7d;
    text-align: right;
    padding: 10px 12px;
    border-radius: 2px;
}

.nav-toggle i {
  color: #fff;
  font-size: 18px;
}

.nav-toggle-active {
  left: 275px;
  position: absolute;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 700;
  color: #884922;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fd680e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #fd680e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd7827;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #743e1d;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(75, 40, 19, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:hover {
  padding: 10px 20px;
  font-size: 15px;
  color: #743e1d;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fd680e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fd680e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.top-social-icon ul li {
  display: inline-block;
  margin-right: 5px;
}

.top-social-icon ul li a,
.top-social-icon ul li a:focus {
  padding: 0px;
  border: 0;
}

.top-social-icon {
  padding: 25px;
}

.top-social-icon span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.top-social-icon ul {
  padding-top: 38px;
  padding-left: 0;
}

.top-social-icon span {
  color: #ff6372;
  font-size: 20px;
  font-weight: 400;
}

.top-social-icon ul li .fa {
  color: #fff;
  padding: 4px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 28px;
  font-size: 16px;
  background-color: #525252;
}

.top-social-icon ul li .fa:hover {
  background-color: #fff;
  color: #000;
}

/* End Header */

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1160px;
  }
}

.pt80 {
  padding-top: 80px;
}

.pt60 {
  padding-top: 60px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.mt100 {
  margin-top: 100px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.pl60 {
  padding-left: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pt40 {
  padding-top: 40px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.mt30 {
  margin-top: 30px;
}

.pb60 {
  padding-bottom: 60px;
}

.p-50 {
  padding: 0 50px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999999999999;
  background: #d10014;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 16px;
  color: #fff;
  line-height: 0;
  font-weight: 400;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Latest Single Section */

.latest-sec {
  border: 1px solid #f2263a;
}

.latest-single-con h1 {
  font-weight: 700;
  line-height: 1.6;
  font-size: 32px;
}

.latest-single-con {
  padding-left: 40px;
}

.latest-sec {
  position: relative;
}

.latest-sec:before {
  transform: skewY(-48deg);
  content: "";
  position: absolute;
  height: 100%;
  width: 20px;
  top: 10px;
  left: -20px;
  background-color: #f2263a;
}

.latest-sec:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 22px solid transparent;
  border-bottom: 16px solid transparent;
  bottom: -37px;
  left: -20px;
  border-right: 20px solid #7a000c;
}

/* Latest bottom section */

.gen-b-i-con p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
}

.hover-translate {
  transform: translateY(0);
  transition: all 0.3s ease 0s;
}

.hover-translate:hover {
  transform: translateY(-10px);
}

.internet-cont {
  transform: translateX(0);
  transition: all 0.3s ease 0s;
}

.internet-cont:hover {
  transform: translateX(-5px);
}

.latest-bottom {
  position: relative;
  padding: 0px 10px;
}

.latest-bottom:before {
  content: "";
  position: absolute;
  height: 97%;
  width: 1px;
  top: 30px;
  left: -12px;
  background-color: #f2263a;
}

.latest-bottom .row:before {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 30px;
  left: -12px;
  background: #d10014;
}

.latest-bottom:after {
  content: "";
  position: absolute;
  height: 97%;
  width: 1px;
  top: 30px;
  right: -12px;
  background-color: #f2263a;
}

.latest-bottom .row:after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 30px;
  right: -12px;
  background: #d10014;
}

.border-bottom {
  border-bottom: 1px solid #d10014 !important;
  padding-bottom: 22px;
}

/* For Heading */

.heading {
  margin-bottom: 35px;
}

.heading span {
  font-size: 36px;
  font-weight: 700;
}

/* Internet section */

.strip-ih img {
  height: 160px;
  object-fit: cover;
}

.internet-card-big {
  position: relative;
  margin-right: 20px;
}

.in-i {
  transition: all 0.3s ease 0s;
}

.internet-card-big:hover .in-i {
  transform: translateX(12px);
}

.internet-card-big:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  border: 0.0625rem solid #d10014;
  z-index: -1;
}

.cate-tag {
  margin-bottom: 15px;
}

.in-con h3 {
  font-size: 24px;
  line-height: 1.5;
}

.cate-tag a {
  background: #d10014;
  color: #fff;
  padding: 5px 25px;
  border-radius: 50px;
  position: absolute;
  bottom: -20px;
  left: 35px;
  border: 3px solid #fff;
}

.in-con {
  padding: 15px 35px;
}

.number-row {
  counter-reset: term definition;
}

.strip-ih:after {
  position: absolute;
  top: 35%;
  left: 26%;
  border: 3px solid #fff;
  background: #d10014;
  padding: 8px 14px;
  color: #fff;
  border-radius: 50%;
  counter-increment: term;
  content: counter(term) ". ";
  font-weight: 700;
}

.internet-cont p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.internet-sec {
  border: 1px solid #ccc;
  position: relative;
  margin-bottom: 22px;
}

.internet-sec:hover {
  box-shadow: 0 2px 5px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 13%);
}

.internet-cont {
  padding-left: 15px;
  padding-right: 15px;
}

.internet-cont h3 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/*social-bg*/

.all-blog {
  display: flex;
}

.social-bg {
  background-size: cover;
  padding: 50px;
}

/*.social-card {
    position: relative;
    padding: 0px 10px;
   
}
*/
.social-card {
  position: relative;
  padding: 0px 25px;
  /* margin-bottom: 30px; */
  width: 350px;
}

.social-card::before {
  content: "";
  background: #fff;
  height: 60%;
  width: 2px;
  position: absolute;
  top: 0;
  right: 0;
}

.social-card p a {
  color: #fff;
}

.social-con a {
  color: #ff8585;
}

.social-card p a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.social-card:last-child::before {
  display: none;
}

.social-card p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
}

.f-12 {
  font-size: 12px !important;
}

/* Windows Section */

.windows-card {
  margin-bottom: 25px;
}

.windows-card-big {
  margin-bottom: 40px;
}

.windows-big-i {
  position: relative;
}

.windows-big-con .windows-heading {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.4;
}

#windows-big-p {
  font-size: 18px;
}

.windows-big-con {
  padding-left: 35px;
}

.windows-big-con:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  border: 0.0625rem solid #d10014;
  z-index: -1;
}

.windows-card p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
}


footer {
/*     background: url(/images/footer.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px 0px 0px;
    margin-top: 50px;
}

.newsletter {
  background: #fff;
  text-align: center;
  padding: 45px 40px;
}

.newsletter span {
  font-size: 24px;
  font-weight: 700;
}

.icon i {
  border-radius: 50%;
  padding: 40px;
  position: relative;
  background: #000;
}

.newsletter .fa-envelope-open-o:before {
  content: "\f2b7";
  position: absolute;
  top: 12px;
  left: 20px;
  z-index: 9999;
  font-size: 36px;
}

.icon i:after {
  content: "";
  position: absolute;
  background: #fff;
  height: 100%;
  width: 100%;
  padding: 5px;
  z-index: 10;
  left: 0;
  border-radius: 50%;
  top: -8px;
  border: 2px solid #000;
}

.icon {
  padding-bottom: 15px;
}

.newsletter p {
  margin: 10px;
}

.submit-btn {
  background: #d10014;
  border: 0;
  width: 100%;
  border-radius: 50px;
}

span#line-bottom {
  height: 2px;
  width: 100px;
  background: #d10014;
}

.newsletter input {
  border-radius: 50px;
  border: 1px solid #8d8d8d;
}

.foot-head span {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  padding-right: 15px;
}

.foot-sep {
  width: 30px;
  height: 4px;
  background-color: #000000;
  margin-top: 5px;
  margin-bottom: 20px;
}

#cat-menu ul li {
  width: 42%;
  float: left;
}

.foot-sec ul {
  padding: 0px;
}

.foot-sec ul li {
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid #ffffff24;
  padding-bottom: 10px;
  padding-top: 10px;
}

.foot-menu ul {
  /*  padding: 15px 0px;*/
  padding-left: 0;
  margin-bottom: 0;
}

.foot-menu ul li {
  list-style: none;
  /*  line-height: 30px;*/
  padding-bottom: 10px;
}

.foot-menu ul li a {
  color: #000000;
}

.foot-menu ul li a:hover {
  color: #d10014;
}

/*.foot-menu ul li::before {
    content: ">";
    color: #fff;
    padding-right: 5px;
}*/

.foot-sec ul li p {
  margin: 0;
}

main {
  background: #fff;
}

footer {
  background: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px 0px 0px;
  margin-top: 50px;
}

.copyright p {
  margin: 0;
}

.copyright {
  background: #000000;
}

.nav-toggle span {
  padding-left: 10px;
}




/* Single Page Design */

.page-header {
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 25px;
}

b,
strong {
  font-weight: 700;
}

.page-box {
    /* border: 1px solid #cccc; */
    padding: 30px;
    border-radius: 4px;
    /* box-shadow: 1px 4px 20px 2px #ccc; */
    background: #fff;
}

.all-page h1 {
  font-size: 40px;
  line-height: 1.3;
  color: #000;
}

.all-page h2 {
  margin-bottom: 25px;
  font-size: 36px;
	line-height:1.5;

}

.all-page h3 {
  margin-bottom: 25px;
  font-size: 32px;

}

.all-page h4 {
  margin-bottom: 28px;
  font-size: 24px;

}

.all-page ul li,
.all-page ol li {
  margin-bottom: 20px;
  line-height: 2.2;
}


.author-strip-n span {
  margin-right: 15px;
}

.author-strip {
  display: flex;
  align-items: center;
}

.author-img-p img {
  border-radius: 50%;
  border: 1px solid #d10014;
  padding: 3px;
  margin-right: 15px;
  height: 60px;
}


/* Start Number Code */

.all-page .number :before {
  counter-increment: term;
  content: counter(term) ". ";
  margin-right: 10px;
}

.all-page .number a:before {
  display: none;
}


.number h2,
h3,
h4,
h5,
h6 {
  display: flex;
  align-items: center;
}

.all-page {
  counter-reset: term definition;
  background: #f1f0f0;
}


.number-remove {
  counter-reset: term definition;
}

/* Start Table Of Content*/

#tableofcontent {
  background: #e3dede9e;
  padding: 20px;
  border-style: solid;
  margin-bottom: 30px;
}

#tableofcontent .head-th {
  font-size: 22px;
  color: #212121;
  font-weight: 600;
}

#tableofcontent hr {
  background-color: #000000;
  margin: 20px 0;
}

div#tableofcontent ul li {
  margin-top: 12px;
  margin-bottom: 12px;
}

div#tableofcontent ul li a {
  color: #333;
  border: 0;
  font-weight: 500;
}

/* End Table Of Content */


.all-page blockquote.wp-block-quote {
  background: #cccccc66 !important;
  padding: 20px !important;
  border-left: 4px solid #fe0000 !important;
  border-right: 1px solid #fe0000 !important;
  border-top: 1px solid #fe0000 !important;
  border-bottom: 1px solid #fe0000 !important;
}

/* Author Page */
.author-page-strip {
  display: flex;
  align-items: center;
}

.author-p-i img {
  height: 65px;
  border: 2px solid #f2263a;
  padding: 3px;
	width:auto;
}

.author-p-name {
  font-size: 32px;
  font-weight: 700;
  margin-left: 20px;
}

.not-found span {
  font-size: 70px;
  font-weight: 700;
}

.msg-text {
  font-size: 24px;
  padding-top: 5px;
  padding-bottom: 20px;
}

.btn-all {
  background: #d10014;
  border: 0;
  color: #fff !important;
  padding: 5px 15px;

}

#sidebar {

  position: sticky !important;
  top: 70px;
  /*overflow-y: auto;*/
  z-index: 9;
  height: calc(100% - 0px);

}


@media only screen and (max-width: 600px) {
  .p-50 {
    padding: 0px 15px;
  }

  .pt50 {
    padding-top: 30px;
  }

  .pt60 {
    padding-top: 40px;
  }

  .nav-toggle span {
    display: none;
  }

  span.text-dark {
    display: none;
  }

  .right-search {
    position: absolute;
  }

  .all-blog {
    display: block;
  }

  .latest-single-con p {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
  }

  .latest-single-con {
    padding-left: 0;
    padding: 24px;
  }

  .latest-sec:after {
    border-top: 15px solid transparent;
    border-bottom: 13px solid transparent;
    bottom: -26px;
    left: -13px;
    border-right: 14px solid #7a000c;
  }

  .gen-b-i-con {
    margin-bottom: 25px;
  }

  .latest-bottom:before {
    height: 97.9%;
  }

  .border-bottom {
    padding-bottom: 0px;
  }

  .latest-bottom:after {
    height: 97.9%;
  }

  .windows-big-con:after {
    left: 0;
  }

  .windows-big-con {
    padding-left: 25px;
  }

  .strip-ih img {
    height: 100%;
  }

  .internet-cont {
    padding: 20px;
  }

  .strip-ih:after {
    top: 5%;
    left: 5%;
  }

  .social-card {
    width: 100%;
    padding: 0;
  }

  .social-card::before {
    display: none;
  }

  .social-con {
    margin-bottom: 25px;
  }

  .social-bg {
    padding: 30px;
  }

  footer {
    padding: 30px 0px 15px 15px;
  }

  .nav-toggle {
    position: absolute;
    background-color: #f2263a;
    padding: 10px 10px;
    color: #fff;
    top: 15px;
  }

  .nav-toggle i {
    color: #fff !important;
  }

  .nav-toggle-active {
    left: 275px;
    position: fixed;
  }

  #header .logo img {
    max-height: 40px;
  }

  #header {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 70px;
  }

  .latest-sec {
    margin-top: 55px;
  }

  .logo img {
    position: relative;
    z-index: 99;
  }

  /* Author Page */
  .mt100 {
    margin-top: 50px;
  }

  .pr60 {
    padding-right: 15px;
  }

  .pl60 {
    padding-left: 15px;
  }

  .author-page-strip {
    display: block;
  }

  .author-p-name {
    margin-left: 0;
    padding-top: 15px;
  }

  .author-strip {
    display: block;
  }

  .author-strip-n {
    display: grid;
  }

}

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

  .nav-toggle span {
    display: none;
  }

  span.text-dark {
    display: none;
  }

  .all-blog {
    display: block;
  }

  .latest-single-con p {
    font-size: 24px;
    line-height: 1.5;
  }

  .latest-single-con {
    padding-left: 0;
    padding: 24px;
  }

  .latest-sec:after {
    border-top: 15px solid transparent;
    border-bottom: 13px solid transparent;
    bottom: -26px;
    left: -13px;
    border-right: 14px solid #7a000c;
  }

  .gen-b-i-con {
    margin-bottom: 25px;
  }

  .latest-bottom:before {
    height: 97.9%;
  }

  .border-bottom {
    padding-bottom: 0px;
  }

  .latest-bottom:after {
    height: 97.9%;
  }

  .windows-big-con:after {
    left: 0;
  }

  .windows-big-con {
    padding-left: 25px;
  }

  .strip-ih img {
    height: 100%;
  }

  .internet-cont {
    padding: 20px;
  }

  .strip-ih:after {
    top: 5%;
    left: 5%;
  }

  .social-card {
    width: 100%;
    padding: 0;
  }

  .social-card::before {
    display: none;
  }

  .social-con {
    margin-bottom: 25px;
  }

  .social-bg {
    padding: 30px;
  }

  footer {
    padding: 30px 0px 15px 15px;
  }

  .nav-toggle {
    position: absolute;
    background-color: #f2263a;
    padding: 10px 10px;
    color: #fff;
    top: 15px;
  }

  .nav-toggle i {
    color: #fff !important;
  }

  .nav-toggle-active {
    left: 275px;
    position: fixed;
  }

  #header .logo img {
    max-height: 40px;
  }

  #header {
    height: 70px;
  }


}

.right-search .overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;

  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.right-search .overlay-content {
  position: relative;
  top: 30%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.right-search .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 36px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.right-search .overlay input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: none;
  float: left;
  width: 80%;
}

.right-search .overlay input[type="text"]:hover {
  background: #f1f1f1;
}

.right-search .overlay button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #fe0000;
  font-size: 16px;
  border: none;
  cursor: pointer;
  color: #fff;
}

.right-search .overlay button:hover {
  background: #bbb;
}

/* li {
  list-style: none !important;
} */

/* .author-n a,span {
  font-size: 18px;
} */
.top-social-icon ul li {
    position: relative;
    top: -30px;
}

.latest-single-img {
    height: 0;
    padding-bottom: 50%;
    background: #cccc;
	 overflow: hidden;
}
.social-b-i {
    padding-bottom: 55%;
    background: #ccc;
    overflow: hidden;
    height: 0;
}
.gen-b-i {
    height: 0;
    padding-bottom: 56%;
    background: #ccc;
    overflow: hidden;
}

.windows-big-i {
    height: 0;
    padding-bottom: 56%;
    background: #ccc;
/* 	 overflow: hidden; */
}
.windows-i {
    height: 0;
    padding-bottom: 56%;
    background: #ccc;
    overflow: hidden;
}
li#nav_menu-10 {
    list-style: none;
}
li#nav_menu-7 {
    list-style: none;
}
.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
    padding: 10px;
}

.author-latest-strip-n span {
  margin-right: 15px;
}

.author-latest-strip {
  display: flex;
  align-items: center;
}

.author-latest-img-p img {
    border: 1px solid #d10014;
    padding: 3px;
    height: 60px;
    width: auto;
}

/*Start Pagination*/

.pagination-outer{
    text-align: center;
}

.pagination{
    display: inline-flex;
    position: relative;
}
.pagination a.page-numbers {
    color: #fff;
    background: #d10014;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    width: 40px;
    padding: 0;
    margin: 0 3px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.pagination span.page-numbers.current {
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    width: 40px;
    position: relative;
    transition: all 0.3s ease 0s;
    color: #000;
    background: #d10014;
    margin: 0 8px;
    z-index: 1;
    border-radius: 8px;
}
.pagination  a.page-numbers:hover{
  color:#000;
}
.pagination  a.page-numbers:hover:before{
  content: '';
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 6px;
    right: 6px;
    top: 0;
    bottom: 6px;
    z-index: -5;
    transition: all 0.5s ease 0s;
}
.pagination span.page-numbers.current:before {
    content: '';
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 6px;
    right: 6px;
    top: 0;
    bottom: 6px;
    z-index: -5;
    transition: all 0.5s ease 0s;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}

.pagination .nav-links {
    display: inline-flex;
}
.accordion-button:not(.collapsed){
	color:#000;
	background-color:rgba(209,0,20,0.3);
}


/*End Pagination*/