/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
body {
  background-color: #0D2835;
 }
 header {
 }
 .container {
 }
 main{
   padding-left:80px;
   padding-right:80px;
  }
 .container .content{
   display:-webkit-box;
   display:-ms-flexbox;
   display:flex;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
       -ms-flex-direction: row;
           flex-direction: row;
   -ms-flex-wrap:nowrap;
       flex-wrap:nowrap;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   width:100%;
   height:100vh;
   margin-left:auto;
   margin-right:auto;
   max-width:1200px;
 }
 .left-col{
   width:52%;
   text-align:right;
   padding-right:40px;
   padding-top:40px;
   padding-bottom:40px;
   border-right: 1px solid #5FBC9E;
 }
 .left-col img{
   width:100%;
   height:auto;
 }
 .right-col{
   padding-left:40px;
   display:-webkit-box;
   display:-ms-flexbox;
   display:flex;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
       -ms-flex-direction: row;
           flex-direction: row;
   -ms-flex-wrap:wrap;
       flex-wrap:wrap;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   text-align: left;
  width:48%;
 }
 h1 {
   width:100%;
   line-height:1;
 color: white;
 font-size: clamp(28px, 4vw, 52px);
   font-family: "Plus Jakarta Sans", sans-serif;
   font-optical-sizing: auto;
   font-weight: 100;
   font-style: normal;
 }
 @media screen and (max-width: 885px) {
  main{
   padding-left:10px;
   padding-right:10px;
  }
   .container .content{
     -ms-flex-wrap:wrap;
         flex-wrap:wrap;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
   }
   h1{
     font-size: clamp(18px, 6vw, 32px);
     margin-top:50px;
   }
 .left-col{
   width:100%;
   border-right:none;
   text-align:center;
   padding:0;
 }
 .left-col img{
   width:100%;
   max-width:400px;
 }
 .right-col{
   width:100%;
   text-align:center;
   padding:0;
 }
 }