/* Unrestricted Scaling */

:root {
    --paradiso: #2F6F7A;
    --bright-sun: #ffc845;
    --white: #ffffff;
}

.clear:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.common-wrap {
    max-width: 1320px;
    margin: 0 auto;
    clear: both;
    padding: 0 20px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
}

.flex-vertical-align {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scaling-unrestricted-wrap {
    float: left;
    width: 100%;
    position: relative;
    padding: 96px 0 100px;
    overflow: hidden;
    background-color: var(--paradiso);
}

.scaling-unrestricted-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.scaling-unrestricted-wedgewood {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #5D929B;
    clip-path: polygon(86.6% 0%, 100% 0%, 100% 100%, 45.2% 100%);
}

.scaling-unrestricted-supernova {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bright-sun);
    clip-path: polygon(109.7% 0%, 140% 0%, 140% 100%, 68.2% 100%);
}

.scaling-unrestricted-wrap .common-wrap {
    max-width: 1180px;
    position: relative;
    z-index: 1;
}

.scaling-unrestricted-inner {
    float: left;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 40px;
    flex-wrap: nowrap;
}

.scaling-unrestricted-content {
    width: 58%;
    max-width: 640px;
}

.scaling-unrestricted-content h2 {
    color: var(--white);
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    padding-bottom: 26px;
}

.scaling-unrestricted-content p {
    color: var(--white);
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 16px;
}

.scaling-unrestricted-content p:last-child {
    padding-bottom: 0;
}

.scaling-unrestricted-content p strong {
    font-weight: 700;
}

.scaling-unrestricted-content ul{
	list-style-type:disc;
	padding-left:15px;
}

.scaling-unrestricted-card {
    width: 34%;
    max-width: 360px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 10px;
    padding: 32px 28px 30px;
    box-sizing: border-box;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.scaling-unrestricted-card h3 {
    color: var(--paradiso);
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(47, 111, 122, 0.35);
    margin-bottom: 24px;
}

.scaling-unrestricted-card ul {
    float: left;
    width: 100%;
}

.scaling-unrestricted-card ul li {
    float: left;
    width: 100%;
    flex-flow: row nowrap;
    align-items: center;
    column-gap: 14px;
    color: var(--paradiso);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 22px;
}

.scaling-unrestricted-card ul li:last-child {
    margin-bottom: 0;
}

.scaling-unrestricted-card ul li > span:not(.scaling-unrestricted-card-icon) {
    flex: 1 1 auto;
    min-width: 0;
}

.scaling-unrestricted-card-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: var(--paradiso);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scaling-unrestricted-card-icon svg,
.scaling-unrestricted-card-icon img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

@media only screen and (min-width: 280px) and (max-width: 480px) {
    .scaling-unrestricted-wrap {
        padding: 56px 0 64px;
    }

    .scaling-unrestricted-wedgewood {
        clip-path: polygon(72% 0%, 100% 0%, 100% 100%, 28% 100%);
    }

    .scaling-unrestricted-supernova {
        clip-path: polygon(100% 0%, 120% 0%, 120% 100%, 55% 100%);
    }

    .scaling-unrestricted-inner {
        flex-flow: column;
        row-gap: 28px;
        align-items: stretch;
    }

    .scaling-unrestricted-content {
        width: 100%;
        max-width: none;
    }

    .scaling-unrestricted-content h2 {
        font-size: 28px;
        line-height: 34px;
        padding-bottom: 20px;
    }

    .scaling-unrestricted-content p {
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 14px;
    }

    .scaling-unrestricted-card {
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 28px 22px;
    }

    .scaling-unrestricted-card h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .scaling-unrestricted-card ul li {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 20px;
        column-gap: 12px;
    }

    .scaling-unrestricted-card-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .scaling-unrestricted-card-icon svg,
    .scaling-unrestricted-card-icon img {
        width: 32px;
        height: 32px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .scaling-unrestricted-wrap {
        padding: 64px 0 72px;
    }

    .scaling-unrestricted-inner {
        flex-flow: column;
        row-gap: 32px;
        align-items: stretch;
    }

    .scaling-unrestricted-content {
        width: 100%;
        max-width: none;
    }

    .scaling-unrestricted-content h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .scaling-unrestricted-card {
        width: 100%;
        max-width: 420px;
        margin-top: 0;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .scaling-unrestricted-content {
        width: 58%;
    }

    .scaling-unrestricted-card {
        width: 34%;
        max-width: 360px;
    }

    .scaling-unrestricted-content h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .scaling-unrestricted-inner {
        column-gap: 36px;
    }
}

@media(max-width:800px){
	.scaling-unrestricted-bg{
		display:none;
	}
}
