@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Poppins;
    background-color: white;
    border: 10px solid #832122;
    overflow-x: hidden;
  }

  .titleup {
    display: flex;
    justify-content: space-between;
  }

  .loginbtn {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 15px;
    color: black;
    border: 5px solid #832122;
    background-color: #fff;
    cursor: pointer;
  }
  
  .loginbtn:hover {
    background-color: rgba(131, 33, 34, 0.5);
  }
  
  /* Topnav CSS Decoration */
  .navbar {
    overflow: hidden;
    margin-top: 15px;
    cursor: pointer;
  }
  
  .navbar a {
    float: left;
    font-size: 14px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Poppins;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 14px;
    font-family: Poppins;  
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(131, 33, 34, 0.5);
    border-radius: 12px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: rgba(131, 33, 34, 0.5);
    border-radius: 0px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


  /* Carousel */
  .container{
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* overflow-x: hidden; */
}

.imgContainer{
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.slide_div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px 0 30px;
}

img{
    position: relative;
    height: 300px;
    width: 300px;
    transition: 0.7s;
    border-radius: 20px;
}

.button{
    position: absolute;
    width: 300px;
    height: 300px;
    transition: 0.7s;
    /* background-color: rgba(209, 93, 93, 0.1); */
    border-radius: 20px;
}

.button:hover{
    background-color: rgba(83, 78, 78, 0.4);
}

#slider1:target ~ .imgContainer #img1,
#slider1:target ~ .imgContainer #button1{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider2:target ~ .imgContainer #img2,
#slider2:target ~ .imgContainer #button2{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider3:target ~ .imgContainer #img3,
#slider3:target ~ .imgContainer #button3{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider4:target ~ .imgContainer #img4,
#slider4:target ~ .imgContainer #button4{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider5:target ~ .imgContainer #img5,
#slider5:target ~ .imgContainer #button5{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider6:target ~ .imgContainer #img6,
#slider6:target ~ .imgContainer #button6{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}

#slider7:target ~ .imgContainer #img7,
#slider7:target ~ .imgContainer #button7{
    width: 300px;
    height: 300px;
    background-color: transparent;
    filter: saturate(100%);
}


#slider1:target ~ .imgContainer{
    left: 60%;
}
#slider2:target ~ .imgContainer{
    left: 40%;
}
#slider3:target ~ .imgContainer{
    left: 20%;
}
#slider4:target ~ .imgContainer{
    left: 0%;
}
#slider5:target ~ .imgContainer{
    left: -20%;
}
#slider6:target ~ .imgContainer{
    left: -40%;
}
#slider7:target ~ .imgContainer{
    left: -60%;
}

a {
  font-family: Poppins;
  font-size: 15px;
  color: black;
  text-align: center;
  text-decoration: none;
  padding-top: 10px;
  font-weight: bolder;
}

.carosel {
  overflow-x: hidden;
  width: 100%;
  height: 500px;
  display: block;
  background-color: white;
}

.bgfooter {
  height: 200px;
  background-color: #1F2226;
  display: block;
}

.icon-bar {
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

.icon-bar a {
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.instagram {
  background: #b655ef;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.content {
  margin-left: 75px;
  font-size: 30px;
}

/* Card Section */
.column {
  display: block;
  width: 100%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding */
.row {
  margin: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, #5aa838, #82d060);
}

.card1 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, #4e8da8, #80d2f6);
}

.card2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, #996d60, #ba8c7f);
}

.card3 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, #dc7464, #ff9484);
}

.card4 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to right, #76181c, #b22025);
}

.btnmore {
  background-color: #2d6316;
  color: white;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 100px;
  font-family: Poppins;
  margin-bottom: 10px;
}

.btnmore1 {
  background-color: #29627a;
  color: white;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 100px;
  font-family: Poppins;
  margin-bottom: 10px;
}

.btnmore2 {
  background-color: #7f5548;
  color: white;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 100px;
  font-family: Poppins;
  margin-bottom: 10px;
}

.btnmore3 {
  background-color: #b95f51;
  color: white;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 100px;
  font-family: Poppins;
  margin-bottom: 10px;
}

.btnmore4 {
  background-color: #5e1618;
  color: white;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 100px;
  font-family: Poppins;
  margin-bottom: 10px;
}

.readmore {
  /* background-color: red; */
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #2d6316;
}

.readmorea {
  /* background-color: red; */
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #29627a;
}

.readmoreb {
  /* background-color: red; */
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #7f5548;
}

.readmorec {
  /* background-color: red; */
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #b95f51;
}

.readmored {
  /* background-color: red; */
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  border: 2px solid #5e1618;
}

.readmore2 {
  /* background-color: #007bb5; */
  height: 100%;
  width: 50%;
  border-radius: 12px;
}

.readtitle {
  color: white;
}

