/* poppins-regular - latin */
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/fonts/poppins-v20-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* poppins-700 - latin */
  @font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('/fonts/poppins-v20-latin-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
a:hover,
button:hover {
  cursor: pointer;
}

.button-solid {
    background-color: #FE5D37;
    border-radius: 67px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    
}

.button-wide {
    padding: 20px 50px;
}
.button-solid:hover {
    cursor: pointer;
    background-color: #f36849;
}

html {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
}

/*-- -------------------------- -->
<---       All Sections         -->
<--- -------------------------- -*/
.skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
}
.title {
    font-size: 32px;
    margin-bottom: 48px;
    color: #121212;
}

.text-highlight {
    color: #FE5D37;
}

.content-section {
    padding: 60px 0px;
}
.container {
    padding: 0 10px;
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 540px;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 28px;
    font-size: 16x;
    color: #4E4B66;
    padding: 0 24px;
}

@media only screen and (min-width: 900px) {

    .container {
        max-width: 1200px;
    }

    .content-section p {
        font-size: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    .content-section {
        padding: 80px 0px;
    }
    .title {
        margin-bottom: 64px;
        font-size: 48px;
    }
}


@media only screen and (min-width: 1300px) {
    .content-section {
        padding: 100px 0px;
    }

}




/*-- -------------------------- -->
<---For non home page sections         -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<--- Landing Image         -->
<--- -------------------------- -*/
#int-hero {
    position: relative;
}

#int-hero picture img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 250px;
    top: 0px;
    display: block;

}

#int-hero h1 {
    width: 90%;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    font-size: 40px;
}

#int-hero:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #ff3c11;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: 0;
}

@media only screen and (min-width: 600px) {
    #int-hero h1 {
        font-size: 52px;
    }

}
@media only screen and (min-width: 1024px) {
    #int-hero h1 {
        font-size: 64px;
    }
}

/*-- -------------------------- -->
<--- NON-home page sections     -->
<--- -------------------------- -*/

.cs-section {
    padding: 60px 16px;
}

.cs-title {
    margin-bottom: 16px;
    font-size: 32px;
    color: #1a1a1a;
}

.cs-sub-title {
    font-size: 16px;
    color: #1a1a1a;
    margin-top: -12px;
    margin-bottom: 20px;
}
.cs-text {
    color: #4E4B66;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 28px;
}


@media only screen and (min-width: 1024px) {
    .cs-title {
        font-size: 48px;
    }

    .cs-section {
        padding: 80px 16px;
    }
}

@media only screen and (min-width: 1300px) {

    .cs-section {
        padding: 100px 32px;
    }
}


/*-- -------------------------- -->
<---       CTA                  -->
<--- -------------------------- -*/

#cs-cta {
    background-color: #a5deee;
}

#cs-cta .cs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#cs-cta p {
    max-width: 500px;
    color: #1a1a1a;
}

.cta-icon { 
    display: none;
}

@media only screen and (min-width: 900px) {

    #cs-cta .cs-container {
        display: flex;
        text-align: center;
        justify-content: space-evenly;
        align-items: center;
    }
    .cta-icon { 
        display: inline;
        width: 150px;
        height: 150px;
    }

}




/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile - Side pop out */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header .nav-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 25px;
    transition: 0.3s;
    
    max-width: 1200px;
}
.header .logo a {
    display: block;
}

.header .logo a img {
    display: block;
    height: 75px;
    width: auto;
}


.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 2;
    transition: 0.5s;
}

.menu li {
    list-style-type: none;
}

.menu li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 20px 20px;
    font-size: 18px;
    line-height: 1;
    transition: 0.3s;
}

#active {
    color: #FE5D37;
}

.phone {
    display: flex;
    align-items: center;
    padding-left: 10px;
    text-decoration: none;
    color: #000;
}

.phone img {
    height: 30px;
    padding: 0px 10px;
}

.menu li a:hover {
    color: #FE5D37;
    box-shadow: 0 -5px 0px #FE5D37 inset,
    500px 0 0 rgba(255,255,255,0.03) inset;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: #FE5D37;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #FE5D37;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before {
    top: -10px;
    width: 20px;
}

.hamburger:after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu {
    display: none;
}

.navigation input:checked ~ .hamburger {
    background: transparent;
}
.navigation input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}


@media screen and (max-width: 992px) {
    .navigation input:checked ~ .menu {
        right: -5px;
        box-shadow: -20px 0px 40px rgba(0,0,0,0.3);
    }
    .phone {
        display: none;
    }

    .hamburger,
    .toggle-menu {
        display: block;
    }

    .hamburger,
    .toggle-menu {
        position: fixed;
        right: 20px;
    }

    .nav-container {
        padding: 0px 20px;
    }
    .menu {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        background: #fff;
        width: 300px;
        height: auto;
        border-radius: 5px;
        padding-top: 65px;
    }
    .menu li {
        width: 100%;
    }
    .menu li a,
    .menu li a:hover {
        padding: 30px;
        font-size: 24px;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
    }
}



/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

#footer {
    font-size: 14px;
}
#footer .container {
    padding: 60px 20px 0px 20px;
}

#footer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#footer ul {
    list-style-type: none;
}

#footer h2 {
    color: #FE5D37;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 20px;
}
#footer li {
    color: #4E4B66;
    line-height: 24px;
    margin-bottom: 10px;
}


#footer .link {
    color: #4E4B66;
    text-decoration: none;
}

.phone-number{
    color: #4E4B66;
    text-decoration: none;
}
.link:hover, .phone-number:hover {
    text-decoration: underline;
}

#footer .link:hover {
    text-decoration: underline;
}
.credit {
    color: #4E4B66;
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.credit a {
    text-decoration: none;
    color: #FE5D37;
}

.copyright-link:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 900px) {

    #footer {
        font-size: 16px;
    }
    #footer .container {
        padding-top: 50px;
        max-width: 1000px;
    }
    #footer .content {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 10px;
        text-align: start;
        align-items: start;
    }

    #footer img {
        height: 200px;
        width: auto;
    }

}