@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
  /*margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;*/
}

body{
    /*font-family: 'Poppins', sans-serif;*/
    /*overflow: hidden;*/
    font-family: myFirstFont,Arial;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header{
    position: fixed;
    top: 0px;
    background-color: #18b6ba;
    width: 100%;
    z-index: 1000;
}

section{
    position: relative;
    /*height: calc(100vh - 3rem);*/
    width: 100%;
    /*background: url('bg.jpg') no-repeat top center / cover;*/
    overflow: hidden;
    
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.5);
    /*background-color: rgb(5, 165, 238, 0.5);*/
    /*background-image: linear-gradient(to bottom, #072e5d, #075548);*/
    /*background: #03a9f4;*/
    mix-blend-mode: overlay;
}

.text1
{
  position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: rgb(5, 165, 238, 0.5);*/
    padding:80px 36px;
    /*text-shadow: 1px 1px 5px rgba(150, 150, 150, 1);*/
}

.text1 h2
{
  
  font-size: 5em;
  font-weight: 800;
  color:transparent;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  line-height: 1em;
  text-transform: uppercase;
}
.text1 h3
{
  
  font-size: 4em;
  font-weight: 700;
  color:transparent;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  line-height: 1em;
  text-transform: uppercase;
}
.text1 p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text1 a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text1 a:hover
{
  letter-spacing: 6px;
}

.text2
{
    font-size: 1.1em;
    text-decoration: bold;
    color: white;
}

@media (max-width: 500px)
{
   .text2
  {
    font-size: .9em;
    text-decoration: bold;
  }
  .text1
  {
    padding:25px 21px;
  }
  .text1 h2
  {
    font-size: 2em;
    -webkit-text-stroke-width: 1px;
  }
  .text1 h3
  {
    font-size: 1.8em;
    -webkit-text-stroke-width: 1px;
  }
  .text1 p
  {
    font-size: .8em;
  }
  .text1 a
  {
    font-size: .8em;
  }
}

@media (min-width: 501px) and (max-width: 920px)
{
   .text2
  {
    font-size: .9em;
    text-decoration: bold;
  }
  .text1
  {
    padding:25px 21px;
  }
  .text1 h2
  {
    font-size: 3em;
    -webkit-text-stroke-width: 1px;
  }
  .text1 h3
  {
    font-size: 2em;
    -webkit-text-stroke-width: 1px;
  }
  .text1 p
  {
    font-size: 1.2em;
  }
  .text1 a
  {
    font-size: 1.2em;
  }
}

.container{
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    /*display: none;*/
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
    /*position: fixed;
    top: 0;*/
}

.nav-links{
    flex: 2;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 12rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #3498db;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #3498db;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px)
{
    .logo-container{
    flex: 1;
    display: flex;
    
    }
    
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #69bde7;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #50a9d6;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #3183ac;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #50a9d6;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #3a91bd;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
 }
    
  
  .container1 div {
    display: inline-block;
}

.menu {
  float: left;
  width: 25%;
  text-align: center;
  margin-top: 0px;
}

.main {
  float: left;
  width: 50%;
  padding: 0px;
  text-align: center;
}

.right {
  /*background-color: #e5e5e5;*/
  float: left;
  width: 25%;
  padding: 0px;
  margin-top: 0px;
  text-align: center;
}

.menu123 {
  float: left;
  width: 32%;
  text-align: center;
  margin-top: 0px;
}

.main123 {
  float: left;
  width: 39%;
  padding: 0px;
  text-align: center;
}

.right123 {
  /*background-color: #e5e5e5;*/
  float: left;
  width: 29%;
  padding: 0px;
  margin-top: 0px;
  text-align: center;
}

.managementleft {
  float: left;
  width: 33%;
  text-align: center;
  margin-top: 0px;
}

.managementcenter {
  float: left;
  width: 33%;
  padding: 0px;
  text-align: center;
}

.managementright {
  float: left;
  width: 33%;
  padding: 0px;
  text-align: center;
}

.divleft {
  float: left;
  width: 50%;
  text-align: center;
  margin-top: 0px;
}

.divright {
  float: left;
  width: 50%;
  padding: 0px;
  text-align: center;
}

@media (max-width: 920px) {
  /* For mobile phones: */
  .container1 { display: flex; flex-flow: column; }
  .menu, .main, .right, .managementleft, .managementcenter, .managementright, .divleft, .divright {
    width: 100%;
  }
  .menu { order : 1; }
  .main { order : 2; }
  .right { order : 3; }
  .managementleft { order : 1; }
  .managementcenter { order : 2; }
  .managementright { order : 3; }
  .divleft { order : 1; }
  .divright { order : 2; }
  
}

@media (max-width: 1020px) {
  /* For mobile phones: */
 
  .menu123, .main123, .right123 {
    width: 100%;
  }
  .menu123 { order : 1; }
  .main123 { order : 2; }
  .right123 { order : 3; }
  
}