@font-face {
  font-family: DanaRegular;
  src: url("../../assets/fonts/eot/dana-regular.eot");
  /* IE9 Compat Modes */
  src: url("../../assets/fonts/eot/dana-regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/woff/dana-regular.woff") format("woff"), url("../../assets/fonts/ttf/Dana-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  src: url("../../assets/fonts/eot/dana-fanum-regular.eot");
  src: url("../../assets/fonts/eot/dana-fanum-regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/woff/dana-fanum-regular.woff") format("woff"), url("../../assets/fonts/ttf/Dana-Num.ttf") format("truetype");
}

@font-face {
  font-family: DanaBold;
  src: url("../../assets/fonts/eot/dana-bold.eot");
  src: url("../../assets/fonts/eot/dana-bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/woff/dana-bold.woff") format("woff"), url("../../assets/fonts/ttf/Dana-Bold.ttf") format("truetype");
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #f5f6fa;
  direction: rtl;
  font-family: 'DanaRegular', sans-serif;
}

.title-xl {
  color: #012f6a;
  font-size: 28px;
  font-weight: 900;
  font-family: 'DanaBold', sans-serif;
}

.title-lg {
  color: #012f6a;
  font-size: 24px;
  font-weight: 900;
  font-family: 'DanaBold', sans-serif;
}

.title-md {
  color: #012f6a;
  font-size: 18px;
  font-weight: 900;
  font-family: 'DanaBold', sans-serif;
}

.mini-text {
  font-size: 14px;
  color: #888;
  font-weight: 900;
}

.inactive {
  opacity: 0.5;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 55px;
  color: #f5f6fa;
  background-color: #00b6cc;
  border-radius: 10px;
}

.btn:hover .arrow {
  transform: translate(0);
}

.arrow {
  width: 20px;
  height: 20px;
  color: #00b6cc;
  transform: translate(-10px);
  transition: all 0.3s;
  margin-right: 10px;
}

.backgroundImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sliderBtn {
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-color: transparent;
}

.sliderBtn img {
  width: 20px;
  height: 20px;
}

.highlight {
  text-align: center;
}

.highlight p {
  font-size: 14px;
  color: #888;
}

.highlight h2 {
  font-size: 30px;
  font-weight: 900;
  color: #012f6a;
  font-family: 'DanaBold';
}

.highlight h2 span {
  border-bottom: 10px solid #ffd25d;
}

.navbar {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  background: rgba(245, 246, 250, 0.9);
}

.navbar .navContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-weight: 800;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer {
    flex-wrap: wrap;
  }
}

.navbar .navContainer .hamburgerMenu {
  cursor: pointer;
  display: none;
  margin-right: 10px;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .hamburgerMenu {
    display: block;
  }
}

.navbar .navContainer .hamburgerMenu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background-color: #000;
  transition: all 0.3s linear;
}

.navbar .navContainer .hamburgerMenu.isActive span:nth-child(2) {
  opacity: 0;
}

.navbar .navContainer .hamburgerMenu.isActive span:nth-child(1) {
  transform: translateY(8.1px) rotate(45deg);
}

.navbar .navContainer .hamburgerMenu.isActive span:nth-child(3) {
  transform: translateY(-8.1px) rotate(-45deg);
}

.navbar .navContainer .navBrand {
  width: 140px;
  height: 100%;
  transition: all 0.3s;
  margin-left: 10px;
}

.navbar .navContainer .navBrand:hover {
  opacity: 0.5;
}

.navbar .navContainer .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .wrapper {
    flex-direction: column;
    overflow-y: auto;
    max-height: 0;
    height: auto;
    transition: all .6s ease-in-out;
    opacity: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .navbar .navContainer .wrapper::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .navbar .navContainer .wrapper.navShower {
    max-height: 100vh;
    opacity: 1;
    transition-delay: 0;
  }
}

.navbar .navContainer .wrapper .navList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-self: center;
  margin-right: auto;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .wrapper .navList {
    flex-direction: column;
    margin-right: 0;
    width: 100%;
  }
}

.navbar .navContainer .wrapper .navList .navItem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-right: 0;
  text-align: center;
  line-height: 45px;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .wrapper .navList .navItem {
    border-bottom: 1px solid #ccc;
    text-align: right;
  }
}

.navbar .navContainer .wrapper .navList .navItem a {
  width: 100px;
  height: 45px;
  display: block;
  color: #888888;
  transition: all 0.3s;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .wrapper .navList .navItem a {
    width: 100%;
  }
}

.navbar .navContainer .wrapper .navList .navItem a:hover {
  color: #000;
}

.navbar .navContainer .wrapper .navList .navItem .activeNavItem {
  color: #012f6a;
}

.navbar .navContainer .wrapper .accountStatus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-right: auto;
  margin-left: 10px;
}

@media only screen and (max-width: 992px) {
  .navbar .navContainer .wrapper .accountStatus {
    margin: 1rem 0 0 0;
    width: 100%;
    justify-content: start;
  }
}

.navbar .navContainer .wrapper .accountStatus a {
  width: 120px;
  height: 45px;
  border-radius: 8px;
  color: #012f6a;
  text-align: center;
  overflow: hidden;
  line-height: 45px;
}

.navbar .navContainer .wrapper .accountStatus a:nth-child(1) {
  width: auto;
  height: auto;
}

.navbar .navContainer .wrapper .accountStatus a:nth-child(2) {
  background-color: #00b6cc;
  color: #f5f6fa;
}

.footer {
  width: 100%;
  background: #e6e5ea;
  position: relative;
  z-index: 1;
  overflow: hidden;
  clear: both;
}

.footer .footerContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: initial;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 auto;
  max-width: 1200px;
}

.footer .footerContainer img {
  transition: all 0.3s;
}

.footer .footerContainer img:hover {
  opacity: 0.6;
}

.footer .footerContainer .footerRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 24px;
  flex-wrap: nowrap;
}

@media screen and (max-width: 576px) {
  .footer .footerContainer .footerRow {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .footer .footerContainer .footerRow {
    flex-flow: wrap;
    margin: 0 auto;
  }
}

.footer .footerContainer .footerRow .footerContact {
  font-weight: 900;
  flex-basis: 40%;
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .footer .footerContainer .footerRow .footerContact {
    margin: 2rem auto;
    text-align: center;
    flex: 1 0 50%;
  }
}

.footer .footerContainer .footerRow .footerContact a {
  color: #1453a5;
}

.footer .footerContainer .footerRow .footerContact a img {
  width: 125px;
  height: auto;
}

.footer .footerContainer .footerRow .footerContact div {
  padding: 24px 12px;
}

.footer .footerContainer .footerList {
  margin: 24px 0;
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .footer .footerContainer .footerList {
    flex: 1 0 50%;
    text-align: center;
  }
}

.footer .footerContainer .footerList h2 {
  color: #1453a5;
}

.footer .footerContainer .footerList ul {
  list-style: none;
  margin-top: 24px;
}

.footer .footerContainer .footerList ul li {
  line-height: 2.5rem;
}

.footer .footerContainer .footerList ul a {
  color: #888888;
  transition: all 0.3s;
}

.footer .footerContainer .footerList ul a:hover {
  color: #000;
}

.footer .socialAndCopyRight {
  margin: 2rem 24px;
}

.footer .socialAndCopyRight div:nth-child(1) {
  margin-bottom: 16px;
}

.footer .socialAndCopyRight div:nth-child(1) img {
  width: 32px;
  height: 32px;
}

.footer .socialAndCopyRight div:nth-child(2) p:nth-child(1) {
  color: #888888;
}

.footer .socialAndCopyRight div:nth-child(2) p:nth-child(2) {
  color: #c5c5c5;
}

.mainSection .container {
  max-width: 992px;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .mainSection .container {
    padding: 0 2rem;
  }
}

.mainSection .container .section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec1 {
    flex-direction: column-reverse;
  }
}

.mainSection .container #sec1 .backgroundImg {
  background-image: url("../../assets/img/png/work.png");
  flex: 1 1 auto;
  width: 100%;
  height: 30rem;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec1 .backgroundImg {
    width: 100%;
    height: 300px;
  }
}

.mainSection .container #sec1 #innerSec1 {
  flex: 1 1 auto;
}

.mainSection .container #sec1 #innerSec1 .slider p:nth-child(1) {
  color: #012f6a;
}

.mainSection .container #sec1 #innerSec1 .slider p:nth-child(3) {
  width: 80%;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec1 #innerSec1 .slider p:nth-child(3) {
    width: 100%;
  }
}

.mainSection .container #sec1 #innerSec1 .slider h2 {
  margin: 20px 0;
}

.mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: start;
  margin: 3rem 0;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) a {
  font-weight: 600;
}

.mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) a:nth-child(1) {
  background-color: #00b6cc;
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
}

.mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) a:nth-child(2) {
  color: #00b6cc;
  text-decoration: underline;
  margin-right: 24px;
  text-underline-offset: 6px;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) a:nth-child(2) {
    margin-right: 0;
    margin-top: 24px;
  }
}

.mainSection .container #sec1 #innerSec1 .slider div:nth-child(4) a:nth-child(2):hover {
  text-decoration: none;
}

.mainSection .container #sec2 #innerSec2 .intro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec2 #innerSec2 .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.mainSection .container #sec2 #innerSec2 .intro .introImg {
  width: 400px;
  height: 400px;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec2 #innerSec2 .intro .introImg {
    width: 200px;
    height: 200px;
  }
}

.mainSection .container #sec2 #innerSec2 .intro div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec2 #innerSec2 .intro div {
    width: 100%;
  }
}

.mainSection .container #sec2 #innerSec2 .intro div:nth-child(2) {
  flex: 1 1 auto;
}

.mainSection .container #sec2 #innerSec2 .intro div:nth-child(2) p {
  width: 80%;
  margin: 40px 0;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec2 #innerSec2 .intro div:nth-child(2) p {
    width: 100%;
  }
}

.mainSection .container #sec2 #innerSec2 .intro:nth-child(odd) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec2 #innerSec2 .intro:nth-child(odd) {
    flex-direction: column;
    align-items: center;
  }
}

.mainSection .container #sec3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainSection .container #sec3 div:nth-child(1) {
  margin-bottom: 3rem;
}

.mainSection .container #sec3 .cardContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: initial;
  flex-wrap: nowrap;
  flex-flow: wrap;
  margin-top: 2rem;
  gap: 10px;
}

.mainSection .container #sec3 .cardContainer .card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 20px;
  padding: 4px 24px;
  height: 100%;
  width: 300px;
  text-align: center;
  transition: all 0.3s;
}

@media screen and (max-width: 690px) {
  .mainSection .container #sec3 .cardContainer .card {
    width: 100%;
  }
}

.mainSection .container #sec3 .cardContainer .card:hover {
  background-color: #fff;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.mainSection .container #sec3 .cardContainer .card .innerCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainSection .container #sec3 .cardContainer .card .innerCard .backgroundImg {
  width: 100px;
  height: 100px;
  margin: 1rem 0;
}

.mainSection .container #sec3 .cardContainer .card .innerCard p {
  margin: 20px 0;
}

.mainSection .container #sec3 .cardContainer .card .innerCard .btn {
  background-color: transparent;
  color: #00b6cc;
  width: 100%;
}

.mainSection .container #sec4 #innerSec4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(222, 226, 226, 0.4);
  padding: 2rem;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .mainSection .container #sec4 #innerSec4 {
    flex-direction: column;
  }
}

.mainSection .container #sec4 #innerSec4 img {
  width: 50%;
  height: 50%;
  margin-left: 50px;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec4 #innerSec4 img {
    width: 100%;
    margin-bottom: 24px;
  }
}

.mainSection .container #sec4 #innerSec4 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
}

.mainSection .container #sec4 #innerSec4 div .highlight {
  padding: 0;
}

.mainSection .container #sec4 #innerSec4 div p:nth-child(1) {
  margin: 8px 0;
  font-weight: 900;
}

.mainSection .container #sec4 #innerSec4 div p:nth-child(2) {
  margin: 30px 0;
  color: #012f6a;
  font-weight: 900;
}

@media screen and (max-width: 576px) {
  .mainSection .container #sec4 #innerSec4 div h2 {
    font-size: 22px;
  }
}

.mainSection .container #sec4 #innerSec4 div .btn {
  width: 120px;
  background-color: transparent;
  color: #00b6cc;
  border: 2px solid #00b6cc;
  transition: all 0.3s;
}

.mainSection .container #sec4 #innerSec4 div .btn:hover {
  background-color: #00b6cc;
  color: #fff;
}
/*# sourceMappingURL=main.css.map */