/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 11 2023 | 09:29:18 */
.text-with-dots {
    margin-bottom: 150px !important
}

.text-with-dots .elementor-widget-container:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #073446;
    border-radius: 50%;
    position: absolute;
    left: -80px;
    top: 50%;
    margin-top: -10px;
}

.text-with-dots .elementor-widget-container:after {
    content: '';
    display: inline-block;
    width: 130px;
    height: 3px;
    border-top: 3px dashed #073446;
    position: absolute;
    left: -55px;
    top: 50%;
}

@media screen and (max-width: 1000px) {
	.text-with-dots {
		margin-bottom: 40px !important
	}
}

@media screen and (max-width: 600px) {
    .text-with-dots {
        margin-bottom: 0 !important;
    }
    .text-with-dots .elementor-widget-container:before {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: #073446;
        border-radius: 50%;
        position: absolute;
        left: 0px;
        top: 30px;
    }
    .text-with-dots .elementor-widget-container:after {
        display: none;
    }
}