:root{
--primary:  #D84315;
--primary1: #FF5722;
--primary2: #FFAB91;

--secondary: #004aad;
--secondary1: #3b66ab;
--secondary2: #7287b4;


--outline: #BDBDBD;


--text-inactive: #BDBDBD;
--text-default: #424242;
--text-active: #212121;

--shadow: #171C8F26;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


body{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;

}

header{
    width: 100vw;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,.2);
    position: fixed;
    top:0px;
    left: 0px;
    background-color: #FFF;
    z-index: 500;
}
.header-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 20px;
}
.header-banner{
    flex: 1;
}
.header-banner img {
    height: 45px;
}   
.header-links{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-links a {
   text-decoration: none;
   color: var(--secondary);
   font-size: 18px;
   font-weight: bold;
   padding: 0px 10px;
   margin: 0px 5px;

}
.header-links a:hover{
    color: var(--primary2);
    background-color: var(--secondary);
}
.header-link-active{
    color: var(--primary2) !important;
    background-color: var(--secondary);
}
/* -----------------*/

.main{
    display: flex;
    flex-direction: column;
    margin-top: 45px;
}
.hero-container{
    position: relative;
}
.hero-img{
    width: 100vw;
    height: 70vh;
    object-fit: cover;
}
.hero-cover{
    position: absolute;
    top: 0px;
    width: 100vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-text-box{
    position: absolute;
    top: 0px;
    width: 100vw;
    height: 70vh;
   
}
.hero-text-lg {
    font-weight: bold;
    color: #FFF;
    font-size: 50px;
}
.hero-text-sm{
    text-align: center;
    word-wrap: break-word;
    color: #FFF;
    width: 600px;
}
.section{
    position: relative;
}

.section img{
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0px;
    left: 0px;
}

.text-lg {
    font-size: 22px;
}

.text-md {
    font-size: 15px;
}

label{
    width: 100%;
    margin: 10px 0px;

}

footer{
    width: 100vw;
    background-color: #FF914D;
    padding: 5px 20px;
    color: #FFF;
    font-size: 10px;
}

.primary{
    color: var(--primary);
}

.secondary{
    color: var(--secondary);
}

.card{
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
  border: none;
  margin: 20px 0px;
}
.card img{
  width: 100px;
  padding: 10px;
}
.card-title{
  font-weight: bold;
  font-size: 18px;
}
.card-message{
  font-size: 12px;
  text-align: center;
}
.contact-link{
  color: #FFF;
  font-weight: bold;
}
.contact-link:hover{
  color: #FFF;
}