:root {
  --fontColorMain: #ffffff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  background-color: #f2f2f2;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 BS5 container width change
 ----------------------------------------*/
/* @media screen and (min-width:768px){
  .container {
    max-width: 908px;
  }
}

@media screen and (min-width:576px){
  .container {
    max-width: 670px;
  }
} */


/*
 2.) Global Typography
 ----------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family: "Vazir", tahoma;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1;
  font-family: "Vazir", tahoma;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
  line-height: 1;
  font-family: "Vazir", tahoma;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 12px;
}

/*
 2.1 Form Elements
 -----------------------------*/
button,
input,
optgroup,
textarea {
  margin: 0;
  padding: 12px 25px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #54a9d2;
  border: none;
  font-family: "Vazir", tahoma;
  -webkit-appearance: none;
  border-radius: 5px;
}

input {
  line-height: normal;
  border-radius: 5px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  border: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="file"] {
  -webkit-appearance: none;
  cursor: pointer;
  line-height: normal;
  overflow: visible;
}

input[type="text"],
input[type="email"] {
  border-radius: 0;
  padding: 0 28px 0 20px;
  float: left;
  line-height: 1.5;
  height: 52px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  background-color: ##54a9d2;
  border: none;
}

input[type="text"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  width: 100%;
  height: 196px;
  border: 0;
  background: ##094d6f;
  padding: 12px 36px 12px 15px;
  resize: none;
}

label {
  font-size: 16px;
  color: #1c2022;
  font-weight: 400;
}

button[disabled],
input[disabled] {
  cursor: default;
  color: #999;
  border-color: #ccc;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input::-webkit-input-placeholder {
  color: var(--fontColorMain);
}

input:-moz-placeholder {
  /*/ Firefox 18- /*/
  color: var(--fontColorMain);
}

input::-moz-placeholder {
  /*/ Firefox 19- /*/
  color: var(--fontColorMain);
}

input:-ms-input-placeholder {
  color: var(--fontColorMain);
}

textarea::-moz-placeholder {
  color: var(--fontColorMain);
}

textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  font-weight: 400;
}

textarea::-ms-input-placeholder {
  color: #fff;
  font-size: 16px;
  opacity: 1;
  font-weight: 400;
}

select {
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  width: 270px;
  padding: 10px;
  -webkit-appearance: none;
  /*Removes default chrome and safari style*/
  -moz-appearance: none;
  /* Removes Default Firefox style*/
  appearance: none;
  background: #54a9d2 url("../images/down-arrow.png") no-repeat 5% center;
  border-radius: 0;
}

/*
 2.2) List Styles
 ---------------------------------*/
ul,
ol,
dl {
  font-size: 100%;
  line-height: 1.5;
}

li,
dt {
  line-height: 1.5em;
}

dl {
  margin: 0 0 1em 0;
}

dd {
  margin: 0 0 1em 0.8em;
}

ul {
  list-style-type: none;
}

ol {
  list-style-type: decimal;
  margin: 0 0 1em 0;
}

ul ul,
ol ul {
  list-style-type: circle;
  margin-top: 0;
}

ol ol {
  list-style-type: lower-latin;
  margin-top: 0;
}

/*
 2.3) General Text Formatting
 -----------------------------------*/
p {
  font-size: 14px;
  line-height: 22px;
  color: #094d6f;
}

blockquote,
cite,
q,
var,
dfn {
  font-style: italic;
}

blockquote {
  background: transparent;
  color: #666666;
}

small {
  font-size: 85.71429%;
  line-height: 1.75;
}

pre,
code,
kbd,
tt,
samp,
var {
  font-size: 100%;
}

pre {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

pre,
code {
  color: #880000;
}

kbd,
samp,
var {
  color: #666666;
  font-weight: bold;
}

acronym,
abbr {
  border-bottom: 1px #aaa dotted;
  font-variant: small-caps;
  cursor: help;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
}

/*
 2.4) Link style
 -------------------------*/
a {
  color: #54a9d2;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a:hover {
  /*color:#54a9d2;*/
}

.navbar-nav>li a:focus {
  background-color: transparent !important;
}

a:active {
  outline: none;
}

/*
 2.5) Table Elements
 --------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  color: #444444;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  margin: 0 0 1.35714em 0;
}

caption {
  font-variant: small-caps;
}

th,
td {
  line-height: 1.5em;
  vertical-align: top;
  padding: 0.71429em 0.5em;
}

th *:first-child,
td *:first-child {
  margin-top: 0;
}

thead th {
  text-align: left;
  color: #000;
  border-bottom: 2px #000 solid;
}

tbody th {
  text-align: left;
  border-top: 1px solid #ccc;
}

tbody td {
  text-align: left;
  border-top: 1px solid #ccc;
}

/*
 2.6) Button Styles
 -------------------------*/
.btn,
input.btn,
button.btn {
  font-family: "Vazir", tahoma;
}

button.btn-submit {}

/* Clear Floated Elements
 --------------------------*/

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
  border-radius: 6px;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

button {
  border-radius: 5px;
}

/*
 3.) Site Wide Content
 ------------------------------*/
#wrapper {
  overflow: hidden;
  position: relative;
}

/*
 4.) Header Styles
 ------------------------------*/
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999999;
  right: 0;
}

.navbar-collapse {
  padding: 0;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    justify-content: end;
    margin-left: 10px;
  }
}

/* .navbar-nav > li > a {
  padding: 0px;
  line-height: 13px;
} */
.navbar {
  padding: 0;
  position: relative;
  min-height: 42px;
  margin-bottom: 0px;
  border: 1px solid transparent;
  border-top: 1px solid #f5efec;
}

.header-cont {
  background-color: #ffffff;
}

.logo {
  float: right;
  margin-left: 0px;
  position: relative;
  width: 17.7%;
}

.login a:hover {
  color: #094d6f;
}

.logo img {
  display: block;
  max-width: 100%;
}

.logo i {
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  height: 30px;
  left: 0;
  margin: 0 auto;
  padding-top: 8px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 30px;
  top: 6px;
}

.header-info {
  float: left;
  display: inline-block;
  width: 80.3%;
  padding: 0 24px 0 22px;
}

.header-info .social-content {
  padding: 20px 0 20px 0;
}

.header-info .contact-det {
  float: right;
}

.header-info .contact-det ul li {
  display: inline-block;
  float: right;
  line-height: 12px;
  color: rgba(27, 25, 25, 0.5);
}

.header-info .contact-det ul li a {
  font-size: 13px;
  color: rgba(27, 25, 25, 0.5);
  font-family: "Vazir", tahoma;
  padding: 0 12px 0 8px;
}

.header-info .contact-det ul li:first-child a {
  padding-right: 0;
}

.header-info .social-det {
  display: inline-block;
  float: left;
}

.header-info .social-det ul,
.footer-bottom .social-det ul {
  float: right;
  margin-right: 8px;
}

.header-info .social-det ul li,
.footer-bottom .social-det ul li {
  display: inline-block;
  float: right;
  margin-left: 9px;
  line-height: 1;
}

.header-info .social-det ul li a i {
  color: rgba(27, 25, 25, 0.5);
}

.header-info .social-det ul li a img,
.footer-bottom .social-det ul li a img {
  max-width: 17px;
  transition: transform 1s ease-in-out;
}

.header-info .social-det ul li a img:hover,
.footer-bottom .social-det ul li a img:hover {
  transform: scale(1.05) rotate(360deg);
}

@media only screen and (max-width: 767px) {

  .header-info .social-det ul li,
  .footer-bottom .social-det ul li {
    margin-left: 4px;
  }
}

.header-info .social-det ul li a i:hover {
  color: #54a9d2;
}

.header-info .social-det select {
  font-size: 13px;
  font-family: "Vazir", tahoma;
  color: #094d6f;
  padding: 0;
  border: 0;
  width: 40px;
  background-color: transparent;
}

.select-box {
  float: right;
  margin-left: 20px;
  width: 34px;
  position: relative;
}

.select-box .fa.fa-angle-down {
  color: #094d6f;
  position: absolute;
  right: 0;
  top: 2px;
}

.header-info .social-det .login {
  display: inline-block;
  vertical-align: top;
  margin: 0px 5px 0 0;
}

.header-info .social-det .login a span {
  font-size: 13px;
  font-family: "Vazir", tahoma;
  color: #094d6f;
  margin-left: 9px;
  vertical-align: top;
}

nav {
  float: left;
  width: 100%;
  border-top: 1px solid #f5efec;
}

nav .navigation {
  float: right;
}

nav .header-search {
  float: left;
  padding: 22px 0px 16px 0px;
}

nav .header-search i {
  cursor: pointer;
  color: #094d6f;
}

.home-menu {
  position: absolute;
  right: 0;
  top: 30px;
  display: none;
  padding: 9px 10px;
}

nav .icon-bar {
  display: block;
  height: 2px;
  width: 22px;
  color: #54a9d2;
  background: rgba(0, 0, 0, 0.6);
}

.home-menu .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navigation>li:first-child {
  padding-left: 2px;
}

.navigation>li {
  float: right;
  position: relative;
  padding: 10px 8px 12px 14px;
  line-height: 8px;
}

.navigation li a {
  font-size: 14px;
  color: #ffffff;
  font-family: "Vazir", tahoma;
  font-weight: 700;
  text-transform: uppercase;
}

.navigation li a:hover {
  /* color: #54a9d2; */
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/*.navigation li:last-child {
	padding-right: 0;
}*/
.drop-down {
  position: absolute;
  right: 12px;
  top: 175%;
  background: #54a9d2;
  width: 200px;
  opacity: 0;
  transition: top 0.3s ease 0s, visibility 0.2s ease 0.2s,
    opacity 0.2s ease 0.1s;
  -webkit-transition: top 0.3s ease 0s, visibility 0.2 ease 0.2s,
    opacity 0.2s ease 0.1s;
  -moz-transition: top 0.3s ease 0s, visibility 0.2 ease 0.2s,
    opacity 0.2s ease 0.1s;
  -ms-transition: top 0.3s ease 0s, visibility 0.2 ease 0.2s,
    opacity 0.2s ease 0.1s;
  -o-transition: top 0.3s ease 0s, visibility 0.2 ease 0.2s,
    opacity 0.2s ease 0.1s;
  transition: top 0.3s ease 0s, visibility 0.2 ease 0.2s, opacity 0.2s ease 0.1s;
  visibility: hidden;
}

.drop-down li {
  list-style: none;
  /* padding: 10px 20px; */
  border-bottom: 1px solid #094d6f;
  text-align: right;
}

.drop-down li:last-child {
  border-bottom: none;
}

.drop-down li a {
  color: #fff;
}

.navigation li:hover .drop-down {
  opacity: 1;
  top: 102%;
  transition: top 0.3s ease 0s;
  visibility: visible;
}

.navigation li.active>a {
  color: #54a9d2;
}

.selectBox-dropdown:after {
  color: #54a9d2;
  content: "";
  font-family: "FontAwesome";
  position: absolute !important;
  left: 0px !important;
  top: 2px !important;
}

.selectBox-dropdown-menu li a {
  color: #fff;
  padding: 8px 5px 8px 14px;
  display: block;
  border-bottom: 1px solid #094d6f;
  font-size: 13px;
  cursor: pointer;
}

.selectBox-dropdown-menu li a:hover {
  background: #54a9d2;
}

input[type="text"].search-bar {
  position: absolute;
  right: -25px;
  bottom: -53px;
  width: 100%;
  float: none;
  display: none;
}

.selectBox-dropdown {
  background: transparent;
  min-width: inherit;
  border: none;
  line-height: 1;
  cursor: pointer;
  font-size: 13px;
  display: block !important;
}

.selectBox-dropdown .selectBox-arrow {
  display: none;
  background: none;
}

.ui-widget-content {
  background-image: none;
}

.selectBox-dropdown .selectBox-label {
  overflow: visible !important;
  width: 100% !important;
}

.selectBox-dropdown-menu {
  z-index: 9999 !important;
  position: absolute !important;
  top: 50px !important;
  background: #54a9d2;
  z-index: 999999 !important;
  width: 127px !important;
  color: #54a9d2;
  border: none;
}

#ui-datepicker-div {
  width: 255px;
}

.drop-down-parent .fa.fa-angle-down,
.drop-down-parent .fa.fa-angle-up {
  display: none;
}

.navigation.navbar-nav {
  background: #54a9d2 none repeat scroll 0 0;
}

/*
 5.)   Footer Styles
 ------------------------------*/

.primary-footer {
  padding-top: 25px;
}

.footer-logo {
  display: block;
}

#footer {
  border-bottom: 3px solid #54a9d2;
  border-top: 3px solid #54a9d2;

}


.primary-footer {
  background: #fff url(../images/footer-bg.jpg) 0 100% no-repeat;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  /* padding: 119px 0px; */
  padding: 20px;
  padding-top: 3rem;
}

.footer-logo img {
  max-width: 50% !important;
}

@media only screen and (min-width: 1229px) {
  .primary-footer {
    margin: 0;
    padding: 5px;

  }

  .footer-logo img {
    width: 45%;
  }
}

@media only screen and (max-width: 575.5px) {
  .footer-logo img {
    width: 25%;
    margin: auto;
  }
}

.primary-footer h5 {
  padding-bottom: 35px;
}

.primary-footer p {
  line-height: 20px;
  padding-bottom: 25px;
}

.line-break {
  display: block;
}

#footer address,
#footer address a {
  font-size: 14px;
  color: #094d6f;
  line-height: 22px;
}

/* .footer-img-gap {
	margin-top: 56px;
} */
.footer-bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 2rem;

  background: #54a9d2;
  padding: 22px 0px;
}

.footer-bottom span {
  font-size: 14px;
  color: var(--fontColorMain);
}

.footer-bottom a {
  color: #54a9d2;
}

.primary-footer .view-title-style {
  margin-bottom: 0;
}

/*
 6.)   Loader Styles
 ------------------------------*/
.loader {
  width: 100%;
  height: 100%;
  background: #54a9d2;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
}

html {
  overflow-x: hidden;
}

.sk-circle {
  width: 125px;
  height: 125px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.nav .navbar-nav .nav-item .nav-link {
  padding: 20px 12px;
}