body {
    overflow: auto;
}

b {
    font-weight: 500;
}
.content {
    max-width: 1300px;
    padding-left: 30px;
    padding-right: 30px;
}
.content_body {
    padding-top: 30px;
}

.content_body > div {
    width: 100%;
}
.panel {
    border: 1px solid #a9a9a9;
    background-color: white;
    min-height: 200px;
    margin-top: 30px;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 30px;

    -webkit-box-shadow: 0px 2px 4px rgba(122, 154, 182, 0.4), 0px 7px 13px -3px rgba(122, 154, 182, 0.3);
    -moz-box-shadow: 0px 2px 4px rgba(122, 154, 182, 0.4), 0px 7px 13px -3px rgba(122, 154, 182, 0.3);
    box-shadow: 0px 2px 4px rgba(122, 154, 182, 0.4), 0px 7px 13px -3px rgba(122, 154, 182, 0.3);
}

h1 {
    font-size: 40px;
    margin-top: 20px;
    font-weight: normal;
}
h2 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: normal;
}

#content_header {
    width: 100%;
}
#content_header h1 {
    color: #3173b2;
    font-size: 55px;
    font-weight: 700
}
#description_wrapper {
    display: flex;
    flex-flow: row;
    margin-top: 30px;
    max-width: 1110px;
}
#description {
    flex: 1 0;
    margin-right: 45px;
}
#description > p {
    font-size: 30px;
    color: black;
    max-width: 770px;
    margin-bottom: 55px;
    font-weight: 400;
}

#video {
    width: 385px;
    height: 217px;
    border-radius: 10px;
    overflow: hidden;
    filter: drop-shadow(0 0 4px rgb(122, 154, 182));
    -webkit-filter: drop-shadow(0 0 4px rgb(122, 154, 182));
    position: relative;
    pointer: cursor;
    pointer: hand;
}
#video:after {
    content: "";
    display: block;
    background-image: url(/img/youtube_play.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 51px;
    width: 74px;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    transition: all 0.4s;
}
#video:hover:after {
    opacity: 1;
}
#video iframe {
    pointer-events: none !important;
}
 #title_container {
    width: auto;
}


#workshop {
    display: inline-block;
    flex-flow: row;
    height: 90px;
    color: #1074bc;
    font-size: 19px;
    font-weight: 500;
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-top: -32px;
    box-shadow: 0 0 16px rgba(122, 154, 182, 0.3);
    -webkit-box-shadow: 0 0 16px rgba(122, 154, 182, 0.3);
}

#workshop button {
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
    margin-right: 30px;
}

.step {
    margin-right: 60px;
    width: 240px;
    height: 100%;
}
.step_content {
    height: 240px;
    width: 240px;
    position: relative;
}

.step_content > * {
    position: absolute;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

.step_content h2 {
    color: #5a4941;
    width: 100%;
    font-weight: 500;
    text-align: center;
    font-size: 23px;
    top: 50%;
}
.step_content h3 {
    font-weight: normal;
    color: #5a4941;
    font-size: 14px;
    top: 72%;
}
.step_content:before {
    content: "1";
    position: absolute;
    font-size: 170px;
    font-weight: 700;
    color: #e0c118;
    transform: translate(70px, -50px);
}
.step_icon {
    height: 113px;
    margin-top: 20px;
}
.step_icon.group {
    height: 89px;
    opacity: 0.8;
    margin-top: 42px;
}
.step:nth-child(2) .step_content:before {
    content: "2";
    color: #3173b2;
    transform: translate(85px, -50px);
}
.step:nth-child(3) .step_content:before {
    content: "3";
    color: #cb551b;
    transform: translate(90px, -50px);
}

.orb_shadow {
    opacity: 0.5;
    transform: translate(-28%, 27%) scale(1.1);
}
.orb {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: white;
    background: linear-gradient(-45deg, #e7e7e7, #ffffff);
    pointer-events: auto;
    cursor: pointer;
    cursor: hand;
}
.orb:before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7e7e7, #ffffff 50%);
    box-shadow: inset 0 0 32px #00000011;
}
.search_form {
    margin-bottom: 50px;
}
.search_form > div {
    font-size: 20px;
}
.search_form input {
    height: 35px;
    border-radius: 35px;
    color: #5e829e;
    outline: none;
    border: none;
    box-sizing: border-box;
    width: calc(100% - 46px);
    max-width: 400px;
    padding: 0 10px;
    font-size: 16px;
    -webkit-box-shadow: 0 0 16px rgba(122, 154, 182, 0.3);
    -moz-box-shadow: 0 0 16px rgba(122, 154, 182, 0.3);
    box-shadow: 0 0 16px rgba(122, 154, 182, 0.3);

    -webkit-user-select: auto;

    transition: all 0.3s;
}
.search_form input:focus {
    -webkit-box-shadow: 0 0 16px rgba(122, 154, 182, 0.8);
    -moz-box-shadow: 0 0 16px rgba(122, 154, 182, 0.8);
    box-shadow: 0 0 16px rgba(122, 154, 182, 0.8);
}
.search_form img {
    display: inline;
    pointer-events: all;
    height: 35px;
    width: 35px;
    padding: 7px;
    box-sizing: border-box;
    position: relative;
    top: 13px;
    left: 43px;
    opacity: 0.4;

    cursor: pointer;
    cursor: hand;
}
.search_form img:hover {
    opacity: 0.8;
}




.panel_top {
    flex: 0 0 auto;
    height: 30px;
}
.panel_top h4 {
    display: none;
}

.panel_body {
    flex: 1 0 auto;
}
a.view_link {
    font-size: 20px;
}
a.view_link:before {
    content: "";
    background: url(/img/eye_icon_blue.png);
    width: 20px;
    height: 20px;
    transform: translateY(4px);
    margin-left: 4px;
    display: inline-block;
    background-size: 20px 20px;
}

.columns {
    display: flex;
    flex-flow: column;
}

#get_started {
    margin-top: 70px;
}
#get_started h2 {
    margin-bottom: 30px;
    font-size: 26px;
}
#get_started > div {
    display: flex;
    flex-flow: row;
    text-align: center;
}
#get_started div h3 {
    text-align: right;
    color: black;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 500;
    /*padding-right: 40px;*/
}
#get_started div p {
    text-align: right;
    margin-bottom: 30px;
}
#get_started > div > div {

    flex: 1 0;
    margin-left: 116px;
    padding-left: 61px;
    text-align: center;
    cursor: pointer;
    cursor: hand;

}
#get_started > div > div > a{
    display: block;
    position: relative;
}

#get_started div:first-child a:before {
    content: "חדש!";
    background-color: #f2495d;
    color: white !important;
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    width: 57px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    transform: translateX(204px) rotate(26deg) scale(1.2);
    filter: drop-shadow(2px 4px 4px #0006);
}

#get_started button {
    display: block;
    margin-bottom: 20px;
}
#get_started a > img {
    display: inline-block;
    object-fit: contain;
    object-position: 0%;
    box-sizing: border-box;
}
#get_started div:first-child {
    border-left: 1px solid #8080804a;
}
#templates {
    width: 440px;
    max-width: 440px;
}
#get_started > div > div#custom_wrapper {
    text-align: right;
}

#custom {

    width: 286px;
    max-width: 286px;
    border: 10px solid white;
    border-radius: 10px;
    box-shadow: 0px 20px 65px #FA8B4F33;
    margin-bottom: 30px;
}

#first_aid {
    margin-bottom: -30px;
    margin-top: 50px;
}
#first_aid h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 30px;
}
#first_aid h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}
#first_aid a {
    font-size: 18px;
    color: var(--default-blue);
    cursor: pointer;
    cursor: hand;
}

@media (max-width: 980px) {
    #get_started > div > div {
        margin-left: 30px;
        padding-left: 20px;
    }
    #get_started > div > a:first-child:before {
        transform: translateX(202px) rotate(26deg) scale(1.2);
    }
}
@media (max-width: 840px) {
    #get_started > div > div {
        padding: 0;
        margin: 0 auto 70px;
        max-width: 600px;
    }
    #get_started div p {
        text-align: center;
    }
    #get_started button {
        display: inline-block;
    }
    #get_started > div > div:first-child {
        border-left: none;
    }
    #get_started div h3 {
        text-align: center;
    }
    #get_started h2 {
        text-align: center;
    }
    #get_started > div {
        flex-flow: column;
    }
    #get_started a img {
        width: 100%;
    }
    #custom_wrapper {
        text-align: center;
    }
    #custom {
        display: block;
        margin: 0 auto 30px;
    }
    #custom_wrapper button {
        display: block;
        margin: 0 auto 20px;
    }
    #desc_container {
        flex-flow: column;
        height: auto;
    }
    .step {
        width: 100%;
        height: 150px;
        margin-bottom: 20px;
        margin-right: 0px;
    }
    .step_content {
        height: 100%;
        margin-right: 10px;
    }
    .orb {
        height: 150px;
        width: 150px;
    }
    .orb_shadow {
        transform: translate(-35%, -1%) scale(0.65);
    }
    .step_content:before {
        font-size: 140px;
        transform: translate(13px, -8px);
    }
    .step:nth-child(2) .step_content:before {
        transform: translate(14px, -8px);
    }
    .step:nth-child(3) .step_content:before {
        transform: translate(14px, -8px);
    }
    .step_icon {
        height: 83px;
        margin-top: 29px;
    }
    .step_content h2, .step_content h3 {
        text-align: right;
        left: auto;
        right: 200px;
        min-width: 200px;
        width: auto;
        transform: none;
    }
    .step_content h2 {
        top: 22%;
    }
    .step_content h3 {
        top: 58%;
        font-size: 15px;
    }
    .step_icon.group {
        height: 64px;
    }

    #workshop {
        display: block;
        text-align: center;
        height: auto;
        min-height: 80px;
        padding-bottom: 20px;
        margin-top: 0px;
        margin-bottom: 40px;
    }
    #workshop button {
        display: block;
        margin: 10px auto;
    }
}


@media (max-width: 750px) {

    h1, #activities_panel_container h1 {
        font-size: 23px;
    }
    #content_header h1 {
        font-size: 32px;
    }
    #content_header {
        text-align: center;
    }
    h2 {
        font-size: 19px;
    }
    #description_wrapper {
        flex-flow: column;
    }
    #description > p {
        font-size: 20px;
        margin-bottom: 28px;
    }
    #description {
        margin-right: 10px;
        margin-left: 10px;
    }
    #video {
        width: calc(100% - 20px);
        margin-right: 10px;
        margin-bottom: 36px;
    }
    #video iframe {
        pointer-events: auto !important;
    }
    #video:after {
        display: none;
        pointer-events: none;
    }
}
@media (max-width: 500px) {
    #get_started h2 {
        font-size: 27px;
    }

    .step {
        height: 115px;
    }
    .step_content {
        margin-right: 10px;
    }
    .step_content > * {
        transform: none;
    }

    #desc_container {
        margin-top: 0;
        padding-right: 7px;
    }

    .orb {
        height: 110px;
        width: 110px;
        transform: translateX(-25px);
    }
    .orb_shadow {
        height: 120px;
        transform: translate(-6px, 25px);
    }
    .step_icon {
        height: 70px;
        transform: none;
        margin-top: 20px;
        right: 62px;
    }
    .step_icon.activities {
        right: 50px;
    }
    .step_icon.group {
        height: 50px;
        right: 43px;
        margin-top: 30px;
    }
    .step_content:before {
        font-size: 110px;
    }

    .step_content h2, .step_content h3 {
        right: 154px;
    }
    .step_content h2 {
        top: 15%;
        font-size: 18px;
    }
    .step_content h3 {
        top: 54%;
        font-size: 14px;
        min-width: 140px;
    }


    .content {
        padding-right: 10px;
        padding-left: 10px;
    }
    #title_container {
        padding-right: 12px;
        padding-left: 7px;
    }




    .panel {
        margin-top: 0px;
    }

}
@media (max-width: 450px) {
    #get_started div:first-child a:before {
        right: 0px;
        transform: translateX(-17px) rotate(26deg) scale(1.2);
    }

}
