/*--------------------------------------------------------------
# style.css
--------------------------------------------------------------*/
.home-page-banner--inner h1 {
    width: 100%;
    font-size: 32px;
    letter-spacing: -1px;
    font-weight: 900;
    line-height: 42px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.home-page-banner--inner {
    text-align: center;
    z-index: 4;
}
.home-page-banner {
    position: relative;
    min-height: 440px;
    padding-top: 180px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(-130deg, #00A291, #007FC7);
    overflow: hidden;
}
.home-page-banner--image {
    position: absolute;
    top: 0px;
    left:0px;
    width: 100%;
    height: 100%;
}
.home-page__partners {
    max-width: 480px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 40px;
}
.home-page__partners img {
    width: 100%;
    object-fit: contain;
    padding: 10px;
}
.home-page__partners h2 {
    color: white;
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
}
@media (min-width: 380px) {
    .home-page__partners img {
        width: calc(50% - 10px);
    }
}
@keyframes home-banner-image-floating {
  0%   {transform: translate(0px, 0px) rotate(0deg);}
  35%  {transform: translate(40vw, 50px) rotate(40deg);}
  80%  {transform: translate(0px, 120px) rotate(14deg);}
  100% {transform: translate(0px, 0px) rotate(0deg);}
}
.home-page-banner__video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}
.home-page-banner__float-image {
    position: absolute;
    animation-name: home-banner-image-floating;
    animation-duration: 15s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0.5;
}
.text-and-form--inner {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.text-and-form__text {
	padding: 40px;
    background-color: rgba(208,231,248,0.9);
    box-shadow: 13px 9px 13px rgba(1,1,1,0.15);
    width:100%;
    max-width: 490px;
    margin-bottom: 40px;
}
.text-and-form__text h2 {
    text-transform: uppercase;
}
.text-and-form__form .gform_title {
    color: white;
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 20px;
}
.text-and-form__form .gform_description {
    margin-bottom: 30px;
}
.text-and-form__form .gform_body input[type=text] {
    width: 100%;
    background-color: white;
    border: 3px solid #007FC8;
    margin-bottom: 20px;
    padding: 14px 20px 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #787878;
    border-radius: 14px;
}
.text-and-form__form .gform_footer input[type=submit] {
    background: #293189;
    color: white;
    border: none;
    padding: 25px 80px;
    margin: 0 auto;
    border-radius: 60px;
    font-family: inherit;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1.7px;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.text-and-form__form .gform_footer input[type=submit]:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
    box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
}
@media (min-width:740px) {
	.home-page-banner {
		min-height:620px;
	}
	.text-and-form--inner {
		padding-top:70px;
		padding-bottom: 70px;
	}
    .home-page-banner--inner h1 {
        font-size: 48px;
        line-height: 48px;
        max-width: 550px;
    }
}
@media (min-width:900px) {
	.text-and-form--inner {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.text-and-form__text {
		margin-bottom: 0px;
	}
}
@media (min-width:1320px) {
    .home-page-banner--image {
        left: calc(50vw - 660px);
    }
}
/*--------------------------------------------------------------
# .icon-row
--------------------------------------------------------------*/
.icon-row--inner {
	padding-top: 40px;
    padding-bottom: 40px;
}
.icon-row__title {
    margin-bottom: 50px;
}
.icon-row__item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.icon-row__item {
    width: 100%;
    margin-bottom: 30px;
}
.icon-row__item p {
    margin-bottom: 0px;
}
.icon-row__item--imgwrap {
    margin-bottom: 20px;
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width:540px) {
	.icon-row__item {
		width: calc(50% - 25px);
	}
}
@media (min-width:840px) {
	.icon-row__item {
		width: calc(25% - 25px);
	}
    .icon-row__item:nth-of-type(2) {
        transition: 0.5s;
    }
    .icon-row__item:nth-of-type(3) {
        transition: 1s;
    }
    .icon-row__item:nth-of-type(4) {
        transition: 1.5s;
    }
}
/*--------------------------------------------------------------
# .text-and-overflow-image
--------------------------------------------------------------*/
.text-and-overflow-image{
	margin-bottom: 60px;
	position: relative;
}
.text-and-overflow-image--inner{
	padding-top:50px;
	padding-bottom:50px;
	padding-left: 30px;
	padding-right: 30px;
}
.text-and-overflow-image__text{
	max-width: 440px;
}
.text-and-overflow-image__text h2 {
	color:white;
	text-transform: uppercase;
}
.text-and-overflow-image__text p {
	color:white;
}
.text-and-overflow-image__text .btn {
	margin-top:50px;
}
.text-and-overflow-image__img{
    transition:0.5s;
}
.text-and-overflow-image__img img {
	width: 300px;
    max-width: 100%;
}
@media (min-width:420px) {
	.text-and-overflow-image--inner {
		padding-bottom: 100px;
	}
}
@media (min-width:600px) {
	.text-and-overflow-image__img {
        position: absolute;
	    right: 0px;
	    bottom: -50px;
	}
	.text-and-overflow-image__img img {
    	width: 320px;
	}
}
@media (min-width:800px) {
	.text-and-overflow-image__img {
	    right: 30px;
	    bottom: -70px;
	}
	.text-and-overflow-image__img img {
	    width: 410px;
	}
}
@media (min-width:1000px) {
	.text-and-overflow-image__img img {
	    width: 650px;
	}
	.text-and-overflow-image__img {
	    right: calc(46vw - 443px);
	}
}
/*--------------------------------------------------------------
# .text-box-ft-icons
--------------------------------------------------------------*/
.text-box-ft-icons{
    position: relative;
}
.text-box-ft-icons.top-left-align {
    background-position: 63% 50%;
    margin-top: 0px;
}
.left-align{}
.full-width .text-box-ft-icons--inner {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 1120px;
}
.right-align .text-box-ft-icons__box {
	margin-left: auto;
}
.text-box-ft-icons__big-txt {
    font-size: 32px;
    display: block;
    margin-right: 14px;
    line-height: 1;
    white-space: nowrap;
    color: #008F9D;
    font-weight: 300;
}
.text-box-ft-icons__box h2 {
	color: #293189;
    font-size: 28px;
    font-weight: 600;
}
.text-box-ft-icons.top-align .text-box-ft-icons__box h2 {
	color:#E94890;
}
.text-box-ft-icons__box {
    padding: 20px;
    background-color: rgba(208,231,248,0.73);
    box-shadow: 13px 9px 13px rgba(1,1,1,0.15);
    width: 100%;
    max-width: 514px;
    position: relative;
}
.text-box-ft-icons__list-wrap{}
.text-box-ft-icons__list-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 20px;
}
.text-box-ft-icons__list-item img {
    min-width: 36px;
    margin-right: 20px;
}
.text-box-ft-icons__list-item p {
    margin-bottom: 0px;
}
.text-box-ft-icons.top-left-align .text-box-ft-icons--inner {
	padding-top: 0px;
	padding-bottom: 30px;
	max-width: 1320px;
}
.text-box-ft-icons.circles-in-back:before{
    content: "";
    display: block;
    position: absolute;
    background-position: 10px 90%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/banner-bubbles-02.svg');
}
@media (min-width:540px) {
    .text-box-ft-icons__big-txt {
        font-size: 42px;
    }
	.full-width .text-box-ft-icons--inner {
	    padding-top: 90px;
	    padding-bottom: 90px;
	}
	.text-box-ft-icons.top-align .text-box-ft-icons--inner {
		padding-top: 0px;
		padding-bottom: 40px;
	}
	.text-box-ft-icons__box {
	    padding: 40px;
	}
	.text-box-ft-icons__list-item {
		flex-wrap: nowrap;
	}
    .text-box-ft-icons {
        margin-top: 60px;
    }
}
/*--------------------------------------------------------------
# .text-with-img
--------------------------------------------------------------*/
.text-with-img{}
.text-with-img--inner {
    padding-top: 50px;
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.text-with-img__text h5{
	color:#1C86CA;
	font-size: 21px;
}
.text-with-img__img{
	min-width: 380px;
}
@media (min-width:940px) {
	.text-with-img--inner {
	    flex-wrap: nowrap;
	}
	.text-with-img__text {
		padding-right: 30px;
	}
}
/*--------------------------------------------------------------
# .signup-form
--------------------------------------------------------------*/
.signup-form {
    background-size: contain;
    background-attachment: initial;
	background-repeat: repeat-y;
    background-position: 50%;
    background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/signup-form-background-vertical.png');
}
/* .signup-form .gform_body {
	padding-top:50px;
} */
.signup-form--inner {
	padding-top: 60px;
    padding-bottom: 100px;
}
.signup-form__form{
    min-height: 400px;
    background-image: url(../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/signup-form-background-mobile.svg);
    max-width: 410px;
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 100% 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.signup-form__form .gform_wrapper {
    max-width: 330px;
    margin: auto;
}
/* .signup-form__form .gform_heading {
    margin-bottom: 90px;
}
.signup-form__form .gform_body input[type=text] {
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 3px solid white;
    margin-bottom: 20px;
    padding: 14px 20px 15px 0px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    color: white;
    border-radius: 0px;
    font-family: 'Source Sans Pro', sans-serif;
} */
.signup-form__form .form-text-new h3.gform_title { color:#fff;}
.signup-form__form .form-text-new input,
.signup-form__form .form-text-new select{ border-color:#fff; color:#fff;}
.signup-form__form .gform_body input:focus::placeholder {
  color: transparent;
}
.signup-form__form .gform_body input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

.signup-form__form .gform_body input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

.signup-form__form .gform_body input::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}
/* .signup-form__form .gform_footer input[type=submit] {
    background: #E94890;
    color: white;
    border: none;
    padding: 25px 80px;
    margin: 0 auto;
    border-radius: 60px;
    font-family: inherit;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1.7px;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.signup-form__form .gform_footer input[type=submit]:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
    box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
} */
@media (min-width:780px) {
	.signup-form {
		background-repeat: repeat-x;
	    background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/signup-form-circles-background-v02.jpg');
	}
	.signup-form__form{
		padding-left:70px;
		padding-right:70px;
        max-width: 540px;
        background-image: url(../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/signup-form-background.svg);
	}
}
/*--------------------------------------------------------------
# .page-banner-01
--------------------------------------------------------------*/
.page-banner-01 {
    min-height: 520px;
    background-position: 60%;
    position: relative;
}
.page-banner-01__tex-image {
    position: absolute;
    right: 0px;
    bottom: -50px;
}
.page-banner-01.bubbles-on-left:before{
	content: "";
    display: block;
    position: absolute;
    background-position: 10px 90%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/banner-bubbles-02.svg');
    animation-duration: 1.5s;
    -webkit-animation-name: swingInUp;
    animation-name: swingInUp;
    animation-timing-function: cubic-bezier(0.19, 1.65, 0.48, 0.855);
}
.page-banner-01__text {
	max-width: 480px;
    position: relative;
}
.page-banner-01__text h1 {
    text-transform: uppercase;
}
.page-banner-01__text p {
	color: white;
}
.page-banner-01__text h5 {
	color: white;
}
.page-banner-01--inner {
    padding-top: 100px;
    padding-bottom: 150px;
    width:100%;
}
@media (min-width:900px) {
    .page-banner-01__tex-image {
        position: absolute;
        right: 50px;
        top: 20px;
    }
}
/*--------------------------------------------------------------
# .page-banner-02
--------------------------------------------------------------*/
.page-banner-02{
	min-height: 340px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-position: 50% 100%;
    position: relative;
}
.page-banner-02.bubbles-on-right:before{
	content: "";
    display: block;
    position: absolute;
    background-position: 90%;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/banner-bubbles-01.svg');
}
.page-banner-02.bubbles-on-left:before{
	content: "";
    display: block;
    position: absolute;
    background-position: 0px;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/banner-bubbles-01.svg');
}
.page-banner-02 h1{
    position: relative;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 58px;
    color: white;
    margin-bottom: 0px;
}
@media (min-width:720px) {
	.page-banner-02{
		min-height: 390px;
	}
}
@media (min-width:1300px) {
	.page-banner-02{
        max-width: 1300px;
        margin: 0 auto;
	}
}
/*--------------------------------------------------------------
# .team-list
--------------------------------------------------------------*/
.team-list {
    margin-bottom: 60px;
    margin-top: 60px;
}
.team-list--inner{}
.team-list__title h2{
	color:#00A191;
    font-size: 24px;
    margin-bottom: 0px;
}
.team__list__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.team__list--member{
	width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    background-image: linear-gradient(110deg, #00A291, #007FC7);
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
	height: 100%;
	cursor: pointer;
}
.team__list--member__img{
	min-width: 115px;
}
.team__list--member__img img{
	width:100%;
    max-width: 115px;
}
.team__list--member__text{
    padding-left: 0px;
    padding-top: 14px;
    color: white;
    display: flex;
    flex-wrap: wrap;
}
.team__list__titles name {
	font-size: 18px;
	line-height: 22px;
	font-weight: 800;
}
.team__list__titles formal {
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}
.team__list__titles position {
	display: block;
    font-size: 14px;
    line-height: 18px;
    font-weight: 100;
}
.team__list__more{
    text-decoration: underline;
    margin-top: auto;
    width: 100%;
	padding-top: 18px;
}
.read-more-arrow{}
.team__list__bio{
    position: fixed;
    padding: 120px 40px 40px;
    display: flex;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: rgba(255,255,255,0.74);
    justify-content: center;
    align-items: center;
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    cursor: default;
}
.team__list__bio--inner {
    background-image: linear-gradient(110deg, #00A291, #007FC7);
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    border-radius: 4px;
    padding: 40px 50px 60px 30px;
	max-width: 1040px;
	position: relative;
	visibility: hidden;
	opacity: 0;
	transform: translateY(40px);
	-o-transition: 0.7s;
    transition: 0.7s;
    -webkit-transition: 0.7s;
}
.team__list__bio.is-active {
	visibility: visible;
	opacity: 1;
}
.team__list__bio.is-active .team__list__bio--inner {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}
.team__list__bio__text {
	max-height: calc(70vh - 120px);
    overflow-y: scroll;
}
.team__list__bio__body {
	max-height: calc(70vh - 120px);
    overflow-y: scroll;
}
.team__list__bio__text name {
	font-size: 32px;
    color: white;
    display: block;
    font-weight: bold;
}
.team__list__bio__text formal {
	font-size: 20px;
	line-height: 28px;
    color: white;
    display: block;
}
.team__list__bio__text position {
	font-size: 20px;
	line-height: 28px;
    margin-bottom: 40px;
    color: white;
    display: block;
}
.team__list__bio--main p {
	color: white;
}
.team__list__bio__img {
	max-width: 260px;
    width: 100%;
}
.team__list__bio__img img {
    width: 100%;
}
.team-popup-close {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    right: -20px;
    top: -20px;
    box-shadow: -10px 10px 10px rgba(0,0,0,0.18);
    z-index: 222;
    background: white;
}
.x-inner {
    width: 24px;
    height: 24px;
    position: relative;
    margin: auto;
    display: block;
    transform: rotate(45deg);
}
.x-inner:before, .x-inner:after {
    content: "";
    width: 20px;
    height: 4px;
    background-color: #000000;
    border-radius: 0px;
    position: absolute;
    left: 2px;
    bottom: 11px;
}
.x-inner:after {
    transform: rotate(-90deg);
}
@media (min-width:400px) {
	.team__list--member {
		flex-wrap: nowrap;
	}
	.team__list--member__text {
		padding-left: 14px;
    	padding-top: 0px;
	}
}
@media (min-width:940px) {
	.team__list__bio__text {
	    padding-right: 40px;
	}
	.team__list__bio__body {
		display: flex;
   		align-items: flex-start;
	}
	.team__list__bio--inner {
		padding:60px;
	}
}
@media (min-width:760px) and (max-width:1119px) {
	.team__list--member {
		width: calc(50% - 10px);
    	margin-right: 20px;
		margin-left: initial;
	}
	.team__list--member:nth-of-type(2n) {
		margin-right: 0px;
	}
}
@media (min-width:1120px) {
	.team__list--member {
		width: calc((100% - 40px)/3);
    	margin-right: 20px;
    	margin-left: initial;
	}
	.team__list--member:nth-of-type(3n) {
		margin-right: 0px;
	}
}
/*--------------------------------------------------------------
# .logo-list
--------------------------------------------------------------*/
.logo-list{
    margin-bottom: 80px;
    margin-top: 60px;
}
.logo-list--inner{}
.logo-list__title{
}
.logo-list__title h2 {
    color: #00A191;
    font-size: 24px;
    margin-bottom: 0px;
}
.logo-list__item-wrap{
    display: flex;
    flex-wrap: wrap;
}
.logo-list__img{
    width: 100%;
    text-align: center;
    margin-top: 60px;
}
.logo-list__img img {
	max-width: 100%;
}
@media (min-width:760px) and (max-width:1119px) {
	.logo-list__img{
		width: calc(50% - 20px);
	}
}
@media (min-width:1120px) {
	.logo-list__img{
		width: calc((100% - 40px)/3);
	}
}

/*--------------------------------------------------------------
# .overian-cancer-block-01
--------------------------------------------------------------*/
.overian-cancer-block-01{
	z-index: 2222;
    position: relative;
}
.overian-cancer-block-01--inner {
    padding-top: 50px;
    padding-bottom: 50px;
}
.overian-cancer-block-01__text {
    max-width: 590px;
}
.overian-cancer-block-02 {
    position: relative;
    background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/ovarian-cancer-banner.jpg');
    background-position: 74%;
}
.overian-cancer-block-02--inner {
	padding-top: 30px;
    padding-bottom: 30px;
}
.overian-cancer-block__box{
	background-color: rgba(208,231,248,0.73);
    box-shadow: 13px 9px 13px rgba(1,1,1,0.15);
    width: 100%;
    max-width: 514px;
    padding: 20px;
}
.overian-cancer-block__box h2 {
	color:#E94890;
    font-weight: 600;
}
@media (min-width:760px) {
	.overian-cancer-block-02--inner {
		padding-top: 0px;
	    padding-bottom: 110px;
	}
	.overian-cancer-block__box {
		padding:30px;
	}
}
@media (min-width:970px) {
	.overian-cancer-block-02 {
	    background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/ovarian-cancer-banner-section.jpg');
		height: 916px;
	    margin-top: -230px;
	}
	.overian-cancer-block-02--inner {
	    padding-top: 238px;
	    padding-bottom: 50px;
	}
}
@media (min-width:1400px) {
	.overian-cancer-block-02 {
	    margin-left: -65px;
	    margin-right: -65px;
	}
}
/*--------------------------------------------------------------
# .img-with-icons
--------------------------------------------------------------*/
.img-with-icons {
	background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/bubbles-background-vertical.png');
    background-size: contain;
}
.img-with-icons--inner {
	padding-top: 40px;
	padding-bottom: 40px;
}
.img-with-icons__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}
.img-with-icons__main-img img {
	object-fit: contain;
    width: 100%;
    max-width: 200px;
    margin-bottom: 40px;
}
.img-with-icons__main-img {
	text-align: center;
    width: 100%;
    max-width: 400px;
}
.img-with-icons__item {
    width:100%;
    max-width: 400px;
    margin: 30px auto 0px;
}
.img-with-icons__item:nth-of-type(3) {
    transition: 0.5s;
}
.img-with-icons__item:nth-of-type(4) {
    transition: 1s;
}
.img-with-icons__item img {
	margin-bottom: 20px;
}
.img-with-icons__item h6 {
	color:#293189;
}
.img-with-icons__item p {
	color:#293189;
	font-size: 14px;
	line-height: 24px;
}
.img-with-icons__fine-print {
	display: block;
    font-size: 13px;
    line-height: 19px;
}
@media (min-width:920px) {
	.img-with-icons__wrap {
		flex-wrap: nowrap;
	}
	.img-with-icons__item, .img-with-icons__main-img {
		width:calc(25% - 15px);
	}
	.img-with-icons__main-img img {
		margin-bottom: 0px;
	}
	.img-with-icons {
		background-image:url('../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/bubbles-background.png');
	}
}
/*--------------------------------------------------------------
# .news-and-insights
--------------------------------------------------------------*/
.news-and-insights{
	margin-bottom: 50px;
}
.news-and-insights--inner{}
.news-and-insights__wrap{}
.news-and-insights__article {
	text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    min-height: 170px;
    margin-bottom: 40px;
    color: inherit;
}
.news-and-insights__img {
    height: calc((100vw - 30px)/2);
    width: 100%;
    min-height: 150px;
}

.news-and-insights__text p {
	margin-bottom: 0px;
}
.news-and-insights__text--date {
	color:#007FC8;
	font-size: 14px;
    line-height: 20px;
}
.news-and-insights__text--title {
	color:#293189;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 10px;
    font-weight: 600;
}
@media (max-width:539px) {
	.news-and-insights__article {
	    border-radius: 8px;
	    overflow: hidden;
	    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	}
	.news-and-insights__text {
		padding: 20px;
	}
}
@media (min-width:540px) {
	.news-and-insights__img {
	    width: 300px;
	    max-height: 167px;
	}
	.news-and-insights__text {
		  padding-left: 20px;
    	width: calc(100% - 300px);
	}
	.news-and-insights__article {
		flex-wrap: nowrap;
	}
	.news-and-insights__article:hover h3 {
		text-decoration: underline;
	}
}
/*--------------------------------------------------------------
# .featured-in
--------------------------------------------------------------*/
.featured-in{
	padding-bottom: 30px;
    border-bottom: 3px solid #007FC8;
    margin-bottom: 50px;
}
.featured-in--inner{}
.featured-in__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.featured-in__img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 130px;
}
.featured-in__background-img {
    height: 260px;
    background-size: cover;
    width: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
}
.featured-in__link {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    height: 100%;
    margin-bottom: 30px;
}

.featured-in__link img {
    width: 100%;
    max-height: 500px;
}
.featured-in__date {
	color: #008F9D;
    font-weight: 700;
    margin-bottom: 14px;
}
.featured-in__link p {
	margin-bottom: 0px;
    font-size: 14px;
    line-height: 16px;
    color: #007FC8;
}
@media (min-width:420px) {
	.featured-in__link {
	    width: calc(50% - 20px);
	}
}
@media (min-width:640px) {
	.featured-in__link {
	    width: calc((100%/3) - 10px);
	}
}
@media (min-width:960px) {
	.featured-in__link {
	    width: calc(20% - 30px);
	}
}
/*--------------------------------------------------------------
# .latest-block
--------------------------------------------------------------*/
.latest-block__link {
    height: 100%;
    margin-bottom: 30px;
    text-decoration: none;
    text-align: center;
}
.latest-block__link p {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
    color: #000;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.24px;
    margin-top: 20px;
}
@media (min-width:420px) {
    .latest-block__link {
        width: calc(50% - 20px);
    }
}
@media (min-width:640px) {
    .latest-block__link {
        width: calc((100%/3) - 10px);
    }
}
@media (min-width:960px) {
    .latest-block__link {
        width: calc(25% - 30px);
    }
}
/*--------------------------------------------------------------
# .step-list
--------------------------------------------------------------*/
/*.step-list__item-wrap {
  max-width: 350px;
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
}*/
.step-list__item {
    counter-increment: my-awesome-counter;
    position: relative;
    max-width: 320px;
	width: 100%;
}
.step-list__item::before {
	content: counter(my-awesome-counter);
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    line-height: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    width: 30px;
    height: 30px;
    top: 9px;
    left: 9px;
    background: #008F9D;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 0 #999;
}
.step-list{}
.step-list--inner {
	padding-top: 70px;
    padding-bottom: 40px;
    max-width: 1060px;
    margin: 0 auto;
}
.step-list__item-wrap{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.step-list__item--imgwrap {
	margin-bottom: 20px;
}
.step-list__item--imgwrap img {
	width: 100%;
}
.step-list__item p {
	text-align: center;
}
.step-list__text h2 {
    font-size: 30px;
}
@media (min-width:1000px) {
	.step-list__item-wrap {
		justify-content: space-between;
	}
    .step-list__text {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .step-list__text h2 {
        width: 320px;
    }
    .step-list__text h5 {
        width: calc(100% - 370px);
    }
}
/*--------------------------------------------------------------
# .text-and-text-box-ft-icons
--------------------------------------------------------------*/
.text-and-text-box-ft-icons {
}
.text-and-text-box-ft-icons--inner {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.text-and-text-box-ft-icons__text {
	margin-bottom: 30px;
	width: 100%;
}
.text-and-text-box-ft-icons__text h2{
	color:#008F9D;
}
.text-and-text-box-ft-icons__text h5, .text-and-text-box-ft-icons__text p{
	color:white;
}
.text-and-text-box-ft-icons__box{
	padding: 20px;
    background-color: rgba(208,231,248,0.73);
    box-shadow: 13px 9px 13px rgba(1,1,1,0.15);
    width: 100%;
    max-width: 490px;
}
.text-and-text-box-ft-icons__list-wrap{}
.text-and-text-box-ft-icons__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.text-and-text-box-ft-icons__item:last-child {
	margin-bottom: 0px;
}
.text-and-text-box-ft-icons__item p {
	margin-bottom: 0px;
}
@media (min-width:760px) {
	.text-and-text-box-ft-icons__text {
		width: 55%;
    	padding-right: 80px;
	}
	.text-and-text-box-ft-icons__box {
		padding:40px;
		max-width: initial;
		width: 45%;
	}
	.text-and-text-box-ft-icons__item {
	    flex-wrap: nowrap;
	}
	.text-and-text-box-ft-icons__item p {
		padding-left: 20px;
	}
}
/*--------------------------------------------------------------
# .contact-block__location
--------------------------------------------------------------*/
.contact-block--inner {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 100px;
}
.contact-block__location {
    max-width: 333px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.18);
    border-radius: 4px;
    overflow: hidden;
	height: fit-content;
}
.contact-block__text {
	max-width: 720px;
	margin-bottom: 30px;
}
.contact-block__text h2, .contact-block__text h5 {
    margin-bottom: 0px;
}
.contact-block__text h2 {
    text-transform: uppercase;
}
.contact-block__form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.contact-block__form .gform_title {
    color: #00AE99;
    text-align: left;
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 14px;
}
.contact-block__location-wrap {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-block__location--text {
	padding:10px;
}
.contact-block__location--text p {
	margin-bottom: 0px;
}
.contact-block__form .gform_body input[type=text],
.contact-block__form .gform_body select {
    width: 100%;
    background-color: white;
    border: 3px solid #007FC8;
    margin-bottom: 10px;
    padding: 14px 20px 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #787878;
    border-radius: 14px;
}
.contact-block__form .gform_body textarea {
    width: 100%;
    background-color: white;
    border: 3px solid #007FC8;
    margin-bottom: 20px;
    padding: 14px 20px 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #787878;
    border-radius: 14px;
}
.contact-block__form .gform_footer input[type=submit] {
    background: #E94890;
    color: white;
    border: none;
    padding: 25px 80px;
    border-radius: 60px;
    font-family: inherit;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1.7px;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.contact-block__form .gform_footer input[type=submit]:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
    box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
}
@media (min-width:920px) {
	.contact-block__location {
		box-shadow: none;
		border-radius: 0px;
	}
	.contact-block__location--text {
		padding: 10px 0px 0px;
	}
	.contact-block__text {
	    width: calc(100% - 420px);
	    max-width: 700px;
	}
	.contact-block__form {
	    width:350px;	
	}
	.contact-block--inner {
		flex-wrap: nowrap;
    	justify-content: space-between;
	}
}
/*--------------------------------------------------------------
# .thank-you-block
--------------------------------------------------------------*/
.thank-you-block--inner {
	padding-top: 90px;
    padding-bottom: 90px;
}
/*--------------------------------------------------------------
# .basic-page--inner
--------------------------------------------------------------*/
.basic-page--inner {
	padding-top: 40px;
	padding-bottom: 80px;
}
.basic-page h1 {
	font-size: 32px;
	line-height: 38px;
	color:#293189;
}
.basic-page-page-banner h2 {
	font-size: 48px;
	line-height: 58px;
	color:white;
	margin-bottom: 0px;
}
.publish-date {
	margin-top:14px;
    margin-bottom: 30px;
    display: block;
    color: #007FC8;
    font-size: 14px;
}
@media (min-width:780px) {
    .media-room-text__wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .media-room-text__item {
        width:calc(50% - 10px);
    }
}
/*--------------------------------------------------------------
# .basic-page--inner
--------------------------------------------------------------*/
.related-coverage {
	margin-bottom: 80px;
}
.related-coverage__wrap {
    display: flex;
    flex-wrap: wrap;
}
.related-coverage__post-link {
    margin-right: 30px;
}
.related-coverage__header h5 {
    color: #007FC8;
    font-size: 20px;
    line-height: 30px;
}
.related-coverage__link {
	display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    max-width: 240px;
    width: 100%;
    text-decoration: none;
}
.related-coverage__link img {
	margin-bottom: 14px;
}
.related-coverage__date {
	color: #008F9D;
    font-weight: 700;
    margin-bottom: 14px;
}
.related-coverage__post-link p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.related-coverage__link p {
	margin-bottom: 0px;
    font-size: 14px;
    line-height: 16px;
    color: #007FC8;
}
/*--------------------------------------------------------------
# special tooltip feature
--------------------------------------------------------------*/
[data-tooltip] {
    cursor: pointer;
    pointer-events: all;
}
#tooltip {
    position:absolute;
    max-width: 400px;
    width: 100%;
    background:#D0E8F8;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    color:#222222;
    padding:12px;
    z-index:999;
}
#tooltip.alt-tooltip {
    background:#490B22;
}
/*--------------------------------------------------------------
# custom animations
--------------------------------------------------------------*/
@-webkit-keyframes swingInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes swingInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.swingInUp {
  animation-duration: 1.5s;
  -webkit-animation-name: swingInUp;
  animation-name: swingInUp;
  animation-timing-function: cubic-bezier(0.19, 1.65, 0.48, 0.855);
}

.swingInUpKids * {
  animation-duration: 1.5s;
  -webkit-animation-name: swingInUp;
  animation-name: swingInUp;
  animation-timing-function: cubic-bezier(0.19, 1.65, 0.48, 0.855);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmooth {
  animation-duration: 0.3s;
  animation-name: fadeInUpSmooth;
}

.animated {
  animation-timing-function: cubic-bezier(0.19, 1, 0.48, 0.855);
}

.animated.delay-medium {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}


@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinAround {
  animation-duration: 200s;
  -webkit-animation-name: spinAround;
  animation-name: spinAround;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/*--------------------------------------------------------------
# timeline
--------------------------------------------------------------*/
.timeline--inner {
    padding-top: 100px;
    padding-bottom:0px;
}
.timeline-header {
    text-align: center;
}
.timeline-event--text {
    text-align: left;
    width: 80%;
    margin-top: -4px;
    padding-left: 10px;
    background-color: #ffffff;
}
.timeline-event--line {
    background-color: #222222;
    min-width: 50px;
    width: 20%;
    height: 4px;
    margin-top: 8px;
}
.timeline-event--text h5 {
    margin-bottom: 0px;
    color: #293189;
}
.timeline-event--text p:last-of-type {
    margin-bottom: 0px;
}
.timeline-event {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.timeline-event:before {
    content: "";
    background-color: #0FAF9A;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 100%;
    position: absolute;
    left: -8px;
    top: 0px;
    z-index: 4;
}
.timeline .timeline-event:first-of-type:after, .timeline .timeline-event:nth-of-type(2):after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/timeline-break.svg);
    width: 30px;
    height: 40px;
    display: block;
    border-radius: 100%;
    position: absolute;
    left: -13px;
    top: 50%;
    z-index: 4;
}
.timeline-event--wrap {
    position: relative;
    max-width: 440px;
    margin: auto;
}
.timeline-event--wrap:before {
    content: "";
    background-color: #222222;
    width: 4px;
    display: block;
    position: absolute;
    height: 100%;
    left: 0px;
    top: 0px;
}
@media (min-width:900px) {
    .timeline-event.push-up {
        margin-top:-80px;
    }
    .timeline .timeline-event:nth-of-type(even):before {
        right: -12px;
        left: inherit;
    }
    .timeline .timeline-event:nth-of-type(2):after {
        right: -17px;
        left: inherit;
    }
    .timeline-event--wrap {
        max-width: 900px;
    }
    .timeline-event {
        width: calc(50% - 2px);
    }
    .timeline-event:nth-of-type(odd) {
        margin-left: auto;
    }
    .future-timeline .timeline-event {
        margin-left: auto;
    }
    .timeline .timeline-event:nth-of-type(even) {
        margin-right: auto;
        flex-direction: row-reverse;
    }
    .timeline-event--wrap:before {
        left:calc(50% - 2px);
    }
    .timeline-event:before {
        left: -12px;
    }
    .timeline .timeline-event:first-of-type:after {
        left: -17px;
    }
}


.future-timeline--inner {
    padding-top: 0px;
    padding-bottom: 100px;
}
.future-timeline-header {
    text-align: center;
}
.future-timeline-event--text {
    text-align: left;
    width: 80%;
    margin-top: -4px;
    padding-left: 10px;
    background-color: #ffffff;
}
.future-timeline .timeline-event--line {
    background-color: transparent;
    border-bottom: 4px dotted #0FAF9A;
}
.future-timeline-event--text h4 {
    margin-bottom: 0px;
    color: #0FAF9A;
    font-size: 21px;
    line-height: 1.4;
}
.future-timeline-event--text h4 {
    color:#0FAF9A;
}
.future-timeline-event--text p:last-of-type {
    margin-bottom: 0px;
}
.future-timeline-event {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.future-timeline-event:before {
    content: "";
    background-color: #0FAF9A;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 100%;
    position: absolute;
    left: -8px;
    top: 0px;
    z-index: 4;
}
.future-timeline-event--wrap {
    position: relative;
    max-width: 440px;
    margin: auto;
}
.future-timeline .timeline-event--wrap:before {
    background-color: transparent;
    border-left: 4px dotted #0FAF9A;
}
@media (min-width:900px) {
    .future-timeline-event--wrap {
        max-width: 775px;
        display: flex;
        align-items: flex-start;
    }
    .future-timeline-event {
        flex-wrap: wrap;
        width: 25%;
        align-content: flex-start;
    }
    .future-timeline-event--line {
        width: 100%;
        height: 80px;
        margin-top: 8px;
        border-left: 4px dotted #0FAF9A;
        border-top: none;
    }
    .future-timeline-event--wrap:before {
        top: 8px;
        border-top: 4px dotted #0FAF9A;
        height: 4px;
        width: 75%;
    }
    .future-timeline-event--text {
        padding-left: 0px;
        padding-right: 10px;
        width: auto;
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# pipeline
--------------------------------------------------------------*/
.page-id-486 .text-box-ft-icons {
    margin-top: 0px;
}
.page-id-486 .main-page-container {
    padding-bottom: 0px;
}
.pipeline-svg text {
    font-family: 'Source Sans Pro', sans-serif;
}
/*--------------------------------------------------------------
# Form and Text
--------------------------------------------------------------*/
.form-and-text--inner {
    padding: 50px 0px;
    max-width: 1000px;
    margin: 0 auto;
}
.form-and-text__form {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.form-and-text__text h3 {
    color: #1C86CA;
}

.form-and-text__form input[type="submit"] {
    background-color: #E94890;
    outline: none;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1.7px;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.form-and-text__form input[type="submit"]:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
    box-shadow: -4px -2px 10px rgba(0,0,0,0.18);
}


@media (min-width: 840px) {
    .form-text-new .form-and-text--inner {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .form-and-text__form {
        margin: 0px;
    }
    .form-and-text__text {
        width: calc(100% - 440px);
    }
}

/*--------------------------------------------------------------
# Small Blobs
--------------------------------------------------------------*/
.small-blobs {
    margin-bottom: 100px;
}
.small-blobs__wrap {

}
.small-blobs__item {
    min-height: 320px;
    max-width: 320px;
    background-image: url(../../../../../dev.oncotexinc.com/wp-content/themes/oncotex/assets/small-blob.svg);
    padding: 30px;
    background-size: 100% 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.small-blobs__txt h4 {
    font-size: 70px;
    color: #293189;
    font-family: "Montserrat";
    font-weight: 400;
}
.small-blobs__txt p {
    color: white;
}
@media (min-width: 1020px) {
    .small-blobs__wrap {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .small-blobs__item {
        margin: 0px;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
	.featured-in__img-wrap { min-height:88px;}
	.featured-in__link img { max-height:88px;}
}
@media (min-width: 768px) and (max-width: 991px){
	.featured-in__img-wrap { min-height:90px;}
	.featured-in__link img { max-height:90px;}
}
@media (max-width: 767px) {
	.featured-in__img-wrap { min-height:auto;}
	.featured-in__link img { max-height:100%;}
	.featured-in__wrap .featured-in__link { margin:30px 0px 0px;}
}