:root{
    --default-background: #ffff;
    --default-text: black;
    --default-ligther-text: #C7C7C7;
    --default-dark-background: #454545;
    --default-light-text: #ffff;

    --orange-dark: #F95C39;
    --turquoise-dark: #138794;
    --green-light: #C0E72F;
    --brown-grey: #756F6F;
    --grey-light: rgba(117, 111, 111, 0.15);
    --violet: #D74691;
}
@font-face {
  font-family: 'WorkSans-SemiBold';
  src: local('WorkSans-SemiBold'),
       url('../fonts/WorkSans-SemiBold.ttf') format("truetype");
}
@font-face {
  font-family: 'WorkSans-Regular';
  src: local('WorkSans-Regular'),
       url('../fonts/WorkSans-Regular.ttf') format("truetype");
}
body, html {
    height: 100%;
    letter-spacing: 0.05em;
    color: var(--default-text,black);
    line-height: 1.5em;
    background-color: var(--default-background,#ffff);
    font-size: 100%;
    min-width: 800px;
}
h1{
    color: black;
    font-size: 2.9em;
    line-height: 1.3em;
    letter-spacing: 0.005em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin:0;
}
h2{
    color: black;
    font-size: 2.6em;
    line-height: 1.3em;
    letter-spacing: 0.005em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin: 0 0 10px 0;
}
h3{
    color: black;
    font-size: 1.5em;
    line-height: 1.2em;
    letter-spacing: 0.005em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin: 0 0 10px 0;
}
h4{
    color: black;
    font-size: 1.3em;
    line-height: 1.2em;
    letter-spacing: 0.005em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin: 0 0 10px 0;
}
h5{
    color: black;
    font-size: 1.2em;
    letter-spacing: 0.005em;
    line-height: 1.1em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin: 0 0 10px 0;
}
h6{
    color: black;
    font-size: 1.1em;
    letter-spacing: 0.005em;
    line-height: 1.1em;
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin: 0 0 10px 0;
}
p, a, span, label{
    color: black;
    font-size: 1em;
    line-height: 1.4em;
    font-family: 'WorkSans-Regular', sans-serif;
    margin: 10px 0;
}

/* nav bar css */
.topnav {
    background-color: white;
    padding: 15px 10px;
    position: relative;
    max-height: 110px;
    min-width: 780px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    transition: top 0.3s;
}
#menu-icon{
    display: none;
    position: relative;
}
#menu-icon svg{
    max-height: 1.2em;
    padding-top: 18px;
}
#menu-icon svg:hover{
    cursor: pointer;
    fill: var(--turquoise-dark,#00878D);
}
@media only screen and (max-width: 1300px) {
    .collapse-menu{
        display: none;
    }
    #menu-icon{
        display: inline-block;
    }

}
.dropdown-content {
    display: none;
    grid-template-rows: repeat(5,1fr);
    position: absolute;
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 10px 10px;
    padding: 5px;
    top: 2em;
    right: 0.2em;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
#menu-icon:hover .dropdown-content {
    display: grid;
}
.topnav img{
    float: left;
    height: 60px;
    width: auto;
}
.topnav a{
    float: right;
    color: var(--default-text,black);
    text-align: right;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
}
.collapse-menu a:hover , .dropdown-content a:hover{
    color: var(--turquoise-dark);
    cursor: pointer;
    text-decoration: underline 2px var(--turquoise-dark);
}
.menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li{
    float: left;
}
.sticky-header{
    position: fixed;
    top: 0;
    width: 99%;
}
/* Footer css*/
#footer{
    padding: 20px 60px;
    box-shadow: 0 -5px 6px rgba(100, 100, 111, 0.2);
    position: relative;
}
#footer-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}

#footer-left{
    margin: auto 0;
}
#footer-left a{
    font-size: 1.3em;
    text-decoration: none;
}
#footer-left a:hover{
    cursor: pointer;
    color: var(--turquoise-dark,#00878D);
}
#footer-left p{
    font-size: 1.3em;
    margin: 0 0 10px 0;
}
#footer-left img:hover{
    cursor: pointer;
    transform: scale(1.05);
}
#footer-left img{
    height: 40px;
    width: auto;
}

#footer-right img{
    max-width: 200px;
}
#footer-right p{

}
#footer-bot{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer-bot a{
    text-decoration: none;
    font-size: 1em;
    margin: 0 25px;
}
#footer-bot a:hover{
    cursor: pointer;
    color: var(--turquoise-dark);
}
/* helper classes */
.text-centerd{
    text-align: center;
}
.underlined{
    text-decoration: underline;
}
.bold{
    font-weight: bold;
}
.cursive{
    font-style: italic;
}
.block-sentence{
    text-align: justify;
}
.link{
    font-weight: bold;
    color: var(--turquoise-dark);
    text-decoration: none;
}
.link:hover{
    cursor: pointer;
    text-decoration: underline;
}
/* background color classes */
.brown-grey-back{
    background-color: var(--brown-grey,#756F6F);
}
.grey-back{
    background-color: var(--grey-light);
}
.black-gradient-back{
    background-image: linear-gradient(to bottom right, RGB(10,10,10), RGB(100,100,100));
}
/* text color classes*/
.white-text{
    color: white;
}
.orange-text{
    color: var(--orange-dark,#F95C39)
}
.green-text{
    color:  var(--green-light,#C0E72F);
}
.violet-text{
    color: var(--violet);
}
.turquoise-text{
    color: var(--turquoise-dark);
}
/* buttons */
.orange-btn{
    background-color: var(--orange-dark,#F95C39);
    color: var(--default-light-text,#ffff)!important;
    border: 2px solid var(--orange-dark,#F95C39);
    border-radius: 20px;
    word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 10px;
}
.orange-btn:hover{
    cursor: pointer;
    background-color: transparent;
    color: var(--orange-dark,#F95C39)!important;
}
.turquoise-btn{
    background-color: var(--turquoise-dark,#138794);
    color: var(--default-light-text,#ffff)!important;
    border: 2px solid var(--turquoise-dark,#138794);
    border-radius: 20px;
    word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 10px;
}
.turquoise-btn:hover{
    cursor: pointer;
    background-color: transparent;
    color: var(--turquoise-dark,#138794)!important;
}
.turquoise-btn-frame{
    background-color: transparent;
    color: var(--turquoise-dark,#138794)!important;
    border: 2px solid var(--turquoise-dark,#138794);
    border-radius: 20px;
    word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 10px;
}
.turquoise-btn-frame:hover{
    cursor: pointer;
    background-color: var(--turquoise-dark,#138794);
    color: white!important;
}
.orange-btn-frame{
    background-color: transparent;
    color:var(--orange-dark,#F95C39)!important;
    border: 2px solid var(--orange-dark,#F95C39);
    border-radius: 20px;
    word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 10px;
}
.orange-btn-frame:hover{
    cursor: pointer;
    background-color: var(--orange-dark,#F95C39);
    color: white!important;
}

/* divs css */
.main-content{
    /* for header */
    margin-top: 100px;
}
.main-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    padding: 10px 0;
}
@media only screen and (max-width: 1310px) {
    .main-grid{
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 60px;
        padding: 10px 0;
    }
}
.main-single{
    padding: 60px 10%;
}
.limit-width{
    max-width: 1200px;
    margin: auto!important;
}
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--turquoise-dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    position: fixed;
    right: 50%;
    top: 50%;
    display: none;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.uploadable{
    display: none;
}
.hoverable:hover{
    cursor: pointer;
}
.hidden{
    display: none;
}