/*------------------------------------------------------------------
[Table of contents]

- CSS Variables
- Global

- Helper Classes
-------------------------------------------------------------------*/


/* CSS Variables
-------------------------------------------------------------------*/
:root {
    --primary-color: #FABB09;
    --primary-color-light: #fcd66b;

    --secondary-color: #0F3551;
    --secondary-color-light: #879aa8;

    --color-red: #fa6016;
    --color-green: #72bf51;

    --color-gray-1: #eeeeee;
}


/* GLOBAL
-------------------------------------------------------------------*/
a.primary-link {
    color: var(--primary-color) !important;
    text-decoration: underline;
    transition: all 150ms ease-in-out;
}

a.primary-link:hover {
    color: var(--primary-color-light) !important;
    cursor: pointer;
    text-decoration: none !important;
}

.c-HomeHero-product {
    top: 10vh !important;
}

.c-HomeApp-inner {
    background-color: var(--secondary-color) !important;
}

.c-HomeApp-step-info-title {
    color: var(--primary-color);
    font-weight: 600;
}

.c-HomeApp-step-info .t-text {
    color: white;
}

.logo-group {
    display: flex;
}

.logo-group img {
    height: 50px !important;
    width: auto !important;
    margin: 3rem 3rem 0 0 !important;
}

@media only screen and (max-width: 700px){
    .logo-group {
        display: block;
    }
  }

/* HELPER CLASSES
-------------------------------------------------------------------*/
.color-primary {color: var(--primary-color);}
.color-primary-light {color: var(--primary-color-light);}
.color-red {color: var(--color-red);}
.color-green {color: var(--color-green)}


.bg-primary { background-color:var(--primary-color) !important;}
.bg-secondary-light { background-color:var(--secondary-color-light) !important;}

.bg-gray-1 {background-color: var(--color-gray-1) !important;}

.border-radius-5 { border-radius: 0.5rem; }

.hide {display: none !important}

.w-100 {width: 100%;}

.mt-0 {margin-top: 0 !important}
.ml-0 {margin-left: 0 !important}

.p-3 {padding: 3rem !important}
.p-4 {padding: 4rem !important}




/* The Modal (background) */
.at-modal{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
    z-index: 1000;
  }

/* Modal Content (Image) */
.at-modal-img{
    margin: auto;
    display: block;
    width: 80%;
}

#at-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

.at-modal-img, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.at-modal-close{
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
  
.at-modal-close:hover,
.at-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .at-modal-img {
      width: 100%;
    }
  }