/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";
@font-face {
  font-family: "Pelak";
  font-weight: 100;
  src: local("Pelak"), url("../fonts/Pelak-Light.woff") format("woff");
}
@font-face {
  font-family: "Pelak";
  font-weight: 300;
  src: local("Pelak"), url("../fonts/Pelak-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pelak";
  font-weight: 400;
  src: local("Pelak"), url("../fonts/Pelak-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pelak";
  font-weight: 500;
  src: local("Pelak"), url("../fonts/Pelak-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pelak";
  font-weight: 700;
  src: local("Pelak"), url("../fonts/Pelak-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pelak";
  font-weight: 900;
  src: local("Pelak"), url("../fonts/Pelak-Black.woff") format("woff");
}
b,
strong {
  font-weight: 500 !important;
}
:focus {
  outline: 0 !important;
}
::selection {
  background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}
a {
  color: rgb(0, 29, 89);
  text-decoration: none !important;
}
a:hover {
  color: rgb(228, 171, 41);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Pelak", Helvetica, Geneva, VerPelak, sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
html {
  background: rgb(0, 29, 89);
}
html,
body {
  min-height: 100%;
  min-height: 100vh;
}
body {
  font-family: "Pelak", Helvetica, Geneva, VerPelak, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  direction: rtl;
  background: rgb(255, 255, 255) url(../img/bg.png) no-repeat center center
    fixed;
  background-size: cover;
  color: rgb(0, 0, 0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}
.overlay-link {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.body-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 29, 89, 0.8);
  backdrop-filter: blur(2px);
  z-index: 100;
  cursor: pointer;
}
.body-overflow {
  overflow: hidden;
}
.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}
.btn,
label,
th,
.control-label {
  font-family: "Pelak", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
b,
strong {
  font-weight: 500;
}
a > i:only-child,
button > i:only-child {
  line-height: inherit;
}
ol {
  list-style-type: persian;
}
html[lang="ar"] ol {
  list-style-type: arabic-indic;
}
.row.v-gutters {
  margin-top: -15px;
  margin-bottom: -15px;
}
.row.v-gutters > div {
  padding: 15px;
}
.sm-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.sm-gutters > .col,
.sm-gutters > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.row.sm-gutters.v-gutters {
  margin-top: -5px;
  margin-bottom: -5px;
}
.row.sm-gutters.v-gutters > div {
  padding: 5px;
}
.lg-gutters {
  margin-left: -30px;
  margin-right: -30px;
}
.lg-gutters > .col,
.lg-gutters > [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}
.row.lg-gutters.v-gutters {
  margin-top: -30px;
  margin-bottom: -30px;
}
.row.lg-gutters.v-gutters > div {
  padding: 30px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}
.modal-dialog {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.pagination {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination > li {
  padding: 0 6px;
}
.pagination > li > a,
.pagination > li > .current {
  min-width: 40px;
  height: 40px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  padding: 0 10px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination > li > a:hover {
  background: rgb(0, 29, 89);
  color: rgb(255, 255, 255);
}
.pagination > li > .current {
  background: rgb(0, 29, 89);
  color: rgb(255, 255, 255);
}
/*Custom*/
.container-fluid {
  max-width: 85.8338794vw;
}
.section {
  position: relative;
  z-index: 2;
}
.section-wrapper {
  padding: 60px 0;
  width: 100%;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: rgb(0, 29, 89);
  line-height: 1;
  margin: 0;
}
.section-title > strong {
  color: rgb(0, 29, 89);
}
.section-subtitle {
  font-size: 24px;
  font-family: "Pelak";
  font-weight: normal;
  margin: 0;
}
.section-header .section-nav {
  margin-top: 20px;
}
.section-header + .section-body,
.section-body + .section-footer,
.section-header + .section-footer {
  margin-top: 30px;
}
.section-desc {
  margin: 15px auto 0;
}
.section-desc + .section-nav {
  margin-top: 30px;
}
.section-cover {
  position: relative;
}
.section-cover > img {
  width: 100%;
}
.subsection-header + .subsection-body,
.subsection-body + .subsection-footer,
.subsection-header + .subsection-footer {
  margin-top: 12px;
}
.subsection + .subsection {
  margin-top: 30px;
}
.subsection-title {
  margin: 0;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
.section-btn {
  color: rgb(0, 29, 89);
  font-weight: bold;
  margin-top: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}
.tbutton {
  border: 1px solid transparent;
  height: 40px;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tbutton.disabled,
.tbutton:disabled,
.tbutton[disabled] {
  filter: grayscale(1);
}
.tbutton-small {
  height: 22px;
  border-radius: 6px;
  padding: 0 14px;
}
.tbutton > i + span {
  margin-left: 10px;
}
.tbutton-block {
  display: flex;
  width: 100%;
}
.tbutton-block + .tbutton-block {
  margin-top: 15px;
}
.tbutton-fill-primary {
  background: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
}
.tbutton-fill-primary:hover {
  background: rgb(255, 255, 255);
  border-color: rgb(0, 29, 89);
  color: rgb(0, 29, 89);
}
.tbutton-fill-secondary {
  background: rgb(228, 171, 41);
  color: rgb(0, 29, 89);
}
.tbutton-fill-secondary:hover {
  background: rgb(255, 255, 255);
  border-color: rgb(228, 171, 41);
  color: rgb(228, 171, 41);
}
.tbutton-outline-primary {
  background: none;
  border-color: rgb(0, 29, 89);
  color: rgb(0, 29, 89);
}
.tbutton-outline-primary:hover {
  background: rgb(0, 29, 89);
  border-color: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
}
.tbutton-outline-secondary {
  background: none;
  border-color: rgb(228, 171, 41);
  color: rgb(228, 171, 41);
}
.tbutton-outline-secondary:hover {
  background: rgb(228, 171, 41);
  border-color: rgb(228, 171, 41);
  color: rgb(0, 29, 89);
}
.section-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.section-tab > li + li {
  margin-right: 20px;
}
.section-tab > li > a {
  background: rgb(0, 29, 89);
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-top: 22px;
  line-height: 1;
  padding: 4px 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}
.section-tab > li.active > a {
  background: rgb(228, 171, 41);
}
.section-tab > li.active > a::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 10px;
  background: rgb(0, 29, 89);
  display: inline;
  content: "";
}
#header {
  padding: 10px 0;
  transition: all 0.15s ease-in-out;
}
#header.sticky {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
}
.logo > img,
.logo > svg {
  height: 87px;
}
.logo > svg {
  fill: rgb(0, 29, 89);
  stroke: rgb(0, 29, 89);
  stroke-width: 1px;
  paint-order: stroke;
}
body.home #header:not(.sticky) .logo > img {
  display: none;
}
#header.sticky .logo > svg,
body:not(.home) #header .logo > svg {
  display: none;
}
.logomotion .svg-elem-1 {
  stroke-dashoffset: 1924.49267578125px;
  stroke-dasharray: 1924.49267578125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6s;
  transition: stroke-dashoffset 5s linear 0s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6s;
}
.logomotion.active .svg-elem-1 {
  stroke-dashoffset: 3848.9853515625px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-2 {
  stroke-dashoffset: 70.24298858642578px;
  stroke-dasharray: 70.24298858642578px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.12s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.1s;
  transition: stroke-dashoffset 5s linear 0.12s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.1s;
}
.logomotion.active .svg-elem-2 {
  stroke-dashoffset: 140.48597717285156px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-3 {
  stroke-dashoffset: 48.50274658203125px;
  stroke-dasharray: 48.50274658203125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.24s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.2s;
  transition: stroke-dashoffset 5s linear 0.24s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.2s;
}
.logomotion.active .svg-elem-3 {
  stroke-dashoffset: 97.0054931640625px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-4 {
  stroke-dashoffset: 117.02935028076172px;
  stroke-dasharray: 117.02935028076172px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.36s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.3s;
  transition: stroke-dashoffset 5s linear 0.36s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.3s;
}
.logomotion.active .svg-elem-4 {
  stroke-dashoffset: 234.05870056152344px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-5 {
  stroke-dashoffset: 104.53894805908203px;
  stroke-dasharray: 104.53894805908203px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.48s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.4s;
  transition: stroke-dashoffset 5s linear 0.48s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.4s;
}
.logomotion.active .svg-elem-5 {
  stroke-dashoffset: 209.07789611816406px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-6 {
  stroke-dashoffset: 51.915401458740234px;
  stroke-dasharray: 51.915401458740234px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.6s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.5s;
  transition: stroke-dashoffset 5s linear 0.6s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.5s;
}
.logomotion.active .svg-elem-6 {
  stroke-dashoffset: 103.83080291748047px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-7 {
  stroke-dashoffset: 48.53733825683594px;
  stroke-dasharray: 48.53733825683594px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.72s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.6s;
  transition: stroke-dashoffset 5s linear 0.72s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.6s;
}
.logomotion.active .svg-elem-7 {
  stroke-dashoffset: 97.07467651367188px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-8 {
  stroke-dashoffset: 57.77153015136719px;
  stroke-dasharray: 57.77153015136719px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.84s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.7s;
  transition: stroke-dashoffset 5s linear 0.84s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.7s;
}
.logomotion.active .svg-elem-8 {
  stroke-dashoffset: 115.54306030273438px;
  fill: rgb(0, 29, 89);
}
.logomotion .svg-elem-9 {
  stroke-dashoffset: 37.92452621459961px;
  stroke-dasharray: 37.92452621459961px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 5s linear 0.96s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.8s;
  transition: stroke-dashoffset 5s linear 0.96s,
    fill 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) 6.8s;
}
.logomotion.active .svg-elem-9 {
  stroke-dashoffset: 75.84905242919922px;
  fill: rgb(0, 29, 89);
}
.header-access {
  width: 100%;
}
.header-access-top,
.header-access-bottom {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header-access-bottom {
  margin-top: 10px;
}
.lang-nav {
  display: flex;
  align-items: center;
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}
.lang-nav > li {
  margin-right: 20px;
}
.lang-nav > li > a {
  padding: 5px;
  line-height: 1;
  font-weight: 700;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.lang-nav > li.active {
  order: -1;
}
.lang-nav > li.active > a {
  background: rgb(228, 171, 41);
  color: rgb(255, 255, 255);
}
.user-nav {
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.user-nav > li {
  margin-right: 20px;
}
.user-nav > li > a,
.user-nav > li > button {
  background: rgb(0, 29, 89);
  color: rgb(255, 255, 255);
  padding: 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  border: none;
}
.user-nav > li.login-toggle > a {
  background: rgb(39, 174, 96);
}
.user-nav > li.logout-toggle > a {
  background: rgb(192, 57, 43);
}
.user-nav > li > a:hover,
.user-nav > li > button:hover {
  background: rgb(228, 171, 41);
  color: rgb(255, 255, 255);
}
.user-nav > li i {
  font-size: 20px;
}
.user-nav > li span {
  font-size: 13px;
  margin-right: 6px;
}
.social-nav {
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-nav > li + li {
  margin-right: 20px;
}
.social-nav > li > a > img {
  height: 24px;
}
.social-nav > li > a:hover > img {
  filter: brightness(0) invert(0) invert(77%) sepia(83%) saturate(777%)
    hue-rotate(337deg) brightness(93%) contrast(91%);
}
.social-nav > li > a > i {
  font-size: 24px;
}
.search-form {
  width: 200px;
  height: 30px;
  border: 1px solid rgb(0, 29, 89);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin: 0;
}
.search-input,
.search-btn {
  background: none;
  border: none;
  padding: 0 6px;
  line-height: 1;
}
.search-input {
  width: 100%;
}
.map-provinces {
  width: 100%;
}
.map-provinces path {
  stroke: rgb(255, 255, 255);
  fill: rgb(0, 29, 89);
  stroke-width: 1;
  position: relative;
}
.map-provinces a:hover path {
  fill: rgb(224, 224, 224);
}
.map-provinces s:not(.visible) {
  pointer-events: none;
  cursor: default;
}
.map-provinces path.visible {
  fill: rgb(147, 147, 147);
  cursor: pointer;
}
.map-provinces path.visible:hover,
.map-provinces path.active {
  fill: rgb(228, 171, 41);
}
.card-wrapper {
  background: rgb(228, 171, 41);
  border-radius: 18px;
  overflow: hidden;
}
.card-wrapper-footer {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-wrapper-title {
  font-size: 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.card-wrapper-title::before {
  width: 30px;
  height: 20px;
  background: url(../img/icon-bullet.svg) no-repeat right center;
  background-size: auto 100%;
  content: "";
  display: inline;
}
.card-wrapper-footer .tbutton {
  white-space: nowrap;
}
.overlay-card {
  position: relative;
  overflow: hidden;
}
.overlay-card::before {
  width: 64px;
  height: 100px;
  background: rgb(228, 171, 41);
  transform: rotate(-45deg);
  transform-origin: 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  content: "";
}
.overlay-card:hover::before {
  opacity: 1;
  visibility: visible;
}
.overlay-card-header {
  position: relative;
}
.overlay-card-header::before {
  padding-top: 100%;
  display: block;
  content: "";
}
.overlay-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.overlay-card:hover .overlay-card-img {
  filter: grayscale(1);
}
.overlay-card-body {
  background: rgb(228, 171, 41);
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
#contact-map {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(0, 29, 89);
  border-radius: 20px;
  direction: ltr;
  width: 100%;
  height: 100%;
}
.form-control {
  border-color: rgb(0, 29, 89);
  border-radius: 9px;
  background: none !important;
}
.form-control:focus {
  border-color: rgb(0, 0, 0);
}
textarea.form-control {
  border-radius: 15px;
}
.form-label {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 8px;
  display: inline-flex;
  align-items: start;
}
.form-label.required::after {
  content: "*";
  color: red;
  line-height: 0.5;
  margin-right: 2px;
}
.contact-info {
  border: 1px solid rgb(0, 29, 89);
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 15px;
  list-style: none;
}
.contact-info > li {
  margin-left: 10px;
}
body:not(.home) {
  padding-top: 110px;
}
#page-header {
  padding: 60px 0;
}
.page-title {
  background: rgb(228, 171, 41);
  color: rgb(0, 29, 89);
  border-radius: 10px;
  font-weight: 700;
  font-size: 24px;
  padding: 7px 20px;
  display: inline-flex;
  align-items: center;
}
#page-body {
  padding: 20px 0 120px;
}
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list > li::before {
  content: "/";
  margin-left: 7px;
  display: inline;
}
.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgb(0, 29, 89);
  border-radius: 15px;
  display: block;
  margin: 30px auto 0;
  position: relative;
}
.mouse::before {
  width: 2px;
  height: 9px;
  margin-left: -1px;
  background: rgb(0, 29, 89);
  animation: trackBallSlide 1s infinite alternate;
  position: absolute;
  top: 25%;
  left: 50%;
  content: "";
}
@keyframes trackBallSlide {
  to {
    transform: translate(0, 10px) scale(1, 0.8);
  }
}
body:not(.home) #header .mouse,
#header.sticky .mouse {
  display: none;
}
.box-card {
  border-radius: 45px;
  position: relative;
  overflow: hidden;
}
.box-card-header {
  position: relative;
}
.box-card-header::before {
  padding-top: 100%;
  display: block;
  content: "";
}
.box-card-img {
  border: 2px solid rgb(0, 29, 89);
  border-radius: 45px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.box-card-body {
  background: rgba(228, 171, 41, 0.91);
  color: rgb(0, 29, 89);
  border-radius: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.box-card:hover .box-card-body {
  opacity: 1;
  visibility: visible;
}
.box-card-body::after {
  border: 2px solid rgb(0, 29, 89);
  border-radius: 43px;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  content: "";
}
.box-card-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}
.box-card-subtitle {
  font-size: 18px;
  margin: 10px 0 0;
}
.course-card {
  border-radius: 45px;
  position: relative;
  padding: 4px;
}
.course-card-header {
  box-shadow: 0 0 0 4px rgb(228, 171, 41);
  border: 2px solid rgb(0, 29, 89);
  border-radius: 45px;
  overflow: hidden;
  position: relative;
}
.course-card-header::before {
  padding-top: 100%;
  display: block;
  content: "";
}
.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.course-card-body {
  padding: 10px 0 0;
  text-align: center;
}
.course-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.blog-card {
  border-radius: 45px;
  position: relative;
  padding: 4px;
}
.blog-card-header {
  box-shadow: 0 0 0 4px rgb(228, 171, 41);
  border: 2px solid rgb(0, 29, 89);
  border-radius: 45px;
  overflow: hidden;
  position: relative;
}
.blog-card-header::before {
  padding-top: 100%;
  display: block;
  content: "";
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.blog-card-excerpt {
  margin: 5px 0 15px;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
}
.blog-card-time {
  font-size: 14px;
  font-style: italic;
}
.blog-card-btn {
  font-size: 14px;
  font-weight: 500;
  background: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  margin-right: auto;
  align-self: center;
}
.blog-card-btn:hover {
  background: rgb(228, 171, 41);
  color: rgb(0, 29, 89);
}
.entry-title {
  color: rgb(0, 29, 89);
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 0;
}
.entry-thumbnail {
  position: relative;
}
.entry-thumbnail::before {
  padding-top: 100%;
  display: block;
  content: "";
}
.entry-thumbnail {
  border-radius: 45px;
}
.entry-thumbnail > img {
  border: 5px solid rgb(228, 171, 41);
  box-shadow: 0 0 0 2px rgb(0, 29, 89), 0 0 0 7px rgb(228, 171, 41);
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
}
.entry-information {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.entry-action {
  margin-top: 30px;
}
.entry-social {
  font-size: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.entry-social > li:not(:last-child) {
  margin-left: 15px;
}
.entry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: entry-list;
}
.entry-list > li {
  display: flex;
  flex-wrap: wrap;
  counter-increment: entry-list;
}
.entry-list > li::before {
  content: counter(entry-list, persian);
  background: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
  border-right: 2px solid rgb(228, 171, 41);
  border-left: 2px solid rgb(228, 171, 41);
  min-width: 36px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.entry-list > li:first-child:before {
  border-top: 2px solid rgb(228, 171, 41);
  border-radius: 14px 14px 0 0;
}
.entry-list > li:last-child:before {
  border-bottom: 2px solid rgb(228, 171, 41);
  border-radius: 0 0 14px 14px;
}
.entry-list > li::after {
  content: attr(data-status);
  font-size: 13px;
  background: rgb(0, 29, 89);
  color: rgb(255, 255, 255);
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  margin-right: auto;
  align-self: center;
  white-space: nowrap;
}
.entry-list-title {
  font-size: 16px;
  padding: 10px;
  margin: 0;
}
.entry-list-subtitle {
  font-size: 11px;
  margin: auto 0;
}
.entry-list > li:not(:last-child) {
  border-bottom: 1px dashed rgb(50, 50, 50);
}
.subsection-header {
  overflow: hidden;
}
.subsection-title {
  color: rgb(0, 29, 89);
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.subsection-title::after {
  background: url(../img/divider.svg) no-repeat right center;
  background-size: auto 100%;
  margin-right: 20px;
  width: 100vw;
  height: 20px;
  display: inline-flex;
  content: "";
}
.panel-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(0, 29, 89);
  border-radius: 16px;
}
.panel-card + .panel-card {
  margin-top: 15px;
}
.panel-card-header {
  padding: 10px 15px;
  cursor: pointer;
}
.panel-card-title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(0, 29, 89);
  margin: 0;
}
.panel-card-title::before {
  content: "\f104";
  font-family: "Font Awesome";
  font-size: 16px;
  margin-left: 10px;
  display: inline-flex;
}
.panel-card.active .panel-card-title::before {
  content: "\f107";
}
.panel-card-body {
  padding: 0 15px 15px;
}
.panel-card:not(.active) .panel-card-body {
  display: none;
}
.page-tab {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-tab > li + li {
  margin-top: 10px;
}
.page-tab > li {
  padding-left: 19px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-tab > li > a {
  background: rgb(0, 29, 89);
  border: 3px solid rgb(228, 171, 41);
  color: rgb(228, 171, 41);
  height: 46px;
  border-radius: 0 18px 18px 0;
  border-left: none;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
}
.page-tab > li:hover > a,
.page-tab > li.active > a {
  background: rgb(228, 171, 41);
  color: rgb(0, 29, 89);
  border-color: rgb(0, 29, 89);
}
.page-tab > li > a::before,
.page-tab > li > a::after {
  border: inherit;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  left: -1px;
  top: 0;
  content: "";
}
.page-tab > li:hover > a::before,
.page-tab > li:hover > a::after,
.page-tab > li.active > a::before,
.page-tab > li.active > a::after {
  border-color: inherit;
}
.page-tab > li > a::before {
  transform: translate(-50%, -50%);
  margin-top: 1px;
}
.page-tab > li > a::after {
  transform: translate(-50%, 50%);
  margin-top: -1px;
}
.page-tab > li::after {
  border-width: 14px 20px 14px 0;
  border-color: transparent rgb(0, 29, 89) transparent transparent;
  border-style: solid;
  display: inline-block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.page-tab > li:hover::after,
.page-tab > li.active::after {
  border-color: transparent rgb(228, 171, 41) transparent transparent;
}
#footer {
  margin-top: auto;
  padding: 40px 0;
}
.account-card {
  background: rgba(0, 29, 89, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 20px;
}
.account-card-header {
  margin-bottom: 20px;
}
.account-card-footer {
  margin-top: 20px;
}
.account-card-title {
  color: rgb(0, 29, 89);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.dashboard-card-header {
  background: rgb(0, 29, 89);
  border: 3px solid rgb(228, 171, 41);
  color: rgb(228, 171, 41);
  height: 60px;
  border-radius: 24px;
  padding: 0 30px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
.dashboard-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.dashboard-card-header {
  background: rgb(0, 29, 89);
  border: 3px solid rgb(228, 171, 41);
  color: rgb(228, 171, 41);
  height: 60px;
  border-radius: 24px;
  padding: 0 30px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
.dashboard-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.dashboard-stat {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
  list-style: none;
}
.dashboard-stat > li {
  padding: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}
.dashboard-stat > li > div {
  background: rgba(0, 29, 89, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 20px;
  height: 100%;
}
.dashboard-stat > li > div > span {
  text-align: left;
  font-size: 20px;
  margin: 20px 0 0;
  display: block;
}
.powered {
  font-size: 80%;
}
.powered > a {
  font-weight: bold;
}
.entry-meta,
.entry-meta div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.entry-meta > li:not(:last-child) {
  margin-bottom: 10px;
}
.entry-meta > li > div {
  display: inline-flex;
}
.entry-meta div > ul {
  display: inline-flex;
  align-items: center;
}
.entry-meta div > ul > li:not(:last-child)::after {
  content: "،";
  display: inline;
  margin-left: 5px;
}
.gallery-box img {
  width: 100% !important;
  margin: 0 !important;
}
.slideshow {
  border-radius: 18px;
  overflow: hidden;
}
.slide-card {
  position: relative;
}
.slide-card-img {
  width: 100%;
}
.slide-card-body {
  background: rgb(228, 171, 41);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quiz-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: quiz-list;
}
.quiz-list > li {
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgb(50, 50, 50);
}
.quiz-card-header {
  display: flex;
  align-items: center;
  counter-increment: quiz-list;
  margin: 0 0 15px;
}
.quiz-card-header::before {
  content: counter(quiz-list, persian);
  background: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
  border: 2px solid rgb(228, 171, 41);
  width: 36px;
  height: 36px;
  margin-left: 10px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.quiz-card-title {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
.btn {
  border-radius: 10px;
}
#otp-alert > strong {
  letter-spacing: 2px;
}
#otp-field {
  direction: ltr;
}
#otp-field input {
  text-align: center;
}
#otp-timer {
  margin-top: 10px;
}
/*Plugins*/
.toaster {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  z-index: 999999999;
  position: fixed;
  padding: 5px;
}
.toaster.bottom-right {
  bottom: 20px;
  right: 20px;
}
.toaster.bottom-left {
  bottom: 20px;
  left: 20px;
}
.toaster.top-right {
  top: 20px;
  right: 20px;
}
.toaster.top-left {
  top: 20px;
  left: 20px;
}
.toaster.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.toaster.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.toaster.top-center ol.rack {
  flex-direction: column-reverse;
}
.toaster.top-left ol.rack {
  flex-direction: column-reverse;
}
.toaster.top-right ol.rack {
  flex-direction: column-reverse;
}
.toaster.bottom-center ol.rack {
  flex-direction: column;
}
.toaster.bottom-left ol.rack {
  flex-direction: column;
}
.toaster.bottom-right ol.rack {
  flex-direction: column;
}
ol.rack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
ol.rack li {
  margin-bottom: 16px;
}
ol.rack.upperstack li {
  margin-bottom: -35px;
  transition: all 0.3s ease-in-out;
}
ol.rack.upperstack li:hover {
  margin-bottom: 16px;
  scale: 1.03;
  transition: all 0.3s ease-in-out;
}
ol.rack.lowerstack li {
  margin-top: -35px;
}
ol.rack.lowerstack {
  margin-bottom: 0px;
}
.butteruptoast {
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  font-size: 13px;
  display: flex;
  padding: 16px;
  border: 1px solid hsl(0, 0%, 93%);
  background-color: white;
  gap: 6px;
  color: #282828;
  width: 325px;
}
.butteruptoast.dismissable {
  cursor: pointer;
}
.butteruptoast .icon {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.butteruptoast .icon svg {
  width: 20px;
  height: 20px;
  fill: #282828;
}
.notif .desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.notif .desc .title {
  font-weight: 600;
  line-height: 1.5;
}
.notif .desc .message {
  font-weight: 400;
  line-height: 1.4;
}
.butteruptoast.success {
  background-color: #ebfef2;
  color: hsl(140, 100%, 27%);
  border: solid 1px hsl(145, 92%, 91%);
}
.butteruptoast.success .icon svg {
  fill: hsl(140, 100%, 27%);
}
.butteruptoast.error .icon svg {
  fill: hsl(0, 100%, 27%);
}
.butteruptoast.warning .icon svg {
  fill: hsl(50, 100%, 27%);
}
.butteruptoast.info .icon svg {
  fill: hsl(210, 100%, 27%);
}
.butteruptoast.error {
  background-color: #fef0f0;
  color: hsl(0, 100%, 27%);
  border: solid 1px hsl(0, 92%, 91%);
}
.butteruptoast.warning {
  background-color: #fffdf0;
  color: hsl(50, 100%, 27%);
  border: solid 1px hsl(50, 92%, 91%);
}
.butteruptoast.info {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 1px hsl(210, 92%, 91%);
}
.toast-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  flex-direction: row;
  margin-top: 16px;
}
.toast-buttons .toast-button.primary {
  background-color: #282828;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  width: 100%;
}
.toast-buttons .toast-button.secondary {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 1px hsl(210, 92%, 91%);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}
.butteruptoast.success .toast-button.primary {
  background-color: hsl(145, 63%, 42%);
  color: white;
}
.butteruptoast.success .toast-button.secondary {
  background-color: hsl(145, 45%, 90%);
  color: hsl(145, 63%, 32%);
  border: solid 1px hsl(145, 63%, 72%);
}
.butteruptoast.error .toast-button.primary {
  background-color: hsl(354, 70%, 54%);
  color: white;
}
.butteruptoast.error .toast-button.secondary {
  background-color: hsl(354, 30%, 90%);
  color: hsl(354, 70%, 44%);
  border: solid 1px hsl(354, 70%, 74%);
}
.butteruptoast.warning .toast-button.primary {
  background-color: hsl(45, 100%, 51%);
  color: hsl(45, 100%, 15%);
}
.butteruptoast.warning .toast-button.secondary {
  background-color: hsl(45, 100%, 96%);
  color: hsl(45, 100%, 31%);
  border: solid 1px hsl(45, 100%, 76%);
}
.butteruptoast.info .toast-button.primary {
  background-color: hsl(207, 90%, 54%);
  color: white;
}
.butteruptoast.info .toast-button.secondary {
  background-color: hsl(207, 90%, 94%);
  color: hsl(207, 90%, 34%);
  border: solid 1px hsl(207, 90%, 74%);
}
.toastUp {
  animation: slideUp 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
.toastDown {
  animation: slideDown 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeOutToast {
  animation: fadeOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.butteruptoast.glass {
  background-color: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #282828;
}
.butteruptoast.glass.success {
  background-color: rgba(235, 254, 242, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(140, 100%, 27%);
}
.butteruptoast.glass.error {
  background-color: rgba(254, 240, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(0, 100%, 27%);
}
.butteruptoast.glass.warning {
  background-color: rgba(255, 253, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(50, 100%, 27%);
}
.butteruptoast.glass.info {
  background-color: rgba(240, 248, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(210, 100%, 27%);
}
.butteruptoast.brutalist {
  border-radius: 0px;
  box-shadow: 0 4px 12px #0000001a;
  border: solid 2px #282828;
  font-size: 13px;
  align-items: center;
  display: flex;
  padding: 16px;
  background-color: white;
  gap: 6px;
  color: #282828;
  width: 325px;
}
.butteruptoast.brutalist.success {
  background-color: #ebfef2;
  color: hsl(140, 100%, 27%);
  border: solid 2px hsl(140, 100%, 27%);
}
.butteruptoast.brutalist.error {
  background-color: #fef0f0;
  color: hsl(0, 100%, 27%);
  border: solid 2px hsl(0, 100%, 27%);
}
.butteruptoast.brutalist.warning {
  background-color: #fffdf0;
  color: hsl(50, 100%, 27%);
  border: solid 2px hsl(50, 100%, 27%);
}
.butteruptoast.brutalist.info {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 2px hsl(210, 100%, 27%);
}
body.lg-on {
  overflow: hidden;
}
.lg-inner {
  direction: ltr;
}
.lg-outer .lg-thumb-item {
  border-radius: 0;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: rgb(228, 171, 41);
}
.rwmb-media-list,
.rwmb-files {
  padding: 0;
}
.rwmb-image-item {
  float: right !important;
  margin: 0 0 12px 12px !important;
}
.rwmb-form-submit {
  margin-top: 30px;
}
.rwmb-column .rwmb-label {
  margin-bottom: 2px !important;
}
.rwmb-label,
.rwmb-input {
  float: none !important;
}
input[type="text"].rwmb-text,
input[type="email"].rwmb-email,
input[type="password"].rwmb-text,
input[type="url"].rwmb-url,
select.rwmb-select,
textarea.rwmb-textarea {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  border: 1px solid rgb(0, 29, 89);
  border-radius: 9px;
  background: none !important;
  transition: all 0.15s ease-in-out;
}
textarea.rwmb-textarea {
  height: auto;
  border-radius: 15px;
}
.rwmb-label > label {
  margin: 0;
}
.rwmb-button {
  border: 1px solid rgb(0, 29, 89);
  height: 40px;
  border-radius: 10px;
  padding: 0 20px;
  margin: 0 !important;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 29, 89);
  color: rgb(228, 171, 41);
}
.rwmb-button:hover {
  background: rgb(255, 255, 255);
  border-color: rgb(0, 29, 89);
  color: rgb(0, 29, 89);
}
.rwmb-input-list.rwmb-inline {
  padding: 0;
}
.rwmb-input-list.rwmb-inline li:not(:last-child) {
  margin-right: 0 !important;
  margin-left: 20px;
}
.rwmb-row .rwmb-column {
  margin-right: 0;
  margin-left: 5%;
  float: right;
}
.rwmb-row .rwmb-column:last-of-type {
  margin-right: 0;
  margin-left: 0;
}
.rwmb-loading {
  margin-right: 5px;
  margin-left: 0 !important;
}
.rwmb-checkbox-wrapper {
  display: flex !important;
  flex-direction: row-reverse;
}
/**/
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-dots {
  margin-top: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow.owl-carousel .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-carousel .owl-dots > button + button {
  margin-right: 30px;
}
.owl-carousel .owl-dots > button {
  border: 3px solid rgb(221, 221, 221);
  background-color: rgb(221, 221, 221);
  width: 14px;
  height: 14px;
  padding: 0 !important;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.owl-carousel .owl-dots > button.active {
  background-color: rgb(0, 29, 89);
}
.slideshow .owl-item.active.cloned {
  display: none;
}
.entry-header {
  margin-bottom: 30px;
}
.entry-footer {
  margin-top: 30px;
}
.entry-table {
  width: 100%;
  border-collapse: collapse;
}
.entry-table tr > th,
.entry-table tr > td {
  padding: 5px 10px;
  border: 1px solid rgb(0, 29, 89);
}
.entry-table tr > th {
  border-bottom-width: 2px;
  border-top: none;
}
.entry-table tr > th:first-child,
.entry-table tr > td:first-child {
  border-right: none;
}
.entry-table tr > th:last-child,
.entry-table tr > td:last-child {
  border-left: none;
}
.entry-table-row tr > th,
.entry-table-row tr > td {
  border-right: none;
  border-left: none;
  padding-right: 0;
  padding-left: 0;
}
.entry-table-row tr > th:last-child,
.entry-table-row tr > td:last-child {
  text-align: left;
}
.entry-table caption {
  font-size: 20px;
  color: rgb(0, 29, 89);
  font-weight: 500;
  border-bottom: 1px solid rgb(0, 29, 89);
  text-align: center;
  caption-side: top;
  padding: 0;
}
.entry-table + .entry-table {
  margin-top: 15px;
}
/*CMS*/
.entry-content {
  font-size: 16px;
}
.entry-content h6 {
  font-size: 16px;
}
.entry-content h5 {
  font-size: 18px;
}
.entry-content h4 {
  font-size: 20px;
}
.entry-content h3 {
  font-size: 22px;
}
.entry-content h2 {
  font-size: 24px;
}
.entry-content h1 {
  font-size: 26px;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content iframe {
  border: none;
}
.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}
.entry-content video {
  width: 100%;
}
.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
.wp-video {
  width: 100% !important;
}
/*Responsive*/

@media (max-width: 767.98px) {
  .mouse {
    display: none;
  }
  #navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2002;
    overflow-y: scroll;
    width: 250px;
    padding: 15px 0;
    background: rgb(0, 29, 89);
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
  #navigation.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
  #navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #navigation li > a {
    white-space: nowrap;
    height: 40px;
    font-size: 14px;
    padding: 0 20px 0 10px;
    color: rgb(250, 250, 250);
    position: relative;
    display: flex;
    align-items: center;
  }
  #navigation > ul > li > a {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  #navigation > ul > li a:hover,
  #navigation > ul > li a:focus {
    background: rgba(255, 255, 255, 0.1);
  }
  #navigation > ul > li a:before,
  #navigation li.submenu > a:after {
    content: "\f107";
    font-family: "Font Awesome";
    font-size: 14px;
    color: rgb(224, 224, 224);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  #navigation > ul > li a:before {
    content: "\f104";
    left: auto;
    right: 10px;
  }
  #navigation li.submenu.active > a:after {
    content: "\f106";
  }
  .search-box {
    width: 100%;
    padding: 30px 0;
    background: rgb(255, 255, 255);
    z-index: 2002;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-box.active {
    opacity: 1;
    visibility: visible;
  }
  .search-form {
    width: 90%;
    height: 40px;
  }
  .search-input,
  .search-btn {
    padding: 0 10px;
  }
  .header-access {
    display: flex;
    align-items: start;
  }
  .header-access-bottom {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 0 auto 0 0;
  }
  .user-nav {
    margin-top: 20px;
  }
  .user-nav > li span {
    display: none;
  }
  .social-nav {
    margin-right: auto;
  }
  .blog-card {
    flex-direction: column;
  }
  .blog-card-body {
    padding-top: 15px;
  }
  .card-wrapper-footer {
    justify-content: center;
  }
  .card-wrapper-title {
    display: none;
  }
  .slide-card-header .slide-card-img:nth-of-type(1) {
    display: none;
  }
}
@media (min-width: 768px) {
  body.home #header.sticky,
  body:not(.home) #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  body.home #header:not(.sticky) {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body.home #header:not(.sticky) .logo {
    justify-self: center;
    margin: 0 auto;
  }
  body.home #header:not(.sticky) .logo > img,
  body.home #header:not(.sticky) .logo > svg {
    width: 13.3339581vw;
    height: auto;
  }
  body.home #header:not(.sticky) > div {
    flex-direction: column;
  }
  body.home #header:not(.sticky) .header-access {
    margin-top: 50px;
  }
  #header:not(.sticky) .header-access-top,
  #header:not(.sticky) .header-access-bottom {
    justify-content: space-between;
    align-items: center;
  }
  body.home #header.sticky + .section {
    margin-top: 100vh;
  }
  .search-box {
    margin: 0 30px 0 auto;
  }
  .nav-toggle,
  .search-toggle {
    display: none;
  }
  #header.sticky #navigation,
  body:not(.home) #header #navigation {
    margin-right: auto;
  }
  #header.sticky .search-box,
  body:not(.home) #header .search-box {
    margin-left: 0;
  }
  body:not(.home) .social-nav {
    margin-right: auto;
  }
  body.home #header:not(.sticky) > div {
    max-width: 1300px;
  }
  #navigation > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #navigation > ul > li:not(:last-child) {
    margin-left: 30px;
  }
  #navigation > ul > li > a {
    padding: 7px 5px;
    line-height: 1;
    font-weight: 700;
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  #navigation > ul > li:hover > a {
    background: rgb(0, 29, 89);
    color: rgb(255, 255, 255);
  }
  #navigation > ul > li.current-menu-item > a,
  #navigation > ul > li.active > a {
    background: rgb(228, 171, 41);
    color: rgb(255, 255, 255);
  }
  .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section.section-slideshow {
    min-height: unset;
  }
  .blog-card {
    display: flex;
  }
  .blog-card-header {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .blog-card-body {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
  }
  .blog-card-footer {
    margin-top: auto;
  }
  /*Scrolling*/
  .pp-section {
    height: 100%;
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    background: rgb(255, 255, 255) url(../img/bg.png) no-repeat center center
      fixed;
    background-size: cover;
  }
  .pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
    -moz-transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
    -o-transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
    transition: all 1000ms cubic-bezier(0.55, 0.085, 0, 0.99);
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    -moz-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0, 0.99);
  }
  .slide-card-header .slide-card-img:nth-of-type(2) {
    display: none;
  }
}
