/*
	Theme Name: Hello Elementor Child
	Template: hello-elementor
    Version: 1.0.0
*/


.eael-tabs-nav ul li {
    width: 100%;
}
/*desktop*/
.tabFlexbox {
    max-width: 1200px;
    margin: 0px auto;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.tabImg{
    width: 49%;
}

.tabContent{
    width: 48%;
}

/*Tablet*/
@media only screen and (max-width: 1024px) {
    
    /*switches tab image and text to vertical orientation*/
    .tabFlexbox {
        max-width: 1000px;
        flex-direction: column;
        align-items: center;
        
    }
    
    .tabImg{
       width: 70%;
    }
    
    .tabContent{
        width: 70%;
    }
    
    
}

/*Phone*/
@media only screen and (max-width: 767px) {
    
    /*Hides all additional tabs after 3*/
    .eael-advance-tabs .eael-tabs-nav>ul li:nth-child(n + 4){
        display: none;
    }
    
    .tabImg{
        width: 100%;
        margin-top: 20px;
    }
    
    .tabContent{
        width: 100%;
        padding: 0px 15px;
        
    }
    .tabContent h2 {
        font-size: 30px;
        margin-top: 20px;
    }
    
    
    }
    
    

