@import url("https://fonts.googleapis.com/css2?family=Kanit: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&family=Noto+Sans+Devanagari:wdth,wght@62.5..100,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans Devanagari", sans-serif;
}

:root {
  --primary-color: #af140c;
  --bg-color: #e56c0f1a;
  --deep-blue: #1b4965;
  --soft-blue: #62b6cb;
  --light-background: #f7f9fb;
  --text-dark: #023047;
  --text-color-light: #000000b3;
}

.page_spacing {
  max-width: 1200px;
  margin: 10px auto;
}

@media only screen and (max-width: 850px) {
  .page_spacing {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 100%;
  }

  .spacing {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 600px) {
  .page_spacing {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 100%;
  }
}

body {
  background-color: #ffffff;
  color: black;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 20px;
  color: black;
  font-weight: 400;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.wcenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  display: flex;
  justify-content: center;
}

.hr-custom {
  border: none;
  height: 0.5px;
  max-height: 0.5px;
  background-color: #00000040;
  /* box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1); */
  margin: 7px 0;
  width: 100%;
}

.vertical-line {
  width: 0.5px;
  max-width: 0.5px;
  background-color: #00000040;
  margin: 0 10px;
}

.news-container-one {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  /* gap: 20px; */
}

.left-container {
  flex: 2;
  max-width: 812px;
}

.right-container {
  flex: 1;
  max-width: 349px;
}

@media only screen and (max-width: 1100px) {
  .news-container-one {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .left-container {
    max-width: 100%;
  }

  .right-container {
    max-width: 100%;
  }
}

.google_ads {
  background: #d9d9d9;
  width: 100%;
  height: 270px;
  margin: 15px 0;
  overflow: hidden;
  /* border: 1px solid rgba(205, 204, 204, 0.8); */
  border-radius: 5px;
}

.google_ads img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clamp-text1 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-text2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shadow-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.hidden {
  display: none;
}

@media only screen and (max-width: 850px) {
  .hidden2 {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .hidden3 {
    display: none;
  }
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

img:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}
