@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.cpt-single {
  color: #000;
  padding: 60px 20px;
}
.cpt-single__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.cpt-single {
  /* LEFT */
}
.cpt-single__title {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #d10000;
  padding-left: 15px;
  color: #000;
}
.cpt-single__image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.cpt-single__text {
  line-height: 1.8;
  font-size: 16px;
}
.cpt-single__text p {
  margin-bottom: 15px;
}
.cpt-single {
  /* SIDEBAR */
}
.cpt-single__sidebar {
  padding: 20px;
  border-radius: 10px;
}
.cpt-single__sidebar-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.cpt-single__sidebar-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.cpt-single__sidebar-item .thumb img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.cpt-single__sidebar-item span {
  font-size: 14px;
  transition: 0.3s;
}
.cpt-single__sidebar-item:hover span {
  color: #d10000;
}
.cpt-single {
  /* BOTTOM */
}
.cpt-single__bottom {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.cpt-single__bottom-title {
  margin-bottom: 20px;
  font-size: 24px;
  border-left: 4px solid #d10000;
  padding-left: 10px;
}
.cpt-single__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.cpt-card {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  color: #000;
}
.cpt-card a {
  text-decoration: none;
}
.cpt-card__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cpt-card__content {
  padding: 15px;
}
.cpt-card__content h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.cpt-card__content p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cpt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(209, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cpt-single__container {
    grid-template-columns: 1fr;
  }
  .cpt-single__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cpt-single__grid {
    grid-template-columns: 1fr;
  }
  .cpt-single__title {
    font-size: 24px;
  }
}
.news-archive {
  color: #000;
  padding: 60px 20px;
}
.news-archive .archive-header {
  margin-bottom: 30px;
}
.news-archive .archive-header h1 {
  font-size: 32px;
  border-left: 4px solid #d10000;
  padding-left: 10px;
}
.news-archive__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.news-archive {
  /* GRID */
}
.news-archive .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-archive {
  /* CARD */
}
.news-archive .news-card {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.news-archive .news-card a {
  text-decoration: none;
  color: #000;
}
.news-archive .news-card__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-archive .news-card__content {
  padding: 15px;
}
.news-archive .news-card__content .news-card__date {
  font-size: 12px;
  color: #b2b2b2;
}
.news-archive .news-card__content h3 {
  font-size: 18px;
  margin: 10px 0;
}
.news-archive .news-card__content p {
  font-size: 14px;
  color: #000;
}
.news-archive .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(209, 0, 0, 0.3);
}
.news-archive {
  /* SIDEBAR */
}
.news-archive .sidebar-block {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.news-archive .sidebar-block h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.news-archive .sidebar-block .sidebar-post {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.news-archive .sidebar-block .sidebar-post img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-archive .sidebar-block .sidebar-post span {
  font-size: 14px;
}
.news-archive .sidebar-block .sidebar-post:hover span {
  color: #d10000;
}
.news-archive .sidebar-block ul li {
  margin-bottom: 8px;
}
.news-archive .sidebar-block ul li a {
  color: #000;
  text-decoration: none;
}
.news-archive .sidebar-block ul li a:hover {
  color: #d10000;
}
.news-archive {
  /* PAGINATION */
}
.news-archive .pagination {
  margin-top: 30px;
}
.news-archive .pagination a {
  color: #000;
  padding: 8px 12px;
  background: #111;
  margin-right: 5px;
  text-decoration: none;
}
.news-archive .pagination a:hover {
  background: #d10000;
}
.news-archive .pagination .current {
  background: #d10000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-archive__wrapper {
    grid-template-columns: 1fr;
  }
  .news-archive .news-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  background: #fff;
  color: #000;
  padding: 60px 20px;
}
.contact-page__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.contact-page {
  /* FORM */
}
.contact-page__form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  border-left: 4px solid #d10000;
  padding-left: 10px;
  color: #000;
}
.contact-page__form p {
  color: #555;
  margin-bottom: 20px;
}
.contact-page__form .form-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.contact-page__form .form-box input,
.contact-page__form .form-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #ddd;
  color: #000;
}
.contact-page__form .form-box button {
  background: #d10000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
.contact-page__form .form-box button:hover {
  background: #a00000;
}
.contact-page {
  /* INFO */
}
.contact-page__info {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.contact-page__info h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  color: #000;
}
.contact-page__info .contact-list {
  list-style: none;
  padding: 0;
}
.contact-page__info .contact-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}
.contact-page__info .contact-list li a {
  color: #d10000;
  text-decoration: none;
}
.contact-page__info .contact-social {
  margin-top: 20px;
}
.contact-page__info .contact-social a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ddd;
  color: #000;
  text-decoration: none;
}
.contact-page__info .contact-social a:hover {
  background: #d10000;
  color: #fff;
}
.contact-page {
  /* MAP */
}
.contact-page__map iframe {
  border-radius: 10px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-page__wrapper {
    grid-template-columns: 1fr;
  }
}
* {
  box-sizing: border-box;
  word-break: break-word;
}

p {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2024;
  margin: 0 0 20px;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1920px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

.banner-slider-row {
  overflow: hidden;
}

.three-col-grid {
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  gap: 20px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

.spacebetween {
  justify-content: space-between;
}

.top-bar {
  background: #d10000;
  padding: 5px 10px;
}

.top-bar span {
  color: #fff;
}

.search path {
  fill: #fff;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo {
  padding: 10px 0;
}

.ads-header {
  overflow: hidden;
  text-align: end;
  width: 40%;
}

.adsslider-row {
  padding-top: 20px;
}

.top-bar li a {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.current-date {
  font-size: 12px;
  font-weight: 400;
}

.top-bar ul {
  display: flex;
  gap: 10px;
}

.top-bar .menu {
  margin-left: 25px;
}

.search svg {
  width: 17px;
}

nav.main-navigation {
  background: #1b3a5e;
  padding: 10px;
  margin-bottom: 10px;
}

.section-sidebar {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .section-sidebar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

nav.main-navigation a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.sub-menu {
  display: none;
}

.grid-slider {
  display: flex;
  gap: 10px;
}

.big-news {
  width: 50%;
  position: relative;
}

.small-news {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 15px;
}

.small-news .item {
  position: relative;
  height: 50%;
}

.small-news .item img {
  width: 100%;
  height: 100%;
}

body .swiper-button-next svg, body .swiper-button-prev svg {
  width: 10px;
  color: #fff;
  font-weight: bold;
}

body .swiper-button-next, body .swiper-button-prev {
  background: #000;
  border-radius: 100px;
}

.big-news h2 {
  font-size: 30px;
  font-weight: 700;
}

.mutiplepost-with-single .big-news img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-list .post-image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mt-80 {
  margin-top: 50px;
}

.big-news img {
  width: 100%;
  height: 950px;
}

.small-news p {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  margin: 0;
  color: #fff;
  width: 100%;
  padding: 6px 15px;
  font-size: 14px;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 15px 20px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  max-height: -moz-max-content;
  max-height: max-content;
  max-width: 200px;
}

.footer-copy p {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

.cat-links a {
  background: #d10000;
  color: #fff;
  display: inline-block;
  padding: 0.188rem 0.75rem;
  transform: skew(-21deg);
  font-size: 14px;
  font-weight: bold;
}

.column-grid {
  padding: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.post-title a {
  color: #1f2024;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.read-button {
  background: #d10000;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 10px 11px;
  font-weight: 700;
}

.figure-image {
  margin-bottom: 20px;
}

.figure-image img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mb-80 {
  margin-bottom: 80px;
}

.post-title {
  margin: 15px 0;
}

.post-content-data {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2024;
  margin: 0 0 20px;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.statebox-ttile h3 {
  background: #d10000;
  font-size: 21px;
  color: #fff;
  padding: 8px 10px;
}

.news-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.figcaption-title a {
  color: #1f2024;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 20px;
}

.post-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}

.post-list:not(:last-child) {
  margin-bottom: 20px;
}

.post-title-box a {
  color: #1f2024;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
}

.figcaption-title a:hover, .post-title-box a:hover, .post-title a:hover {
  color: #ed0000;
}

.inner-sidebar {
  position: sticky;
  top: 40px;
  padding-bottom: 30px;
}

.sidebar-category li {
  background: rgba(27, 58, 94, 0.13);
  padding: 10px 15px;
  border-left: 4px solid #1b3a5e;
  margin-bottom: 10px;
}

.author-publish-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.full-video-embed iframe, .full-video-embed video {
  width: 100%;
  height: 400px;
}

.three-col-ads {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.author-publish-data .date {
  padding-left: 20px;
}

.author img {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-publish-data .date strong {
  font-size: 14px;
}

.author-publish-data .date span {
  display: block;
  font-size: 14px;
  color: #606060;
}

.sidebar-category a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #1b3a5e;
  display: block;
}

.ads-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .toggle-bar span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-bottom: 4px;
  }
  .toggle-bar {
    display: inline-block;
  }
  .toggle-bar span:last-child {
    margin: 0;
  }
  .main-navigation .menu {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .section-sidebar, .two-grid, .three-col-ads {
    grid-template-columns: auto;
  }
  .mutiplepost-with-single .grid-slider {
    flex-direction: column;
  }
  .mutiplepost-with-single .small-news, .mutiplepost-with-single .big-news {
    width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .main-navigation .menu {
    display: none;
  }
}/*# sourceMappingURL=custom.css.map */
