:root {
  --primary-color: #0F3660;
  --secondary-color: #2D2D2D;
  --body-color: #fff;
  --custom-text-color: #000;
  --primary-font-family: 'Helvetica Neue', sans-serif;
  --custom-padding: 40px 140px;
  --custom-padding-left: 140px;
  --subtext-color: #919191;
}

body {
  font-family: var(--primary-font-family);
  padding: 0;
  margin: 0;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

a{
  text-decoration: none;
  color: #000;
}

nav{
  display: flex;
  align-items: center;
  color: #fff;
  padding: var(--custom-padding);
  padding-bottom: 0;
}

nav > a {
  width: 25%;
  color: #cbcbcb;
}

nav > a > img{
  width: 260px;
}

nav > ul {
  display: flex;
  align-items: center;
  width: 50%;
  text-align: center;
  justify-content: center;
  font-size: 1.2rem;
  white-space: nowrap;
}

nav > ul > li{
  margin-right: 50px;
}

nav > ul > li > a{
  cursor: pointer;
  color: #cbcbcb;
}

nav > ul > li > a:hover{
  color: #fff
}

nav > ul > li:last-child{
  margin-right: 0px;
}

.subnav-top{
  padding: var(--custom-padding);
  background-color: transparent;
  position: fixed;
  width: calc(100vw - (var(--custom-padding-left) * 2));
  z-index: 5;
  transition: 1s background-color;
}

.subnav-top-fixed{
  padding: var(--custom-padding);
  background: #222222;
  position: fixed;
  width: calc(100vw - (var(--custom-padding-left) * 2));
  z-index: 5;
  transition: 1s background-color;
}

.subnav-top.scrolled {
  background: #222222;
}

.subnav-top > nav {
  padding: 0;
}

/* footer */
footer {
  background: #000;
}

footer>.footer-container {
  padding: var(--custom-padding);
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

footer>.footer-container>.footer-img {
  width: 27%;
}

footer>.footer-container>.footer-img>img {
  width: 80%;
}

footer>.footer-container>ul {
  width: 30%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: #fff;
  font-size: 1.3rem;
}

footer>.footer-container>ul>li>div {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
}

footer>.footer-container>ul>li>h4 {
  margin: 0;
}

footer>.footer-container>ul>li>div>a {
  color: #838383;
  text-decoration: none;
  margin-bottom: 15px;
  line-height: 1.8rem;
  cursor: pointer;
}

footer>.footer-container>ul>li>div>a:hover {
  color: #fff;
}

footer>.copy-right {
  margin: 0;
  color: #838383;
  padding: var(--custom-padding);
  padding-bottom: 140px;
  padding-top: 0;
}


.foot-main {
  height:auto;
  width:auto;
  overflow:hidden;
}


.mark {
  background:#2a2a2ad9;
  width:100%;
  position:absolute;
  float:left;
  z-index:4;
  bottom: 0;
  /* height:215px; */
  height: 400px;
  display:block;
  -webkit-transition: height ease 1s;
  -moz-transition: height ease 1s;
  -o-transition: height ease 1s;
  transition: height ease 1s;
  overflow: hidden;
}
/* .mark:hover {
  height:400px !important;
  -webkit-transition: height ease 1s;
  -moz-transition: height ease 1s;
  -o-transition: height ease 1s;
  transition: height ease 1s;
} */

/* .mark:hover > .contentTop > div > .sub-text{
  margin: 10px 0;
} */

.mark > .arrow {
  text-align: center;
  padding: 40px 0;
}

.button{
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(to left, #424242,  #424242,#818181);
  cursor: pointer;
}

.button > img {
  width: 15px;
}

/* custom */
.content-h1 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: lighter;
}

.content-p {
  font-size: 1.3rem;
  line-height: 2.3rem;
  margin: 50px 0 0 0;
}

.custom{
  background: var(--primary-color);
}

#dropbtn {
  margin-left: auto;
  right: -80px;
  top: 80px;
  border-radius: 50%;
  width: 35px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff3b;
}

.show {
  opacity: 1;
  animation-name: fadeInMenu;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    /* height: 0%; */
  }

  to {
    opacity: 1;
    /* height: 100%; */
  }
}

@keyframes fadeOutMenu {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


/* tab */
/* Style the tab */
.tab {
  overflow: hidden;
  padding: var(--custom-padding);
  padding-bottom: 100px;
  padding-top: 100px;
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */
}

/* Style the buttons inside the tab */
.tab li {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
/* .tab li:hover {
  background-color: #ddd;
} */

/* Create an active/current tablink class */
/* .tab li.active {
  background-color: #ccc;
} */

/* Style the tab content */
.tabcontent {
  display: none;
  /* padding: 6px 12px; */
  /* border: 1px solid #ccc; */
  /* border-top: none; */
}

.tab-info > ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: var(--custom-padding);
}

.tab-info > ul > li {
  background: #F2F2F2;
  width: 40%;
  padding: 50px;
  /* height: 300px; */
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.tab-info > ul > li > h2 {
  font-weight: 400;
}

.tab-info > ul > li > p {
  font-weight: 300;
}

/* Style the close button */
.topright {
  float: right;
  cursor: pointer;
  font-size: 28px;
}

.topright:hover {color: red;}

.tabcontent > ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.tabcontent > ul > li{
  width: 45%;
}

.tabcontent > ul > li > p{
  background: #F2F2F2;
  padding: 50px;
  height: 300px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

input, select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D4D4D4;
  padding: 10px;
  box-sizing: border-box;
}

label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}


