
@media only screen and (max-width: 600px) {
    :root {
        --padding-universal: 15px;
        --padding-universal-top: 50px;
        --menu-padding-universal: 15px;
    }
}
@media only screen and (min-width: 601px) {
    :root {
        --padding-universal: 15px;
        --padding-universal-top:50px;
        --menu-padding-universal: 15px;
    }
}
@media only screen and (min-width: 768px) {
    :root {
        --padding-universal: 80px;
        --padding-universal-top: 70px;
        --menu-padding-universal: 80px;
    }
    .footer-wrapper img{
        max-width: 150px;
    }
}
@media only screen and (min-width: 992px) {
    :root {
        --padding-universal: 185px !important;
        --padding-universal-top: 70px;
        --menu-padding-universal: 80px !important;
    }
    .footer-wrapper img{
        max-width: 150px;
    }
}
@media only screen and (min-width: 1501px) {
   
}
@media only screen and (min-width: 1800px) {
    :root {
        --padding-universal: calc(50% - 850px);
        --padding-universal-top: 70px;
        --menu-padding-universal: 80px;
    }
}
:root{
    --color-blue: #476bb8;
    --color-darkblue: #324b81;
    --color-black: #1e202e;
    --color-lightgray: #e1e4ea;
    --color-highlight: #f98006;
    --color-bg: #FFFFFF;

    --transition-duration: .2s;
}

html{
    overflow-x: hidden;
}
body{
    font-family: "Open Sans", serif;
    background-color: var(--color-bg);
    line-height: 1.5rem;
    /* color: var(--ga-color-gray-dark); */
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
    color: var(--color-black);

    position: relative;
    overflow: hidden;

}
h1{
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    color: var(--color-black);
    line-height: 1.2;
}
img{
    width: 100%;
}
.font-blue{
    color: var(--color-blue);
}
.gray-theme{
    background-color: var(--color-lightgray);
}
.line-theme-top{
    background-color: var(--color-lightgray);
    border: 1px var(--color-lightgray) solid;
    clip-path: polygon(0% 10em, 0% 0%, 100% 100%, 0% 100%);
}
.line-theme-bottom{
    background-color: var(--color-lightgray);
    border: 1px var(--color-lightgray) solid;
    clip-path: polygon(0% 0% , 100% 100%, 100% 100%, 100% 0%);
}
.line-theme-inverse{
    background-color: var(--color-lightgray);
    border: 1px var(--color-lightgray) solid;
    clip-path: polygon(0% 8.5em, 100% 0%, 100% 100%, 0% 100%);
}

/* menu */
.menu-wrapper{
    padding: .2rem var(--padding-universal);
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg);
    opacity: 0.9;
    z-index: 99;
    color: white;
}
.menu-logo{
    padding: 0 !important;
}
.menu-wrapper > .flex > .col .flex > div{
    margin: auto;
    padding-left: 1rem;
    font-weight: 600;
}
/* cross to close & its toggles */
.mobilemenu-toggle{
    margin: auto;
}
.menu-close{
	width: 25px;
	height: 25px;
	cursor: pointer;
}
.dropdown{
    text-align: right;
}
.menu-hamburger{
	width: 25px;
	cursor: pointer;
}

#goTopBtn{
    margin: 20px auto;
    background-color: #476bb8;
    border-radius: 50%;
    min-width: 60px;
    min-height: 60px;
    /* padding: 0px 25px; */
    right: 30px;
    bottom: 40px;
    border: 0;
    /* background-color: transparent; */
    position: fixed;
    z-index: 9;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}
a{
    color: var(--color-blue);
    text-decoration: none;
}
a:hover{
    text-decoration: underline;

}

.btn{
    padding: 0.8rem 1.2rem;
    background-color: var(--color-blue);
    color: white;
    border: none;
    height: fit-content;
}
.btn a{
    text-decoration: none;
}
.button-wrapper{
    margin-left: 1rem;
}

.footer-wrapper{
    background-color: var(--color-black);
    color: var(--color-bg);
    padding: 0.5rem var(--padding-universal) !important;
}
.footer-wrapper img{
    max-width: 150px;
}
.footer-wrapper p{
    font-size: 0.8rem;
    margin: 0;
}
.footer-wrapper a{
    text-decoration: none !important;
    color: white;
}
.footer-wrapper.end-line{
    border-top: 0.5px var(--color-bg) solid;
}
.footer-wrapper.end-line > .col > .cscribe-element > .flex {
    justify-content: flex-end;
}
.footer-wrapper.end-line > .col > .cscribe-element > .flex > p{
    margin-right: .5rem;
}
.footer-area > div.social-wrapper{
    padding-bottom: 1rem;
    display:flex; 
    justify-content: center;
}
.footer-social{
    background-color: var(--color-blue);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 35px;
    height: 35px;
    padding-top: 0.2rem;
    margin-right: 0.8rem;
}
.footer-social img{
    max-width: 20px;
    max-height: 20px;
    margin-top: 3px;
}