about-us-container {
  display: block;
  width: 100%;
  margin-top: 45px;
  direction: rtl;
}

.aboutUsContent {
  margin-top: 30px;
  border-radius: 20px;
  padding: 25px;
  background: var(--white);
  line-height: 30px;
}

connect-with-us {
  display: block;
  direction: rtl;
  width: 100%;
  margin-top: 50px;
}

.connectWithUsContainer {
  margin-top: 30px;
  width: 100%;
  height: max-content;
  gap: 55px;
}

.connectWays {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 15px;
}

.connectFormContainer {
  width: 100%;
}

.connectInformations {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(165px, 1fr));
  gap: 15px;
}

.connectInfo img {
  width: 40px;
  height: 40px;
}

.connectInfoDesc {
  width: 100%;
  display: flex;
  row-gap: 5px;
  column-gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.connectInfo {
  height: max-content;
}

.connectMap {
  border-radius: 20px;
  width: 100%;
  height: 280px;
  margin-top: 15px;
}

.connectMap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.aboutUsSectionTitle {
  margin-bottom: 36px;
  font-size: 16pt;
  font-family: "PeydaBold";
}

/* custom dropdown */

.wrapper-dropdown {
  position: relative;
  line-height: 45px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 65px;
  padding: 0 15px;
  border-radius: 15px;
  background: var(--white);

  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wrapper-dropdown::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;

  margin-top: -2px;
  width: 0;
  height: 0;

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #a0a0a0 transparent;
}

.wrapper-dropdown.active::before {
  border-width: 0 6px 6px 6px;
}

.wrapper-dropdown .dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  left: 0;

  margin: 0;
  padding: 0;

  list-style: none;

  border-radius: inherit;
  background: #e3e3e3;

  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  transition: 0.5s ease;

  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);

  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  opacity: 0;
  visibility: hidden;
}

.wrapper-dropdown .dropdown li {
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;

  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  transition: 0.5s ease;
}

.wrapper-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.wrapper-dropdown .dropdown li:hover {
  background: rgba(197, 239, 247, 0.55);
}

.wrapper-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;

  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* ارتباط با کارشناسان بیمه */

input-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  height: max-content;
  row-gap: 30px;
  column-gap: 20px;
}

input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input-box label {
  font-family: "PeydaBold";
}

input-box input {
  border: none;
  background: var(--white);
  border-radius: 15px;
  height: 65px;
  padding: 0 15px;
  font-size: 12pt;
}

input-box input:focus {
  outline: none;
}

.selectContainer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.messageContainer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.messageContainer label {
  font-family: "PeydaBold";
}

.messageContainer textarea {
  border: none;
  background: var(--white);
  border-radius: 15px;
  padding: 15px;
  font-size: 12pt;
  width: 100% !important;
  min-height: 150px !important;
}

.messageContainer textarea:focus {
  outline: none;
}

.connectForm {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sendMesssageBtn {
  width: 215px;
  height: 65px;
  margin-top: 30px;
  border-radius: 15px;
  border: none;
  background: var(--darkBlue);
  color: white;
  font-size: 13pt;
  cursor: pointer;
}