.specification-section{
 width: 100%;
 background-color: #132257f2;
 ;
 padding: 4rem;
}
.inside-specification-section{
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
}
.specs-left {
 width: 40%;
}
.specs-left img {
 max-width: 100%;
 height: auto;
 background: #fff;
 border-radius: 25px;
}
.specs{
 list-style: none;
}
.specs-right {
 width: 50%;
 display: flex;
 flex-direction: column;
 padding: 2rem;
}
.specs li {
 padding: 1rem;
 border-bottom: 1px solid #f5f5dc;
 font-size: 16px;
 display: flex;
 justify-content: space-between;
}
.specs span {
 color: #f5f5dc;
 font-weight: 600;
 text-transform: capitalize;
}

.specs p {
 width: 50%;
 color: #ffffffbd;
}

.specs-container .specification-section:nth-child(even){
 flex-direction: row-reverse;
}
.specs-heading{
 font-size: 18px;
 color: #f5f5dc;
 font-weight: 600;
 text-transform: uppercase;
 margin-bottom: 20px;
}
table, th, td{
 border: 1px solid;
 border-collapse: collapse;
}
th, td{
 padding: 10px;
}
td{
 text-align: center;
 color: #fff;
}
th{
 color: #f5f5dc;
}
.torroid-section{
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 background-color: #132257f2;
 padding: 4rem;
}
.inside-torroid-section{
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 80%;
}
.torroid-image{
 width: 30%;
 background-color: #fff;
 border-radius: 20px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;

}
.torroid-image p{
 background-color: #f5f5dc;
 width: 100%;
 padding: 20px;
 text-align: center;
 color: black;
 border-radius: 0 0 20px 20px;
 transition: all 0.3s ease;
}
.torroid-image img{
 width: 100%;
 transition: transform 0.5s ease;

 height: auto;
}
.torroid-image:hover img{
 transform: scale(1.05);
}
.torroid-image:hover .torroid-p{
 color: #f5f5dc;
 background-color: black;
}
.table-container{
 background-color: #132257f2;
 padding: 4rem;
}
.specs-table {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
 .specs-left {
  width: 50%;
}
}
@media (max-width: 900px){
 .specification-section {
  padding: 2rem;
}
}
@media (max-width: 765px) {
 .inside-specification-section {
  flex-direction: column;
 }
.specs-right {
 width: 100%;
 }
}
@media (max-width: 600px){
 .specs-left {
  width: 65%;
}
}
@media (max-width: 500px) {
  th, td{
    font-size: 12px;
    padding: 5px;
  }
  
}
@media (max-width: 465px){
 .specs-right {
  padding: 1rem;
}
.specs li {
 padding: 0.5rem;
 flex-direction: column;
 row-gap: 10px;
 border-bottom: unset;
 border-left: 1px solid #f5f5dc;
 margin-bottom: 20px;
}
}
@media (max-width: 340px){
  th, td {
    font-size: 10px;
    padding: 5px;
}
}