@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url(./assets/fonts/Roboto-Regular.ttf) format('truetype');
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto Light';
  src: local('Roboto Light'), local('RobotoLight'), url(./assets/fonts/Roboto-Light.ttf) format('truetype');
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto Bold';
  src: local('Roboto Medium'), local('Roboto-Medium'), url(./assets/fonts/Roboto-Bold.ttf) format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
  height: 100vh;
  width: 100vw;
  margin: 0px;
  font-family: 'Roboto';
  overflow: auto;
  overflow-x: hidden;
}

.header {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 25px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

.logo {
  width: 200px;
}

.logo img {
  width: 100%;
}

.error-img{
  width: 70%;
}

.main {
  height: calc(100% - 50px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome{
  color: #00A1EC;
  font-size: 32px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}

.welcome .title{
  margin-bottom: -20px;
  padding-left: 50px;
}

.welcome .subtitle{
  text-align: right;
  padding-right: 20px
}

.contact-brand{
  padding: 25px 10px 10px 10px;
  text-align: center;
}

.footer{
  color: #333333;
  font-size: 14px;
  text-align: left;
  padding: 0px 25px 20px 25px;
  font-family: 'Roboto Light';
}

.st-btn{
  margin-top: 25px;
  background: #3FC135;
  cursor: pointer;
  padding: 20px 25px;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  font-size: 22px;
}

.st-btn a{
  text-decoration: none;
  color: white;
}

.select-ctn {
  position: relative;
}

select {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  height: 50px;
}

.select-overlay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

#selected-lang{
  padding: 0 5px;
  text-transform: uppercase;
}

.icon{
  width: 20px;
}