/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --prompt: "Prompt", sans-serif;
  --primary-color: #ee332b;
  --secondary-color: #0e0e0e;
  --sub-bg: #f3f3f3;
  --heading-color: #0e0e0e;
  --paragraph: #303030;
  --span: #888888;
  --border: #d9d9d9;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 30px 0px #ee332b26;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--prompt);
  color: var(--paragraph);
  background-color: var(--white);
  line-height: 28px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--heading-color);
  font-family: var(--prompt);
}

h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 85px;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
}

p {
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-size: 16px;
}

span {
  display: inline-block;
  color: var(--span);
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--heading-color);
  transition: var(--transition);
  font-weight: 500 !important;
}

a:hover {
  color: var(--heading-color);
}
i{
  transform: none !important;
}
ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
}

::placeholder {
  color: var(--span);
}

::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--border);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 8px;
  border: 1px solid transparent;
  background-clip: content-box;
}

.section-padding {
  padding: 130px 0px;
}


#loading {
  background-color: var(--white);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  margin-top: 0px;
  top: 0px;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}
#loading .loading-icon .loading-logo {
  width: 250px;
  height: 250px;
}
#loading .loading-icon img{
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  /* transform: rotate(3deg); */
   /* transform: rotate(0.3rad);/ */
   /* transform: rotate(3grad); */ 
   /* transform: rotate(.03turn);  */
}

@keyframes spin {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading #loading-center-absolute {
    width: 60%;
  }
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.section-margin {
  margin: 130px 0px;
}

.mt-30 {
	margin-top: 30px !important;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.bor {
  border: 1px solid var(--border);
}

.bor-top {
  border-top: 1px solid var(--border);
}

.bor-left {
  border-left: 1px solid var(--border);
}

.bor-bottom {
  border-bottom: 1px solid var(--border);
}

.bor-right {
  border-right: 1px solid var(--border);
}

.border-none {
  border: none !important;
}

.image img {
  width: 100%;
}

.primary-color {
  color: var(--primary-color) !important;
}

.primary-bg {
  background-color: var(--primary-color) !important;
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.sub-bg {
  background-color: var(--sub-bg);
}

.sm-font {
  font-size: 14px;
}

.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay50 {
  position: relative;
}
.overlay50::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 14, 14, 0.5);
}

.overlay60 {
  position: relative;
}
.overlay60::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 14, 14, 0.6);
}

.overlay70 {
  position: relative;
}
.overlay70::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 14, 14, 0.7);
}

.overlay80 {
  position: relative;
}
.overlay80::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 14, 14, 0.8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-one {
  padding: 15px 25px;
  background-color: var(--primary-color);
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
  position: relative;
}
.btn-one i {
  padding: 0 5px;
  position: relative;
}
.btn-one span {
  position: relative;
  color: var(--white);
}
.btn-one::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--heading-color);
  transition: var(--transition);
}
.btn-one:hover {
  color: var(--white);
}
.btn-one:hover::before {
  width: 100%;
}

.btn-two {
  padding: 15px 20px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: var(--transition);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
}
.btn-two i {
  padding: 0 5px;
  position: relative;
}
.btn-two span {
  color: var(--heading-color);
  position: relative;
  transition: var(--transition);
}
.btn-two::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--primary-color);
  border-radius: 6px;
  transition: var(--transition);
}
.btn-two:hover {
  color: var(--white);
}
.btn-two:hover span {
  color: var(--white);
}
.btn-two:hover::before {
  width: 100%;
  left: 0px;
}

.btn-three {
  padding: 15px;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: var(--transition);
}
.btn-three i {
  padding: 0 5px;
  color: var(--primary-color);
}
.btn-three:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.radio-btn {
  display: flex;
  align-items: center;
}
.radio-btn p {
  color: var(--span);
  margin-left: 10px;
  font-size: 14px;
}
.radio-btn span {
  width: 20px;
  height: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.radio-btn span::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 6px;
  left: 6px;
}
.radio-btn .radio-btn-active {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
.radio-btn .radio-btn-active::after {
  background-color: var(--white);
}

.arry-btn button {
	text-align: center;
	width: 70px;
	height: 70px;
	line-height: 70px;
	font-size: 24px;
	border-radius: 50%;
	border: 1px solid var(--border);
	color: var(--border);
	transition: var(--transition);
	position: relative;
	background: initial;
	line-height: initial;
	padding: initial;
	margin-top: initial;
}
.arry-btn button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.arry-btn .active {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.arry-prev {
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--border);
  transition: var(--transition);
}
.arry-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.arry-next {
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.dot .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.6s;
  background-color: transparent;
  opacity: 1;
  position: relative;
  border: 1px solid var(--secondary-color);
}
.dot .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transition: 0.6s;
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--white);
}
.dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--white);
}

.dot.theme .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.6s;
  background-color: transparent;
  opacity: 1;
  position: relative;
  border: 1px solid #ababab;
}
.dot.theme .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ababab;
  transition: 0.6s;
}
.dot.theme .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--primary-color);
}
.dot.theme .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary-color);
}



/* Slick Slider */
.slick-dots {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
	justify-content: center;
	margin-top: 40px;
	height: 25px;
}
  .slick-dots li button {
    background: transparent;
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #0E0E0E;
    border-radius: 100%;
    margin: 0;
    padding: 0;
    border: none;
  }
  .slick-dots li.slick-active button {
	background: #EE332B;
  }
  .slick-dots li {
	line-height: initial;
	margin: 0;
	gap: 0;
	line-height: initial;
	display: flex;
	position: relative;
	transition:all 0.3s ease;
  }
  .slick-dots li:before {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	border: 2px solid #EE332B;
	border-radius: 100%;
	left: -7px;
	top: -7px;
	opacity: 0;
	visibility: hidden;
	transition:all 0.3s ease;
  }
  .slick-dots li.slick-active:before {
	opacity: 1;
	visibility: visible;
  }
  .nice-select {
    min-width: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    justify-content: space-between;
  }
.video {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 2;
}

.video a {
  position: relative;
  color: var(--primary-color);
  font-size: 28px;
  z-index: 1;
  background-color: var(--white);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  display: block;
  transition: 0.4s;
}

.video-pulse::after,
.video-pulse::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--white);
  opacity: 0.7;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: video-animation;
  animation-name: video-animation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.video-pulse::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: var(--transition);
}
.scroll-up::after {
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: var(--transition);
  content: "\f30c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.scroll-up svg path {
  fill: none;
}
.scroll-up svg.scroll-circle path {
  stroke: var(--primary-color);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

  /* End Post Details */
  .comment-reply-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
  }
  
  .comment-notes {
	font-size: 16px;
	margin-bottom: 20px;
  }
  
  .comment-form-comment label,
  .comment-form-author label,
  .comment-form-email label,
  .comment-form-url {
	display: none;
  }
  
  #comment,
  #author,
  #email {
	border: none;
	display: block;
	padding: 11px 25px;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 5px;
  }
  
  #comment:focus,
  #author:focus,
  #email:focus {
	outline: none;
	border-color: #0b0a60;
  }
  
  #comment {
	height: 120px;
  }
/*   
  #commentform {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-radius: 10px;
}
   */
  #commentform p {
	width: 100%;
	margin-bottom: 20px;
  }
  
  #commentform p.comment-form-email,
  #commentform p.comment-form-author {
	width: calc(50% - 10px);
  }
  
  #commentform p.comment-form-email {
	margin-left: 10px;
  }
  
  #commentform p.comment-form-author {
	margin-right: 10px;
  }
  
  #commentform .comment-form-cookies-consent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
  }
  
  #commentform .comment-form-cookies-consent label {
	margin-bottom: 0;
	margin-left: 10px;
  }
  
  #commentform #wp-comment-cookies-consent {
	margin-top: -1px;
	width: 14px;
}
  
  #commentform p.form-submit {
	margin: 0;
  }
  
  .cs-comment_btn {
	line-height: 1.6em;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: none;
	border-radius: 25px;
	padding: 10px 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  
  .comments-title,
  .comment-reply-title {
	font-size: 24px;
	margin-bottom: 15px;
  }
  
  .cs-comment_wrapper {
	padding: 45px 30px;
	margin-bottom: 70px;
	border-radius: 10px;
	background-color: #fff;
	padding-bottom: 4px;
  }
  
  .comment-list {
	list-style: none;
	margin: 0;
  }
  
  .comment-list > .comment:not(:last-child) {
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #eaeaea;
  }
  
  .comment-list > .comment:last-child {
	margin-bottom: 0;
  }
  
  .comment-list .children {
	border-top: 1px solid #eaeaea;
	margin-top: 60px;
	padding-top: 60px;
  }
  
  .comment-list .children .comment:not(:first-child) {
	border-width: 1px 0 0;
	border-style: solid;
	margin-top: 30px;
	padding-top: 30px;
  }
  
  .comment-list .bypostauthor:not(:last-child) {
	border-bottom: 1px solid #eeeeff;
	margin-bottom: 50px;
  }
  
  .comment-list .comment-body {
	padding-top: 0;
	position: relative;
	min-height: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
  .comment-list ol {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .comment-list ol.children {
	padding-left: 50px;
  }
  
  .comment-list .avatar {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	height: 170px;
	width: 170px;
  }
  
  .comment-list .comment-author .says {
	display: none;
  }
  
  .comment-list .fn {
	font-style: initial;
	font-weight: 500;
	color: #0b0a60;
	display: inline-block;
	font-size: 18px;
	margin-bottom: 0px;
	line-height: 1.2em;
  }
  
  .comment-list .comment-meta {
	display: block;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.2em;
	margin-top: 5px;
  }
  
  .comment-list .comment-meta a:hover {
	color: #0b0a60;
  }
  
  .comment-list .comment-meta + p,
  .comment-list .comment-meta + p + p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 0;
  }
  
  .comment-list .reply a {
	padding: 4px 15px;
	display: inline-block;
	font-size: 14px;
	background-color: #f2f3f7;
	color: #18191d;
	line-height: 1.6em;
	border-radius: 0;
	font-weight: 400;
}
  .comment-list .reply a:hover {
	background-color: #18191d;
	color: #fff;
  }
  
  .url {
	font-weight: 600;
	font-size: 20px;
	color: #18191d;
  }
  
  .reply {
	position: absolute;
	top: 5px;
	right: 0;
  }
  
  .comment-list .bypostauthor .comment-body:last-child {
	margin-bottom: 0;
  }
  
  #commentform p.logged-in-as {
	font-size: 16px;
	margin-top: -5px;
  }
  
  #commentform p.logged-in-as a:hover {
	text-decoration: underline;
  }
  
  .comment-reply-title small {
	margin-left: 15px;
	font-size: 16px;
	font-weight: 500;
	color: red;
  }
  
  .comment-reply-title small a:hover {
	text-decoration: underline;
  }
  
  .comment-list.cs-type1 > .comment {
	padding: 0;
  }
  
  .comment-list.cs-type1 > .comment:not(:last-child) {
	margin-bottom: 30px;
  }
  
  .comment-list.cs-type1 .comment-body p {
	margin-bottom: 0;
  }
  
  .comment-list.cs-type1 .comment-meta {
	margin-bottom: 15px;
	margin-top: 0px;
  }
  
  .semi_rotate {
	-webkit-animation-name: semiRotate;
			animation-name: semiRotate;
	-webkit-animation-duration: 5s;
			animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
  }
  
  .moving_x {
	-webkit-animation-name: movingX;
			animation-name: movingX;
	-webkit-animation-duration: 5s;
			animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
  }
  
  @-webkit-keyframes semiRotate {
	0%, 100% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	25%, 75% {
	  -webkit-transform: rotate(10deg);
			  transform: rotate(10deg);
	}
	50% {
	  -webkit-transform: rotate(20deg);
			  transform: rotate(20deg);
	}
  }
  
  @keyframes semiRotate {
	0%, 100% {
	  -webkit-transform: rotate(0);
			  transform: rotate(0);
	}
	25%, 75% {
	  -webkit-transform: rotate(10deg);
			  transform: rotate(10deg);
	}
	50% {
	  -webkit-transform: rotate(20deg);
			  transform: rotate(20deg);
	}
  }
  @-webkit-keyframes movingX {
	0% {
	  -webkit-transform: translateX(-30px);
			  transform: translateX(-30px);
	}
	50% {
	  -webkit-transform: translateX(-10px);
			  transform: translateX(-10px);
	}
	100% {
	  -webkit-transform: translateX(-30px);
			  transform: translateX(-30px);
	}
  }
  @keyframes movingX {
	0% {
	  -webkit-transform: translateX(-30px);
			  transform: translateX(-30px);
	}
	50% {
	  -webkit-transform: translateX(-10px);
			  transform: translateX(-10px);
	}
	100% {
	  -webkit-transform: translateX(-30px);
			  transform: translateX(-30px);
	}
  }
  
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	overflow-x: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,ul li{
	list-style:none;
	padding:0;
	margin:0;
	position:relative;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

.p-relative{
  position: relative !important;
}
dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}
.border-none{
  border:none !important;
}
img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}

.mg-btm-20{
  margin-bottom: 20px !important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
	border-radius: 5px;
	font-weight: 400;
	font-size: 16px;
	border: 1px solid transparent;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,.nice-select {
	width: 100%;
	border-radius: 5px;
	font-weight: 400;
	font-size: 14px;
	color: #212529;
  background-color: var(--sub-bg);
  border: 1px solid var(--border);
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color:#212529;
}

textarea {
	width: 100%;
	min-height: 185px;
}
input,textarea,select{
  width:100% !important;
}
/* input::placeholder{
	color:#18191d !important;
	opacity: 1 !important;
}
input::-ms-input-placeholder{
	color:#18191d !important;
	opacity: 1 !important;
}
textarea::placeholder{
	color:#18191d !important;
	opacity: 1 !important;
}
textarea::-ms-input-placeholder{
	color:#18191d !important;
	opacity: 1 !important;
} */

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
}
a,button,input,span{
  transition: all 0.3s ease;
}

a:hover, a:focus, a:active {
	color: inherit;
	text-decoration: none;
	color: #EE332B;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
	margin-bottom: 30px;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content, .entry-content, .entry-summary {
	margin: 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
	font-size: 13px;
}


.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}