@charset "UTF-8";
/*---------------------------*/
/*      services block 1     */
/*---------------------------*/
#services.section-block{
    padding: 2rem 0 0rem 0;
}
/*---------------------------*/
/*    Service block 1 left   */
/*---------------------------*/
.service-selection-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.15rem;
    color: #3c3c3c;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    border: 0.5px solid #545454;
    margin-bottom: 10px;
    padding: 10px 12px 10px 12px;
    transition: background 0.2s ease;
}
.service .selected-indicator {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #545454;
    background: #888888; 
    margin-left: auto; 
    transition: background 0.3s ease;
}
.service.selected {
    font-weight: bold;
    color: #282828;
}
.service.selected .selected-indicator {
    background: #1B4EA7;
    border: 2px solid #545454;
}
#services .two-col-block .title-container{
    width: 80%;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    span{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 1rem;
    }
}
.services-container{
    display: flex;
    flex-direction: column;
    width: 80%;
}
.services-dropdown {
    display: none;
    width: 100%;
    padding: 10px 12px 10px 12px;
    font-weight: bold;
    font-size: 1.15rem;
    color: #282828;
    border: 1px solid #545454;
    border-radius: 0.5rem;
    margin-bottom: 1rem;

    /* remove default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* add custom arrow */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%282828' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center; 
    background-size: 2.5rem; 
    option{
        font-size: 1rem;
    }
}
.services-dropdown:focus {
    transition: border 0.1s ease;
    border-radius: 0.5rem 0.5rem 0 0; /* rounded top, flat bottom */
}
.services-dropdown option:checked{
    color: red;
    font-weight: bold;
}
/*---------------------------*/
/*   Service block 1 right   */
/*---------------------------*/
#services .two-col-block .right{
    justify-content: right;
}
.service-info-container{
    display: flex;
    flex-direction: column;
    width: 70%;
}
#service-image{
    object-fit: cover;
    width: 100%;
    height: 60%;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.25);
    z-index: 4;
}
.service-info{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}
#service-header{
    font-size: 1.5rem;
}
#service-description{
    margin: 1rem 0;
}



/* --------- */
/*  MOBILE   */
/* --------- */
@media (max-width: 767px) and (orientation: portrait) {
    /*---------------------------*/
    /*      services block 1     */
    /*---------------------------*/
    #services.section-block{
        padding: 2rem 0 5rem 0;
    }
    /*---------------------------*/
    /*    Service block 1 left   */
    /*---------------------------*/
    #services .two-col-block .title-container{
        width: 90%;
        margin-bottom: 0.5rem;
        > span:first-of-type {
            text-align: center;
        }
    }
    .services-container {
        width: 90%;
    }
    .services-dropdown {
        display: flex;
        background-position: right 5px center;
        background-size: 2rem;
    }
    .services-list {
        display: none;
    }
    .service{
        font-size: 1rem;
    }
    /*---------------------------*/
    /*   Service block 1 right   */
    /*---------------------------*/
    #services .two-col-block .right{
        justify-content: center;
        margin-top: 1rem;
    }
    .service-info-container {
        width: 90%;
    }
    #service-header{
        font-size: 1.75rem;
        text-align: left;
    }
    #service-description{
        margin: 1rem 0 1.5rem;
    }
}
@media (max-width: 767px) and (orientation: landscape) {
    /*---------------------------*/
    /*      services block 1     */
    /*---------------------------*/
    #services.section-block{
        padding: 2rem 0 2rem 0;
    }
    /*---------------------------*/
    /*    Service block 1 left   */
    /*---------------------------*/
    #services .two-col-block .left{
        position: relative;
        z-index: 3;
    }
    #services .two-col-block .title-container{
        width: 90%;
        margin-bottom: 0.5rem;
        > span:first-of-type {
            text-align: center;
        }
    }
    .services-container {
        width:90%;
    }
    .services-dropdown {
        display: block;
    }
    .services-list {
        display: none;
    }
    /*---------------------------*/
    /*   Service block 1 right   */
    /*---------------------------*/
    #services .two-col-block .right{
        justify-content: center;
        position: relative;
        z-index: 2;
        margin-top: -4rem;
        margin-bottom: -6rem;
    }
    .service-info-container {
        width: 90%;
        flex-direction: row-reverse;
        align-items: center;
        gap: 1rem;
    }
    .service-info{
        height: 70%;
    }
    #service-header{
        font-size: 1.75rem;
    }
    #service-image {
        height: 50%;
        transform: translateY(-1.5rem);
    }

}

/* ----------- */
/*   TABLETS   */
/* ----------- */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
}
@media (min-width: 767px) and (max-width: 1200px) and (orientation: landscape) {    
    /*---------------------------*/
    /*      services block 1     */
    /*---------------------------*/
    #services.section-block{
        padding: 2rem 0 2rem 0;
    }
    /*---------------------------*/
    /*    Service block 1 left   */
    /*---------------------------*/
    #services .two-col-block .left{
        position: relative;
        z-index: 3;
    }
    #services .two-col-block .title-container{
        width: 90%;
        margin-bottom: 0.5rem;
        > span:first-of-type {
            text-align: center;
        }
    }
    .services-container {
        width:90%;
    }
    .services-dropdown {
        display: block;
    }
    .services-list {
        display: none;
    }
    /*---------------------------*/
    /*   Service block 1 right   */
    /*---------------------------*/
    #services .two-col-block .right{
        justify-content: center;
        position: relative;
        z-index: 2;
        margin-top: -4rem;
        margin-bottom: -6rem;
    }
    .service-info-container {
        width: 90%;
        flex-direction: row-reverse;
        align-items: center;
        gap: 1rem;
    }
    .service-info{
        height: 70%;
        margin-top: 8rem;
    }
    #service-header{
        font-size: 1.75rem;
    }
    #service-image {
        height: 50%;
        transform: translateY(-6rem);
    }
    
}
/* ------------------- */
/*  DESKTOP & LAPTOPS  */
/* ------------------- */
/* Small Desktops and Laptops */
@media (max-width: 1200px) and (hover: hover) and (pointer: fine) {
    
}
@media (min-width: 1201px) and (max-width: 1680px) and (hover: hover) and (pointer: fine)  {
}
