@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* font-family: 'Roboto', sans-serif; */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}
#banner {
  width: 100%;
  height: auto;
  background-color: #000;
}
#banner .bannerInner {
  padding: 100px 0px;
}
#banner .bannerHead {
  text-align: center;
  font-size: 30px;
  letter-spacing: 1px;
  position: relative;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
#banner .bannerHead::before {
  position: absolute;
  content: "";
  left: 400px;
  width: 100px;
  height: 2px;
  top: 20px;
  background-color: #fff;
}
#banner .bannerHead::after {
  position: absolute;
  content: "";
  right: 400px;
  width: 100px;
  height: 2px;
  top: 20px;
  background-color: #fff;
}
#MainBlog {
  margin: 50px 0px;
}
#MainBlog .LeftSide {
  -webkit-box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
}
#MainBlog .customeMedia h5 {
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 800;
  padding: 0px 0px 5px 0px;
}
#MainBlog .BlogLinks {
  padding: 0px 0px;
}
#MainBlog .BlogLinks ul li {
  list-style: none;
  display: inline;
  padding-right: 20px;
}
#MainBlog .BlogLinks ul li a {
  text-decoration: none;
}
#MainBlog .customeMedia {
  padding: 10px;
  border-bottom: 20px solid #80808033;
}
#MainBlog .customeMedia:last-child {
  border-bottom: none;
}
#MainBlog .customeMedia .blogImg {
  width: 250px;
  height: 250px;
  padding: 0px 10px;
}
#MainBlog .ContentText img {
  float: right;
  width: 200px;
  height: 200px;
  padding: 5px;
  border: solid 1px #80808033;
}
#MainBlog .head {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
}
/* Button */
#MainBlog .customeMedia .button {
  border-radius: 2px;
  background-color: #f4511e;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  padding: 6px 15px;
  width: 180px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 20px 0px;
}

#MainBlog .customeMedia .button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#MainBlog .customeMedia .button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#MainBlog .customeMedia .button:hover span {
  padding-right: 25px;
}

#MainBlog .button:hover span:after {
  opacity: 1;
  right: 0;
}
#MainBlog .RightSide {
  -webkit-box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 24px -14px rgba(0, 0, 0, 0.75);
}
#MainBlog .myMedia {
  border-bottom: solid 1px #80808033;
  margin-bottom: 10px;
}
#MainBlog .myMedia:last-child {
  border-bottom: none;
}
#MainBlog .myMedia img {
  width: 50px;
  height: 50px;
}
#MainBlog .BlogCategories,
#MainBlog .RecentPost {
  padding: 10px;
}
#MainBlog .PostHeading h2 {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  position: relative;
  letter-spacing: 0.5px;
  padding: 10px 0px;
  text-transform: uppercase;
}
#MainBlog .PostHeading h2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #80808033;
  bottom: 0px;
}
#MainBlog .PostHeading h2::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: red;
  bottom: 0.5px;
  left: 0px;
}
#MainBlog .myMedia p a {
  text-decoration: none;
}
#MainBlog .QuickLinks ul li {
  list-style: none;
  padding: 3px 0px 8px 0px;
  border-bottom: solid 1px #80808033;
  margin: 3px 0px;
}
#MainBlog .QuickLinks ul li a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #000;
}
#MainBlog .QuickLinks ul li a:hover {
  color: red;
}
#MainBlog .QuickLinks ul li a span {
  margin-right: 20px;
}
/* ------------------Mobile View-------------- */
@media only screen and (max-width: 600px) {
  #banner .bannerHead::before {
    position: absolute;
    content: "";
    left: 0px;
    width: 100px;
    height: 2px;
    top: 20px;
    background-color: #fff;
  }
  #banner .bannerHead::after {
    position: absolute;
    content: "";
    right: 0px;
    width: 100px;
    height: 2px;
    top: 20px;
    background-color: #fff;
  }
  #MainBlog .customeMedia img,
  #MainBlog .customeMedia .blogImg {
    width: 100%;
    height: auto;
    padding: 0px 10px;
    margin-bottom: 10px;
  }

  #MainBlog .customeMedia h5 {
    font-size: 18px;
  }
}
