/*
header
*/

button {
    cursor: pointer;
}

ol, ul {
    margin: 0;
    padding: 0;
    line-height: 2;
    list-style-type: disc;
    list-style-position: inside;
}

.pholio-space-60 {
	height: 60px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  color: #fff;
}

.header_white {
  color: #fff;
}

.header__overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #202124;
  opacity: 0.9;
  display: none;
}

.header__container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 1px;
}

.header_fixed .header__container {
  transform: translateY(0%);
}

.header_is_fixed .header__container {
  position: fixed;
  background: #323335;
  color: #fff;
  transform: translateY(100%);
  padding-top: 28px;
  transition: background 0.5s ease, transform 0.5s ease;
}

.header__logo {
  position: relative;
  display: block;
  z-index: 3;
}

.header__wrapper {
  padding-top: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  margin-bottom: 25px;
  padding-right: 60px;
  padding-left: 60px;
}

.header__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.header__menu-button {
  position: absolute;
  right: -13px;
  top: 50%;
  margin-top: -25px;
  border: 0;
  width: 50px;
  height: 50px;
  background: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #909298;
  transition: color 0.5s;
  z-index: 2;
}

.header__menu-button:hover {
  color: #ffffff;
}

.header__menu-button_dark {
  color: #000;
}

.header__menu-button_fixed {
  right: 47px;
  top: 34px;
  margin: 0;
}

.header__menu-button-inner {
  height: 2px;
  width: 24px;
  background: currentColor;
  position: relative;
  border: 0;
  transition: background 0.5s;
}

.header__menu-button_cross .header__menu-button-inner {
  background: transparent;
}

.header__menu-button-inner:before,
.header__menu-button-inner:after {
  position: absolute;
  right: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: currentColor;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.header__menu-button-inner:before {
  transform: translateY(7px);
}

.header__menu-button_burger .header__menu-button-inner:before {
  animation-name: button-before-open-animation;
}

.header__menu-button_cross .header__menu-button-inner:before {
  animation-name: button-before-close-animation;
}

@keyframes button-before-close-animation {
  0% {
    transform: translateY(7px);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(45deg);
  }
}

@keyframes button-before-open-animation {
  0% {
    transform: translateY(0px) rotate(45deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(7px);
  }
}

.header__menu-button-inner:after {
  transform: translateY(-7px);
}

.header__menu-button_burger .header__menu-button-inner:after {
  animation-name: button-after-open-animation;
}

.header__menu-button_cross .header__menu-button-inner:after {
  animation-name: button-after-close-animation;
}

@keyframes button-after-close-animation {
  0% {
    transform: translateY(-7px);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(0px) rotate(-45deg);
  }
}

@keyframes button-after-open-animation {
  0% {
    transform: translateY(0px) rotate(-45deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-7px);
  }
}

.header__menu {
  transform: translateX(100%) translateZ(0);
  transition: 0.6s;
  z-index: 9;
}

.header__menu_opened {
  transform: translateX(0%) translateZ(0);
}

.login_button {
	position: absolute;
	text-transform: uppercase;
	font-weight: 700;
    right: 50px;
    top: 50%;
    margin-top: -25px;
    border: 0;
    width: 100px;

    height: 50px;
    background: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #909298;
    transition: color 0.5s;
    z-index: 2;
}
.login_button:hover {
	color: #fff;
}

.login-btn-header-menu {
	font-size: 18px;
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
    right: 6px;
    top: 50%;
    margin-top: -25px;
    border: 0;
    width: 100px;
    height: 50px;
    background: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #909298;
    transition: color 0.5s;
    z-index: 2;
}

.invalid-feedback {
  color: #D34551 !important;
}

/*
menu-panel
*/

.menu-panel {
  position: fixed;
  background: #323335;
  color: #fff;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 550px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: -ms-flexbox;
  display: flex;
  width: 35%;
}


.menu-panel__inner {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 44px;
  padding-left: 60px;
  padding-right: 60px;
}

.menu-panel__menu {
  list-style:none;
  transition: all 0.5s 0.6s ease;
  transform: translateY(3rem);
  opacity: 0;
}

.header__menu_opened .menu-panel__menu {
  transform: translate(0);
  opacity: 1;
}

.menu-panel__menu-item {
  margin-bottom: 15px;
}

.menu-panel__menu-link {
  font-size: 30px;
  font-weight: 300;
  text-decoration: none;
  color: #909298;	
  display: inline-block;
  vertical-align: top;
  margin-bottom: 12px;
  line-height: 1.1;
  padding:0;
  transition: all 0.3s;	
}

.menu-panel__menu-link_active,
.menu-panel__menu-link.active {
  color: #fff;
  font-weight: 700;	
}

.menu-panel__menu-link_active.collapsed {
  color: #fff;
}

.menu-panel__menu-link:hover {
  color: #fff;
  font-weight: 700;
}

.menu-panel__locales {
  margin-bottom: 76px;
  transition: all 0.5s 0.4s ease;
  transform: translateY(3rem);
  opacity: 0;
}

.header__menu_opened .menu-panel__locales {
  transform: translate(0);
  opacity: 1;
}

.menu-panel__locale {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  font-size: 14px;
  margin-right: 15px;
  text-transform: uppercase;
}

.menu-panel__locale:after {
  display: none;
}

.menu-panel__footer {
  margin-top: auto;
  padding-bottom: 44px;
}

.menu-panel__socials {
  margin-top: 60px;
  transition: all 0.5s 0.7s ease;
  transform: translateY(3rem);
  opacity: 0;
}

.header__menu_opened .menu-panel__socials {
  transform: translate(0);
  opacity: 1;
}

.menu-panel .menu-panel__socials {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.menu-panel__bottom {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;	
  color: #909298;
  transition: all 0.5s 0.9s ease;
  transform: translateY(2rem);
  opacity: 1;
  text-decoration: none;
}

.header__menu_opened .menu-panel__bottom {
  transform: translate(0);
  opacity: 1;
}

.menu-panel__bottom strong {
  color: #000;
  font-weight: 700;
}

.menu-panel__bottom a {
  color: #909298;
  font-family: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 300;
}

.menu-panel__bottom a:after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  background: currentColor;
  opacity: 0;
}

.menu-panel__bottom a:hover {
  color: #fff;
  font-weight: 700;	
}

.menu-panel__bottom a:hover:after {
  opacity: 1;
  font-weight: 700;	
}

.menu-panel__bottom a_active {
  color: #fff;
}

.menu-panel__bottom a_active:after {
  opacity: 1;
}

.menu-panel__bottom a_inverted:after {
  opacity: 1;
}

.menu-panel__bottom a_inverted:hover:after {
  opacity: 0;
  text-decoration: none;	
}

@media only screen and (max-width: 1280px) {
.menu-panel {
    width: 50%;
    max-width: 100%;
}
}

@media only screen and (max-width: 767px) {
.menu-panel {
    width: 100%;
    max-width: 100%;
}
}

/*
socials
*/

.socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.socials-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.socials__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #909298;
  color: #909298;
  border-radius: 100%;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.socials__social:not(:first-child) {
  margin-left: 15px;
}

.socials__social:hover {
  background: #fff;
  color: #202124;
  border-color: #FFFFFF;
}

.socials__social-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  color: #909298;
  background-color: #fff;
  border-radius: 100%;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.socials__social-contact:not(:first-child) {
  margin-left: 15px;
}

.socials__social-contact:hover {
  background: #5880b7;
  color: #fff !important;
  border-color: #5880b7;
}

/*
visually-hidden
*/

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
		
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
	font-family: "Montserrat", sans serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.65;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 20px;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: all;
	transition-property: all;
	letter-spacing: 0;
	text-transform: none;
	color: #ffffff;
	border: 0px solid #323335;
	border-radius: 0;
	outline: 0;
	background-color: #323335;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
		
.ph-btn {
	line-height: 1;
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 19px 30px;
	cursor: pointer;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: all;
	transition-property: all;
	text-align: center;
	text-decoration: none;
	letter-spacing: .075em;
	text-transform: uppercase;
	border: none;
	outline: 0;
}
		
.ph-btn:active, .ph-btn:focus, .ph-btn:hover {
	outline: 0;
}
		
.ph-btn--primary {
	color: #fff;
	background-color: #5880b7;
	border-radius: 50px;
}

.ph-btn--primary::after {
	background-color: #69bfc8;
}

.ph-btn--primary:hover {
	color: #fff;
}

.ph-btn--primary:not(.ph-btn--effect):hover {
	background-color: #69bfc8;
}

.ph-btn--lg {
padding: 23px 45px;
}

@-webkit-keyframes ph_btn_effect {
	49% {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

50% {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	opacity: 0;
}

100% {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

}@keyframes ph_btn_effect {
	49% {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

50% {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	opacity: 0;
}

100% {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
}

.ph-btn--effect, .ph-services-box__link, .ph-simple-image .ph-image-link {
	overflow: hidden;
}

.disabled.ph-btn--effect::after, .disabled.ph-services-box__link::after, .ph-btn--effect:disabled::after, .ph-services-box__link:disabled::after, .ph-simple-image .disabled.ph-image-link::after, .ph-simple-image .ph-image-link:disabled::after {
	display: none;
}

.ph-btn--effect::after, .ph-services-box__link::after, .ph-simple-image .ph-image-link::after {
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	content: "";
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: all;
	transition-property: all;
}

.ph-btn--effect span, .ph-services-box__link span, .ph-simple-image .ph-image-link span {

	position: relative;
	z-index: 1;
	display: block;
}

.ph-btn--effect:hover span, .ph-services-box__link:hover span, .ph-simple-image .ph-image-link:hover span {
	-webkit-animation-name: ph_btn_effect;
	animation-name: ph_btn_effect;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.ph-btn--effect:hover::after, .ph-services-box__link:hover::after, .ph-simple-image .ph-image-link:hover::after {
	height: 100%
}
/*================================
=            form-btn            =
================================*/
.mwb_form_btn_wrap {
  text-align: center;
}
.mwb_form_btn_wrap .mwb_form_btn {
  background-image: linear-gradient(to bottom, #09203f 0%, #2b4a63 100%);
  border: 0 !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 45px;
  text-transform: uppercase;
  font-weight: bold;
}

/*=====  End of form-btn  ======*/
/*========================================
=            checkbox styling            =
========================================*/
.temp-checkbox-wrap {
  -webkit-font-size: 14px;
  -moz-font-size: 14px;
  -ms-font-size: 14px;
  font-size: 14px;
  position: relative;
  margin-left: 15px;
  color: #909298;
  font-weight: 300;
}
.temp-checkbox-wrap input {
  content: "";
  left: -17px;
  position: absolute;
  top: -5px;
  visibility: hidden;
}
.temp-checkbox-wrap input:checked ~ .checkmark {
  background-color: #323335;
}
.temp-checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
}
.temp-checkbox-wrap .checkmark {
  background:#323335;
  height: 16px;
  left: -30px;
  position: absolute;
  top: 1px;
  width: 16px;
}
.temp-checkbox-wrap .checkmark:hover {
  background:#4c5059;
  height: 16px;
  left: -30px;
  position: absolute;
  top: 1px;
  width: 16px;
}
.temp-checkbox-wrap .checkmark:after {
  border-color: #5880b7;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  height: 12px;
  left: 5px;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(45deg);
  width: 6px;
  border-color: #5880b7;
  display: none;
}

input, textarea, select {
  border-radius: 50px !important;
  border-bottom: 1px solid linear-gradient(to bottom, #09203f 0%, #425e74 100%) !important;
}
input:focus, textarea:focus, select:focus {
  box-shadow: none !important;
}

.form-control:hover {
  background-color: #4c5059;
  color:#ffffff;
}

.form-control:focus {
  background-color: #4c5059;
  color:#ffffff;
}

a:focus {
  outline: none !important;
}
a:hover {
  text-decoration: none;
}

button:focus {
  outline: none !important;
}

ul li {
  list-style: none !important;
}

h1 {
  -webkit-font-size: 38px;
  -moz-font-size: 38px;
  -ms-font-size: 38px;
  font-size: 38px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  background-image: url("assets/images/bg_header_login.png");
  background-size: cover;
  background-position: center;	
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 80px 24px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  position: relative;
}
h1:after {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.7;
  margin: 0 auto;
  content: "";
}
h1 span {
  z-index: 2;
  position: relative;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.forgottenpw {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
  color: #909298;
    margin-top: 30px;
}

form {
  margin-top: 0px;
  padding: 20px;
}

label {
  font-weight: 700;
  color: #ffffff;
}

.form-row {
  margin-bottom: 6px;
}

.mwb-register {
  margin-top: 30px;
}

/*=========================================
=            main-page-section            =
=========================================*/
.mwb_form_wrapper {
  height: 100vh;
  background-image: url("assets/images/banner.jpg");
  background-size: cover;
  background-position: center;
}
