:root {
    --dark-green: #999933;
    --orange: #ff9933;
    --purple: #660099;
}

html {
    min-height: 100%;
}

@font-face {
    font-family: WorkSans;
    src: url(WorkSans_font/WorkSans-Light.ttf);
    font-weight: 300;
}
@font-face {
    font-family: WorkSans;
    src: url(WorkSans_font/WorkSans-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: WorkSans;
    src: url(WorkSans_font/WorkSans-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: WorkSans;
    src: url(WorkSans_font/WorkSans-ExtraBold.ttf);
    font-weight: 800;
}

@font-face {
    font-family: AlwaysTogether;
    src: url(AlwaysTogether/AlwaysTogether.otf);
    font-weight: normal;
}

@font-face {
    font-family: OpenSans;
    src: url(OpenSans/OpenSans-SemiboldItalic.ttf);
    font-style: italic;
}
@font-face {
    font-family: OpenSans;
    src: url(OpenSans/OpenSans-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: OpenSans;
    src: url(OpenSans/OpenSans-Semibold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: OpenSans;
    src: url(OpenSans/OpenSans-Bold.ttf);
    font-weight: bold;
}

body {
    font-family: OpenSans, Sans-serif;
    font-weight: 500;
    min-height: 100vh;
    position: relative;
    background-color: #F7F7F7;
}

.pad_div {
    padding-top: 80px;
    padding-bottom: 80px;
}

.standard_body {
    overflow-y: hidden;
}

h1, h2 {
    font-family: AlwaysTogether;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
}
a {
    color: #212529 !important;
}

p, ul, li {
    line-height: 1.6em;
    font-size: 1.02em;
    color: #454545;
}

.btn-link:hover {
    text-decoration: none !important;
    box-shadow: none;
}

.flip {
    transform: rotate(-180deg);
}

.collapse_img {
    width: 60px;
    transition-duration: .8s;
}

/*.pie {*/
/*    position: relative;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    line-height: 100px;*/
/*    border-radius: 50%;*/
/*    background: #cd3928;*/
/*    background-image:*/
/*            linear-gradient(to right, transparent 50%, #655 0);*/
/*    color: transparent;*/
/*    text-align: center;*/
/*}*/
/*.pie::before {*/
/*    content: ’;*/
/*    display: block;*/
/*    margin-left: 50%;*/
/*    height: 100%;*/
/*    border-radius: 0 100% 100% 0 / 50%;*/
/*    background: #655;*/
/*    transform-origin: left;*/
/*    transform: rotate(.1turn);*/
/*}*/

.btn-link:focus {
    text-decoration: none !important;
    box-shadow: none;
}

.text_green {
    color: var(--dark-green);
}
.text_orange {
    color: var(--orange);
}
.text_purple {
    color: var(--purple);
}
.border_green {
    border-color: var(--dark-green);
}
.border_orange {
    border-color: var(--orange);
}
.border_purple {
    border-color: var(--purple);
}

.btn-white {
    color: black;
    background-color: white;
    border-radius: 40px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    font-weight: bold;
    font-size: 25px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.btn-link {
    color: #343a40 !important;
}

i {
    transition-duration: .5s;
}
.flip {
    transform: rotate(-180deg);
}

.checkbox_round_container {
    position: relative;
}
.checkbox_round_container label {
    background-color: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    left: 0;
    position: absolute;
    top: 0;
}
.checkbox_round_container label:after {
    border: 1px solid var(--dark-green);
    border-top: none;
    border-right: none;
    content: "";
    height: 13px;
    width: 28px;
    left: 10px;
    top: 14px;
    opacity: 0;
    position: absolute;
    transform: rotate(-45deg);

    padding: 5px;
}
.checkbox_orange label:after {
    border-color: var(--orange);
}
.checkbox_round_container input[type="checkbox"] {
    visibility: hidden;
}
.checkbox_round_container input[type="checkbox"]:checked + label {
    border-style: solid;
    background-color: white;
    border-color: var(--dark-green);
}
.checkbox_orange input[type="checkbox"]:checked + label {
    border-color: var(--orange) !important;
}
.checkbox_round_container input[type="checkbox"]:checked + label:after {
    opacity: 1;
}


.radio_round_container {
    position: relative;
}
.radio_round_container label {
    background-color: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%);
}
.radio_round_container label:after {
    border: 1px solid var(--purple);
    border-top: none;
    border-right: none;
    content: "";
    height: 13px;
    width: 28px;
    left: 10px;
    top: 14px;
    opacity: 0;
    position: absolute;
    transform: rotate(-45deg);

    padding: 5px;
}
.radio_round_container input[type="radio"] {
    visibility: hidden;
}
.radio_round_container input[type="radio"]:checked + label {
    border-style: solid;
    background-color: white;
    border-color: var(--purple);
}
.radio_orange input[type="radio"]:checked + label {
    border-color: var(--orange) !important;
}
.radio_round_container input[type="radio"]:checked + label:after {
    opacity: 1;
}

.card-header {
    background-color: white;
    border-bottom: none;
}

.no_side_borders li{
    border-left: none !important;
    border-right: none !important;
}

#page-bottom {
    height: 130px;
    background-color: #b5d7f2;
    bottom: 0;
    width: 100%;

    color: rgba(0, 0, 0, 0.7);
    overflow: hidden;

    line-height: 1.2em;
    z-index: 2;
}

.pos_absolute {
    position: absolute;
}

.strip {
    height: 200px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.strip_text {
    color: white;
    text-align: center;
    position: absolute;
    /*max-width: 305px;*/
    max-width: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: italic;
    /*font-size: 1.5rem;*/
    font-size: 2.8rem;
    font-family: AlwaysTogether;
    /*font-size: 1.1rem;*/
}
.circle {
    border: 5px solid #F7F7F7;
    border-radius: 50%;
    position: absolute;
}

.block {
    z-index: 2;
    background-color: #f7f7f7;
    position: relative;
}
.circle_paralax {
    position: fixed;
    /*z-index: -1;*/
}

.single_nav_link {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 20px;
    font-size: 1.1em;
    z-index: 99;
    font-weight: lighter;
}

.squiral_letter {
    font-size: 2.3rem;
    font-family: AlwaysTogether;
}
.squiral_letter_div {
    font-size: 1.4rem;
    font-family: OpenSans;
}

/*.squiral_letter_div p {*/
    /*margin-bottom: 7px;*/
/*}*/


.bg-img {
    background-image: url('/img/Background 03.png');
    background-repeat: no-repeat;
    background-size: cover;
    /*background-position: bottom;*/
    padding-bottom: 130px;
    /*margin-bottom: 130px;*/
    min-height: 100vh;
}

.paragraph {
    max-width: 75%;
}

.top_paragraph {
    text-align: justify;
    z-index: 10;
}

.canvas_cont {
    height: 400px;
}

#mobile_img, #dot-bottom {
    display: none;
}

.btn_main {
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 7px;
    color: white !important;
    text-align: center;
    text-decoration: none !important;
    display:inline-block;
    cursor: pointer;
}
.btn_main:hover {
    text-decoration: none !important;

}
.btn_red {
    background-color: #cd3928;
}
.btn_grey {
    background-color: #666766;
}
.btn_yellow {
    background-color: #ffce31;
}
.btn_orange {
    background-color: #f89845;
}
.btn_purple {
    background-color: #660099;
}
.btn_disabled {
    background-color: #666766;
    pointer-events:none;
}

.dots_tl {
    position: absolute;
    height: 70%;
    max-height: 550px;
    /*max-height: 50%;*/
    left: -70px;
    top: -70px;
}
.dots_br {
    position: absolute;
    height: 70%;
    max-height: 550px;
    /*max-height: 50%;*/
    right: -90px;
    bottom: 0;
    z-index: 5;
}
/*.dots_br img {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*}*/
.dots_br_sizer {
    /*height: 200px;*/
}
@media (max-width:1130px) {
    .dots_br_sizer {
        height: 140px;
    }
}
@media (max-width:1060px) {
    .dots_br_sizer {
        height: 180px;
    }
}

.base-element {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /*z-index: 1;*/
}



.bgimg {
    position: relative;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;

    /*-webkit-transform: translateZ(-999px);*/
    /*transform: translateZ(-999px);*/
    /*z-index: 3;*/
    /*-webkit-transform: translateZ(-999px) scale(1.2);*/
    /*transform: translateZ(-999px) scale(1.2);*/
}
.bgimg-purple {
    background-image: url("/img/color_strips/purple.jpg");
}
.bgimg-green {
    background-image: url("/img/color_strips/green.jpg");
}
.bgimg-red {
    background-image: url("/img/color_strips/red.jpg");
}
.bgimg-orange {
    background-image: url("/img/color_strips/orange.jpg");
}
.bgimg-blue {
    background-image: url("/img/color_strips/blue.jpg");
}
.bgimg-yellow {
    background-image: url("/img/color_strips/yellow.jpg");
}

.resource_img, .resource_border_img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.resource_img:hover {
    opacity: 0;
}
.resource_text {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 0;

    color: #cd3928;

    font-size: 13px;
}
.resource_pdf {
    width: 60px;
    color: white;
    background-color: #cd3928;
    border-radius: 3px;

    position: absolute;
    bottom: 30px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);

}

@media (max-width:750px) {
    p {
        padding-left: 3px;
        padding-right: 2px;
    }
    .dots_br_sizer {
        display: none;
    }
    .dots_tl {
        height: 20%;
        left: -3%;
        top: 0;
    }
    .dots_br {
        height: 20%;
        right: 0;
    }

    .single_nav_link {
        position: absolute;
        top: 0;
        right: 0;
        padding-top: 16px;
        padding-right: 0;
        font-size: .9em;
        z-index: 99;

    }
    /*body {*/
    /*    !*min-height: 0;*!*/
    /*    min-height: 100%;*/
    /*    background-image: url('/img/splash_imgs/SP_BottomDots_Cropped.png');*/
    /*    background-position: right bottom;*/
    /*    background-repeat: no-repeat;*/
    /*    background-size: 100px, 100px;*/
    /*}*/
    #dot-bottom {
        display: block;
    }
    #mobile_img {
        display: block;
        padding-top: 60px;
        padding-bottom: 0px;
        /*min-height: -webkit-fill-available;*/
    }
    #canvas-home {
        display: none;
    }
    /*.bg-img {*/
    /*    !*background-image: url('/img/splash_imgs/SP_Top Dots_Cropped.png'), url('/img/splash_imgs/SP_BottomDots_Cropped.png');*!*/
    /*    !*background-position: left top, right bottom;*!*/
    /*    !*background-repeat: no-repeat, no-repeat;*!*/
    /*    !*background-size: 100px, 100px;*!*/
    /*    !*padding-bottom: 80px;*!*/
    /*    background-image: url('/img/splash_imgs/SP_Top Dots_Cropped.png');*/
    /*    background-position: left top;*/
    /*    background-repeat: no-repeat;*/
    /*    background-size: 100px, 100px;*/
    /*    margin-bottom: 0;*/
    /*    padding-bottom: 80px;*/
    /*}*/

    .top_paragraph {
        margin-top: 0 !important;
        text-align: justify;
        line-height: 1.2;
    }
    .canvas_cont {
        /*margin-bottom: 0 !important;*/
        /*height: 230px;*/
        /*max-width: 90% !important;*/

        display: none;
    }
    #title_img {
        /*height: auto !important;*/
        /*max-width: 300px;*/
        /*src: '/img/splash_imgs/SquiralTitle.png';*/
        /*content:url(/img/splash_imgs/SquiralTitle.png);*/
    }
    .paragraph {
        max-width: 90%;
    }
    .bottom_paragraph {
        /*padding-bottom: 60px;*/
        margin-bottom: 0;
    }

    .circle {
        /*display: none;*/
    }
    .strip_text {
        max-width: 90% !important;
        width: 90% !important;
    }

    /*#page-bottom {*/
    /*    position: fixed;*/
    /*    height: 80px;*/
    /*    font-size: .7rem;*/
    /*}*/
}
