html {
    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
       -moz-box-sizing: border-box; /* Firefox 1 - 28 */
            box-sizing: border-box; /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
       -moz-box-sizing: inherit;
            box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito', arial, helvetica, sans-serif;
	color: #000000;
	font-size: 1.125rem;
	line-height: 1.5;
	background-color: #ffffff;
}

img {
    width: 100%;
	height: auto;
	vertical-align: bottom; 
}

a,
a:visited {
	color: #e4839d;	
}

a[href^="tel:"] {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

a {
	background-image: linear-gradient(to bottom,#e4839d 0%,#e4839d 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 1px;
	text-decoration: none;
  	transition: background-size .1s;
}

a:focus,
a:hover {
	background-size: 3px 3px;
}

.c-content,
.c-container {
    position: relative;
    width: 100%;
}

.c-content {
    overflow: hidden;
}

.c-container {
    max-width: 1800px;
    margin: auto;
}

.c-container {
    padding-left: 20px;
    padding-right: 20px;
}

.c-row {
    margin-right: -10px;
    margin-left: -10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.c-col {
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    text-align: center;
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.c-col-main {
    z-index: 2;
}

.c-col-bubble-1 {
    z-index: 1;
}

.c-content-inner {
	padding: 3em 0;	
	width: 100%;
}

.c-logo {
	max-width: 700px;
	margin: 0 auto;
	padding-bottom: 3em;
}

p {
	margin: 0;
	padding: 0 0 1.5em 0;
}

ul {
	margin: 0;
	padding: 0 0 1.5em 0;
	list-style: none;
}

.c-col-inner {
    display: block;
    position: relative; 
    width: 100%;
}

.c-img-bubble {
    position: relative;
	display: block;
    max-width: 700px;   
	
}

.c-img-bubble img {
    overflow: hidden;
    border-radius: 50%;
}

.c-circle {
    position: absolute;
    display: block;
    background-color: #e4bfc9;
    border-radius: 50%;
}

.c-circle-group-1 {
    position: relative;
    max-width: 380px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    animation: circleScale1 5s ease-in-out 1s infinite normal forwards;
}

.c-circle-11 {
    top: 10px;
    left: 40px;
    width: 40px;
    height: 40px;
}

.c-circle-12 {
    top: 80px;
    left: 0;
    width: 60px;
    height: 60px;
}

.c-circle-13 {
    bottom: -70px;
    right: 0;
    width: 140px;
    height: 140px;
    opacity: 0.8;
}

.c-circle-14 {
    top: 80px;
    left: 50%;
    margin-left: -200px;
    width: 280px;
    height: 280px;
    opacity: 0.5;
    animation: circleScale2 8s ease-in-out 3s infinite normal forwards;
}

.c-circle-group-2 {
    position: relative;
    max-width: 160px;
    height: 180px;
    margin-top: -70px;
    margin-left: auto;
    margin-right: 2em;
    animation: circleScale1 8s ease-in-out 3s infinite normal forwards;
}

.c-circle-21 {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
}

.c-circle-22 {
    top: 80px;
    right: 0;
    width: 50px;
    height: 50px;
    opacity: 0.4;
}

.c-circle-23 {
    bottom: 0;
    left: 70px;
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.c-circle-group-3 {
    position: relative;
    margin-left: -3em;
    padding-bottom: 180px;
    animation: circleScale1 8s ease-in-out 3s infinite normal forwards;
}

.c-circle-31 {
    position: relative;
    margin-left: 50px;
    width: 750px;
    height: 750px;
    opacity: 0.5;
    animation: circleScale1 6s ease-in-out 3s infinite normal forwards;
}

.c-circle-32 {
    bottom: 50px;
    left: 0;
    width: 300px;
    height: 300px;
    opacity: 0.5;
}

.c-circle-33 {
    bottom: 0;
    left: 180px;
    width: 100px;
    height: 100px;
}

@keyframes circleScale1 {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes circleScale2 {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.25);
	}

	100% {
		transform: scale(1);
	}
}


@media only screen and (min-width:901px) {
    .c-col {
        min-height: 100vh;
        align-items: center;
    }

    .c-col-main {
        order: 2
    }
    
    .c-content-inner {
        padding-bottom: 10em;
    }
    
    .c-img-bubble img {
        margin-right: -3em;
    }

    .c-col-bubble-1 {
        order: 1
    }

    .c-col-bubble-2 {
        order: 3
    }
    
    /* min-height fix for ie11 */
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .c-col:after {
            content: '';
            display: inline-block;
            min-height: inherit;
            font-size: 0;
        }
    }
}

@media only screen and (max-width:900px) {
    .c-col {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .c-logo {
        max-width: 400px;
    }
    
    .c-img-bubble {
        width: auto;  
        max-width: 500px;

    }
    
    .c-col-1-inner {
        margin-top: 6em;
    }
    
    .c-circle-group-1 {
        height: 200px;
    }
    
    .c-circle-14 {
      top: 90px;
      width: 200px;
      height: 200px;
    }
    
    .c-circle-13 {
        width: 100px;
        height: 100px;
    }
    
    .c-col-2-inner {
        margin-top: -13em;
    }
    
    .c-circle-31 {
        width: 500px;
        height: 500px;
    }
    
    .c-circle-32 {
        width: 180px;
        height: 180px;
    }
    
    .c-circle-33 {
        left: 100px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    
    .c-circle-group-3 {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width:768px) {
    .c-col {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .c-logo {
        max-width: 350px;
    }
    
    .c-img-bubble img {
        margin-left: -8em;
    }
    
    .c-col-1-inner {
        margin-top: -10em;
    }
    
    .c-circle-group-1 {
        margin-left: 1em;
    }
    
    .c-circle-group-2 {
        position: absolute;
        top: 50%;
        right: -30px;
        width: 160px;
    }
    
    .c-circle-31 {
        margin-left: 50%;
    }
    
    .c-circle-32 {
        left: 45%;
    }
    
    .c-circle-33 {
        left: calc(45% + 120px);
    }
}


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

    .c-circle-group-1,
    .c-circle-14 {
        transform: scale(0.5);
    }
    
    .c-circle-group-1 {
        margin-left: -5em;
    }
    
    .c-circle-group-2 {
        transform: scale(0.5);
    }
    
    .c-circle-group-3 {
        transform: scale(0.5);
    }
    
    .c-col-2-inner {
        height: 430px;
    }
}
