@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
}

main {
  overflow: hidden;
  width: 100%;
}

/* ------------------Typography------------------ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.4rem;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar-thumb {
  background: #6caac5;
  border-radius: 1rem 0px 1rem 0px;
}

body::-webkit-scrollbar {
  width: 0.6rem;
  background-color: #333133;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin: 1rem 0;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 3.2rem;
}

h5 {
  font-size: 1.8rem;
  font-weight: 500;
}

h6 {
  font-size: 1.8rem;
}

p {
  line-height: 1.3;
}

a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

.list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.container {
  max-width: 90%;
}

.social__icon a {
  transition: background-color 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: block;
  color: #fff;
  display: grid;
  place-items: center;
  background-color: #6caac5;
}

.grid {
  display: grid;
}
.grid-col90 {
  grid-template: auto/5fr 90fr 5fr;
}
.grid-col90 .block__inner {
  grid-column: 3/2;
}
.grid-col80 {
  grid-template: auto/10fr 80fr 10fr;
}
.grid-col80 .block__inner {
  grid-column: 3/2;
}
.grid-col70 {
  grid-template: auto/15fr 70fr 15fr;
}
.grid-col70 .block__inner {
  grid-column: 3/2;
}
.grid-col60 {
  grid-template: auto/20fr 60fr 20fr;
}
.grid-col60 .block__inner {
  grid-column: 3/2;
}
.grid-col50 {
  grid-template: auto/25fr 50fr 25fr;
}
.grid-col50 .block__inner {
  grid-column: 3/2;
}
.grid-col40 {
  grid-template: auto/30fr 40fr 30fr;
}
.grid-col40 .block__inner {
  grid-column: 3/2;
}

.block__1x2 {
  grid-template: auto/repeat(2, 1fr);
}
.block__1x3 {
  grid-template: auto/repeat(3, 1fr);
}

.padding-vertical {
  padding: 4rem 0;
}

.flex_ {
  display: flex;
}

.flex_center {
  justify-content: center;
}

.flex_space {
  justify-content: space-between;
}

.flex_wrap {
  flex-wrap: wrap;
}

.align_center {
  align-items: center;
}

.vertical__padding {
  padding: 4rem 0;
}

.grid {
  display: grid;
}

.grid_2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid_3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid_4 {
  grid-template-columns: repeat(4, 1fr);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list__item {
  line-height: 1.8;
}
.list-inline {
  display: flex;
}
.list-inline .list__item {
  font-weight: 500;
  text-transform: uppercase;
}

.btn {
  font-size: 1.4rem;
}
.btn-custom {
  padding: 1rem 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #52a0bf;
  border-image-source: linear-gradient(to right, #52a0bf, #b3d8e6);
  border-image-slice: 2;
  background: transparent;
  color: #a7d8ea;
  font-size: 16px;
  font-weight: 700;
  border-radius: 3px;
  transition: opacity 0.3s ease-in-out;
  text-transform: uppercase;
}
.btn-custom:hover {
  color: #fff;
}

.bannerBox {
  position: relative;
}
.bannerBox video {
  width: 100%;
  height: 190vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(17, 22, 84, 0.431372549);
  z-index: 1;
}
.bannerBox1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  width: 40%;
  z-index: 2;
}


.bannerBox123 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  width: 40%;
  z-index: 2;
}


.bannerBox1 h2 {
  color: #fff;
  font-size: 4rem;
}

.media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.media__img {
  width: 30%;
}
.media__img img {
  width: 100%;
}
.media__body {
  width: 70%;
}

.inputBox {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
.inputBox ::-moz-placeholder {
  color: transparent;
}
.inputBox :-ms-input-placeholder {
  color: transparent;
}
.inputBox ::placeholder {
  color: transparent;
}
.inputBox input {
  width: 100%;
  padding: 14px 20px;
  outline: none;
  z-index: 2;
  background: transparent;
  border: transparent;
  border-bottom: 1px solid #A2A1A1;
}
.inputBox label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4%;
  transition: 0.3s;
  z-index: -1;
  font-weight: 500;
  color: #000;
}
.inputBox input:not(:-moz-placeholder-shown) + label {
  top: 0%;
}
.inputBox input:not(:-ms-input-placeholder) + label {
  top: 0%;
}
.inputBox input:focus + label, .inputBox input:not(:placeholder-shown) + label {
  top: 0%;
}

.header {
  padding: 40px 0;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  background: transparent;
  background: #0d4dbfd6;
  width: 100%; padding-top: 21px;
    padding-bottom: 21px
}
.header.active {
  padding-top: 21px;
  padding-bottom: 21px;
  background: #0d4dbfd6;
}
.header a {
  color: #fff;
}
.header__right a {
  padding-left: 2rem;
  position: relative;
}
.header__right a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}

.footer {
  padding: 10px 0;
  background-color: #ececec;
  color: #a8aba8;
  font-size: 12px;
}
.footer__center {
  color: #a8aba8;
  font-size: 12px;
}
.footer .listfooter i {
  color: #6caac5;
}
.footer__right img {
  height: 60px;
}

.section1 h2 {
  color: #6caac5;
  font-size: 3rem;
}
.section1 p {
  font-weight: 600;
  line-height: 1.9;
  font-size: 2rem;
}

.loginPage {
/*  background-attachment: fixed;*/
  background: url(../screen_/contact.svg) no-repeat;  
  /* Full height */
  height:100vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
/*  background-position: left top, right top;*/
/*  background-origin: border-box;*/
/*  background-size: 10% 100%;*/
}
.loginPage_ {
  position: relative;
}
.loginPage .container {
  background: #ffffff59;
  /*padding: 10rem 0;*/
  /*max-width: 550px;*/
  
  height:100vh;
}


.loginPageheader__left{

   background: #ffffff59;
}


.loginPage__Body {
  padding: 6rem 0;
  background: #ffffff59;
  position: relative;
  width: 50%;
   margin-left : 25%;
}

.social {
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.social::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #A2A1A1;
}
.social span {
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.inside_banner_text input::placeholder {
    color: #000;
}


.inside_banner_text {
    
    width: 64%;
    display: inline-block;
    /* vertical-align: middle; */
    color: #ffffff;
    font-size: 24px;
    /*font-family: 'decalotype-regular';*/
    /* margin-top: 34px !important; */
    /* text-align: center; */
    margin: 0 auto;
    display: block;
}
.inside_banner_text a {
    display: inline-block;
    color: #92cd44;
    font-size: 24px;
    font-family: 'decalotype-regular';
    border-bottom: 1px solid transparent;
    transition: .7s;
}

.inside_banner_text a:hover {
    border-bottom: 1px solid #8dc63f;
}

.inside_banner_text form {
    display: inline-block;
    vertical-align: middle;
    width: 65%;
    text-align: left;
}

.inside_banner_text form input {
    width: 65%;
    position: relative;
    height: 70px;
    line-height: 40px;
    color: #0400ff;
    font-size: 24px;
    padding-left: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    transition: .7s;
    border: 1px solid #86ba40;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
}

.inside_banner_text form input:hover {
    border: 1px solid #71b042;
}

.inside_banner_text form button {
    color: #ffffff;
    font-size: 13px;
    font-family: 'decalotype-medium';
    display: inline-block;
    vertical-align: middle;
    padding: 11px 15px;
    background: #86ba40;
    text-transform: uppercase;
    border: none;
    transition: .7s;
    border-radius: 5px;
}

.inside_banner_text form button:hover {
    background: #333;
} 

.header__logo img{
/*filter: brightness(0) invert(1);*/
}

@media screen and (min-width:979px) and (max-width:1600px) {
   
}

@media screen and (min-width:768px) and (max-width:978px) {
  
}


@media screen and (min-width:461px) and (max-width:767px) {
  .list.list-inline.gap-2 {
       display: inline-table;
}
.bannerBox1 {
  
    top: 33%;
    width: 96%;
}



.loginPage__Body {
 
  width: 100%;
   margin-left : 0%;
}

.bannerBox123 {
  
    top: 43%;
    width: 132%;
}
.bannerBox1 h2 {
 
  font-size: 2rem;
}
.inside_banner_text form input {
 
    font-size: 14px;

 width: 100%;

    }
}

@media screen and (max-width:460px) {
  .container.d-flex.justify-content-between.align_center{
  	display: block!important
  }

  .header__left.d-flex.align_center.gap-2{
  	display: block!important
  }
.bannerBox1 {
  width: 96%;
    top: 33%;
    
}
.bannerBox123 {
  
    top: 43%;
    width: 132%;
}
.list.list-inline.gap-2 {
       display: inline-table;
}

.bannerBox1 h2 {
 
  font-size: 2rem;
}



.inside_banner_text form input {
 
    font-size: 14px;


    width: 100%;
    }



.loginPage__Body {
 
  width: 100%;
   margin-left : 0%;
}





}

#zocial-keycloak-oidc2 {
  background-color: transparent;
  border: 1px solid #a2a1a1;
  color: #a2a1a1;
  width: 100%;
  font-size: 2rem;
}/*# sourceMappingURL=main.css.map */