:root {
	--main-color: #004EEB;
	--title-color: #0D0D0D;
	--paragraph-color: #000;
}
body{
	margin: 0;
	padding: 0;
	color: var(--paragraph-color);
	font-size: 16px;
	font-weight: normal;
	font-family: 'Switzer';
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
	color: var(--title-color);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}
h1{
	font-size: 50px;
}
h2{
	font-size: 32px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 18px;
}
h5{
	font-size: 16px;
}
h6{
	font-size: 14px;
}

ul{
	margin: 0;
	padding: 0;
}

a{
	color: var(--main-color);
	text-decoration: none;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

/*
==================
 Header
==================
*/

.site-header{
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.site-header .menu-bar .menu-container{
	max-width: 1320px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 100px;
	margin: auto;
	padding: 0 10px;
}
.site-header .menu-bar .site-logo a{
	display: inline-block;
}
.site-header .menu-bar .main-navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.site-header .menu-bar .main-navigation li{
	position: relative;
}
.site-header .menu-bar .main-navigation li a{
	display: inline-block;
	color: var(--title-color);
	font-weight: 500;
	padding: 38px 13px;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.site-header .menu-bar .main-navigation li a:hover{
	color: var(--main-color);
}
.site-header .menu-bar .main-navigation li a i{
	font-size: 10px;
	margin-left: 3px;
}
.site-header .menu-bar .search-icon{
	cursor: pointer;
}
.site-header .menu-bar .search-icon i{
	color: var(--title-color);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.site-header .menu-bar .search-icon:hover i{
	color: var(--main-color);
}

/* Sub Menu */

.site-header .menu-bar .main-navigation li .sub-menu{
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 270px;
	background-color: #fff;
	top: 130%;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	transition: 0.5s;
}
.site-header .menu-bar .main-navigation li:hover > .sub-menu{
	top: 100%;
	visibility: visible;
	opacity: 1;
	z-index: 99;
}
.site-header .menu-bar .main-navigation .sub-menu li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	padding: 10px 20px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.site-header .menu-bar .main-navigation .sub-menu li a:hover{
	color: var(--main-color);
}

/* Sub sub Menu */

.site-header .menu-bar .main-navigation .sub-menu li .sub-menu{
	top: 0;
	left: 100%;
	display: none;
}
.site-header .menu-bar .main-navigation .sub-menu li:hover > .sub-menu{
	display: block;
}

/* Transparent Menu */

.site-header.transparent-menu{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: none;
	z-index: 99;
}
.site-header.transparent-menu .menu-bar .main-navigation li a {
	color: #fff;
}
.site-header.transparent-menu .menu-bar .main-navigation .sub-menu li a {
	color: var(--title-color);
}
.site-header.transparent-menu .menu-bar .search-icon i {
	color: #fff;
}

/*
==================
 Header One
==================
*/

.site-header1 .topbar{
    background-color: var(--main-color);
    padding: 9px 0;
}
.site-header1 .topbar p{
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}
.site-header1.sticky {
	position: fixed;
	width: 100%;
	z-index: 99;
	animation: fadeInDown 0.5s ease-out;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.site-header1 .menu-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-header1 .site-logo {
	display: flex;
	align-items: center;
	line-height: 1;
	text-align: center;
}
.site-header1 .menu-search{
	margin-left: 36px;
}
.site-header1 .menu-search form{
	position: relative;
}
.site-header1 .menu-search form input{
	font-size: 13px;
	border: 1px solid #cdcdcd;
	padding: 7px 20px 7px 32px;
	max-width: 175px;
}
.site-header1 .menu-search form i{
	position: absolute;
	left: 10px;
	top: 50%;
	font-size: 13px;
	transform: translateY(-50%);
}
.site-header1 nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.site-header1 nav ul li {
	position: relative;
	margin-right: 27px;
}
.site-header1 nav ul li:last-child{
	margin-right: 0;
}
.site-header1 nav ul li a {
	display: inline-block;
	color: var(--title-color);
	font-weight: 500;
	padding: 29px 0;
	transition: 0.3s;
}
.site-header1 nav ul li a i {
	font-size: 9px;
	margin-left: 5px;
}
.site-header1 nav ul li a:hover {
	color: #387ff2;
}
.site-header1 nav ul li .sub-menu {
	position: absolute;
	display: block;
	background-color: #fff;
	width: 270px;
	left: 0;
	top: 133%;
	padding: 16px 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}
.site-header1 nav ul li .sub-menu li {
	margin-right: 0;
}
.site-header1 nav ul li .sub-menu li a {
	color: #003B5A;
	display: block;
	padding: 10px 20px;
	transition: 0.3s;
}
.site-header1 nav ul li .sub-menu li a:hover {
	color: var(--main-color);
}
.site-header1 nav ul li:hover .sub-menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

.site-header1 .menu-button{
	display: flex;
	align-items: center;
}
.site-header1 .menu-button .btn-wrap{
	display: inline-block;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 38%, rgba(255, 255, 255, 0.1) 81%, rgb(255, 255, 255) 100%);
	border-radius: 50px;
	padding: 1px;

}
.site-header1 .menu-button .button {
	position: relative;
	display: inline-block;
	color: #fff;
	background-color: #002253;
	padding: 12px 20px;
	border-radius: 30px;
	z-index: 1;
	overflow: hidden;
	transition: 0.5s;
}
.site-header1 .menu-button .button i {
	margin-left: 8px;
}
.site-header1 .menu-button .button span {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #fff;
	transition: width 0.5s, height 0.5s;
	z-index: -1;
}
.site-header1 .menu-button .button:hover {
	color: #003B5A;
}
.site-header1 .menu-button .button:hover span {
	width: 375px;
	height: 375px;
}









.btn-epic {
  position: relative;
  display: inline-block;
  margin: auto;
  width: 126px;
  height: 48px;
  background: #fff;
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  transition-delay: 0.6s;
  border-radius: 30px;
  overflow: hidden;
}
.btn-epic:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}
.btn-epic:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #002253;
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}
.btn-epic div {
  position: relative;
  top: 11px;
  width: 100%;
  height: 26px;
  overflow: hidden;
}
.btn-epic span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}
.btn-epic span:first-child {
  color: #fff;
  transform: translateY(24px);
}
.btn-epic span:last-child {
  color: #fff;
  transform: translateY(0);
}
.btn-epic:hover {
  background: #fff;
  transition: background 0.2s linear;
  transition-delay: 0.6s;
}
.btn-epic:hover:after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0;
}
.btn-epic:hover:before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0;
}
.btn-epic:hover span:first-child {
  transform: translateY(0);
}
.btn-epic:hover span:last-child {
  transform: translateY(-24px);
}













.site-header1 .menu-button .btn2{
	position: relative;
	margin-left: 2px;
}
.site-header1 .menu-button .btn2-wrap{
	line-height: 1;
}
.site-header1 .menu-button .btn-2{
	position: relative;
	display: inline-block;
	color: #fff;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
	background-color: #131228;
}
.site-header1 .menu-button .btn-2 svg{
	position: absolute;
	left: 0;
	bottom: 0;
}
.site-header1 .menu-button .btn-2 i{
	transform: rotate(-45deg);
}
@media (max-width: 1199px) {
	.site-header1 {
		display: none;
	}
}

/*
==================
 Header Two
==================
*/

.site-header2.sticky {
  position: fixed;
  width: 100%;
  z-index: 99;
  animation: fadeInDown 0.5s ease-out;
}
.site-header2.sticky .topbar {
  display: none;
}
.site-header2 .topbar {
  background-color: #F5F7FA;
}
.site-header2 .topbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.site-header2 .topbar .wrapper .separator {
  height: 25px;
  width: 1px;
  background-color: #003B5A;
}
.site-header2 .topbar .wrapper .email i {
  color: #003B5A;
  margin-right: 5px;
}
.site-header2 .topbar .wrapper .email a {
  color: #616670;
  transition: 0.3s;
}
.site-header2 .topbar .wrapper .email a:hover {
  color: #FF5C00;
}
.site-header2 .topbar .wrapper .location {
  color: #616670;
}
.site-header2 .topbar .wrapper .location i {
  color: #003B5A;
  margin-right: 10px;
}
.site-header2 .topbar .wrapper .contact-number {
  position: relative;
}
.site-header2 .topbar .wrapper .contact-number i {
  color: #003B5A;
  margin-right: 10px;
}
.site-header2 .topbar .wrapper .contact-number a {
  color: #616670;
  transition: 0.3s;
}
.site-header2 .topbar .wrapper .contact-number a:hover {
  color: #FF5C00;
}
.site-header2 .topbar .wrapper .icons {
  display: flex;
  align-items: center;
  list-style: none;
}
.site-header2 .topbar .wrapper .icons li {
  margin-left: 15px;
}
.site-header2 .topbar .wrapper .icons li a {
  color: #003B5A;
  font-size: 15px;
  padding: 5px;
  transition: 0.3s;
}
.site-header2 .topbar .wrapper .icons li a:hover {
  color: #FF5C00;
}
.site-header2 .topbar .wrapper .icons li:first-child {
  margin-left: 0;
}
.site-header2 .menubar {
  background-color: #14506F;
}
.site-header2 .menubar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header2 .menubar .wrapper .site-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 92px;
  flex-basis: 220px;
}
.site-header2 .menubar .wrapper .site-logo::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1000%;
  background-color: #FF5C00;
  right: 0;
}
.site-header2 .menubar .wrapper .site-logo a {
  position: relative;
  display: inline-block;
}
.site-header2 .menubar .wrapper .site-logo a h2{
  color: #fff;
}
.site-header2 .menubar .wrapper nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.site-header2 .menubar .wrapper nav ul li {
  position: relative;
  margin-right: 26px;
}
.site-header2 .menubar .wrapper nav ul li a {
  display: inline-block;
  color: #fff;
  padding: 31px 0;
  transition: 0.3s;
}
.site-header2 .menubar .wrapper nav ul li a i {
  font-size: 9px;
  margin-left: 5px;
}
.site-header2 .menubar .wrapper nav ul li a:hover {
  color: #FF5C00;
}
.site-header2 .menubar .wrapper nav ul li .sub-menu {
  position: absolute;
  display: block;
  background-color: #fff;
  width: 270px;
  left: 0;
  top: 133%;
  padding: 16px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.site-header2 .menubar .wrapper nav ul li .sub-menu li {
  margin-right: 0;
}
.site-header2 .menubar .wrapper nav ul li .sub-menu li a {
  color: #003B5A;
  display: block;
  padding: 10px 20px;
  transition: 0.3s;
}
.site-header2 .menubar .wrapper nav ul li .sub-menu li a:hover {
  color: #FF5C00;
}
.site-header2 .menubar .wrapper nav ul li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.site-header2 .menubar .wrapper .menu-element {
  display: flex;
  align-items: center;
}
.site-header2 .menubar .wrapper .menu-element .search-icon {
  color: #fff;
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.site-header2 .menubar .wrapper .menu-element .search-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.site-header2 .menubar .wrapper .menu-element .language {
  position: relative;
  margin-left: 17px;
  padding: 20px 0;
}
.site-header2 .menubar .wrapper .menu-element .language:hover ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.site-header2 .menubar .wrapper .menu-element .language i {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  height: 52px;
  width: 52px;
  line-height: 52px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.site-header2 .menubar .wrapper .menu-element .language i:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.site-header2 .menubar .wrapper .menu-element .language ul {
  position: absolute;
  top: 133%;
  right: 0;
  list-style: none;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.site-header2 .menubar .wrapper .menu-element .language ul li a {
  display: inline-block;
  color: #003B5A;
  padding: 2px 20px;
  transition: 0.3s;
}
.site-header2 .menubar .wrapper .menu-element .language ul li a:hover {
  color: #FF5C00;
}
@media (max-width: 1199px) {
  .site-header2 {
    display: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*
==================
 Mobile Menu
==================
*/

.mobile-menu{
	position: relative;
	/*top: 0;*/
	/*left: 0;*/
	/*width: 100%;*/
	z-index: 9;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	display: none;
}
.mobile-menu .menu-bar{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
}
.mobile-menu .menu-toggle{
	cursor: pointer;
}
.mobile-menu .menu-toggle i{
	color: var(--main-color);
	font-size: 24px;
}
.mobile-menu .menu-content{
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	background: #fff;
	padding: 30px 30px 40px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	z-index: 99;
}
.mobile-menu .menu-ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu .menu-ul li{
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .menu-ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	font-weight: 600;
	text-decoration: none;
	padding: 10px 10px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.mobile-menu .menu-ul li a:hover{
	color: var(--main-color);
}
.mobile-menu .menu-ul li a i{
	padding: 0 10px;
}
.mobile-menu .menu-ul .sub-menu{
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	display: none;
}
.mobile-menu .menu-content .info {
	margin: 30px 0 0;
}
.mobile-menu .menu-content .info .title {
	position: relative;
	font-size: 22px;
	margin-bottom: 16px;
	padding-left: 15px;
}
.mobile-menu .menu-content .info .title::before {
	content: '';
	position: absolute;
	height: 20px;
	width: 3px;
	background-color: var(--main-color);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.mobile-menu .menu-content .info-box {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.mobile-menu .menu-content .info-box i {
	margin-right: 10px;
}
.mobile-menu .menu-content .info-box a{
	color: var(--paragraph-color);
}
.mobile-menu .menu-content .info-box a:hover{
	color: var(--main-color);
}
.mobile-menu .menu-content .search-icon i {
	color: #fff;
	font-size: 15px;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	background-color: var(--main-color);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.mobile-menu .menu-content .component{
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	padding-top: 20px;
}
.mobile-menu .menu-content .search-icon i:hover{
	background-color: var(--title-color);
}
.mobile-menu .menu-content .component .menu-btn {
	margin-left: 20px;
}
.mobile-menu .menu-content .component .menu-btn a {
	display: inline-block;
	color: #fff;
	padding: 12px 20px;
	background-color: var(--main-color);
	border-radius: 5px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.mobile-menu .menu-content .component .menu-btn a:hover{
	background-color: var(--title-color);
}
.mobile-menu .menu-content .component .menu-btn a i {
	margin-left: 3px;
}

/* Sub menu */

.mobile-menu .menu-ul li .sub-menu li{
	border-bottom: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media(max-width: 1199px){

	.top-bar{
		display: none;
	}
	.site-header{
		display: none;
	}
	.site-header1{
		display: none;
	}
	.site-header2{
		display: none;
	}
	.mobile-menu{
		display: block;
	}
}

/*================
 Search Popup
==================*/

.search-window{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
	-webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.search-active .search-window{
	transform: translateY(0%);
	margin-top: 0;
}
.search-window .search-close {
	position: absolute;
	right: 40px;
	top: 40px;
	margin: 0;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	border: 0;
	padding: 0;
	border-radius: 5px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.search-active .search-window .search-close{
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}
.search-window .search-close i{
	display: inline-block;
	color: #ffffff;
	font-size: 24px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	background-color: var(--main-color);
	border-radius: 5px;
}
.search-window form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-active .search-window form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}
.search-window .form-group{
	position:relative;
	margin:0px; 
	overflow: hidden;
}
.search-window .form-group input[type="text"],
.search-window .form-group input[type="search"]{
	position:relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	height: 70px;
	width: 100%;
	padding: 10px 170px 10px 30px;
	background-color: #ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	border: 0;
	outline: 0;
	border-radius: 5px;
}
.search-window .form-group input[type="submit"],
.search-window .form-group button {
	position: absolute;
	right: 0;
	top: 0px;
	height: 70px;
	width: 140px;
	line-height: 70px;
	background: var(--main-color);
	text-align: center;
	font-size: 24px;
	color: #fff;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: none;
	border-radius: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.search-window .form-group input[type="submit"]:hover,
.search-window .form-group button:hover{
	color: #000000;
}
.search-window input::placeholder,
.search-window textarea::placeholder{
	color:#000000;
}

/*
==================
 Preloader
==================
*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f7f7f7;
	z-index: 999999;
}
.preloader {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
}
.preloader span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: var(--main-color);
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite;
}
.preloader span:last-child {
	animation-delay: -0.8s;
	-webkit-animation-delay: -0.8s;
}
@keyframes preloader {
	0% {
		transform: scale(0, 0);
		opacity: 0.5;
	}
	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*
==================
 Breadcrumb
==================
*/

.breadcrumb-area{
	position: relative;
	background-color: #F5F9FF;
	padding: 138px 0 156px;
}
.breadcrumb-area .blog-container{
    max-width: 990px;
    padding: 0 12px;
    margin: auto;
}
.breadcrumb-area .blog-container .text-wrapper{
    max-width: 70%;
}
.breadcrumb-area .title h1{
    color: #fff;
	font-size: 48px;
	font-weight: bold;
	letter-spacing: -0.96;
	margin-bottom: 0;
}
.breadcrumb-area .breadcrumb{
	margin: 30px 0 0 0;
}
.breadcrumb-area .text-wrapper{
    max-width: 51%;
}
.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb span{
    color: #fff;
	font-weight: 500;
	word-break: break-word;
}
.breadcrumb-area .breadcrumb .breadcrumb-separator{
    color: #fff;
	margin: 0 13px;
}

@media(max-width: 1199px){

	.breadcrumb-area {
		padding: 150px 0 150px;
	}
	.breadcrumb-area .title h1 {
		font-size: 38px;
	}
}

@media(max-width: 991px){
    .breadcrumb-area .text-wrapper{
        max-width: 70%;
    }
}
@media(max-width: 767px){
	
	.breadcrumb-area {
		padding: 88px 0 92px;
	}
	.breadcrumb-area .text-wrapper{
        max-width: 80%;
    }
	.breadcrumb-area .title{
		width: 100%;
		margin-bottom: 15px;
	}
	.breadcrumb-area .title h1 {
		font-size: 28px;
	}
	.breadcrumb-area .breadcrumb-items ul li {
		font-size: 16px;
	}
}

/*==============
 Site Main
================*/

.site-main{
	padding: 120px 0 120px;
}
.default-page ul{
	padding-left: 17px;
}

/*==============
 Home Posts
================*/

.standard-post article{
	margin-bottom: 80px;
}
.standard-post article:last-child{
	margin-bottom: 0;
}
.standard-post article.sticky{
	padding: 50px;
	border: 1px solid var(--main-color);
	border-radius: 20px;
}
.standard-post article .post-thumb{
	position: relative;
	margin-bottom: 28px;
	border-radius: 20px;
	overflow: hidden;
}
.standard-post article .post-thumb .date {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--title-color);
    font-size: 14px;
    background-color: #fff;
    padding: 9px 20px 4px;
    border-bottom: 2px solid var(--title-color);
    border-radius: 20px;
}
.standard-post article .content .entry-meta{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.standard-post article .content .entry-meta .author{
	font-size: 14px;
	margin-right: 19px;
}
.standard-post article .content .entry-meta .author i{
	color: var(--title-color);
	margin-right: 5px;
}
.standard-post article .content .entry-meta .category{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
	margin-right: 18px;
}
.standard-post article .content .entry-meta .category i{
	color: var(--title-color);
	
}
.standard-post article .content .entry-meta .category a{
	color: var(--paragraph-color);
	margin-left: 5px;
}
.standard-post article .content .entry-meta .comment{
	font-size: 14px;
}
.standard-post article .content .entry-meta .comment i{
	color: var(--title-color);
	margin-right: 5px;
}
.standard-post article .content .entry-title{
	margin-bottom: 21px;
}
.standard-post article .content .entry-title a{
	color: var(--title-color);
	transition: 0.3s;
}
.standard-post article .content .entry-title a:hover{
	color: var(--main-color);
}
.standard-post article .content .entry-content{
	margin: 0;
}
.standard-post article .content .excerpt{
	margin-bottom: 31px;
}
.standard-post article .content .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-family: "Urbanist";
	letter-spacing: 1.28px;
	background-color: var(--title-color);
	padding: 15px 30px;
	border-radius: 40px;
	z-index: 1;
	overflow: hidden;
}
.standard-post article .content .button span {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--main-color);
	transition: width 0.5s, height 0.5s;
	z-index: -1;
}
.standard-post article .content .button:hover span {
	width: 350px;
	height: 350px;
}
.standard-post article .content .button i {
	margin-left: 10px;
}

.navigation.pagination{
	margin: 45px 0 0;
	justify-content: center;
}
.navigation.pagination .page-numbers a:hover,
.navigation.pagination .page-numbers span.current{
	display: inline-block;
	color: #fff;
	font-weight: bold;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 5px;
}
.navigation.pagination .page-numbers li{
	display: inline-block;
	margin: 5px;
}
.navigation.pagination .page-numbers a{
	display: inline-block;
	color: var(--title-color);
	font-weight: bold;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-radius: 5px;
}

/*
==================
Blog Grid
==================
*/
.blog-grid{
	padding: 84px 0 61px;
}
.blog-grid .post{
	border-radius: 16px;
	margin-bottom: 30px;
	background-color: #fff;
	transition: all 0.3s ease-in-out 0s;
}
.blog-grid .post:hover{
	border-color: transparent;
	box-shadow: 6px 5px 30px rgb(0 0 0 / 12%);
}
.blog-grid .post .blog-thumb img{
    width: 100%;
    height: 283px;
    object-fit: cover;
    border-radius: 16px 16px 2px 2px;
}
.blog-grid .post .blog-content{
	padding: 15px 15px 18px;
}
.blog-grid .entry-title a:hover{
	color: var(--main-color);
}
.blog-grid .post .blog-content .entry-meta .author{
	position: relative;
	color: #004EEB;
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0 27px 0 0;
}
.blog-grid .post .blog-content .entry-meta .author::after{
	content: '';
	position: absolute;
	height: 7px;
	width: 7px;
	border-radius: 30px;
	background-color: #F1F3F7;
	bottom: 3px;
	right: -18px;
}
.blog-grid .post .blog-content .entry-meta .date{
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
}
.blog-grid .post .blog-content .entry-title{
	font-size: 24px;
	font-weight: bold;
	margin: 15px 0 10px 0;
}
.blog-grid .post .blog-content .entry-title a{
	color: var(--title-color);
	transition: 0.3s;
}
.blog-grid .post .blog-content .entry-title a:hover{
	color: var(--main-color);
}
.blog-grid .post .blog-content .read-more {
	color: #FFFFFF;
	background-color: #0B0919;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.625;
	display: inline-flex;
	padding: 10px 24px;
	border-radius: 9999px;
	margin-top: 10px;
	transition: 0.4s;
}
.blog-grid .post .blog-content .read-more:hover{
    color: #FFFFFF;
	background-color: var(--main-color);
}

/*==============
 Archive Page
================*/

.archive-page article{
	margin-bottom: 80px;
}
.archive-page article:last-child{
	margin-bottom: 0;
}
.archive-page article.sticky{
	border: 1px solid var(--main-color);
}
.archive-page article .post-thumb{
	position: relative;
	margin-bottom: 28px;
	border-radius: 20px;
	overflow: hidden;
}
.archive-page article .post-thumbnail img{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.archive-page article .post-thumb .date {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--title-color);
    font-size: 14px;
    background-color: #fff;
    padding: 9px 20px 4px;
    border-bottom: 2px solid var(--title-color);
    border-radius: 20px;
}
.archive-page article .content .entry-meta{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.archive-page article .content .entry-meta .author{
	font-size: 14px;
	margin-right: 19px;
}
.archive-page article .content .entry-meta .author i{
	color: var(--title-color);
	margin-right: 5px;
}
.archive-page article .content .entry-meta .category{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
	margin-right: 18px;
}
.archive-page article .content .entry-meta .category i{
	color: var(--title-color);
}
.archive-page article .content .entry-meta .category a{
	color: var(--paragraph-color);
	margin-left: 5px;
}
.archive-page article .content .entry-meta .comment{
	font-size: 14px;
}
.archive-page article .content .entry-meta .comment i{
	color: var(--title-color);
	margin-right: 5px;
}
.archive-page article .content .entry-title{
	margin-bottom: 21px;
}
.archive-page article .content .entry-title a{
	color: var(--title-color);
	transition: 0.3s;
}
.archive-page article .content .entry-title a:hover{
	color: var(--main-color);
}
.archive-page article .content .entry-content{
	margin: 0;
}
.archive-page article .content .excerpt{
	margin-bottom: 31px;
}
.archive-page article .content .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-family: "Urbanist";
	letter-spacing: 1.28px;
	background-color: var(--title-color);
	padding: 15px 30px;
	border-radius: 40px;
	z-index: 1;
	overflow: hidden;
}
.archive-page article .content .button span {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--main-color);
	transition: width 0.5s, height 0.5s;
	z-index: -1;
}
.archive-page article .content .button:hover span {
	width: 350px;
	height: 350px;
}
.archive-page article .content .button i {
	margin-left: 10px;
}

/*==============
 Search Results
================*/

.search-results article {
	margin-bottom: 30px;
	border-radius: 5px;
}
.search-results article:last-child{
	margin-bottom: 0;
}
.search-results article .post-thumbnail img{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.search-results article .content{
	padding: 30px 40px 30px;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.search-results article .content .post-categories{
	margin: 0 0 13px;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.search-results article .content .post-categories li{
	margin: 0 10px 5px 0;
}
.search-results article .content .post-categories li a{
	display: inline-block;
	color: #fff;
	font-size: 14px;
	background-color: var(--main-color);
	padding: 7px 22px;
	border-radius: 20px;
	transition: 0.3s;
}
.search-results article .content .post-categories li a:hover{
	background-color: var(--title-color);
}
.search-results article .content .entry-meta .posted-on a{
	color: #6c7470;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
}
.search-results article .content .entry-meta .byline{
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
}
.search-results article .content .entry-meta .byline::before{
	content: '';
	position: absolute;
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: rgba(18, 29, 23, 0.15);
	left: 0;
	top: 5px;
}
.search-results article .content .entry-meta .byline a{
	color: #6c7470;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.search-results article .content .entry-meta .byline a:hover{
	color: var(--main-color);
}
.search-results article .content .entry-title{
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 16px;
}
.search-results article .content .entry-title a{
	color: var(--title-color);
}
.search-results article .content .entry-title a:hover{
	color: var(--main-color);
}
.search-results article .content .entry-content{
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(18, 29, 23, 0.1);
}
.search-results article .content .excerpt{
	margin-bottom: 14px;
}
.search-results article .content .continue-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--title-color);
	font-size: 15px;
	font-weight: 500;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.search-results article .content .continue-btn:hover{
	color: var(--main-color);
}
.search-results article .content .continue-btn::before {
	content: '';
	position: absolute;
	height: 1px;
	background-color: rgba(18, 29, 23, 0.2);
	bottom: 6px;
	left: 0;
	right: 8px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.search-results article .content .continue-btn:hover::before{
	background-color: var(--main-color);
}

.no-results .page-content .search-form{
	margin-top: 30px;
}
.no-results .page-content .search-form .search-field{
	outline: 0;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-radius: 5px;
	padding: 19px 20px;
}
.no-results .page-content .search-form .search-submit {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	background-color: var(--main-color);
	margin-left: 10px;
	padding: 22px 30px;
	border: 0;
	border-radius: 5px;
}

/*==============
 Blog Details
================*/

.blog-details{
    background-color: #F1F3F7;
}
.blog-details article{
    position: relative;
    margin-top: -70px;
	margin-bottom: 3px;
	padding: 50px 45px;
	background-color: #fff;
	border-radius: 20px;
}
.blog-details article .reading-time{
    display: inline-block;
    color: var(--main-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 36px;
}
.blog-details article .post-thumbnail{
	margin-bottom: 29px;
}
.blog-details article .post-thumbnail img{
	height: 411px;
	object-fit: cover;
	border-radius: 20px;
}
.blog-details article .entry-title{
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 16px;
}
.blog-details article .entry-title a{
	color: var(--title-color);
}
.blog-details .entry-content{
	margin: 0;
}
.blog-details .entry-content h3{
	margin-bottom: 20px;
}
.blog-details .entry-content ol,
.blog-details .entry-content ul{
	margin-bottom: 15px;
	padding-left: 17px;
}
.blog-details .entry-content ul > li{
	position: relative;
	color: var(--title-color);
	margin-bottom: 10px;
}
.blog-details .entry-content form input[type="password"]{
	padding: 10px 20px;
	border: 1px solid rgba(18, 29, 23, 0.1);
	outline: 0;
}
.blog-details .entry-content form input[type="password"]:focus {
	outline: 0;
	border-color: rgba(123, 185, 47, 0.5);
}
.blog-details .entry-content form input[type="submit"]{
	color: #fff;
	border: 0;
	outline: 0;
	background-color: var(--main-color);
	padding: 12px 20px;
}
.wp-block-quote {
	color: rgba(0, 59, 90, 0.8);
	margin: 0 0 22px;
	padding: 40px 40px 23px;
	background-color: #F5F7FA;
	border: 0;
	border-radius: 20px;
}
blockquote p{
	margin-bottom: 13px;
}
blockquote cite {
	color: var(--main-color);
	font-size: 16px;
}
blockquote p strong{
	color: var(--title-color);
	font-size: 18px;
	font-family: "Urbanist", sans-serif;
}
.blog-details .post-footer{
	padding: 32px 0 19px;
	border-top: 1px solid #E3E3E3;
	border-bottom: 1px solid #E3E3E3;
}
.blog-details .post-footer .tags{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.blog-details .post-footer .tags ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
}
.blog-details .post-footer .tags ul li a{
	display: inline-block;
	color: #616670;
	background-color: #F5F7FA;
	margin: 0 10px 10px 0;
	padding: 2px 19px;
	border-radius: 20px;
	transition: 0.3s;
}
.blog-details .post-footer .tags ul li a:hover{
	color: #fff;
	background-color: var(--main-color);
}

.blog-details .post-footer .social-share{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.blog-details .post-footer .social-share .share-title{
	margin: 0 10px 0 0;
}
.blog-details .post-footer .social-share .social-share-buttons{
    display: flex;
    align-items: center;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    padding: 0 14px;
}
.blog-details .post-footer .social-share .social-share-buttons a {
    display: inline-block;
    color: var(--title-color);
    margin-right: 10px;
    padding: 3px 5px;
    transition: 0.3s;
}
.blog-details .post-footer .social-share .social-share-buttons a:last-child{
	margin-right: 0;
}
.blog-details .post-footer .social-share .social-share-buttons a:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 100px;
}
.related-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}
.related-posts-grid {
    display: flex;
    gap: 20px;
}
.related-post-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
}
.related-thumb img {
    width: 100%;
    height: 283px;
    object-fit: cover;
}
.related-content {
    padding: 18px;
}
.related-post-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.4;
}
.related-post-title a {
    color: #333;
    text-decoration: none;
}
.related-post-title a:hover {
    color: #0073aa;
}
.related-meta {
    font-size: 14px;
    color: #0D0D0D;
}

.related-comments a {
    color: #004EEB;
    text-decoration: none;
}

.related-comments a:hover {
    text-decoration: underline;
}

.related-date {
    margin-left: 6px;
}

@media(max-width: 991px){
    
    .related-posts-grid{
        display: block;
    }
    .related-post-card{
        margin-bottom: 20px;
    }
}

/* Page Links */

.entry-content .page-links{
	margin: 0;
}
.entry-content .page-links .post-page-numbers{
	margin: 0 2px;
}
.entry-content .page-links a:hover,
.entry-content .page-links span.current{
	display: inline-block;
	color: #fff;
	font-weight: bold;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 3px;
}
.entry-content .page-links li{
	display: inline-block;
	margin: 5px;
}
.entry-content .page-links a{
	display: inline-block;
	color: var(--title-color);
	font-weight: bold;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-radius: 3px;
}

/* Random Style */

.parisride-margin-0{
	margin: 0;
}

/* Unit Test */

.wp-block-button.is-style-squared a{
	border-radius: 0;
}

/*==============
 Comment Area
================*/

.comments-area{
	margin-top: 41px;
}
.comments-area .comments-title{
	margin-bottom: 32px;
}
.comments-area .comment-list .children{
	padding-left: 60px;
}
.comments-area .comment-list .comment-item{
	margin-bottom: 30px;
}
.comments-area .comment-list .comment-item-comment{
	display: flex;
}
.comments-area .comment-list .comment-item-comment-image{
	flex-shrink: 0;
	margin-right: 20px;
}
.comments-area .comment-list .comment-item-comment-image img{
	height: 115px;
	width: 115px;
	object-fit: cover;
	border-radius: 50%;
}
.comments-area .comment-list .comment-item-comment-content {
	position: relative;
	padding: 40px 40px 40px;
	background-color: #F5F7FA;
	border-radius: 20px;
	min-width: 0;
	width: 100%;
}
.comments-area .comment-list .comment-item-comment-content .comment-name{
	margin-bottom: 0;
}
.comments-area .comment-list .comment-item-comment-content .comment-name a{
	color: var(--title-color);
}
.comments-area .comment-list .comment-item-comment-content .comment-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 9px;
}
.comments-area .comment-list .comment-item-comment-content .comment-text p{
	margin-bottom: 7px;
}
.comments-area .comment-list .comment-item-comment-content .comment-reply{
	position: absolute;
	right: 43px;
	bottom: 40px;
}
.comments-area .comment-list .comment-item-comment-content .comment-reply a{
	display: inline-block;
	color: var(--title-color);
    font-weight: bold;
    font-family: "Urbanist";
    letter-spacing: 1.28px;
    padding: 4px 18px;
    border: 1px solid #003B5A;
    border-radius: 20px;
    background-color: #fff;
    transition: 0.3s;
}
.comments-area .comment-list .comment-item-comment-content .comment-reply a:hover{
	color: #fff;
	background-color: var(--title-color);
}

@media(max-width: 767px){

	.comments-area .comment-list .comment-item-comment-image{
		margin-bottom: 20px;
	}
	.comments-area .comment-list .comment-item-comment{
		display: block;
	}
	.comments-area .comment-list .comment-item-comment-content{
		margin-left: 0;
		padding: 42px 30px 40px;
	}
	.comments-area .comment-list .comment-item-comment-content::before {
		border-top: 1px solid rgba(18, 29, 23, 0.1);
		border-left: 1px solid rgba(18, 29, 23, 0.1);
		border-bottom: 0;
		top: -8px;
		left: 27px;
	}
	.comments-area .comment-list .comment-item-comment-content .comment-reply{
		position: static;
		margin-top: 20px;
	}
	.comments-area .comment-list .children{
		padding-left: 2rem;
	}
}

/* Form */

.comment-respond{
	margin: 61px 74px 0 0;
}
.comment-respond .form-title{
	margin-bottom: 22px;
}
.comment-respond .comment-form .comment-required-title{
	margin-bottom: 15px;
}
.comment-respond .comment-form .fields-wrap{
	display: flex;
	flex-wrap: wrap;
}
.comment-respond .comment-form .fields-wrap .name-field{
	width: 33.3333333%;
	padding-right: 10px;
	margin-bottom: 20px;
}
.comment-respond .comment-form .fields-wrap .name-field input{
	width: 100%;
	border: 1px solid #E3E3E3;
	border-radius: 30px;
	outline: 0;
	padding: 15px 20px;
	transition: 0.3s;
}
.comment-respond .comment-form .fields-wrap .name-field input:focus {
	border-color: var(--main-color);
}
.comment-respond .comment-form .fields-wrap .email-field{
	width: 33.3333333%;
	padding-right: 10px;
	margin-bottom: 20px;
}
.comment-respond .comment-form .fields-wrap .email-field input{
	width: 100%;
	border: 1px solid #E3E3E3;
	border-radius: 30px;
	outline: 0;
	padding: 15px 20px;
	transition: 0.3s;
}
.comment-respond .comment-form .fields-wrap .email-field input:focus {
	border-color: var(--main-color);
}
.comment-respond .comment-form .fields-wrap .website-field{
	width: 33.3333333%;
	padding-right: 10px;
	margin-bottom: 20px;
}
.comment-respond .comment-form .fields-wrap .website-field input{
	width: 100%;
	border: 1px solid #E3E3E3;
	border-radius: 30px;
	outline: 0;
	padding: 15px 20px;
	transition: 0.3s;
}
.comment-respond .comment-form .fields-wrap .website-field input:focus {
	border-color: var(--main-color);
}
.comment-respond .comment-form .comment-field{
	padding-right: 10px;
	margin-bottom: 10px;
}
.comment-respond .comment-form .comment-field textarea {
	color: #616670;
	height: 167px;
	width: 100%;
	border: 1px solid #E3E3E3;
	border-radius: 30px;
	outline: 0;
	padding: 15px 20px;
	transition: 0.3s;
}
.comment-respond .comment-form .comment-field textarea:focus {
	border-color: var(--main-color);
}
.comment-respond .submit-area{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 10px;
}
.comment-respond .submit-area .comment-form-cookies-consent{
	margin-bottom: 10px;
}
.comment-respond .submit-area .comment-form-cookies-consent label{
	margin-left: 10px;
}
.comment-respond .submit-btn{
	text-align: right;
}
.comment-respond .submit-btn button {
    color: #fff;
    font-weight: bold;
    font-family: "Urbanist";
    letter-spacing: 1.28px;
    border: 0;
    outline: 0;
    padding: 22px 40px;
    background-color: var(--main-color);
    border-radius: 40px;
    transition: 0.3s;
}
.comment-respond .submit-btn button:hover{
	background-color: var(--title-color);
}

@media(max-width: 767px){

	.comment-respond {
		margin: 62px 0 0 0;
	}
	.comment-respond .form-title {
		font-size: 28px;
	}
	.comment-respond .comment-form .fields-wrap .name-field {
		width: 100%;
		padding-right: 0;
	}
	.comment-respond .comment-form .fields-wrap .email-field {
		width: 100%;
		padding-right: 0;
	}
	.comment-respond .comment-form .fields-wrap .website-field {
		width: 100%;
		padding-right: 0;
	}
	.comment-respond .comment-form .comment-field {
		padding-right: 0;
	}
	.comment-respond .submit-area {
		flex-wrap: wrap;
		margin-right: 0;
	}
}

/*==============
 Sidebar
================*/

.widget-area .widget {
	margin-bottom: 32px;
	padding: 30px 33px 30px;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
	border-radius: 20px;
}
.widget-area .widget:last-child{
	margin-bottom: 0;
}
.widget-area .widget h2 {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 16px;
}
.widget-area .widget h2::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #E3E3E3;
    left: 0;
    bottom: 0;
}
.widget-area .widget h2::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 40px;
    background-color: var(--main-color);
    left: 0;
    bottom: 0;
}
.widget-area .widget ul,
.widget-area .widget ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget-area .widget ul li a,
.widget-area .widget ol li a {
	color: var(--paragraph-color);
}
.widget-area .widget ul li a:hover,
.widget-area .widget ol li a:hover {
	color: var(--main-color);
}

/* Search Widget */

.widget.widget_search input{
	padding: 13px 20px;
	border: 1px solid rgba(18, 29, 23, 0.1);
	border-radius: 5px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.widget.widget_search input:focus{
	outline: 0;
	border-color: var(--main-color);
}
.widget.widget_search button {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	background-color: var(--main-color);
	padding: 18px 30px;
	border: 0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.widget.widget_search button:hover{
	background-color: var(--title-color);
}

/* Custom Search Widget */

.widget.widget_parisride_search .widget-title{
	margin-bottom: 31px;
}
.widget.widget_parisride_search form{
	position: relative;
	border-radius: 40px;
	overflow: hidden;
}
.widget.widget_parisride_search form input {
    border: 1px solid #E3E3E3;
    border-radius: 40px;
    outline: 0;
    padding: 18px 20px;
    width: 100%;
    transition: 0.3s;
}
.widget.widget_parisride_search form input:focus{
	border-color: var(--main-color);
}
.widget.widget_parisride_search form input::placeholder{
	opacity: 1;
	color: var(--paragraph-color);
}
.widget.widget_parisride_search form button {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
    padding: 19px 21px;
    font-size: 18px;
    color: #003B5A;
    transition: 0.3s;
}
.widget.widget_parisride_search form button:hover{
	color: var(--main-color);
}

/* Recent Post */

.widget.widget_recent_post .recent-post-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.widget.widget_recent_post .recent-post-item:last-child{
	margin-bottom: 0;
}
.widget.widget_recent_post .recent-post-item .recent-post-image{
	position: relative;
	flex-shrink: 0;
	margin-right: 15px;
	height: 85px;
    width: 80px;
    border-radius: 20px;
    overflow: hidden;
}
.widget.widget_recent_post .recent-post-item .recent-post-image::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 59, 90, 0.5);
    opacity: 0;
    transition: 0.3s;
}
.widget.widget_recent_post .recent-post-item:hover .recent-post-image::before{
	opacity: 1;
}
.widget.widget_recent_post .recent-post-item .recent-post-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.widget.widget_recent_post .recent-post-item .recent-post-text .date{
	font-size: 14px;
}
.widget.widget_recent_post .recent-post-item .recent-post-text .date i{
	color: var(--main-color);
	font-size: 12px;
	margin-right: 10px;
}
.widget.widget_recent_post .recent-post-item .recent-post-text .title {
	font-size: 18px;
	margin-bottom: 0;
	line-height: 1.5;
	margin-top: 5px;
}
.widget.widget_recent_post .recent-post-item .recent-post-text .title a{
	color: var(--title-color);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.widget.widget_recent_post .recent-post-item .recent-post-text .title a:hover{
	color: var(--main-color);
}

/* Post Categories */

.widget.widget_post_categories .widget-title{
	margin-bottom: 20px;
	padding-bottom: 22px;
}
.widget.widget_post_categories ul li{
	margin-bottom: 15px;
}
.widget.widget_post_categories ul li:last-child {
	margin: 0;
}
.widget.widget_post_categories ul li a{
	color: var(--title-color);
}

/* Tag Cloud */

.widget.widget_tag_cloud .widget-title{
	padding-bottom: 22px;
}
.widget.widget_tag_cloud .tag-cloud-link {
    display: inline-block;
    color: var(--paragraph-color);
    font-size: 16px;
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    margin: 0 15px 10px 0;
    padding: 4px 10px;
    transition: 0.3s;
}
.widget.widget_tag_cloud .tag-cloud-link:hover {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/*==============
 404 Page
================*/

.four-zero-four{
	padding: 120px 0 115px;
	background-color: #f5f7f6;
	background-image: url(../images/404-page-bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.error-404{
	text-align: center;
}
.four-zero-four .error-number h1{
	font-size: 200px;
	font-family: "Rubik", sans-serif;
}
.error-404 .page-content .page-title{
	font-size: 34px;
	margin-bottom: 10px;
}
.error-404 .page-content p{
	margin-bottom: 30px;
}
.error-404 .page-content .button {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-family: "Urbanist";
	letter-spacing: 1.28px;
	background-color: var(--title-color);
	padding: 15px 30px;
	border-radius: 40px;
	z-index: 1;
	overflow: hidden;
}
.error-404 .page-content .button span {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--main-color);
	transition: width 0.5s, height 0.5s;
	z-index: -1;
}
.error-404 .page-content .button:hover span {
	width: 350px;
	height: 350px;
}

/*==============
 Footer
================*/

.site-footer .copyright{
	padding: 20px 0;
	background-color: var(--main-color);
}
.site-footer .site-info{
	color: #fff;
	text-align: center;
}
.site-footer .site-info .copyright-text{
	margin-bottom: 0;
}

/* Scroll to Top */

.scroll-up {
	position: fixed;
	right: 55px;
	bottom: 60px;
	height: 48px;
	width: 48px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 119, 249, 0.2);
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transform: translateY(15px) !important;
	transition: all 200ms linear !important;
}
.scroll-up.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) !important;
}
.scroll-up::after {
	position: absolute;
	content: "\f077";
	font-family: "Font Awesome 6 Free";
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: var(--main-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	font-weight: 900;
	z-index: 1;
	transition: all 200ms linear !important;
}
.scroll-up::before {
	position: absolute;
	content: "\f106";
	font-family: "FontAwesome";
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	font-weight: 900;
	opacity: 0;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	transition: all 200ms linear !important;
}
.scroll-up:hover ::after {
	color: var(--main-color);
}
.scroll-up:hover ::before {
	opacity: 1;
}
.scroll-up svg path {
	fill: none;
}
.scroll-up svg.progress-circle path {
	stroke: var(--main-color);
	stroke-width: 4;
	box-sizing: border-box;
	transition: all 200ms linear !important;
}

@media(max-width: 767px){

	.scroll-up{
		right: 30px;
		bottom: 30px;
	}
}

/*==============
 Woocommerce
================*/

.woocommerce .woocommerce-MyAccount-navigation{
    padding: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    border-radius: 10px;
}
.woocommerce .woocommerce-MyAccount-navigation ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.woocommerce .woocommerce-MyAccount-navigation ul li{
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/*==============
 Animations
================*/

@keyframes swinging{
	0%{transform: rotate(10deg);}
	50%{transform: rotate(-5deg)}
	100%{transform: rotate(10deg);}
}
.swingimage{
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-animation: swinging 3.5s ease-in-out forwards infinite;
	animation: swinging 3.5s ease-in-out forwards infinite;
}
