*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.allmaincont{
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.allMainCont .content{
    display: grid;
    grid-template-columns: max-content 1fr;
    width: 1020px;
    max-width:100vw;
    padding:0px 20px;
    margin:0px auto;
    grid-column-gap: 20px;


}
.rsptCenter{
    background-color: #0d3466;
    width:0px;
    opacity: 0;
    height:80%; 
    top:50%;   
    transform:translateY(-50%);
    position:relative;
    display:flex;

    
}
.allMainCont .left-side{
    width: 100%;
    /* margin-top: 15px; */
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: max-content;
    height: max-content;

}
.allMainCont .left-side .details{
  margin: 10px;
  text-align: center;

}
.allMainCont .left-side .details i{
  font-size: 25px;
  color: #0d3466;
  margin-bottom: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.allMainCont .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.allMainCont .left-side .details .text-one,
.allMainCont .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.allmaincont .allMainCont .right-side{
  width: 75%;
  margin-left: 75px;
}
.allMainCont .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  font-weight: bold;
    font-size: 40px;
    font-family: sans-serif;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #c2c2c2;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  padding: 0 15px;
  resize: none;
  font-family: Arial, Helvetica, sans-serif;
  transition:all .2s ease-in-out;
  
}
.right-side .message-box{
  min-height: 150px;
}
.right-side .input-box textarea{
  padding-top: 14px;

}
.right-side .button{
  display: inline-block;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 13px 25px;
  background: #0d3466;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.button input[type="button"]:hover{
  background: #5029bc;
}
.content-image{
    position:relative;
}
.content-image iframe{
    position:absolute;
    width:100%;
    height:100%;

}





#amcHeader{
    width:1000px;
    margin:0px auto;

} 
#amcHeader div{
    font-weight: bold;
    font-size:23px;
    color:#0d3466;
}
#amcHeader{
    text-align: center;
    width:700px;
    margin-bottom:30px;


}

.details{
    display:flex;
    flex-direction: row;
    gap:10px;

}
.details > div{
    text-align: left;

}


















#ifrmMapDiv{
  position:relative;
  height:300px;
  margin-top:50px;
  background-color: rgb(234, 234, 234);
  display:flex;
  justify-content: center;
  align-items: center;

}
#ifrmMapDiv::before{
  content:'';
  aspect-ratio: 1 / 1;
  height:60px; 
  position:absolute;
  
  border-radius: 50%;
  border-top:10px solid white;
  border-right:10px solid transparent;
  border-bottom:10px solid white;
  border-left:10px solid transparent;
  animation:swipper 1s infinite;

}
@keyframes swipper {
  0%{
    rotate:0deg;
  }
  50%{
    rotate:180deg;
  }
  100%{
    rotate:360deg;
  }
}
#ifrmMapDiv iframe{
    position:absolute;
    height:100%;
    width:100%;

}

body:has(#data-lang[data-lang="ar"]) .right-side,
body:has(#data-lang[data-lang="ar"]) .right-side input,
body:has(#data-lang[data-lang="ar"]) .right-side textarea
{
  text-align: right;
}




@media (max-width: 950px) {
  .allmaincont{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .allmaincont .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .allmaincont{
    margin: 40px 0;
    height: 100%;
  }
  .allmaincont .content{
    flex-direction: column-reverse;
  }
 .allmaincont .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .allmaincont .content .left-side::before{
   display: none;
 }
 .allmaincont .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}


@media (max-width:425px){
  
  .allMainCont .content{
    display: flex;
    flex-direction: column-reverse;
  }
  .right-side{
    /* order:1; */
  }
  #emdetSpan{
    margin-left: 0px;
  }
  .topic-text{
    font-size: 30px;
  }

}