.build-page-section-container{
    display: flex;
    height: 340px;
    justify-content: space-between;
    overflow: hidden;
}
#build-page-your-identity > div:nth-of-type(2) {
    max-width: 50%;
}
#build-page-your-identity svg {
    height: 440px;
    margin-top: 46px;
    max-width: 100%;
}
#build-page-your-content {
    flex-direction: row-reverse;
    background-color: #eeeeee;
    box-shadow: 600px 0 #eeeeee, -600px 0 #eee;
}

.build-page-section-container .build-page-section-text {
    width: 50%;
    box-sizing: border-box;
    padding: 0 120px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.build-page-section-container .build-page-section-text h2 {
    width: 100%
}
#build-page-wysiwyg-container {
    max-width: 464px;
    border: 1px solid #cccccc;
    height: 360px;
    background-color: white;
    margin-top: 40px;
    width: 50%;
    overflow: hidden;
}
#build-page-wysiwyg-container > div {
    padding: 10px 20px;
}
/*#build-page-your-content .build-page-section-text {
    padding: 0 120px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 50%;
}*/

/*#build-page-any-where .build-page-section-text {
    padding: 0 120px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 50%;
}*/

#build-page-any-where {
    margin-bottom: 60px;
}

#build-page-devices {
    max-width: 50%;
    position: relative;
    margin: auto;
    display: flex;
}

#build-page-any-where #build-page-desktop-device {
    margin-right: 50px;
    /*filter: drop-shadow(0 3px 8px rgba(0,0,0,0.8));*/
    transform: translateY(300px);
    transition: transform 1.6s ease;
}
#build-page-any-where .animate-devices #build-page-desktop-device,
#build-page-any-where .animate-devices #build-page-tablet-device,
#build-page-any-where .animate-devices #build-page-phone-device {
    transform: translateY(0px);
}
#build-page-any-where #build-page-tablet-device {
    position: absolute;
    border-radius: 5px;
    margin-left: -50px;
    margin-top: 40px;
    transform: translateY(300px);
    transition: transform 2s ease;
}
#build-page-any-where #build-page-phone-device {
    position: absolute;
    margin-left: 260px;
    margin-top: 97px;
    transform: translateY(300px);
    transition: transform 2.4s ease;
}
#outer-logo-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
    fill:transparent;
    stroke-width: 0;
    animation: logo-draw 4s ease 1s forwards;
    stroke: transparent;
}
@keyframes logo-draw {
  0% { stroke-dashoffset:500; stroke-width:0.9; stroke: #639a33; opacity:1; fill:transparent; }
  70% { stroke-dashoffset:0; opacity:1; fill:transparent; stroke-width:0.9; stroke: #639a33; }
  100% { fill:#639a33; opacity:1; stroke-width:0; stroke: transparent; }
}

#inner-logo-circle {
    stroke-dasharray: 360;
    stroke-dashoffset: 0;
    stroke-width: 0;
    animation: logo-draw2 4s ease 1s forwards;
    stroke: transparent;
    fill: transparent;
}
@keyframes logo-draw2 {
  0% { stroke-dashoffset:360; stroke-width:1; stroke: #85ba48; opacity:1; fill:transparent; }
  70% { stroke-dashoffset:0; opacity:1; fill:transparent; stroke-width:1; stroke: #85ba48; }
  100% { fill:#85ba48; opacity:1; stroke-width:0; stroke: transparent; }
}

@media screen and (max-width: 991px) {
    .build-page-section-container .build-page-section-text {
        padding: 0 74px;
    }
}
@media screen and (max-width: 750px) { 
    .build-page-section-container {
        display: block;
        height: initial;
    }
    .build-page-section-container .build-page-section-text {
        padding: 60px 0 40px 0;
        width: 360px;
        margin: auto;
        max-width: 100%;
    }
    #build-page-devices {
        padding-bottom: 30px;
    }
    #build-page-wysiwyg-container {
        margin: auto;
        margin-bottom: -80px;
        width: 100%;
    }
    #build-page-your-identity > div:nth-of-type(2) {
        width: 100%;
        max-width: 100%;
    }
    #build-page-your-identity svg {
        max-width: 100%;
        width: 350px;
        height: 350px;
        margin: auto;
        display: block;
        margin-bottom: -112px;
    }
    #build-page-your-content {
        box-shadow: 200px 0 #eeeeee, -200px 0 #eee;
    }
    #build-page-devices {
        max-width: 100%;
        padding-left: calc(50% - 134px);
    }
    #build-page-any-where #build-page-desktop-device {
        margin-right: 0;
    }
    #build-page-any-where {
        overflow: visible;
    }
}