html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: #eee;
  color: #555;
  font-size: 14px;
  font-weight: normal;
  font-family: "Helvetica Neue", "Roboto", sans-serif;
}

hr {
  border-top: 1px solid #eaeaea;
}

a {
  color: #555666;
  /* -webkit-transition: color 0.3s ease-in;
    -moz-transition: color 0.3s ease-in;
    -o-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;   */
}

a:hover {
  color: #555666;
}

.all-t,
.all-t:before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.row-normal {
  margin-right: -10px !important;
  margin-left: -10px !important;
}

.col-normal {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.body-container {
  background-image: url(/assets/images/chess.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100vh;
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.body-wrap {
  position: relative;
  width: 500px;
  flex: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;

  /* padding-top: 90px; */
}
.body-box {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  /* background-image: url(../images/page-bg.png); */
  background-position: bottom left;
  background-repeat: no-repeat;
}
.header {
  position: relative;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  background-color: #fff;
}

.navbar {
  padding: 0;
  height: 100%;
}

.navbar-collapse,
.navbar-nav,
.nav-link {
  height: 100%;
}
.nav-link:hover {
  color: #555666 !important;
}

.nav-link {
  display: flex;
  align-items: center;
  padding-left: 40px !important;
  padding-right: 40px !important;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
  color: #000 !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav-item {
  border-left: 1px solid #eeeeee;
}

.navbar-brand {
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 50px;
}
.navbar-brand img{
  width: 320px;
}

.navbar-nav .active > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show > .nav-link {
  color: #555666 !important;
  font-weight: 500 !important;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item::before {
  opacity: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #555666;
}

.navbar-nav .nav-item.active::before {
  opacity: 1;
}

/* home */

.home-slide {
  flex: 1;
  width: 100%;
  /* height: 100%; */
  height: calc(100vh - 220px);
  max-height: 900px;
  position: relative;
  overflow: hidden;
}

.home-slide .layer-bg,
.home-slide .layer-grad,
.home-slide .layer-logo,
.home-slide .layer-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.home-slide .layer-bg {
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-slide .layer-grad {
  z-index: 4;
  width: 90%;
  opacity: 0.95;
  background: rgb(101, 35, 71);
  background: linear-gradient(90deg, rgba(101, 35, 71, 1) 0%, rgba(101, 35, 71, 0) 100%);
}

.home-slide .layer-logo {
  z-index: 6;
  display: flex;
  padding-left: 75px;
  align-items: center;
  justify-items: center;
}

.home-slide .layer-logo img {
  opacity: 0.6;
  height: 70%;
}

.home-slide .layer-content {
  z-index: 8;
  display: flex;
  padding-left: 200px;
  align-items: center;
  justify-items: center;
}

.home-slide .layer-content-text {
  color: #fff;
  margin-top: 60px;
  width: 50%;
  font-family: "Hoefler Text";
  font-weight: 400;
  font-style: italic;
  font-size: 60px;
  line-height: 75px;
  -webkit-font-smoothing: antialiased;
}
.home-slide .layer-content-text span {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* page */

.page-head {
  position: relative;
  width: 100%;
  height: 264px;
  overflow: hidden;
}

.page-head .page-head-bg,
.page-head .page-head-grad {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}

.page-head .page-head-bg {
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-head .page-head-grad {
  z-index: 4;
  top: auto;
  bottom: 0 !important;
  height: 40%;
  opacity: 1;
  background: #555666;
  background: linear-gradient(0deg, #555666 0%, #55566600 100%);

  animation-name: ph-fade;
  animation-duration: 2s;
}
@keyframes ph-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-head-tag {
  opacity: 0;
  z-index: 6;
  position: absolute;
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-head:hover .page-head-tag {
  opacity: 1;
}
.pht-shape {
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 100%;
  /* border-left: 1px solid #fff; */
  border-bottom: 1px solid #ffffff80;
  /* -moz-transform: skew(50deg);
    -webkit-transform: skew(50deg);
    transform: skew(50deg); */
}
.pht-shape::before {
  content: "";
  bottom: -4px;
  left: -4px;
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffffff80;
}
.pht-text {
  display: inline-block;
  padding-right: 5px;
  padding-left: 60px;
  margin-top: 10px;
}

.page-content {
  padding: 60px 80px;
  padding-bottom: 100px;
}

.page-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.page-title h3 {
  display: inline-block;
  font-family: inherit;
  font-size: 32px !important;
}

.page-title span {
  flex: 1;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin-left: 40px;
}

.page-text {
  font-size: 16px;
}

.page-text ul {
  font-size: 18px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.page-text ul li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 22px;
  font-size: 17px;
}
.page-text ul li:last-child {
  margin-bottom: 0;
}

.page-text ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* member */

.member-item {
  display: flex;
  flex-direction: row;
}

.member-photo {
  width: 140px;
  margin-right: 40px;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  /* font-family: "Roboto", sans-serif; */
}

.member-name b {
  font-weight: bold;
}

.member-position {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  min-height: 24px;
  margin-bottom: 20px;
  color: #888;
}

.page-text h3 i {
  font-family: "Hoefler Text";
}

.page-text h3 {
  font-size: 28px;
}

/* contat  */

.contact-map-wrap {
  background-color: #5a133a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-wrap .map-svg {
  max-width: 100%;
}

.contact-map {
  position: relative;
}

.map-pins {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.map-pins span {
  position: absolute;
  width: 30px;
  height: 41px;
  background-image: url("../images/map-pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.contact-text {
  font-size: 14px;
}

.contact-text h5 {
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  color: #555666;
  font-weight: 500;
}

.ver-line {
  min-width: 1px;
  max-width: 1px;
  margin-left: 40px;
  margin-right: 40px;
  background-color: #eeeeee;
}

.contact-form {
  width: 320px;
  max-width: 320px;
  /* padding-left: 40px;
    border-left: 1px solid #EEEEEE; */
}
.login-form {
  width: 420px;
  max-width: 420px;


}
.contact-address {
  flex: 1;
}

/* form  */

.btn {
  /* max-width: 360px; */
  min-height: 40px;
  border-radius: 5px;
  outline-color: transparent;
}

.btn-primary {
  border-color: transparent;
  background-color: #555666;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  border-color: transparent !important;
  background-color: #424352 !important;
  box-shadow: none !important;
}


.form-group {
  margin-bottom: 5px;
}

.form-control {
  /* max-width: 360px; */
  font-size: 14px;
  padding: 14px 20px;
  min-height: 40px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.form-control:focus {
  box-shadow: none;
  border-color: #555666;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000 !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #000000 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #000000 !important;
}

/* footer */

.footer {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.footer a {
  color: #000;
  text-decoration: none;
}
.footer a:hover {
  color: #555666;
}

.footer,
.body-wrap {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
/* aos */
[data-aos="fade-up"] {
  transform: translate3d(0, 50px, 0);
}

/* laoder */
.loader-wrap {
  display: none !important;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
  border: 2px solid #eee;
  border-top: 1px solid #555666;
  border-radius: 50%;
  height: 55px;
  width: 55px;
}

@-webkit-keyframes spin {
  to {
    border-top-color: #555666;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    border-top-color: #555666;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 1439px) {
  .header {
    height: 85px;
  }
  .page-content {
    padding: 60px 60px;
  }
  .member-photo {
    margin-right: 30px;
  }
  .page-text {
    font-size: 15px;
  }
  .member-position {
    margin-bottom: 15px;
  }
  .body-container {
    padding: 40px;
  }
  .home-slide {
    height: calc(100vh - 190px);
  }

  .contact-text {
    font-size: 13px;
  }
  .ver-line {
    margin-left: 25px;
    margin-right: 25px;
  }
  .form-control {
    font-size: 13px;
  }
  .btn {
    font-size: 13px;
  }
}

@media (max-width: 1440px) {
  .contact-form {
    width: 240px;
    max-width: 240px;
  }
}
@media (max-width: 1280px) {
}
