@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@500;600;700&family=Nunito+Sans:wght@600;700&family=Open+Sans:wght@500;600;700&family=Poppins:wght@500;600;700&family=Raleway:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CEAT-DETAIL SECTION IS HERE  */

#ceat-detail {
  margin-top: 12rem;
}

#ceat-detail h1 {
  text-align: center;
  font-size: 26px;
  font-family: 'Open sans', sans-serif;
  color: #343434;
}

#ceat-detail ul {
  display: flex;
  width: 250px;
  position: relative;
  top: 42px;
  left: 10px;
  color: #fff;
}

#ceat-detail ul li {
  list-style: none;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  color: #fff;
  padding: 10px;
}

#ceat-detail ul i {
  margin-top: 12px;
}

#ceat-detail ul li a {
  text-decoration: none;
  color: #fff;
}

#ceat-detail ul li a:hover {
  color: rgb(255, 78, 78);
  transition: 0.3s ease-in;
}

#ceat-detail .ceat-main-bg img {
  width: 100%;
  height: auto;
  max-height: 70vh;
}

/* CEAT MAIN-BOX-1 IS HERE */

#ceat-detail #ceat-mainbox-1 {
  margin: 30px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ceat-mainbox-1 .ceat-logo-img img {
  height: 160px;
}

#ceat-mainbox-1 .ceat-about h2 {
  text-align: center;
  font-family: 'Arimo', sans-serif;
  color: #343434;
  font-size: 23px;
}

#ceat-mainbox-1 .ceat-about p {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  padding: 20px;
  color: #707070;
}

/* CEAT MAIN-BOX-2 IS HERE */

#ceat-mainbox-2 .tyre-box {
  display: flex;
  background-color: #fff;
  width: 70%;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

/*  LEFT-BOX */

.left-box {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.left-box h3 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
  color: rgb(48, 48, 48);
}

.left-box img {
  height: 250px;
}

/* RIGHT-BOX */

.right-box {
  flex-basis: 60%;
  background-color: #e3e3e3;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.right-box .tables {
  border-collapse: collapse;
}

.tables tbody tr td {
  border: 2px solid silver;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.35px;
  line-height: 35px;
  text-align: start;
  padding: 5px 15px;
}

.tables tbody tr td:hover {
  color: red;
  cursor: pointer;
}

/* ------------------- RESPONSIVE SECTION ------------------*/

@media (max-width: 1024px){

  #ceat-detail {
    margin-top: 15rem;
  }

  #ceat-detail h1{
    font-size: 24px;
  }

  #ceat-detail #ceat-mainbox-1{
    flex-direction: column;
    align-items: center;
  }

  #ceat-mainbox-1 .ceat-logo-img img {
    height: 60px;
  }

  #ceat-mainbox-1 .ceat-about p{
    font-size: 16px;
    padding: 5px;
  }

  #ceat-mainbox-2 .tyre-box{
    width: 95%;
  }
}

@media (max-width: 768px){

  #ceat-detail {
    margin-top: 11rem;
  }
  
  #ceat-detail h1{
    font-size: 22px;
  }

  #ceat-mainbox-1 .ceat-logo-img img {
    height: 50px;
    margin-bottom: 10px;
  }

  #ceat-mainbox-1 .ceat-about h2{
    margin-bottom: 10px;
  }

  #ceat-mainbox-2 .tyre-box{
    flex-direction: column;
    width: 80%;
  }

  .left-box, .right-box{
    flex-basis: auto;
    padding: 60px;
  }
  
  .left-box{
    padding: 20px;
  }

  .right-box{
    padding: 10px;
  }
}

@media (max-width: 475px){

  #ceat-detail {
    margin-top: 9rem;
  }
  
  #ceat-detail h1{
    font-size: 20px;
  } 

  #ceat-detail ul {
    flex-wrap: wrap;
    width: 200px;
    top: 30px;
  }

  #ceat-detail ul li {
    padding: 5px;
    font-size: 12px;
  }

  #ceat-detail ul i {
    margin-top: 5px;
  }

  #ceat-mainbox-1 .apollo-logo-img img{
    height: 35px;
  }

  #ceat-mainbox-1 .apollo-about h2{
    font-size: 18px;
    margin-bottom: 5px;
  }

  #ceat-mainbox-1 .apollo-about p{
    font-size: 15px;
  }

  #ceat-mainbox-2 .tyre-box{
    width: 95%;
  }

  .tables tbody tr td{
    font-size: 14px;
  }

  .left-box img {
    height: 220px;
  }
}

@media (max-width: 376px){
  .tables tbody tr td{
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
  }

  #ceat-mainbox-2 .tyre-box {
    width: 100%;
  }

  .left-box img {
    height: 200px;
  }

  #ceat-detail h1{
    font-size: 17px;
    padding: 5px;
  } 
}