body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

@media only screen and (min-width: 300px) and (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }
}

.restBody {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
  padding-top: 100px;
}

@media (max-width: 500px) {
  .restBody {
    padding-top: 80px;
  }
}

.flexColContainer2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.3vw;
  text-align: justify;
  color: rgb(80, 80, 80);
}

.flexColContainer2 img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.sectionTitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 3.5vw;
  padding: 20px 10px 50px 30px;
  text-align: center;
  color: rgb(100, 100, 100);
}

.sectionDesc {
  width: 90%;
  margin-left: 5%;
  text-align: justify;
  font-size: 1.2vw;
  font-family: "Roboto";
  color: rgba(80, 80, 80, 1);
  font-weight: 300;
  margin-bottom: 50px;
}

@media (max-width: 500px) {
  .sectionTitle {
    font-size: 6vw;
    padding-bottom: 25px;
    top: 10px;
  }

  .sectionDesc {
    width: 90%;
    margin-left: 5%;
    text-align: justify;
    font-size: 4vw;
    padding: 10px 0px;
  }
}

.topBannerContainer {
  margin: 0;
  z-index: -1;
  width: 100%;
  height: 400px;
  top: 0px;
}

.topBannerContainer img {
  width: 100vw;
  height: 400px;
  top: 0px;
  object-fit: cover;
}

@media (width: 600px) {
  .topBannerContainer {
    margin: 0;
    z-index: -1;
    height: 260px;
    top: 60px;
  }

  .topBannerContainer img {
    width: 100vw;
    max-height: 260px;
    top: 0px;
    object-fit: cover;
    object-position: center;
  }
}

.desktopOnly {
  display: block;
}

.mobileOnly {
  display: none;
}

@media (max-width: 500px) {
  .desktopOnly {
    display: none;
  }

  .mobileOnly {
    display: block;
  }
}

.overScreenContainer {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* viewport width */
  height: 100vh; /* viewport height */
  overflow-y: scroll;
  overflow-x: hidden;
  display: none;
  background-color: white;
}

.closeButton {
  color: red;
  font-family: "Arial";
  font-size: 2vw;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.enq_button {
  border: 2px solid rgb(222, 38, 38);
  color: rgb(222, 38, 38);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 15px 33px;
  display: inline-block;
  width: 200px;
  margin-top: 50px;
  margin-left: 40%;
  margin-bottom: 30px;
}

.enq_button:hover {
  background-color: rgb(222, 38, 38);
  color: white;
  border: 2px solid rgb(222, 38, 38);
}

@media only screen and (min-width: 300px) and (max-width: 680px) {
  .enq_button {
    margin-left: 25%;
  }
}

.logoContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100vh;
  background-color: rgb(246, 246, 246);
}

.logoContainer img {
  width: 70%;
  height: auto;
}

/* news section */

.newsParentScroller {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  left: 0;
  margin: 0px 0px 50px 0px;
}

.newsItem {
  width: 28%;
  cursor: pointer;
  margin: 20px;
}

.newsItem a {
  text-decoration: none;
  color: rgb(80, 80, 80);
}

.newsImg {
  width: 100%;
  height: auto;
}

.newsImg img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.newsDate {
  margin-top: 5px;
  font-size: 0.9vw;
  letter-spacing: 3px;
}

.newsTitle {
  /* font-family: "Ubuntu", sans-serif; */
  font-size: 1.5vw;
  font-weight: 600;
  border-bottom: 1px dotted rgb(150, 150, 150);
  padding-bottom: 5px;
  margin-top: 5px;
  color: rgb(50, 50, 50);
}

.newsDesc {
  margin-top: 5px;
  font-size: 1vw;
  text-align: justify;
  line-height: 1.7;
}

.readMoreButton {
  background-color: white;
  border: 1px solid rgb(238, 22, 22);

  color: rgb(238, 22, 22);
  border-radius: 5px;
  font-size: 1vw;
  padding: 5px 8px;
  cursor: pointer;
  margin-top: 20px;
}

.readMoreButton:hover {
  background-color: rgb(238, 22, 22);
  border: 1px solid rgb(238, 22, 22);
  color: white;
}

@media (max-width: 500px) {
  .newsParentScroller {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    left: 0;
    margin: 0px 0px 0px 0px;
  }

  .newsItem {
    margin-top: 30px;
    width: 100%;
    height: auto;
    cursor: pointer;
    margin: 30px 0;
  }

  .newsDate {
    margin-top: 5px;
    font-size: 2.9vw;
    letter-spacing: 3px;
    padding: 15px 0 0 15px;
  }

  .newsTitle {
    /* font-family: "Ubuntu", sans-serif; */
    font-size: 3.8vw;
    font-weight: 600;
    border-bottom: 1px dotted rgb(150, 150, 150);
    padding: 5px 15px 10px 15px;
    margin-top: 1px;
    color: rgb(50, 50, 50);
  }

  .newsDesc {
    margin-top: 5px;
    font-size: 3.2vw;
    text-align: justify;
    padding: 15px;
  }

  .readMoreButton {
    background-color: white;
    border: 1px solid rgb(238, 22, 22);

    color: rgb(238, 22, 22);
    border-radius: 5px;
    font-size: 3vw;
    padding: 5px 8px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 50px;
  }

  .readMoreButton:hover {
    background-color: rgb(238, 22, 22);
    border: 1px solid rgb(238, 22, 22);
    color: white;
  }
}

.newsA a {
  color: #ffffff;
  text-decoration: none;
}
