* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  background-color: #fcf8f8;
}

/* Start Top Navbar */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.top {
  margin: auto;
  padding: 5px 10px 0px 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.search-container-top-box {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: auto;
  background: black;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.6s ease;
  z-index: 1000;
}

.search-container-top-box.show {
  right: 0;
}

.search-container-top-box > input {
  width: 80%;
  padding: 10px;
  margin: 63px 20px 30px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-container-top-box > input::placeholder {
  color: #999;
  opacity: 1;
}

.search-container-top-box > .close-btn-search {
  position: absolute;
  color: #fff;
  font-size: 23px;
  right: 0px;
  margin: 15px;
  cursor: pointer;
}

.logo-details > img {
  width: 250px;
  height: 50px;
}

.media-icons {
  display: flex;
}

.media-icons a {
  height: 35px;
  width: 35px;
  margin: 0 6px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 23px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.media-icons a:nth-child(1) {
  background: #4267b2;
}

.media-icons a:nth-child(1):hover {
  color: #4267b2;
  background: #fff;
}

.media-icons a:nth-child(2) {
  background: #1da1f2;
}

.media-icons a:nth-child(2):hover {
  color: #1da1f2;
  background: #fff;
}

.media-icons a:nth-child(3) {
  background: #e1306c;
}

.media-icons a:nth-child(3):hover {
  color: #e1306c;
  background: #fff;
}

.media-icons a:nth-child(4) {
  background: #0077b5;
}

.media-icons a:nth-child(4):hover {
  color: #0077b5;
  background: #fff;
}

.media-icons a:nth-child(5) {
  background: #ff0000;
}

.media-icons a:nth-child(5):hover {
  color: #ff0000;
  background: #fff;
}

.media-icons a:nth-child(6) {
  background: #1da1f2;
}

.media-icons a:nth-child(6):hover {
  color: #1da1f2;
  background: #fff;
}

.right-side {
  display: flex;
  color: black;
  font-size: smaller;
  font-weight: 600;
  flex-direction: column;
  align-items: flex-end;
}

.right-side > span {
  margin: 2px;
}

.right-side > span > a {
  text-decoration: none;
  color: black;
}

/* End Top Navbar */

/* 
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
 */

/* Start Second Navbar */
.down_navbar {
  position: relative;
  top: 60px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  background: #dde0ce;
  z-index: 10;
}

.hamburger {
  color: black;
  font-size: 24px;
  cursor: pointer;
  margin-left: 1%;
  margin-right: 1%;
  line-height: 40px;
  padding: 0.5% 8px;
}

.hamburger:hover {
  color: black;
}

.hamburger-top {
  color: black;
  font-size: 24px;
  cursor: pointer;
  margin-left: 1%;
  margin-right: 1%;
  line-height: 40px;
}

.search-container {
  margin: 0.5% 0% 0.5% 1%;
  display: flex;
  align-items: center;
  background-color: #a51717;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-input {
  border: none;
  padding: 10px;
  width: 200px;
  height: 100%;
  border-radius: 25px 0 0 25px;
  outline: none;
}

.search-icon {
  background-color: #83b541;
  padding: 12px 12px 8px 8px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  color: #fff;
  height: 100%;
}

.search-icon-top {
  background-color: #83b541;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}

/* Start Scroll Section */
.scrollmenu {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.scrollmenu a {
  padding: 1% 8px;
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
  color: black;
  line-height: 20px;
  margin: 0 0px;
}

.nav-dropdown {
  float: left;
}
.nav-dropdown .dropbtn {
  border: none;
}
.nav-dropdown .dropbtn a {
  padding: 15px 8px;
  font-size: 20px;
  text-decoration: none;
  color: black;
  background-color: #dde0ce;
  border: none;
  outline: none;
  cursor: pointer;
}

.scrollmenu a:hover,
.nav-dropdown:hover .dropbtn a {
  color: white;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.nav-dropdown-content > a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  float: none;
}

.nav-dropdown-content a:hover {
  background-color: #ddd;
}

.scrollmenu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* 

///////////////////////////////////////////////////////
///////////////////////////////////////////////////////

*/

/* Start Hamburger Side Bar */

.side-bar {
  background-color: #83b541;
  width: 320px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -320px;
  overflow-x: hidden;
  z-index: 500;
  transition: 0.6s ease;
}

.side-bar .close-btn-hamburger {
  position: absolute;
  color: #fff;
  font-size: 23px;
  right: 0px;
  margin: 15px;
  cursor: pointer;
}

.side-bar .menu {
  width: 100%;
  margin-top: 70px;
}

.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}

.side-bar .menu .item a {
  color: black;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 5px 30px;
  line-height: 30px;
}

.side-bar .menu .item i {
  margin-right: 15px;
  color: white;
  font-size: 18px;
  height: 18px;
  width: 18px;
}

.side-bar .menu .item a:hover {
  color: white;
}

.side-bar .menu > .item > a > .dropdown {
  position: absolute;
  right: 0;
  margin-right: 20px;
  margin-top: 7px;
  transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
  background-color: #8ec448;
  display: none;
}

.side-bar .menu .item .sub-menu a {
  padding-left: 80px;
  color: black;
  font-size: 18px;
  font-weight: 600;
}

.side-bar .menu .item .sub-menu a:hover {
  background-color: #a1d65c;
  color: white;
}

.side-bar.active {
  left: 0;
  transform: translateX(0);
}

.side-bar::-webkit-scrollbar {
  width: 0px;
}

.rotate {
  transform: rotate(90deg);
}

.side-bar.active .side-bar-footer {
  position: absolute;
  bottom: 0;
  width: 85%;
  margin: 0 7.5% 80px 7.5%;
}

.side-bar-footer > .media-icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.side-bar-footer > .media-icons a {
  height: 35px;
  width: 35px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  margin: 0 0px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.side-bar-footer > .side-bar-footer-txt > .line1,
.side-bar-footer > .side-bar-footer-txt > .line2 {
  font-size: 12px;
}


@media (min-width: 1500px) {
  .scrollmenu a,
  .nav-dropdown .dropbtn a {
    font-size: 28px;
  }

  .nav-dropdown .dropbtn a .right-side {
    font-size: large;
    font-weight: 600;
  }
}

@media (min-width: 1024px) {
  .hamburger-top,
  .search-container-top {
    display: none;
  }

  .side-bar-footer {
    position: absolute;
    bottom: 0;
    margin: 0 25px 25px 25px;
  }

  .side-bar-footer > .media-icons {
    display: none;
  }
}

@media (max-width: 1024px) {
  .top > .media-icons {
    display: none;
  }

  .right-side {
    display: none;
  }

  .search-input {
    display: none;
  }

  .search-icon {
    border-radius: 50%;
    height: 35px;
    width: 35px;
  }

  .down_navbar {
    padding: 0;
  }

  .down_navbar > .scrollmenu,
  .down_navbar > .hamburger,
  .down_navbar > .search-container {
    display: none;
  }
}

@media (max-width: 550px) {
  .sidenav > a {
    font-size: 20px;
  }

  .nav-dropdown-content {
    left: 35%;
  }
}

@media (max-width: 420px) {
  .top {
    padding-bottom: 5px;
  }

  .down_navbar {
    top: 50px;
  }

  .logo-details {
    color: #fff;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-details img {
    width: 200px;
    height: 40px;
  }

  .logo-details span {
    margin-left: 7px;
    font-family: "Lexend Deca", sans-serif;
  }

  .search-icon-top {
    padding: 8px 10px;
  }

  .sidenav > a {
    font-size: 18px;
    padding: 8px 8px 8px 25px;
  }

  .nav-dropdown-content {
    left: 30%;
  }
}

@media (max-width: 360px) {
  .sidenav > a {
    font-size: 16px;
    padding: 8px 8px 8px 25px;
  }

  .nav-dropdown-content {
    left: 27%;
  }
}

/* 
  ////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////
*/

/* Start Cover-Container */

.cover-container {
  height: 700px;
  width: 94%;
  background-color: rgb(45, 45, 45);
  margin: 130px auto;
  padding: 0px 10px;
}

.cover-container > p {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: white;
  padding: 40px 0px 60px 0px;
}

.main-cover {
  display: flex;
  height: 500px;
  width: 100%;
  margin: auto;
  column-gap: 10px;
}

.left-cover {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}

.right-cover {
  width: 50%;
  height: 100%;
}

.left-cover > .left-cover-box {
  width: 100%;
  border-radius: 20px;
  background-color: white;
}

.left-cover-box > a {
  width: 100%;
  text-decoration: none;
  color: white;
}

.left-cover-box > a > img {
  width: 100%;
  height: 60%;
  border-radius: 20px;
}

.left-cover-txt {
  padding: 5px 20px 10px 20px;
  color: black;
}

.left-cover-txt > p:nth-child(1) {
  font-size: 24px;
  font-weight: 600;
}

.left-cover-txt > p:nth-child(2) {
  font-size: 16px;
  margin-top: 10px;
}

.right_cover1,
.right_cover2 {
  height: 50%;
  padding: 7%;
  position: relative;
  overflow: hidden;
}

.right_cover1 {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-radius: 20px 20px 0 0;
}

.right_cover2 {
  border: 0;
  border-bottom: 1px solid white;
  border-radius: 0 0 20px 20px;
}

.right_cover1 > a,
.right_cover2 > a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  position: relative;
}

.right_cover1 > a > p:nth-child(1),
.right_cover2 > a > p:nth-child(1) {
  font-size: 28px;
  font-weight: bold;
}

.right_cover1 > a > p:nth-child(2),
.right_cover2 > a > p:nth-child(2) {
  font-size: 18px;
  margin-top: 15px;
}

.right_cover1::before,
.right_cover2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.right_cover1:hover::before,
.right_cover2:hover::before {
  background: rgba(47, 46, 46, 0.585);
  opacity: 1;
}

.right_cover1:hover {
  background: url(../assets/cover/2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.2s ease;
}

.right_cover2:hover {
  background: url(../assets/cover/3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.2s ease;
}

@media (max-width: 1080px) {
  .right_cover1 > a > p:nth-child(1),
  .right_cover2 > a > p:nth-child(1) {
    font-size: 26px;
  }
}

@media (max-width: 1000px) {
  .left-cover-txt {
    padding: 5px 20px 20px 20px;
    color: black;
  }

  .left-cover-txt > p:nth-child(1) {
    font-size: 20px;
  }

  .left-cover-txt > p:nth-child(2) {
    font-size: 14px;
  }

  .right_cover1 > a > p:nth-child(1),
  .right_cover2 > a > p:nth-child(1) {
    font-size: 24px;
  }

  .right_cover1 > a > p:nth-child(2),
  .right_cover2 > a > p:nth-child(2) {
    font-size: 16px;
  }

  .right_cover1,
  .right_cover2 {
    padding: 0% 4%;
  }

  .right_cover1 > a,
  .right_cover2 > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cover-container {
    height: 900px;
  }

  .main-cover {
    flex-direction: column;
    row-gap: 20px;
    height: 700px;
  }

  .left-cover {
    width: 100%;
    height: 60%;
  }

  .right-cover {
    width: 100%;
    height: 40%;
  }

  .left-cover {
    align-items: baseline;
  }

  .left-cover-box {
    height: 100%;
  }

  .left-cover-box > a > img {
    height: 70%;
  }

  .left-cover-txt {
    padding: 20px 20px 10px 20px;
    color: black;
  }

  .left-cover-txt > p:nth-child(1) {
    font-size: 18px;
    font-weight: 600;
  }

  .left-cover-txt > p:nth-child(2) {
    font-size: 14px;
  }

  .right_cover1,
  .right_cover2 {
    padding: 0% 2%;
  }

  .right_cover1 > a,
  .right_cover2 > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .right_cover1 > a > p:nth-child(1),
  .right_cover2 > a > p:nth-child(1) {
    font-size: 18px;
  }

  .right_cover1 > a > p:nth-child(2),
  .right_cover2 > a > p:nth-child(2) {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .cover-container {
    height: 1000px;
  }

  .main-cover {
    height: 800px;
  }

  .cover-container {
    width: 100%;
  }

  .left-cover-box > a > img {
    height: 70%;
  }

  .left-cover {
    height: 55%;
  }

  .right-cover {
    height: 45%;
  }
}

@media (max-width: 540px) {
  .left-cover-box > a > img {
    height: 65%;
  }
}

@media (max-width: 480px) {
  .cover-container {
    height: 1100px;
    margin-bottom: 0;
  }

  .main-cover {
    height: 900px;
  }

  .left-cover-box > a > img {
    height: 55%;
  }

  .left-cover {
    height: 45%;
  }

  .right-cover {
    height: 55%;
  }
}

@media (max-width: 390px) {
  .cover-container {
    height: 1000px;
  }

  .main-cover {
    height: 800px;
  }

  .left-cover-box > a > img {
    height: 55%;
  }

  .left-cover {
    height: 50%;
  }

  .right-cover {
    height: 50%;
  }
}

@media (max-width: 350px) {
  .cover-container {
    height: 1000px;
  }

  .main-cover {
    height: 800px;
  }

  .left-cover-box > a > img {
    height: 55%;
  }

  .left-cover {
    height: 45%;
  }

  .right-cover {
    height: 55%;
  }
}

/*
  ///////////////////////////////////////////////////////
  ///////////////////////////////////////////////////////
*/

/* Start Read More Button */

#readMore {
  text-decoration: none;
  background-color: red;
  height: 35px;
  width: 100px;
  padding: 0px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: block;
  border: none;
  text-align: center;
}

#readMore > a {
  color: white;
  text-decoration: none;
}

#readMore:hover {
  background-color: #1a1818ed;
}

@media (max-width: 820px) {
  #readMore {
    padding: 10px 5px;
    border-radius: 4px;
    width: 120px;
    font-size: 12px;
    height: 25px;
    width: 80px;
    line-height: 8px;
  }
}

@media (max-width: 500px) {
  #readMore {
    padding: auto;
    font-size: 12px;
    height: 25px;
    width: 80px;
    line-height: 6px;
  }
}

/*
  //////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////
*/

/* Start Grid-1 */

.grid-body-1 {
  display: flex;
  font-size: 100%;
  margin-top: 0px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.game-board-1 {
  display: grid;
  grid-template-rows: 320px 320px;
  grid-template-columns: 32% 32% 32%;
  column-gap: 2%;
  margin-top: 40px;
}

.grid-1-box {
  display: flex;
  flex-direction: column;
  color: black;
  font-size: 1.1vw;
  font-weight: 700;
}

.grid-1-box > a {
  text-decoration: none;
  height: 100%;
  color: black;
}

.grid-1-box > a > .txt {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
  padding-left: 0px;
}

.grid-1-box > a > img {
/*   height: 70% !important; */
	height: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.grid-body-1 > .first-section > .heading > h2 {
  font-size: 36px;
}

.grid-1-box > a > .txt > p:nth-child(2) {
  font-size: 13px;
  margin-top: 4px;
}

.grid-body-1 > .first-section {
  width: 100%;
  padding-top: 0px;
}

.grid-1-box > a > .txt > p:nth-child(1) {
  position: relative;
  display: block;
  font-size: 14px;
  padding-top: 5px 0px;
  margin-bottom: 5px;
}

.grid-1-box > a > .txt > p:nth-child(1):after {
  position: absolute;
  content: "";
  height: 3px;
  bottom: -3px;
  left: 0;
  right: 0;
  width: 5%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-1 > .first-section > .underline {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.grid-body-1 > .first-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-1 > .first-section > .underline:hover:after {
  width: 15%;
  background: orange;
}

@media (max-width: 1200px) {
  .game-board-1 {
    grid-template-rows: 280px 280px;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 34px;
  }
}

@media (max-width: 1050px) {
  .game-board-1 {
    grid-template-rows: 260px 260px;
    margin-top: 35px;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 32px;
  }

  .grid-1-box > a > img {
    height: auto !important;
  }

  .grid-1-box > a > .txt > p:nth-child(2) {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .game-board-1 {
    grid-template-rows: 230px 230px;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 30px;
  }

  .grid-1-box > a > img {
    height: 55%;
  }

  .grid-1-box > a > .txt > p:nth-child(2) {
    font-size: 11px;
  }
}

@media (max-width: 750px) {
  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 28px;
  }

  .game-board-1 {
    grid-template-rows: 210px 210px;
    margin-top: 30px;
  }

  .grid-1-box > a > img {
    height: 55%;
  }
}

@media (max-width: 700px) {
  .game-board-1 {
    grid-template-rows: 230px 230px 230px;
    grid-template-columns: 49% 49%;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 26px;
  }

  .grid-1-box > a > img {
    height: 66%;
  }

  #grid-1-box9 {
    display: none;
  }
}

@media (max-width: 480px) {
  .game-board-1 {
    grid-template-rows: 120px 120px 120px 120px 120px 120px;
    grid-template-columns: 100%;
    row-gap: 15px;
    margin-top: 20px;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 22px;
  }

  #grid-1-box9 {
    display: flex;
  }

  .grid-1-box > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
  }

  .grid-1-box > a > img {
    height: 100%;
    max-width: 50%;
  }

  .grid-1-box > a > .txt {
    margin-left: 10px;
  }

  .grid-1-box > a > .txt > p:nth-child(1):after {
    width: 10%;
  }
}

@media (max-width: 420px) {
  .grid-body-1 {
    width: 92%;
    margin-top: 60px;
  }

  .game-board-1 {
    grid-template-rows: 90px 90px 90px 90px 90px 90px;
    grid-template-columns: 100%;
    row-gap: 15px;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 20px;
  }

  .grid-1-box > a > img {
    height: 100%;
    width: 40%;
  }

  .grid-1-box > a > .txt {
    padding-top: 4px;
  }

  .grid-1-box > a > .txt > p:nth-child(1) {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .grid-body-1 {
    width: 92%;
  }

  .grid-body-1 > .first-section > .heading > h2 {
    font-size: 18px;
  }

  .grid-1-box > a {
    flex-direction: column;
  }

  .game-board-1 {
    grid-template-rows: 240px 240px 240px 240px 240px 240px;
    grid-template-columns: 100%;
    row-gap: 0px;
  }

  .grid-1-box > a > img {
    height: 70%;
    width: 100%;
    max-width: none;
  }

  .grid-1-box > a > .txt {
    margin-left: 0px;
  }
}

/* End Grid-BODY-1 */

/*
  //////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////
*/

/* Start Slider-Div */

.slider-div {
  margin: 60px auto 40px auto;
  width: 94%;
}

.slider-div > .underline {
  position: relative;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.slider-div > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.slider-div > .underline:hover:after {
  width: 15%;
  background: orange;
}

.slider-div > .heading > h2 {
  font-size: 36px;
}

.image_slider {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.image_slider::-webkit-scrollbar {
  display: none;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  margin-top: 2%;
}

.slide-box {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 2%;
  margin-top: 15px;
}

.slide-box > a {
  text-decoration: none;
  height: 100%;
  color: black;
}

.slide-box > a > p {
  margin-top: 1px;
  font-size: 13px;
  font-weight: 700;
}

.slide-box > a > img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

@media (max-width: 1200px) {
  .slider-div > .heading > h2 {
    font-size: 34px;
  }
}

@media (max-width: 1050px) {
  .slider-div > .heading > h2 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .slide-box {
    flex: 0 0 33.5%;
    max-width: 50%;
    padding-right: 2%;
  }

  .slider-div {
    width: 94%;
  }

  .slider-div > .heading > h2 {
    font-size: 30px;
  }
}

@media (max-width: 850px) {
  .slide-box > a > p {
    font-size: 11px;
  }
}

@media (max-width: 750px) {
  .slider-div > .heading > h2 {
    font-size: 28px;
  }
}

@media (max-width: 700px) {
  .slide-box {
    flex: 0 0 50%;
  }

  .slider-div > .heading > h2 {
    font-size: 26px;
  }
}

@media (max-width: 550px) {
  .slider-div > .heading > h2 {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .slide-box > a > p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .slider-div > .heading > h2 {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .slide-box {
    flex: 0 0 100%;
  }

  .slider-div {
    width: 92%;
  }

  .slider-div > .heading > h2 {
    font-size: 20px;
  }

  .slide-box {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 1%;
  }
}

@media (max-width: 390px) {
  .slider-div > .heading > h2 {
    font-size: 18px;
  }
}

@media (max-width: 350px) {
  .slider-div > .heading > h2 {
    font-size: 16px;
  }
}

/* End Slider-Div */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* Start Glassy Section */

.glassy-section {
  margin: 80px auto 0px auto;
  width: 94%;
  max-width: 1500px;
  height: 600px;
  z-index: 0;
}

.glassy-section > .heading > h2 {
  font-size: 36px;
}

.glassy-section > .underline {
  text-decoration: none;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.glassy-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.glassy-section > .underline:hover:after {
  width: 15%;
  background: orange;
}

.main-section {
  width: 100%;
  display: flex;
  height: 85%;
  margin-top: 40px;
  border-radius: 5px;
  background-color: rgb(238, 238, 238);
}

.left-section {
  height: 96%;
  width: 64%;
  margin: 0.75% 0 1% 1%;
  position: relative;
}

.right-section {
  height: 100%;
  width: 35%;
  margin: 0 1%;
  position: relative;
}

.section-part {
  width: 100%;
  height: 31%;
  margin: 2% 0;
  position: relative;
}

.left-section > a,
.right-section > a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.left-section > a::before,
.section-part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 53, 53, 0.197);
  border-radius: 10px;
  z-index: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.left-section > a:hover::before,
.section-part:hover::before {
  background-color: rgba(255, 255, 255, 0.058);
}

.left-section > a > img,
.section-part > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  z-index: 0;
  transition: opacity 0.3s ease, object-position 0.3s ease;
}

.left-section > a:hover > img {
  opacity: 0.8;
  object-position: left center;
}

.section-part:hover > img {
  opacity: 0.8;
  object-position: top;
}

.left-section > a > p {
  font-size: 30px;
}

.section-part > p {
  font-size: 18px;
}

.left-section > a > p,
.section-part > p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: 600;
  padding: 5px;
  border-radius: 5px;
  width: calc(100% - 20px);
  z-index: 2;
  transition: transform 0.3s ease;
}

.left-section > a:hover > p {
  transform: translateY(-50px);
}

.section-part:hover > p {
  transform: translateY(-25px);
}

@media (max-width: 1100px) {
  .main-section {
    height: 520px;
  }

  .left-section {
    width: 66%;
  }

  .right-section {
    width: 33%;
  }
}

@media (max-width: 950px) {
  .glassy-section {
    margin: 80px auto 60px auto;
  }

  .main-section {
    height: 490px;
  }

  .left-section > a > p {
    font-size: 28px;
  }

  .section-part > p {
    font-size: 16px;
  }

  .glassy-section > .underline {
    width: 98%;
    margin: auto;
  }

  .glassy-section > .heading > h2 {
    font-size: 32px;
  }
}

@media (max-width: 800px) {
  .main-section {
    height: 450px;
  }

  .glassy-section {
    margin: 80px auto 0px auto;
    height: 550px;
  }

  .left-section {
    width: 68%;
  }

  .right-section {
    width: 31%;
  }
}

@media (max-width: 750px) {
  .main-section {
    height: 400px;
  }

  .glassy-section {
    height: 500px;
  }

  .left-section > a > p {
    font-size: 26px;
  }

  .section-part > p {
    font-size: 14px;
  }

  .glassy-section > .underline {
    width: 98%;
    margin: auto;
  }

  .glassy-section > .heading > h2 {
    font-size: 28px;
  }
}

@media (max-width: 680px) {
  .glassy-section {
    height: 1200px;
    margin: 80px auto;
  }

  .main-section {
    flex-direction: column;
    height: 96%;
    padding-top: 10px;
  }

  .left-section {
    height: 30%;
    width: 94%;
    margin: 0.75% 3% 0 3%;
    position: relative;
  }

  .right-section {
    height: 70%;
    width: 94%;
    margin: 0 3%;
    position: relative;
  }

  .left-section > a > p {
    font-size: 24px;
  }

  .section-part > p {
    font-size: 18px;
  }

  .glassy-section > .underline {
    width: 96%;
    margin: auto;
  }

  .glassy-section > .heading > h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .glassy-section {
    height: 1020px;
  }

  .main-section {
    height: 970px;
  }

  .glassy-section > .underline {
    width: 94%;
    margin: auto;
  }

  .glassy-section > .heading > h2 {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .glassy-section {
    margin: 50px auto 80px auto;
    width: 92%;
    height: 970px;
  }

  .main-section {
    height: 920px;
  }

  .glassy-section > .underline {
    width: 100%;
    margin: auto;
  }

  .glassy-section > .heading > h2 {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .main-section {
    height: 880px;
  }
}

@media (max-width: 360px) {
  .main-section {
    height: 800px;
  }
}

/* End Glassy Section  */

/* 
  ////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////
*/

/* Start Grid-BODY-2 */

.grid-body-2 {
  display: flex;
  justify-content: center;
  margin-top: 4%;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.grid-body-2 > .first-section {
  width: 100%;
  padding-bottom: 0%;
}

.game-board-2 {
  display: grid;
  grid-template-rows: 320px 320px 320px;
  grid-template-columns: 32% 32% 32%;
  column-gap: 2%;
  margin-top: 40px;
}

.grid-body-2 > .first-section > .heading > h2 {
  font-size: 36px;
}

.grid-body-2 > .first-section > .underline {
  text-decoration: none;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.grid-body-2 > .first-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-2 > .first-section > .underline:hover:after {
  width: 15%;
  background: orange;
}

.grid-2-box {
  display: flex;
  color: black;
  font-size: 13px;
  font-weight: 700;
  flex-direction: column;
}

.grid-2-box > a {
  text-decoration: none;
  height: 100%;
  color: black;
}

.grid-2-box > a > .txt {
  padding-top: 5px;
  font-size: 13px;
  padding-left: 0px;
}

.grid-2-box > a > img {
/*   height: 70% !important; */
	height: auto;
  width: 100% !important;
  max-width: 100% !important;
}

.grid-2-box > a > .txt > p {
  font-size: 13px;
}

#grid-2-box1 {
  grid-column: 1/3;
  grid-row: 1/3;
}

/* #grid-2-box1 > a > img {
  height: 80% !important;
} */
#grid-2-box1 > a > img {
  height: auto !important;
}
#grid-2-box3 {
  grid-column: 3/4;
  grid-row: 2/3;
}

@media (max-width: 1200px) {
  .game-board-2 {
    grid-template-rows: 250px 250px 250px;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 34px;
  }

  #grid-2-box1 > a > img {
    height: 78%;
  }
}

@media (max-width: 1050px) {
  .game-board-2 {
    grid-template-rows: 230px 230px 230px;
    margin-top: 35px;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 32px;
  }

  .grid-2-box > a > .txt > p {
    font-size: 12px;
  }

  .grid-2-box > a > img {
    height: 68%;
  }
}

@media (max-width: 900px) {
  .game-board-2 {
    grid-template-rows: 200px 200px 200px;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 30px;
  }

  .grid-2-box > a > .txt > p {
    font-size: 11px;
    padding: 0;
  }

  .grid-2-box > a > img {
    height: 63%;
  }

  #grid-2-box1 > a > img {
    height: 68%;
  }
}

@media (max-width: 750px) {
  .game-board-2 {
    grid-template-rows: 190px 190px 190px;
    margin-top: 30px;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 28px;
  }

  .grid-2-box > a > img {
    height: 61%;
  }
}

@media (max-width: 700px) {
  .game-board-2 {
    grid-template-rows: 210px 210px 210px;
    grid-template-columns: 49% 49%;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 26px;
  }

  .grid-2-box > a > img {
    height: 72%;
  }

  #grid-2-box1 > a > img {
    height: 72%;
  }

  #grid-2-box1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  #grid-2-box2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  #grid-2-box3 {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  #grid-2-box4 {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  #grid-2-box5 {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  #grid-2-box6 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}

@media (max-width: 480px) {
  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 22px;
  }

  .grid-2-box > a > .txt {
    padding-top: 0px;
  }
}

@media (max-width: 450px) {
  .game-board-2 {
    grid-template-rows: 180px 180px 180px;
    grid-template-columns: 49% 49%;
    column-gap: 2%;
  }

  .grid-2-box > a > img {
    height: 63%;
    width: 100%;
  }

  #grid-2-box1 > a > img {
    height: 63%;
  }
}

@media (max-width: 420px) {
  .grid-body-2 {
    width: 92%;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 20px;
  }
}

@media (max-width: 390px) {
  .grid-body-2 {
    width: 92%;
  }

  .grid-body-2 > .first-section > .heading > h2 {
    font-size: 18px;
  }

  .grid-2-box {
    display: flex;
    flex-direction: column;
  }

  .game-board-2 {
    grid-template-rows: 240px 240px 240px 240px 240px 240px;
    grid-template-columns: 100%;
    row-gap: 0px;
  }

  .grid-2-box > a > img {
    height: 73%;
    width: 100%;
  }

  #grid-2-box1 > a > img {
    height: 70%;
  }

  .grid-2-box > a > .txt {
    margin-left: 0px;
  }

  #grid-2-box1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  #grid-2-box2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  #grid-2-box3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  #grid-2-box4 {
    grid-column: 1/2;
    grid-row: 4/5;
  }

  #grid-2-box5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }

  #grid-2-box6 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}

/* End Grid-BODY-2 */

/* 
  ////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////
  */

/* Start Grid-BODY-3 */

.grid-body-3 {
  display: flex;
  font-size: 100%;
  margin-top: 3%;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0px;
}

.game-board-3 {
  display: grid;
  grid-template-rows: 320px 320px;
  grid-template-columns: 32% 32% 32%;
  margin-top: 40px;
  column-gap: 2%;
}

.grid-3-box {
  display: flex;
  flex-direction: column;
  color: black;
  font-size: 1.1vw;
  font-weight: 700;
}

.grid-3-box > a {
  text-decoration: none;
  height: 100%;
  color: black;
}

.grid-3-box > a > .txt {
  padding-top: 5px;
  font-size: 13px;
  padding-left: 0px;
}

.grid-3-box > a > img {
/*   height: 70% !important; */
	height: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.grid-body-3 > .first-section {
  width: 100%;
  padding-top: 0px;
}

.grid-body-3 > .first-section > .heading > h2 {
  font-size: 36px;
}

.grid-3-box > a > .txt > p {
  font-size: 13px;
}

.grid-body-3 > .first-section > .underline {
  text-decoration: none;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.grid-body-3 > .first-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-3 > .first-section > .underline:hover:after {
  width: 15%;
  background: orange;
}

@media (max-width: 1200px) {
  .game-board-3 {
    grid-template-rows: 250px 250px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 34px;
  }

  .grid-3-box {
    padding-top: 0px;
  }
}

@media (max-width: 1050px) {
  .game-board-3 {
    grid-template-rows: 230px 230px;
    margin-top: 35px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 32px;
  }

  .grid-3-box > a > .txt > p {
    font-size: 12px;
  }

  .grid-3-box > a > img {
    height: 68%;
  }
}

@media (max-width: 900px) {
  .game-board-3 {
    grid-template-rows: 200px 200px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 30px;
  }

  .grid-3-box > a > .txt > p {
    font-size: 11px;
    padding: 0;
  }

  .grid-3-box > a > img {
    height: 63%;
  }
}

@media (max-width: 850px) {
  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 28px;
  }
}

@media (max-width: 750px) {
  .game-board-3 {
    grid-template-rows: 190px 190px;
    margin-top: 30px;
  }

  .grid-3-box > a > img {
    height: 61%;
  }
}

@media (max-width: 700px) {
  .game-board-3 {
    grid-template-rows: 210px 210px 210px;
    grid-template-columns: 49% 49%;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 26px;
  }

  .grid-3-box > a > img {
    height: 72%;
  }
}

@media (max-width: 480px) {
  .game-board-3 {
    grid-template-rows: 120px 120px 120px 120px 120px 120px;
    grid-template-columns: 100%;
    row-gap: 15px;
    margin-top: 20px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 22px;
  }

  .grid-3-box > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
  }

  .grid-3-box > a > .txt {
    margin-left: 10px;
    padding-top: 10px;
  }

  .grid-3-box > a > .txt > p {
    font-size: 10px;
    padding-top: 8px;
  }

  .grid-3-box > a > img {
    height: 100%;
    width: 50%;
    min-height: 50%;
    max-width: 50%;
  }
}

@media (max-width: 420px) {
  .grid-body-3 {
    width: 92%;
  }

  .game-board-3 {
    grid-template-rows: 90px 90px 90px 90px 90px 90px;
    grid-template-columns: 100%;
    row-gap: 15px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 20px;
  }

  .grid-3-box > a > img {
    height: 100%;
    width: 40%;
  }

  .grid-3-box > a > .txt {
    padding-top: 4px;
  }
}

@media (max-width: 390px) {
  .grid-body-3 {
    width: 92%;
  }

  .grid-3-box > a {
    flex-direction: column;
  }

  .game-board-3 {
    grid-template-rows: 240px 240px 240px 240px 240px 240px;
    grid-template-columns: 100%;
    row-gap: 0px;
  }

  .grid-body-3 > .first-section > .heading > h2 {
    font-size: 18px;
  }

  .grid-3-box > a > img {
    height: 73%;
    width: 100%;
    max-width: none;
    min-height: none;
  }

  .grid-3-box > a > .txt {
    margin-left: 0px;
  }
}

/* End Grid-BODY-3 */

/*
  //////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////
*/

/* Start Grid-BODY-4 */

.grid-body-4 {
  display: flex;
  font-size: 100%;
  margin-top: 3%;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0px;
}

.game-board-4 {
  display: grid;
  grid-template-rows: 320px 320px;
  grid-template-columns: 32% 32% 32%;
  margin-top: 40px;
  column-gap: 2%;
}

.grid-4-box {
  display: flex;
  flex-direction: column;
  color: black;
  font-size: 1.1vw;
  font-weight: 700;
}

.grid-4-box > a {
  text-decoration: none;
  height: 100%;
  color: black;
}

.grid-4-box > a > .txt {
  padding-top: 5px;
  font-size: 13px;
  padding-left: 0px;
}

.grid-4-box > a > img {
/*   height: 70% !important; */
	height: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

.grid-body-4 > .first-section {
  width: 100%;
  padding-top: 0px;
}

.grid-body-4 > .first-section > .heading > h2 {
  font-size: 36px;
}

.grid-4-box > a > .txt > p {
  font-size: 13px;
}

.grid-body-4 > .first-section > .underline {
  text-decoration: none;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.grid-body-4 > .first-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 6%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-4 > .first-section > .underline:hover:after {
  width: 15%;
  background: orange;
}

@media (max-width: 1200px) {
  .game-board-4 {
    grid-template-rows: 250px 250px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 34px;
  }

  .grid-4-box {
    padding-top: 0px;
  }
}

@media (max-width: 1050px) {
  .game-board-4 {
    grid-template-rows: 230px 230px;
    margin-top: 35px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 32px;
  }

  .grid-4-box > a > .txt > p {
    font-size: 12px;
  }

  .grid-4-box > a > img {
    height: 68%;
  }
}

@media (max-width: 900px) {
  .game-board-4 {
    grid-template-rows: 200px 200px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 30px;
  }

  .grid-4-box > a > .txt > p {
    font-size: 11px;
    padding: 0;
  }

  .grid-4-box > a > img {
    height: 63%;
  }
}

@media (max-width: 850px) {
  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 28px;
  }
}

@media (max-width: 750px) {
  .game-board-4 {
    grid-template-rows: 190px 190px;
    margin-top: 30px;
  }

  .grid-4-box > a > img {
    height: 61%;
  }
}

@media (max-width: 700px) {
  .game-board-4 {
    grid-template-rows: 210px 210px 210px;
    grid-template-columns: 49% 49%;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 26px;
  }

  .grid-4-box > a > img {
    height: 72%;
  }
}

@media (max-width: 480px) {
  .grid-body-4 {
    margin-top: 15%;
  }

  .game-board-4 {
    grid-template-rows: 120px 120px 120px 120px 120px 120px;
    grid-template-columns: 100%;
    row-gap: 15px;
    margin-top: 20px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 22px;
  }

  .grid-4-box > a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
  }

  .grid-4-box > a > .txt {
    margin-left: 10px;
    padding-top: 10px;
  }

  .grid-4-box > a > .txt > p {
    font-size: 10px;
    padding-top: 8px;
  }

  .grid-4-box > a > img {
    height: 100%;
    width: 50%;
  }
}

@media (max-width: 420px) {
  .grid-body-4 {
    width: 92%;
  }

  .game-board-4 {
    grid-template-rows: 90px 90px 90px 90px 90px 90px;
    grid-template-columns: 100%;
    row-gap: 15px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 20px;
  }

  .grid-4-box > a > img {
    height: 100%;
    width: 40%;
  }

  .grid-4-box > a > .txt {
    padding-top: 4px;
  }
}

@media (max-width: 390px) {
  .grid-body-4 {
    width: 92%;
  }

  .grid-4-box > a {
    flex-direction: column;
  }

  .game-board-4 {
    grid-template-rows: 240px 240px 240px 240px 240px 240px;
    grid-template-columns: 100%;
    row-gap: 0px;
  }

  .grid-body-4 > .first-section > .heading > h2 {
    font-size: 18px;
  }

  .grid-4-box > a > img {
    height: 73%;
    width: 100%;
  }

  .grid-4-box > a > .txt {
    margin-left: 0px;
  }
}

/* End Grid-BODY-4 */

/* 
  ////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////
*/

/* Strart Footer */

footer {
  margin-top: 135px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #dde0ce;
  color: white;
  padding: 10px 0 0 0;
}

footer .footer_content {
  max-width: 1450px;
  margin: auto;
  width: 94%;
  padding: 30px 30px 40px 30px;
  position: relative;
}

footer .footer_content .footer_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

footer .footer_content .footer_top_content > .logo-details {
  margin-left: 0%;
}

.footer_content .footer_top_content .media-icons {
  display: flex;
}

.footer_content .footer_top_content .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 6px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 23px;
  text-decoration: none;
  transition: all 0.4s ease;
}

footer .footer_content .link-boxes {
  width: 100%;
  display: flex;
  margin: 25px 5px 0px 0px;
  justify-content: space-between;
  height: 270px;
}

footer .footer_content .link-boxes .box1 {
  width: 25%;
}

footer .footer_content .link-boxes .box2 {
  width: 25%;
}

.footer_content .link-boxes > .box3 {
  width: 25%;
  margin-right: 50px;
  float: inline-end;
  height: 100%;
}

footer .footer_content .link-boxes > .box3 > img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.footer_content .link-boxes .box3 img {
  height: 270px !important;
  width: 80% !important;
  max-width: 100% !important;
  border-radius: 5px;
  border: 1px black solid;
}

.footer_content .link-boxes .box .link_name {
  color: black;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 4px;
  width: 30px;
  background: #83b541;
}

.footer_content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

hr {
  border-color: black;
}

.footer_content .link-boxes .box li a {
  color: black;
  font-size: 17px;
  font-weight: 400;
  opacity: 0.8;
  text-decoration: none;
}

.footer_content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer_content .link-boxes .input-box {
  width: 25%;
}

.footer_content .link-boxes > .input-box > li {
  margin-bottom: 20px;
}

.footer_content .link-boxes > .input-box > li > a {
  width: 100%;
}

.footer_content .link-boxes > .input-box > li > a > button {
  width: 100%;
  height: 50px;
  background-color: #53d14c;
  border-radius: 5px;
  border: 0;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.footer_content .link-boxes > .input-box > li:nth-child(3) {
  width: 100%;
}

.footer_content .link-boxes > .input-box > li:nth-child(3) > ul {
  display: flex;
  height: 40px;
  justify-content: space-between;
}

.footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li {
  height: 100%;
  width: 15%;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
}

.footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li > a {
  display: flex;
}

.footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li > a > i {
  margin: auto;
  font-size: 22px;
  color: white;
  opacity: 1;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(1) {
  background: #4267b2;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(1):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(1):hover
  > a
  > i {
  color: #4267b2;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(2) {
  background: #1da1f2;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(2):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(2):hover
  > a
  > i {
  color: #1da1f2;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(3) {
  background: #e1306c;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(3):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(3):hover
  > a
  > i {
  color: #e1306c;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(4) {
  background: #0077b5;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(4):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(4):hover
  > a
  > i {
  color: #0077b5;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(5) {
  background: #ff0000;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(5):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(5):hover
  > a
  > i {
  color: #ff0000;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(6) {
  background: #1da1f2;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(6):hover {
  background: white;
}

.footer_content
  .link-boxes
  > .input-box
  > li:nth-child(3)
  > ul
  > li:nth-child(6):hover
  > a
  > i {
  color: #1da1f2;
}

/* Start Bottom Details */

footer .bottom-details {
  width: 100%;
  background: black;
  bottom: 0;
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text > span,
.bottom-details .bottom_text a {
  font-size: 20px;
  font-weight: 600;
  color: #83b541;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

.bottom-details .bottom_text .design_by a,
.bottom-details .bottom_text .copyright_text > span:nth-child(2) {
  color: white;
}

@media (max-width: 1300px) {
  .footer_content .link-boxes .box3 img {
    width: 90%;
  }
}

@media (max-width: 1150px) {
  .footer_content .link-boxes .box3 img {
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .footer_content .link-boxes .box3 img {
    width: 100%;
  }
}

@media (max-width: 950px) {
  footer .footer_content {
    padding: 20px;
  }

  footer .footer_content .link-boxes .box1 {
    width: 23%;
  }

  footer .footer_content .link-boxes .box2 {
    width: 23%;
  }

  .footer_content .link-boxes > .box3 {
    width: 27%;
    margin-right: 30px;
  }

  .footer_content .link-boxes .box3 img {
    height: 250px;
  }

  .footer_content .link-boxes .input-box {
    width: 27%;
  }
}

@media (max-width: 900px) {
  footer .footer_content {
    height: 620px;
  }

  footer .footer_content .link-boxes {
    flex-wrap: wrap;
  }

  footer .footer_content .link-boxes .box1 {
    width: 30%;
  }

  footer .footer_content .link-boxes .box2 {
    width: 30%;
  }

  .footer_content .link-boxes > .box3 {
    width: 30%;
    margin-right: 30px;
  }

  .footer_content .link-boxes .input-box {
    width: 45%;
    margin-top: 25px;
  }

  .footer_content .link-boxes .box3 img {
    width: 90%;
  }

  .footer_content .link-boxes > .input-box > li {
    margin-bottom: 10px;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .footer_content .link-boxes .box3 img {
    width: 100%;
  }

  .footer_content .link-boxes > .box3 {
    width: 30%;
    margin-right: 10px;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  footer .footer_content .link-boxes .box1 {
    width: 30%;
  }

  footer .footer_content .link-boxes .box2 {
    width: 30%;
  }

  .footer_content .link-boxes > .box3 {
    width: 35%;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 14px;
  }
}

@media (max-width: 650px) {
  footer {
    margin-top: 15%;
  }

  footer::before {
    top: 145px;
  }

  footer .footer_content .footer_top_content > .logo-details {
    margin: 0 auto 15px auto;
  }

  footer .footer_content .footer_top_content {
    flex-direction: column;
  }

  .footer_content .footer_top_content.media-icons {
    margin-top: 16px;
  }

  footer .footer_content .link-boxes {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  footer .footer_content .link-boxes .box1 {
    grid-column: 1 /2;
    grid-row: 1/2;
    width: 100%;
  }

  footer .footer_content .link-boxes .box2 {
    grid-column: 1 /2;
    grid-row: 2/3;
    width: 100%;
    margin-top: 25px;
  }

  footer .footer_content .link-boxes .box3 {
    width: 60%;
    grid-column: 2 /3;
    grid-row: 1/2;
  }

  footer .footer_content .link-boxes .input-box {
    width: 90%;
    grid-column: 2 /3;
    grid-row: 2/3;
  }

  .footer_content .link-boxes .box3 img {
    width: 225px;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 550px) {
  footer {
    margin-top: 20%;
  }

  footer .footer_content .link-boxes {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  footer .footer_content .link-boxes .input-box {
    width: 100%;
  }

  .footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li {
    width: 13.5%;
  }

  .footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li > a > i {
    font-size: 20px;
  }

  .footer_content .link-boxes > .input-box > li:nth-child(3) > ul {
    height: 35px;
  }

  .bottom-details .bottom_text > .design_by {
    width: 40%;
    display: flex;
    flex-direction: column;
    line-height: 18px;
  }

  .bottom-details .bottom_text span:nth-child(2) {
    width: 60%;
    display: flex;
    flex-direction: column;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  footer {
    margin-top: 25%;
  }

  footer .footer_content .link-boxes {
    display: grid;
    grid-template-columns: 45% 55%;
  }

  footer .footer_content .link-boxes .input-box {
    width: 100%;
  }

  .footer_content .link-boxes .box3 img {
    width: 198px;
  }

  .footer_content .link-boxes > .input-box > li:nth-child(3) > ul > li > a > i {
    font-size: 16px;
  }

  .footer_content .link-boxes > .input-box > li:nth-child(3) > ul {
    height: 30px;
  }
}

@media (max-width: 420px) {
  footer {
    margin-top: 30%;
  }

  footer {
    position: relative;
  }

  footer .footer_content {
    height: 1130px;
  }

  .footer_content .footer_top_content.media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }

  footer .footer_content .link-boxes {
    display: flex;
  }

  footer .footer_content .link-boxes .box {
    width: 100%;
    text-align: center;
    padding-top: 30px;
  }

  .link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 4px;
    width: 50px;
    background: #83b541;
    transform: translateX(-50%);
  }

  footer .footer_content .link-boxes .box2 {
    margin-top: 0px;
  }

  footer .footer_content .link-boxes .input-box {
    margin-top: 20px;
  }

  .footer_content .link-boxes .box3 {
    display: flex;
    justify-content: center;
  }

  footer .bottom-details .bottom_text {
    padding: 20px;
  }

  .bottom-details .bottom_text span:nth-child(1) {
    line-height: 18px;
  }

  .bottom-details .bottom_text span:nth-child(2) {
    line-height: 18px;
  }
}

@media (max-width: 380px) {
  footer {
    position: relative;
  }

  footer .footer_content .link-boxes .box {
    width: 100%;
    text-align: center;
    padding-top: 30px;
  }
}

@media (max-width: 350px) {
  footer .bottom-details .bottom_text {
    padding: 10px 20px;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 10px;
  }

  .bottom-details .bottom_text > .design_by {
    line-height: 12px;
  }

  .bottom-details .bottom_text span:nth-child(2) {
    line-height: 12px;
  }
}

/* End Footer */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* Start Modal Section */

.modal {
  background-color: rgb(114, 201, 199);
  margin: 120px 0 5% 0%;
  height: 500px;
}

.modal .modal-content {
  width: 85%;
  height: 100%;
  background-color: rgb(114, 201, 199);
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.modal-txt {
  width: 65%;
  height: 40%;
  background-color: rgb(114, 201, 199);
  color: white;
}

.modal-img {
  width: 35%;
  max-height: 490px;
  background-color: rgb(114, 201, 199);
  object-fit: cover;
}

.modal-img > img {
  max-height: 490px;
}

.modal-txt > h1 {
  font-size: calc(1.375rem + 1.5vw);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.modal-txt > p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

@media (max-width: 1500px) {
  .modal .modal-content {
    width: 1200px;
  }
}

@media (max-width: 1300px) {
  .modal .modal-content {
    width: 1050px;
  }
}

@media (max-width: 1100px) {
  .modal .modal-content {
    width: 850px;
  }
}

@media (max-width: 1024px) {
  .modal {
    margin: 130px 0 5% 0%;
  }
}

@media (max-width: 950px) {
  .modal .modal-content {
    width: 750px;
  }
}

@media (max-width: 800px) {
  .modal .modal-content {
    flex-direction: column;
    justify-content: center;
  }

  .modal {
    height: 650px;
  }

  .modal-img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 750px) {
  .modal .modal-content {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .modal {
    height: 650px;
    padding-top: 10%;
  }

  .modal-txt {
    width: 80%;
    height: 40%;
  }

  .modal-img {
    width: 300px;
    height: 300px;
    position: relative;
  }
}

/* End Modal Section */

/* 
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
*/

/* Start Value Section */

.card-body {
  width: 100%;
  height: 850px;
  background: #dde0ce;
  padding-top: 50px;
}

.card-body > h1 {
  text-align: center;
  padding-top: 5%;
  color: white;
  font-size: 40px;
}

.card-body > p {
  text-align: center;
  width: 60%;
  margin: auto;
  padding: 2% 0%;
  color: white;
  font-size: 18px;
}

.card-content {
  width: 90%;
  margin: 0% auto 2% auto;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.card-content .card {
  width: calc(40% - 5px);
  height: 200px;
  margin: 20px;
  border-radius: 5px;
  background-color: #9de341;
}

.card-content .card .title {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin: 2%;
  margin-top: 20px;
}

.card-content .card .info {
  font-size: 15px;
  padding: 0% 10%;
}

.card-content .card .top .title {
  font-size: 27px;
  font-weight: 600;
}

.card-content .card .info {
  font-size: 16px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .card-content {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .card-body {
    height: 1250px;
  }

  .card-content .card {
    width: calc(65% - 5px);
  }

  .card-body p {
    width: 80%;
  }
}

@media (max-width: 550px) {
  .card-body p {
    text-align: left;
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .card-content .card {
    width: calc(80% - 5px);
  }
}

@media (max-width: 450px) {
  .card-body {
    height: 1400px;
  }

  .card-content .card {
    height: 220px;
  }
}

/* End Value Section */

/* 
////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
*/

/* Start Story Section */

.story {
  width: 100%;
  margin: 5% 0%;
  height: 700px;
  padding-top: 30px;
  background-color: #73c9c87a;
}

.story > h1 {
  text-align: center;
  padding: 5% 0% 1% 0%;
  color: black;
}

.story-content {
  width: 85%;
  margin: 0% auto;
  height: 450px;
}

.story-content > p {
  line-height: 1.2em;
  margin-top: 2%;
  font-size: 18px;
  text-align: justify;
}

.img-div {
  width: 60%;
  height: 300px;
  display: flex;
  flex-direction: row;
  float: right;
  margin-left: 2%;
}

.img-div1,
.img-div2 {
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.img-div1 > h5,
.img-div2 > h5 {
  text-align: center;
  padding-top: 2px;
  font-size: 14px;
}

.img-div1 img,
.img-div2 img {
  max-width: 100%;
  max-height: 90%;
}

@media (max-width: 1150px) {
  .story {
    height: 750px;
  }
}

@media (max-width: 900px) {
  .story {
    height: 800px;
  }
}

@media (max-width: 750px) {
  .story {
    height: 850px;
  }
}

@media (max-width: 700px) {
  .story {
    height: 900px;
  }

  .img-div {
    flex-direction: column;
    width: 45%;
    height: 500px;
  }

  .img-div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60%;
  }

  .img-div2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40%;
  }

  .img-div2 img {
    max-width: 90%;
    max-height: 100%;
  }
}

@media (max-width: 630px) {
  .story {
    height: 1000px;
    padding-top: 50px;
  }
}

@media (max-width: 550px) {
  .story {
    height: 1050px;
  }

  .img-div {
    float: none;
    flex-direction: row;
    width: 100%;
    margin-top: 5%;
    height: 200px;
  }

  .img-div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 40%;
  }

  .img-div2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 60%;
  }

  .img-div1 img,
  .img-div2 img {
    height: 85%;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
  }
}

@media (max-width: 480px) {
  .story {
    height: 1120px;
  }
}

@media (max-width: 410px) {
  .story {
    height: 1450px;
  }

  .img-div {
    flex-direction: column;
    height: 450px;
  }

  .img-div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
    width: 100%;
  }

  .img-div2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
    width: 100%;
  }

  .img-div2 img {
    max-width: 90%;
    max-height: 100%;
  }
}

@media (max-width: 380px) {
  .story {
    height: 1500px;
  }
}

@media (max-width: 340px) {
  .story {
    height: 1600px;
  }
}

/* End Story Section */

/*
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
*/

/* Start Contact Info  */

.contact-div {
  margin: 140px 0%;
  padding: auto 5%;
}

/* Start Contact-Modal */

.contact-div .contact-div1 {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-div1 > h2 {
  margin: 5% auto 5% auto;
  color: #88b44e;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

.contact-div1 > h1 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  color: black;
}

.line-container {
  width: 250px;
  margin: 3% auto 2% auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipe {
  height: 2px;
  flex: 1;
  background-color: #88b44e;
}

.circle {
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  margin: 0 10px;
}

@media (max-width: 590px) {
  .contact-div .contact-div1 {
    margin-top: 50px;
  }

  .contact-div1 h2 {
    font-size: 25px;
  }

  .contact-div1 h1 {
    font-size: 30px;
  }

  .line-container {
    width: 50%;
  }
}

@media (max-width: 350px) {
  .contact-div1 h2 {
    font-size: 20px;
  }

  .contact-div1 h1 {
    font-size: 25px;
  }
}

/* End Contact-Modal */

/*
  /////////////////////////////////////////////////////
*/

/* Start Contact Method */

.contact-div2 {
  width: 90%;
  margin: 5% auto;
  height: 160px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.logo1,
.logo2,
.logo3 {
  width: 33.33%;
}

.logo1 > .logo-txt,
.logo2 > .logo-txt {
  display: flex;
  flex-direction: column;
}

.logo1 > .logo-txt > a,
.logo2 > .logo-txt > a {
  text-decoration: none;
  color: black;
}

.logo-design {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 100px;
  background-color: #f5f8f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-shadow {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: #01577a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 30px;
  color: white;
}

.logo-txt {
  text-align: center;
  line-height: 30px;
}

@media (max-width: 780px) {
  .contact-div2 {
    flex-direction: column;
    justify-content: space-around;
    height: 550px;
    align-items: center;
  }

  .logo1,
  .logo2,
  .logo3 {
    width: 100%;
  }
}

/* End Contact-Method */

/*
  ///////////////////////////////////////////////////////
*/

/* Start Query Form and Location */

.contact-div3 {
  max-width: 1700px;
  width: 94%;
  display: flex;
  flex-direction: row;
  margin: 8% auto;
  height: 550px;
  justify-content: space-between;
}

.location {
  width: 45%;
  height: 80%;
  border: 1px solid black;
  border-radius: 25px;
  margin: auto;
}

.location > iframe {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.contact-container {
  width: 53%;
  padding: 20px;
}

.contact-container > p {
  margin-top: 10px;
}

form {
  margin: 0 auto;
  width: 100%;
}

form > .first-line > p,
form > .second-line > p,
form > .third-line > p,
form > .fourth-line > p {
  margin: 5px 0;
  font-size: 16px;
}

form > .first-line > p > input,
form > .second-line > p > input,
form > .third-line > p > input {
  width: 100%;
  padding: 15px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid black;
}

form > .fourth-line > p > textarea {
  width: 100%;
  height: 100px;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid black;
}

.error-message {
  color: #f32c16;
  font-weight: bold;
  margin-top: 5px;
  font-size: 12px;
}

.first-line,
.second-line {
  display: flex;
  justify-content: space-between;
}

.first-line > p,
.second-line > p {
  width: 49%;
}

.sub_msg {
  color: red;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

form > p > button {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid black;
  color: #fff;
  background-color: #222322;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}

form > p > button:hover {
  background-color: #45a049;
}

@media (max-width: 1100px) {
  .contact-div3 {
    flex-direction: column;
    height: 950px;
    justify-content: space-around;
  }

  .contact-container {
    width: 100%;
    height: 50%;
  }

  .contact-container > h1 {
    font-size: 28px;
  }

  form {
    margin-top: 15px;
  }

  .location {
    margin-top: 80px;
    width: 90%;
    height: 400px;
  }
}

@media (max-width: 850px) {
  .location {
    margin-top: 80px;
  }
}

@media (max-width: 650px) {
  .location {
    margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .location {
    margin-top: 50px;
  }

  .contact-container > h1 {
    font-size: 24px;
  }

  .contact-div {
    margin: 80px 0%;
  }

  .contact-div3 {
    margin: 8% auto 2% auto;
  }
}

@media (max-width: 500px) {
  .contact-div3 {
    height: 900px;
  }

  .first-line {
    flex-direction: column;
  }

  .first-line,
  .second-line {
    flex-direction: column;
  }

  .first-line > p,
  .second-line > p {
    width: 100%;
  }

  .location {
    height: 300px;
    margin-top: 0px;
  }

  .contact-container {
    height: 65%;
  }

  .contact-container > h1 {
    font-size: 20px;
  }

  .contact-container > p {
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .contact-container {
    padding-bottom: 0px;
  }

  .contact-div3 {
    height: 950px;
  }

  .location {
    height: 300px;
    margin-bottom: 20px;
    width: 95%;
  }
}

@media (max-width: 410px) {
  .contact-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-container > h1 {
    font-size: 18px;
  }

  .contact-container > p {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .contact-div3 {
    height: 900px;
    margin-top: 50px;
  }

  .location {
    height: 300px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .contact-container > h1 {
    font-size: 16px;
  }

  .contact-container > p {
    font-size: 12px;
  }
}

/* End Query Form and Location */

/* End Contact Info  */

/*
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
*/

/* Start Newsletter Container */

.container {
  height: 400px;
  width: 100%;
  background-color: #ff6144;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  padding-bottom: 20px;
  margin-top: 130.5px;
}

.container > .left-div {
  margin: auto;
  width: 55%;
}

.container > .right-div {
  width: 45%;
  height: 100%;
  display: flex;
}

.container > .left-div > h1 {
  font-size: 52px;
  color: white;
  margin: 0;
}

.container > .left-div > h3 {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.mail-box {
  margin-top: 40px;
}

.mail-box > input {
  height: 50px;
  border-radius: 8px;
  width: 50%;
  border: none;
  font-size: 18px;
  padding-left: 20px;
}

.mail-box > button {
  height: 50px;
  border-radius: 8px;
  padding: auto 10px;
  width: 25%;
  font-size: 18px;
  border: none;
  color: white;
  font-weight: 600;
  background-color: rgba(246, 147, 129, 0.791);
  margin-left: 8px;
}

.right-div > img {
  height: 100%;
  width: 100%;
  max-height: max-content;
  max-width: min-content;
  margin: auto;
}

@media (max-width: 1100px) {
  .container {
    height: 380px;
  }

  h1 {
    font-size: 48px;
    color: white;
    margin: 0;
  }

  h3 {
    font-size: 20px;
    color: white;
    font-weight: 500;
  }

  .right-div > img {
    height: 100%;
    width: 100%;
    max-height: max-content;
    max-width: min-content;
    margin: auto;
  }
}

@media (max-width: 980px) {
  .container {
    height: 350px;
  }

  h1 {
    font-size: 44px;
    color: white;
    margin: 0;
  }

  h3 {
    font-size: 20px;
    color: white;
    font-weight: 500;
  }

  .container > .left-div {
    width: 65%;
  }

  .container > .right-div {
    width: 35%;
  }

  .right-div > img {
    height: 80%;
  }
}

@media (max-width: 850px) {
  .container {
    height: 600px;
    flex-direction: column;
    align-items: center;
  }

  .container > .left-div {
    margin: 80px auto 40px auto;
    width: 94%;
  }

  .container > .right-div {
    width: 50%;
    align-items: center;
    display: block;
    justify-content: center;
    justify-items: center;
  }

  .right-div > img {
    margin: auto;
    height: 100%;
    position: relative;
    bottom: 60px;
  }
}

@media (max-width: 700px) {
  .container {
    margin-bottom: 0px;
    height: 550px;
  }

  .container > .left-div {
    width: 100%;
  }
}

@media (max-width: 550px) {
  h1 {
    font-size: 42px;
  }

  .container {
    height: 650px;
  }

  .container > .right-div {
    width: 70%;
  }

  .right-div > img {
    bottom: 20px;
  }

  .mail-box > input {
    height: 50px;
    border-radius: 8px;
    width: 50%;
    font-size: 18px;
    padding-left: 20px;
  }

  .mail-box > button {
    height: 50px;
    width: 40%;
    font-size: 16px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h3 {
    font-size: 16px;
  }

  .container > .right-div {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .mail-box > input {
    padding: auto 5px;
    width: 65%;
    height: 40px;
  }

  .mail-box > button {
    padding: auto 5px;
    width: 30%;
    height: 40px;
    margin-left: 5px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 28px;
  }

  .mail-box > input {
    width: 100%;
    border-radius: 4px;
  }

  .mail-box > button {
    width: 100%;
    margin-left: 0px;
    border-radius: 4px;
    margin-top: 20px;
  }
}

/* End Newsletter Container */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* Start Load Container  */

.load_container {
  width: 94%;
  max-width: 1400px;
  margin: 130px auto 0px auto;
}

.load_container > p {
  text-align: center;
  font-weight: bold;
  font-size: 42px;
}

.magazine_container_box {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.magazine_content {
  background-color: white;
/*   height: 500px; */
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
}

.magazine_content > a {
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.magazine_content > a > img {
  width: 100% !important;
  height: 80% !important;
  max-width: 100% !important;
}

.magazine_content > a > .txt {
  color: black;
  font-weight: 600;
  font-size: 14px;
}

.magazine_content > a > .txt > p {
  margin: 8px 6px;
}

.load-more-magazine {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  width: 150px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  margin: 30px auto;
  display: block;
  text-align: center;
}

/* .magazine_abc {
  display: none;
} */

.load-more-magazine:hover {
  background-color: black;
}

@media (max-width: 1250px) {
  .magazine_content {
    height: 440px;
  }

  .magazine_content > a > img {
    height: 76%;
  }
}

@media (max-width: 1150px) {
  .magazine_content {
    height: 400px;
  }

  .magazine_content > a > img {
    height: 74%;
  }
}

@media (max-width: 1050px) {
  .magazine_content {
    height: 360px;
  }

  .magazine_content > a > img {
    height: 75%;
  }

  .magazine_content > a > .txt {
    font-size: 12px;
  }

  .load_container > p {
    font-size: 38px;
  }
}

@media (max-width: 950px) {
  .magazine_container_box {
    grid-template-columns: repeat(3, 1fr);
  }

  .magazine_content {
    height: 440px;
  }

  .magazine_content > a > .txt {
    font-size: 14px;
  }

  .load_container > p {
    font-size: 36px;
  }
}

@media (max-width: 860px) {
  .magazine_content {
    height: 380px;
  }

  .magazine_content > a > img {
    height: 78%;
  }

  .magazine_content > a > .txt {
    font-size: 12px;
  }

  .load_container > p {
    font-size: 34px;
  }
}

@media (max-width: 730px) {
  .magazine_container_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .magazine_content > a > img {
    height: 82%;
  }

  .magazine_content {
    height: 460px;
  }

  .load_container > p {
    font-size: 32px;
  }
}

@media (max-width: 650px) {
  .magazine_container_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .magazine_content > a > img {
    height: 78%;
  }

  .magazine_content {
    height: 400px;
  }
}

@media (max-width: 550px) {
  .load_container {
    width: 90%;
  }

  .magazine_content > a > img {
    height: 75%;
  }

  .magazine_content {
    height: 380px;
  }

  .load_container > p {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .magazine_container_box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }

  .magazine_content > a > img {
    height: 72%;
  }

  .magazine_content {
    height: 350px;
  }

  .load_container > p {
    font-size: 32px;
  }
}

@media (max-width: 420px) {
  .container {
    width: 94%;
  }

  .load_container > p {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .magazine_container_box {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 20px;
  }

  .magazine_content > a > img {
    height: 82%;
  }

  .magazine_content {
    height: 480px;
  }

  .load_container > p {
    font-size: 28px;
  }
}

@media (max-width: 350px) {
  .magazine_content > a > img {
    height: 80%;
  }

  .magazine_content {
    height: 450px;
  }

  .load_container > p {
    font-size: 26px;
  }
}

/* End Load Container  */

/* 
  ////////////////////////////////////////////////////////
  ////////////////////////////////////////////////////////
*/

/* Start Landing Content */

.landing-content {
  margin-top: 80px;
  height: auto;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
}

.left-part {
  width: 70%;
  height: 100%;
  padding-top: 40px;
}

.right-part {
  width: calc(30% - 30px);
  height: auto;
  display: flex;
  padding-top: 40px;
  flex-direction: column;
}

.left-part > .img-container {
  height: auto;
  width: 100%;
}

.img-container > img {
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  width: 100% !important;
/*   min-height: 100% !important; */
	height: auto !important;
  max-width: 100% !important;
  color: #a0a0a0;
}

.txt-container {
  margin-top: 20px;
  height: auto;
  width: 100%;
}

.txt-container > p:nth-child(1) {
  font-size: 42px;
  line-height: normal;
  font-weight: 600;
  text-align: start;
}

.txt-container > p {
  margin: 20px auto;
  font-size: 18px;
  line-height: 30px;
  font-family: "Noto Serif", Helvetica, Arial, sans-serif;
  text-align: justify;
}

@media (max-width: 1024px) {
  .txt-container > p:nth-child(1) {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .txt-container > p:nth-child(1) {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .txt-container > p:nth-child(1) {
    font-size: 32px;
  }
}

@media (max-width: 650px) {
  .txt-container > p:nth-child(1) {
    font-size: 28px;
  }
}

@media (max-width: 540px) {
  .txt-container > p:nth-child(1) {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .txt-container > p:nth-child(1) {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .txt-container > p:nth-child(1) {
    font-size: 18px;
  }
}

.part_2 {
  height: 22%;
  position: relative;
}

.part_2 > .arrow {
  position: absolute;
  transform: translateY(25px);
  font-size: 30px;
  font-weight: bold;
  color: rgb(87, 87, 87);
  cursor: pointer;
  background-color: black;
  padding: 2px 5px;
}

.part_2 > .left-arrow {
  left: 40%;
}

.part_2 > .right-arrow {
  right: 40%;
}

.content-wrapper {
  display: flex;
  overflow: hidden;
}

.part_1 {
  height: 33%;
}

.part_4 {
  height: 27%;
}

.right-part > .part > .heading {
  border-bottom: 4px black solid;
  display: flex;
  justify-content: center;
}

.right-part > .part > .heading > button {
  padding: 5px 10px 2px 10px;
  margin: auto;
  background-color: black;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  justify-content: center;
  text-align: center;
  line-height: 24px;
}

.right-part > .part > .content-wrapper {
  z-index: 0;
}

.right-part > .part > .content-wrapper > .slider_box {
  margin-top: 20px;
  min-width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.right-part > .part > .content-wrapper > .slider_box > a > img {
  max-width: 100%;
  height: auto;
}

.right-part > .part_2 > .content-wrapper > .slider_box > a {
  text-decoration: none;
}

.right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(2) {
  margin: 10px 0px;
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(3) {
  color: #767676;
}

.right-part > .part_1 > .lines {
  margin-top: 20px;
}

.line {
  font-size: 16px;
  font-weight: 600;
  padding: 25px 0 10px 0;
  border-bottom: 2px rgb(130, 128, 128) solid;
}

.line > a {
  text-decoration: none;
  color: black;
}

.line > a:hover {
  color: red;
}

.line6 {
  border-bottom: 0;
}

.line-heading {
  background-color: red;
  padding: 3px 10px;
  width: fit-content;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}

.line-heading > a {
  text-decoration: none;
  color: white;
}

.part_3 {
  height: 18%;
  width: 100%;
}

.part_3 > .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.part_3 > .wrapper > .slide {
  width: 100%;
  height: 85%;
  position: absolute;
  transition: left 1s ease-in-out;
  padding-top: 20px;
}

.part_3 > .wrapper > .slide.active {
  left: 0;
}

.part_3 > .wrapper > .slide.inactive {
  left: 100%;
}

.part_3 > .wrapper > .slide > a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.part_3 > .wrapper > .slide > a > img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain;
}

.part_4 > .lines > .line > a {
  display: flex;
  justify-content: space-between;
}

.part_4 > .lines > .line > a > img {
  width: 30% !important;
  height: auto !important;
  max-width: 100% I !important;
}

.part_4 > .lines > .line > a > p {
  width: 68%;
}

@media (max-width: 1150px) {
  .left-part {
    width: 67%;
  }

  .right-part {
    width: calc(33% - 30px);
  }
}

@media (max-width: 1068px) {
  .arrow {
    top: 70%;
  }

  .part_2 > .left-arrow {
    left: 39%;
  }

  .part_2 > .right-arrow {
    right: 39%;
    margin-left: 50px;
  }
}

@media (max-width: 960px) {
  .part_2 > .arrow {
    top: 65%;
  }

  .left-part {
    width: 65%;
  }

  .right-part {
    width: calc(35% - 20px);
  }
}

@media (max-width: 860px) {
  .part_2 > .arrow {
    top: 58%;
  }

  .part_2 > .left-arrow {
    left: 37%;
  }

  .part_2 > .right-arrow {
    right: 35%;
    margin-left: 50px;
  }
}

@media (max-width: 768px) {
  .landing-content {
    flex-direction: column;
  }

  .left-part {
    width: 100%;
  }

  .right-part {
    width: 100%;
    height: 2650px;
  }

  .part_2 {
    height: 17%;
  }

  .part_1 {
    height: 25%;
  }

  .part_3 {
    height: 20%;
  }

  .part_4 {
    height: 38%;
  }

  .part_2 > .content-wrapper {
    width: 600px;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .right-part > .part_2 > .content-wrapper > .content {
    width: 100%;
  }

  .right-part > .part_2 > .content-wrapper > .slider_box > a {
    display: flex;
    flex-direction: column;
  }

  .right-part > .part > .content-wrapper > .slider_box > a > img {
    width: 60%;
    margin-left: 15%;
  }

  .right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(2),
  .right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(3) {
    width: 70%;
    margin: auto;
  }

  .right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(2) {
    margin-top: 10px;
  }

  .part_2 > .arrow {
    top: 80%;
  }

  .part_2 > .left-arrow {
    left: 60%;
  }

  .part_2 > .right-arrow {
    right: 30%;
    margin-left: 50px;
  }
}

@media (max-width: 680px) {
  .right-part {
    width: 100%;
    height: 2400px;
  }

  .part_2 {
    height: 19%;
  }

  .part_1 {
    height: 29%;
  }

  .part_3 {
    height: 20%;
  }

  .part_4 {
    height: 36%;
  }

  .part_2 > .arrow {
    top: 82%;
  }

  .part_2 > .left-arrow {
    left: 62%;
  }

  .part_2 > .right-arrow {
    right: 27%;
  }
}

@media (max-width: 600px) {
  .landing-content {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .part_2 > .content-wrapper {
    width: 400px;
    height: 100%;
  }

  .right-part > .part > .content-wrapper > .slider_box > a > img {
    width: 100%;
    margin: 0;
  }

  .right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(2),
  .right-part > .part_2 > .content-wrapper > .slider_box > a > p:nth-child(3) {
    width: 100%;
  }

  .right-part {
    width: 100%;
    height: 2470px;
  }

  .part_2 {
    height: 20%;
  }

  .part_1 {
    height: 29%;
  }

  .part_4 {
    height: 31%;
  }

  .part_2 > .arrow {
    top: 78%;
  }

  .part_2 > .left-arrow {
    left: 43%;
  }

  .part_2 > .right-arrow {
    right: 43%;
  }
}

@media (max-width: 480px) {
  .part_2 > .content-wrapper {
    width: 100%;
    height: 100%;
  }

  .right-part {
    width: 100%;
    height: 2400px;
  }

  .part_2 {
    height: 19%;
  }

  .part_1 {
    height: 30%;
  }

  .part_4 {
    height: 31%;
  }

  .part_2 > .arrow {
    top: 82%;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-size: 28px;
    text-align: center;
    display: flex;
    text-align: center;
    justify-content: center;
    justify-items: center;
    color: rgb(205, 204, 204);
  }

  .part_2 > .left-arrow {
    left: 70%;
  }

  .part_2 > .right-arrow {
    right: 8%;
    margin-left: 50px;
  }

  .right-part > .part > .heading {
    border-bottom: 3px black solid;
  }

  .line {
    border-bottom: 1px rgb(130, 128, 128) solid;
  }

  .line6 {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .right-part {
    width: 100%;
    height: 2250px;
  }

  .part_2 {
    height: 21%;
  }

  .part_1 {
    height: 32%;
  }

  .part_4 {
    height: 29%;
  }
}

@media (max-width: 380px) {
  .right-part {
    width: 100%;
    height: 2350px;
  }

  .part_2 {
    height: 20%;
  }

  .part_1 {
    height: 35%;
  }

  .part_4 {
    height: 27%;
  }

  .part_2 > .arrow {
    top: 82%;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 24px;
  }

  .part_2 > .left-arrow {
    left: 70%;
  }

  .part_2 > .right-arrow {
    right: 8%;
    margin-left: 50px;
  }
}

/* End Landing Content */

/*
  //////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////
*/

/* Start Related Container */

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

.related-container > p {
  font-weight: bold;
  font-size: 30px;
  position: relative;
}

.related-container > p:after {
  position: absolute;
  content: "";
  height: 3px;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 5%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.related-container > p:hover:after {
  width: 8%;
  background: orange;
}

.container_box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.container_box > .abc > .content {
  background-color: rgba(244, 243, 243, 0.748);
  height: 280px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  border-radius: 5% 0% 5% 0%;
}

.container_box > .abc > .content > a {
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.container_box > .abc > .content > a > img {
  width: 100% !important;
/*   height: 70% !important; */
	height: auto !important;
  max-width: 100% !important;
  border-radius: 5% 0% 5% 0%;
}

.container_box > .abc > .content > a > .txt {
  color: black;
  font-weight: 600;
  font-size: 14px;
}

.container_box > .abc > .content > a > .txt > p {
  margin: 8px 6px;
}

.load-more {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  width: 150px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  margin: 30px auto;
  display: block;
  text-align: center;
}

.abc {
  display: none;
}

.load-more:hover {
  background-color: black;
}

@media (min-width: 1400px) {
  .container_box > .abc > .content {
    height: 320px;
  }

  .related-container > p:after {
    width: 4%;
  }

  .related-container > p:hover:after {
    width: 7%;
  }
}

@media (max-width: 1200px) {
  .container_box > .abc > .content {
    height: 260px;
  }

  .container_box > .abc > .content > a > img {
    height: 68%;
  }
}

@media (max-width: 1050px) {
  .container_box > .abc > .content {
    height: 230px;
  }

  .container_box > .abc > .content > a > img {
    height: 70%;
  }

  .container_box > .abc > .content > a > .txt {
    font-size: 12px;
  }

  .related-container {
    margin: 70px auto 0px auto;
  }

  .related-container > p {
    font-size: 38px;
  }

  .related-container > p:after {
    width: 8%;
  }

  .related-container > p:hover:after {
    width: 14%;
  }
}

@media (max-width: 950px) {
  .container_box > .abc > .content {
    height: 230px;
  }

  .container_box {
    column-gap: 20px;
  }

  .container_box > .abc > .content > a > img {
    height: 65%;
  }

  .container_box > .abc > .content > a > .txt {
    font-size: 13px;
  }

  .related-container > p {
    font-size: 36px;
  }
}

@media (max-width: 860px) {
  .container_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .container_box > .abc > .content > a > img {
    height: 72%;
  }

  .container_box > .abc > .content {
    height: 270px;
  }

  .related-container > p {
    font-size: 34px;
  }

  .related-container > p:after {
    width: 10%;
  }

  .related-container > p:hover:after {
    width: 15%;
  }
}

@media (max-width: 750px) {
  .container_box > .abc > .content > a > img {
    height: 68%;
  }

  .container_box > .abc > .content {
    height: 250px;
  }

  .related-container {
    margin: 60px auto 0px auto;
  }

  .related-container > p {
    font-size: 32px;
  }
}

@media (max-width: 650px) {
  .container_box > .abc > .content > a > img {
    height: 65%;
  }

  .container_box > .abc > .content {
    height: 235px;
  }

  .related-container {
    margin: 60px auto 30px auto;
  }

  .related-container > p:after {
    width: 12%;
  }

  .related-container > p:hover:after {
    width: 18%;
  }
}

@media (max-width: 550px) {
  .related-container {
    width: 90%;
    padding: 0;
  }

  .container_box > .abc > .content > a > img {
    height: 60%;
  }

  .container_box > .abc > .content {
    height: 240px;
  }

  .container > p {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .related-container {
    margin: 50px auto 20px auto;
  }

  .container_box {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    margin-top: 30px;
  }

  .container_box > .abc > .content > a > img {
    height: 60%;
  }

  .container_box > .abc > .content {
    height: 220px;
  }

  .related-container > p {
    font-size: 32px;
  }

  .related-container > p:after {
    width: 12%;
  }

  .related-container > p:hover:after {
    width: 45%;
  }
}

@media (max-width: 420px) {
  .container_box {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 20px;
  }

  .container_box > .abc > .content > a > img {
    height: 75%;
  }

  .container_box > .abc > .content {
    height: 280px;
  }

  .related-container > p {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .related-container > p {
    font-size: 28px;
  }
}

@media (max-width: 350px) {
  .container_box > .abc > .content > a > img {
    height: 70%;
  }

  .container_box > .abc > .content {
    height: 280px;
  }

  .related-container > p {
    font-size: 26px;
  }
}

/* End Related Container */

/*
  //////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////
*/

/* Start Magazine Landing Content */

.magazine-landing-content {
  height: auto;
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  display: flex;
  justify-content: space-between;
  background-color: #f2f2f2;
  max-width: 1450px;
  margin: auto;
  margin-top: 130px;
}

.magazine-landing-content > .landing-content-left-part {
  width: 28%;
  height: 100%;
}

.magazine-landing-content > .landing-content-right-part {
  width: calc(72% - 30px);
  height: auto;
  display: flex;
  padding-top: 120px;
  flex-direction: column;
}

.magazine-landing-content > .landing-content-left-part > img {
  height: auto;
  width: 100%;
  max-height: 100%;
}

.magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
  font-size: 46px;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
}

.magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
  font-size: 22px;
  line-height: 30px;
  margin-top: 20px;
  color: #989595;
  font-family: "Times New Roman", Times, serif;
}

@media (max-width: 1150px) {
  .magazine-landing-content > .landing-content-right-part {
    padding-top: 80px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 42px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 1068px) {
  .magazine-landing-content > .landing-content-right-part {
    padding-top: 60px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 38px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 20px;
  }
}

@media (max-width: 940px) {
  .magazine-landing-content > .landing-content-right-part {
    padding-top: 60px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 36px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 850px) {
  .magazine-landing-content > .landing-content-right-part {
    padding-top: 40px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 32px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .magazine-landing-content {
    flex-direction: column;
    width: 92%;
  }

  .magazine-landing-content > .landing-content-left-part {
    width: 100%;
  }

  .magazine-landing-content > .landing-content-right-part {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 50px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 24px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 550px) {
  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 26px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 24px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 420px) {
  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 22px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 360px) {
  .magazine-landing-content > .landing-content-right-part > p:nth-child(1) {
    font-size: 20px;
  }

  .magazine-landing-content > .landing-content-right-part > p:nth-child(2) {
    font-size: 14px;
    line-height: 20px;
  }
}

/* End Magazine Landing Content */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* Start Grid-Body-6 */

.grid-body-6 {
  display: flex;
  font-size: 100%;
  justify-content: center;
  margin-top: 60px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.game-board-6 {
  display: grid;
  grid-template-rows: 90px 90px 90px;
  grid-template-columns: 32% 32% 32%;
  column-gap: 2%;
  row-gap: 4%;
  margin-top: 4%;
}

.grid-body-6 > .first-section {
  width: 100%;
  margin: auto;
  padding-bottom: 5%;
}

.grid-body-6 > .first-section > .underline {
  text-decoration: none;
  position: relative;
}

.grid-body-6 > .first-section > .underline:after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 5%;
  background: green;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.grid-body-6 > .first-section > .underline:hover:after {
  width: 10%;
  background: orange;
}

.grid-6-box {
  color: black;
  font-weight: 700;
}

.grid-6-box > a {
  text-decoration: none;
  height: 100%;
  width: 100%;
  color: black;
  display: flex;
  flex-direction: row;
}

.grid-6-box > a > img {
  height: 100% !important;
  width: 150px !important;
  max-width: 100% !important;
}

#grid-6-box1 > a > img {
  height: auto !important;
  width: 100% !important;
}

.grid-body-6 > .first-section > .heading > h2 {
  font-size: 36px;
}

.grid-6-box > a > .txt {
  font-size: 12px;
  padding-left: 0px;
  padding-top: 10px;
}

.grid-6-box > a > .txt > p {
  padding-left: 10px;
}

#grid-6-box1 > a > .txt > p {
  padding-left: 0px;
  padding-top: 5px;
}

#grid-6-box1 {
  grid-column: 1/2;
  grid-row: 1/4;
}

#grid-6-box1 > a {
  flex-direction: column;
  align-items: baseline;
}

#grid-6-box5 {
  grid-column: 3/4;
  grid-row: 2/3;
}

@media (max-width: 1200px) {
  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 34px;
  }
}

@media (max-width: 1150px) {
  .game-board-6 {
    grid-template-rows: 90px 90px 90px;
  }

  .first-section {
    width: 85%;
  }
}

@media (max-width: 1050px) {
  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 32px;
  }
}

@media (max-width: 1000px) {
  .game-board-6 {
    grid-template-rows: 80px 80px 80px;
  }

  .first-section {
    width: 85%;
  }

  .grid-6-box > a > .txt {
    font-size: 11px;
  }
}

@media (max-width: 950px) {
  .grid-6-box > a > img {
    height: 100%;
    width: 130px;
  }
}

@media (max-width: 900px) {
  .game-board-6 {
    grid-template-rows: 220px 220px 220px;
    grid-template-columns: 49% 49%;
    column-gap: 2%;
    row-gap: 2%;
  }

  .first-section {
    width: 80%;
  }

  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 30px;
  }

  .grid-6-box {
    display: block;
  }

  .grid-6-box > a > .txt {
    padding-top: 0px;
  }

  .grid-6-box > a > .txt > p {
    padding: 0;
    padding-top: 0px;
    margin-top: 4px;
    margin-left: 0px;
    font-size: 11px;
  }

  #grid-6-box1 > a > .txt > p {
    padding-top: 0px;
  }

  .grid-6-box > a > img {
    height: 84%;
    width: 100%;
  }

  #grid-6-box1 > a > img {
    height: 84%;
    width: 100%;
  }

  .grid-6-box > a {
    flex-direction: column;
  }

  #grid-6-box1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  #grid-6-box2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  #grid-6-box3 {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  #grid-6-box4 {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  #grid-6-box5 {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  #grid-6-box6 {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  #grid-6-box7 {
    display: none;
  }
}

@media (max-width: 750px) {
  .game-board-6 {
    grid-template-rows: 190px 190px 190px;
  }

  .grid-6-box > a > img {
    height: 80%;
    width: 100%;
  }

  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 28px;
  }

  #grid-6-box1 > img {
    height: 80%;
    width: 100%;
  }

  .grid-6-box {
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .grid-6-box {
    font-size: 10px;
  }

  .game-board-6 {
    grid-template-rows: 180px 180px 180px;
  }

  .grid-6-box > a > img {
    height: 75%;
  }

  #grid-6-box1 > img {
    height: 75%;
  }
}

@media (max-width: 500px) {
  .grid-body-6 {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .game-board-6 {
    grid-template-rows: 90px 90px 90px 90px 90px 90px;
    grid-template-columns: 100%;
    row-gap: 15px;
  }

  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 22px;
  }

  .grid-6-box > a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  #grid-6-box1 > a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .grid-6-box > a > .txt {
    margin-left: 10px;
    padding-top: 10px;
    width: 60%;
  }

  .grid-6-box > a > img {
    height: 100%;
    width: 40%;
  }

  #grid-6-box1 > a > img {
    height: 100%;
    width: 40%;
  }

  #grid-6-box1 > p {
    padding-left: 10px;
    padding-top: 8px;
  }

  #grid-6-box1 {
    grid-column: 1/2;
    grid-row: 1/2;
    flex-direction: row;
  }

  #grid-6-box2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  #grid-6-box3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  #grid-6-box4 {
    grid-column: 1/2;
    grid-row: 4/5;
  }

  #grid-6-box5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }

  #grid-6-box6 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}

@media (max-width: 420px) {
  .game-board-6 {
    grid-template-rows: 90px 90px 90px 90px 90px 90px;
    grid-template-columns: 100%;
    row-gap: 15px;
  }

  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 20px;
  }

  .grid-6-box > a > img {
    height: 100%;
    width: 40%;
  }

  .grid-6-box > a > .txt {
    padding-top: 4px;
  }

  #grid-6-box1 > a > img {
    height: 100%;
    width: 40%;
  }

  #grid-6-box1 > a > .txt {
    padding-top: 4px;
  }
}

@media (max-width: 390px) {
  .grid-body-6 > .first-section > .heading > h2 {
    font-size: 18px;
  }

  .grid-6-box > a {
    flex-direction: column;
  }

  #grid-6-box1 > a {
    flex-direction: column;
  }

  .game-board-6 {
    grid-template-rows: 230px 230px 230px 230px 230px 230px;
    grid-template-columns: 100%;
    row-gap: 0px;
  }

  .grid-6-box > a > img {
    height: 75%;
    width: 100%;
  }

  .grid-6-box > a > .txt {
    margin-left: 0px;
    width: 100%;
  }

  #grid-6-box1 > a > img {
    height: 75%;
    width: 100%;
  }

  #grid-6-box1 > a > .txt {
    margin-left: 0px;
  }
}

/* End Grid-Body-6 */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* Start Blog Main Section */

.blog-main-section {
  margin: 120px auto 80px auto;
  width: 100%;
  max-width: 1500px;
  height: 570px;
  background-color: rgb(238, 238, 238);
  display: flex;
  z-index: 1;
}

.blog-left-section,
.blog-right-section {
  position: relative;
}

.blog-left-section {
  height: 96%;
  width: 64%;
  margin: 0.75% 0 1% 1%;
}

.blog-right-section {
  height: 96%;
  width: 35%;
  margin: 0.75% 1% 1% 1%;
  display: flex;
  flex-direction: column;
  row-gap: 2%;
}

.blog-left-section > a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-right-section > a {
  width: 100%;
  position: relative;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-left-section > a::before,
.blog-right-section > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(53, 53, 53, 0.197);
  border-radius: 10px;
  z-index: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.blog-left-section > a:hover::before,
.blog-right-section > a:hover::before {
  background-color: rgba(255, 255, 255, 0.058);
}

.blog-left-section > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease, object-position 0.3s ease;
}

.blog-right-section > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease, object-position 0.3s ease;
}

.blog-left-section > a:hover > img {
  opacity: 0.8;
  object-position: left center;
}

.blog-right-section > a:hover > img {
  opacity: 0.8;
  object-position: top;
}

.blog-left-section > a > p,
.blog-right-section > a > p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: 600;
  padding: 5px;
  border-radius: 5px;
  width: calc(100% - 20px);
  z-index: 2;
  transition: transform 0.3s ease;
}

.blog-left-section > a > p {
  font-size: 30px;
}

.blog-right-section > a > p {
  font-size: 18px;
}

.blog-left-section > a:hover > p {
  transform: translateY(-50px);
}

.blog-right-section > a:hover > p {
  transform: translateY(-25px);
}

@media (max-width: 1100px) {
  .blog-main-section {
    height: 520px;
  }

  .blog-left-section {
    width: 66%;
  }

  .blog-right-section {
    width: 33%;
  }
}

@media (max-width: 1024px) {
  .blog-main-section {
    margin-top: 130px;
  }
}

@media (max-width: 950px) {
  .blog-main-section {
    height: 490px;
  }

  .blog-left-section > a > p {
    font-size: 28px;
  }

  .blog-section-part > p {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .blog-main-section {
    height: 420px;
  }

  .blog-left-section {
    width: 68%;
  }

  .blog-right-section {
    width: 31%;
  }
}

@media (max-width: 768px) {
  .blog-main-section {
    margin-top: 130px;
  }
}

@media (max-width: 750px) {
  .blog-left-section > a > p {
    font-size: 26px;
  }

  .blog-section-part > p {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .blog-main-section {
    flex-direction: column;
    height: 1070px;
  }

  .blog-left-section {
    height: 30%;
    width: 94%;
    margin: 0.75% 3% 0 3%;
    position: relative;
  }

  .blog-right-section {
    height: 70%;
    width: 94%;
    margin: 0 3%;
    position: relative;
  }

  .blog-left-section > a > p {
    font-size: 24px;
  }

  .blog-section-part > p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .blog-main-section {
    height: 970px;
  }
}

@media (max-width: 420px) {
  .blog-main-section {
    height: 920px;
  }
}

@media (max-width: 390px) {
  .blog-main-section {
    height: 880px;
  }
}

@media (max-width: 360px) {
  .blog-main-section {
    height: 800px;
  }
}

/* End Blog Main Section */

/* 
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
*/

/* ///////////// => END OF THIS CSS FILE   <= ////////////////// */


.container_box > .abc > .content {
        height: auto !important;
    }

.grid-2-box > a > img {
    height: auto !important;
  }
.game-board-2
{
	row-gap: 2%;
}