.wrapper {
    margin: 50px auto 20px auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.new-tab-section {
    width: 75%;
}

.tabs {
    display: flex;
    justify-content: space-evenly;
    
}

.anger_management_colors {
    color: var(--anger_management_text);
    background-color: rgba(255, 182, 193, 0.3);
}

.adhd_colors {
    color: var(--adhd_coaching_text);
    background-color: rgba(255, 160, 122, 0.3);
}

.parent_coaching_colors {
    color: var(--parent_coaching_text);
    background-color: rgba(173, 216, 230, 0.3);
}

.workshops_colors {
    color: var(--workshops_text);
    /* text-shadow: 0px 0px 0.25px black; */
    background-color: rgba(144, 238, 144, 0.3);
}

.svg_tab {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: block;
    pointer-events: none;
}

.svg_tab_parent {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: block;
    pointer-events: none;
}

.tab_title {
    display: block;
    pointer-events: none;
}

.tablinks {
    margin-bottom: 0px;
    padding: 10px 25px 10px 25px;
    border-radius: 20px 20px 0px 0px;
    border: none;
    font-family: "Caprasimo", serif;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.newsection {
    border-radius: 30px;
    width: 80%;
    margin-bottom: 20px;
}

.tabContent{
    display:none;
    border-radius: 30px;
    position: relative;
    padding: 40px;
    font-weight: 500;
}

.section_title {
    font-family: "Caprasimo", serif;
    font-size: 36px;
    padding-right: 30px;
}

.main_text {
    margin-bottom: 60px;
    margin-inline: 30px;
    text-align: left;
    font-weight: 400;
}

.info_box {
    padding: 20px;
    border-radius: 20px;
    width: fit-content;
    max-width: 600px;
}

.info_box_anger { 
    box-shadow: 5px 5px 5px 2px rgba(255, 182, 193, 0.8);
}

.info_box_adhd { 
    box-shadow: 5px 5px 5px 2px rgba(255, 160, 122, 0.6);
}

.info_box_parent { 
    box-shadow: 5px 5px 5px 2px rgba(173, 216, 230, 0.8);
}

.info_box_workshops { 
    box-shadow: 5px 5px 5px 2px rgba(144, 238, 144, 0.6);
}

.schedule_btn {
    margin-top: 30px;
    margin-inline: auto;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    padding: 15px 30px 15px 40px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: 0.3s ease;
}

.anger_btn_colors {
    background-color: rgba(255, 182, 193, 0.7);
}

.anger_btn_colors:hover {
    box-shadow: 0px 0px 15px 5px rgba(255, 172, 184, 1);
    translate: 0px -10px;
}

.anger_btn_colors:active {
    box-shadow: 0px 0px 30px 7px rgba(255, 172, 184, 1);
}

.adhd_btn_colors {
    background-color: rgba(255, 160, 122, 0.7);
}

.adhd_btn_colors:hover {
    box-shadow: 0px 0px 15px 5px rgb(255, 146, 103);
    translate: 0px -10px;
}

.adhd_btn_colors:active {
    box-shadow: 0px 0px 30px 7px rgb(255, 146, 103);
}

.parent_btn_colors {
    background-color: rgba(173, 216, 230, 0.7);
}

.parent_btn_colors:hover {
    box-shadow: 0px 0px 15px 5px rgb(149, 208, 228);
    translate: 0px -10px;
}

.parent_btn_colors:active {
    box-shadow: 0px 0px 30px 7px rgb(149, 208, 228);
}

.workshops_btn_colors {
    background-color: rgba(144, 238, 144, 0.5);
    cursor: pointer;
}

.workshops_btn_colors:hover {
    box-shadow: 0px 0px 15px 5px rgba(123, 238, 123, 1);
    translate: 0px -10px;
}

.workshops_btn_colors:active {
    box-shadow: 0px 0px 30px 7px rgba(123, 238, 123, 1);
}

.mailto {
    text-decoration: none;
    color: var(--workshops_text);
}

.svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.svg_anger {
    fill: var(--anger_management_text);
}

.svg_adhd {
    fill: var(--adhd_coaching_text);
}

.svg_parent {
    fill: var(--parent_coaching_text);
}

.svg_workshops {
    fill: var(--workshops_text);
}

h2 {
    font-family: "Caprasimo", serif;
    font-weight: 400;
}

ul {
    margin-left: 40px;
}
  
.tabContent.active{
    display:block;
}

.egg {
    position: absolute;
    height: 60px;
    right: 30px;
    top: 30px;
}

@media only screen and (max-width: 1200px) {

    .wrapper {
        margin-top: 20px;
    }

    .new-tab-section {
        width: 90%;
    }

    .newsection {
        width: 95%;
    }

    .tablinks {
        font-size: 15px;
    }

}

@media only screen and (max-width: 900px) {
    .new-tab-section {
        width: 80%;
    }

    .svg_tab {
        margin-right: 0px;
    }

    .svg_tab_parent {
        margin-right: 0px;
    }

}

@media only screen and (max-width: 695px) {

    .info_box {
        margin-inline: auto;
    }

    .new-tab-section {
        width: 100%;
    }

    .tabs {
        justify-content: center;
        gap: 20px;
    }

    .tab_title {
        display: none;
    }
}

@media only screen and (max-width: 520px) {

    .svg_tab {
        width: 30px;
        height: 30px;
    }

    .svg_tab_parent {
        width: 30px;
        height: 30px;
        border-radius: 20px;
    }

    .tabContent{
        display:none;
        height: 100%;
        border-radius: 15px;
    }

    .tabs {
        justify-content: center;
        gap: 0px;
    }

    .main_text {
        margin-inline: 0px;
    }
}
