:root {
  --main-blue: #44A5DF;
  --white: #fff;
  --gray: #666;
  --btn-bg: #eaf6fd;
  --btn-active-bg: #8FD4FF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter Tight', Arial, sans-serif;
  background: var(--white);
  color: var(--gray);
}

header {
  width: 100%;
}

.inner-box{
	max-width: 1336px;
	margin: 0 auto;
}

.top-bar {
  background: var(--main-blue);
  color: var(--white);
  padding: 14px 0;
  text-align: left;
  font-size: 12px;
}

.top-bar a{
	color: #fff;
	text-decoration: none;
	padding: 0 7px;
}
.top-bar a:first-child{
	padding-left:0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 0px;
  background: var(--white);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 130px;
  height: auto;
}

.logo-text .main {
  font-size: 0;
  font-weight: bold;
  color: #444;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
}

.logo-text .main span {
  color: var(--main-blue);
}

.nav-btns {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 24px;
  border-radius: 30px;
  border: none;
  background: var(--btn-bg);
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s;
}

.btn.primary {
  background: var(--main-blue);
  color: var(--white);
}

.btn:hover {
  background: var(--btn-active-bg);
  color: #222;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.construction {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1336px;
  background: #5EB1E3;
  margin: 32px 0;
  height: calc(100vh - 200px);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-bg {
  position: absolute;
  left: 0; top: -33px; right: 0; bottom: 0;
  width:calc(100% - 25px);
  max-width: 625px;
  background: url('bg-watermark.svg') no-repeat right top;
  background-size: cover;
  z-index: 1;
}

.construction-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  padding: 60px 20px;
}

.construction-content .main-logo {
  width: 248px;
  margin-bottom: 24px;
}

.construction-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.2;
}

.construction-content .desc {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 36px;
}

.links {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.site-link {
  background: var(--white);
  border-radius: 50px;
  padding: 20px 30px;
  min-width: 150px;
  min-height:65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.site-link img {
  max-height: 35px;
}

.site-link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  
  .construction-content h1 {
    font-size: 2rem;
  }
  .links {
  	display: inline-flex;
    flex-direction: column;
    gap: 20px;
  }
  .construction{
  	height: calc(100vh - 220px);
  }
}

@media (max-width: 600px) {
	.construction-content .desc br{
		display: none;
	}
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    /*padding: 24px 16px 0 16px;*/
  }
	
  .top-bar {
    font-size: 13px;
    padding-left: 10px;
  }
  .construction-content {
    padding: 30px 20px;
  }
  .construction-content h1 {
    font-size: 1.3rem;
  }
  .site-link {
    padding: 15px 20px;
  }
}

.container{
	box-sizing: border-box;
    padding:0 20px;
    margin:0 auto;
}

@media (min-width: 1201px) {
	 .container{
	    padding:0 30px;
	}
	.construction{
		width: calc(100% - 60px);
	}
}

@media (min-width: 1416px) {
    .container {
        padding: 0 40px;
        max-width: 1920px;
    }
    .construction{
		width: calc(100% - 80px);
	}
}

@media (min-width: 1920px) {
    .construction-bg{
        max-width: 47%;
    }
}