:root {
  --color-txt: #003746;
  --color-bgbtn: #014aad;
  --color-bgbtn-b: #0489b3;
  --color-nav-bg: #ffffff;
  --color-accord-btn: rgb(244,244,244);
  --color-bth-hover: #006788;
  --color-bg: #ffffff;
  --color-success: #009200;
  --color-atent: #dda003;
  --color-error: #c20000;
  --slider-height: 400px;
  --table-head: #1584f8;
  --cell-odd: #f3f3f3;
  --cell-even: #ebebeb;
  --cell-border: #cecece;
  --footer-bg: #00132d;
  --footer-title: #53d0eb;
  --footer-copyr: #3a3a3a;
  --box-shadow: rgba(95,95,95,0.29);
  --color-placehold: #bab9b9;
  --color-border: #dedede;
  --color-shadow: #bababa;
  --card-bg: #f4f4f4;
  --card-brd: #eaeaea;
  --card-shadow: #e7e7e7;
  --product-bg: #f1fafe;
  --color-icon-theme: #2c5ad0;
  --gradient-blight: #1584f8;
  --gradient-bdark: #014aad;
  --plan-wrapper: #e4f0ff;
  --searchMark: #b5dffe;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400;
  color: var(--color-txt);
  background-color: var(--color-bg);
  direction: rtl;
}

.title {
  width: 100%;
  text-align: center;
  padding: 70px 0;
  font-size: 46px;
  font-weight: 400;
  color: inherit;
}

@media (min-width: 300px) {
  .title {
    font-size: 30px;
  }
}

@media (min-width: 576px) {
  .title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .title {
    font-size: 46px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
}

.subtitle {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.top-title{
  max-width: 100%;
  /* margin-top: 136px; */
  padding-right: 34px;
  text-align: right;
  /* font-size: 28px; */
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  color: var(--color-bgbtn);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.top-subtitle{
  max-width: 100%;
  /* padding-left: 34px; */
  margin-bottom: 10px;
  padding: 0px 34px 0 34px;
  text-align: right;
  font-size: 18px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.flex-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.flag-box{
  padding-right: 34px;
}
.flag-box a img{
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  margin-top: -10px;
  margin-bottom: 10px;
  border: 1px solid var(--color-bgbtn);
  border-radius: 50%;
  padding: 1px;
}
@media (min-width: 320px) {
  .top-subtitle{
    margin-bottom: 30px;
  }
}
@media (min-width: 576px) {
  .top-subtitle{
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) {
  .top-subtitle{
    margin-bottom: 10px;
  }
}
.bottom-s {
  margin-bottom: 40px;
}

.bordered {
  border: 1px solid var(--color-bgbtn);
  border-radius: 10px;
  padding: 10px;
}
.chat-txt{
  color: var(--color-bg);
}
.center-object{
  text-align: center!important;
}
.accordion-button{
  /* flex-direction: row-reverse; */
  text-align: right;
}
.accordion-button::after {
  flex-shrink: 1;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-right: auto;
  margin-left: 0;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}