@font-face {
  font-family: 'Ely Rounded';
  src: url('../font/ElyRounded-Medium.eot');
  src: url('../font/ElyRounded-Medium.eot?#iefix') format('embedded-opentype'),
       url('../font/ElyRounded-Medium.woff2') format('woff2'),
       url('../font/ElyRounded-Medium.woff') format('woff'),
       url('../font/ElyRounded-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ely Rounded';
  src: url('../font/ElyRounded-Heavy.eot');
  src: url('../font/ElyRounded-Heavy.eot?#iefix') format('embedded-opentype'),
       url('../font/ElyRounded-Heavy.woff2') format('woff2'),
       url('../font/ElyRounded-Heavy.woff') format('woff'),
       url('../font/ElyRounded-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

::selection{background-color:#00ace5; color:#ffffff !important;}
::-moz-selection{background-color:#00ace5; color:#ffffff !important;}

/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #282828;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #00ace5;
  transition: all 300ms ease-out;
  cursor: pointer;
  opacity: 0.9;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  opacity: 1;
}

*{ 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.conwrap{
  font-size: 22px;
  line-height: 1.3;
  font-family: 'Ely Rounded';
  font-weight: 500;
  color: #282828;
  background-image: url(../imgs/bkg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container{
  min-height: 100vh;
  padding: 50px 50px 0;
}
header, main{
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}
header{
  height: 70px;
}
main{
  display: flex;
  align-items: center;
  padding-top: 30px;
  min-height: calc(100vh - 120px);
}
.wrap{
  width: 100%;
}
img{
  max-width: 100%;
}
a{
  color: #282828;
  opacity: 0.8;
  transition: all 500ms ease-out;
}
a:hover{
  opacity: 1;
}
h1{
  font-size: 130px;
  line-height: 0.85;
  margin-bottom: 30px;
}
.twocol{
  font-size: 50px;
  line-height: 1;
}
h1, .twocol{
  color: #fff;
  font-weight: 900;
}
.txtwrap2{
  margin-bottom: -50px;
}
.twocol{
  display: flex;
  align-items: center;
  max-width: 50%;
}
.twocol > div:nth-child(1){
  width: 330px;
  padding-top: 80px;
}
.twocol > div:nth-child(2){
  width: calc(100% - 330px);
}
.twocol > div:nth-child(2) img{
  width: 100%;
  display: block;
  max-width: 750px;
}
.mobimg{
  display: none;
  width: 100%;
}

@media only screen and (max-width: 1600px) {
  .container{
    font-size: 17px;
  }
  h1{
    font-size: 100px;
  }
  .txtwrap2{
    margin-bottom: -20px;
  }
  .twocol{
    font-size: 32px;
  }
  .twocol > div:nth-child(1){
    width: 220px;
    padding-top: 50px;
  }
  .twocol > div:nth-child(2){
    width: calc(100% - 220px);
  }
}
@media only screen and (max-width: 1100px) {
  .conwrap{
    background-image: url(../imgs/bkg-mob.jpg);
    min-height: 100vh;
  }
  .twocol{
    max-width: unset;
  }
  .mobimg{
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  .container, main{
    min-height: unset;
  }
  .container{
    padding-left: 20px;
    padding-right: 20px;
  }
  .container{
    font-size: 15px;
  }
  h1{
    font-size: 60px;
  }
  .twocol{
    font-size: 22px;
  }
  .twocol > div:nth-child(1){
    width: 150px;
    padding-top: 0;
  }
  .twocol > div:nth-child(2){
    width: calc(100% - 150px);
  }
  .txtwrap2{
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 400px) {
  .txtwrap2 br{
    display: none;
  }
  .twocol{
    display: block;
  }
  .container .twocol > div{
    width: auto;
  }
  .twocol > div:nth-child(1){
    padding-top: 30px;
    font-size: 28px;
  }
  h1{
    font-size: 42px;
  }
  .container{
    padding-top: 20px;
    padding-bottom: 0;
  }
}