#trust .text-container {
    height: 60vh;
}
.trust-top {
	position: absolute;
	top: calc(50% - 72px) ;
    transform: translateY(-50%);
	left: 100px ;
	z-index: 3 ;
	font-size: 72px ;
	font-weight: 400 ;
    /* color: #555; */
	text-wrap: nowrap;
}
.trust-center {
	position: absolute;
	top: 50% ;
    transform: translateY(-50%);
	right: 100px ;
	z-index: 3 ;
	font-size: 72px ;
	font-weight: 400 ;
    /* color: #555; */
	text-wrap: nowrap;
}
.trust-bottom {
	position: absolute;
	top: calc(50% + 72px) ;
    transform: translateY(-50%);
	left: 100px ;
	z-index: 3 ;
	font-size: 72px ;
	font-weight: 400 ;
    /* color: #555; */
	text-wrap: nowrap;
}
@media (max-width: 1440px) {    
    .trust-top {
        font-size: 48px;
        top: calc(50% - 48px);
        left: 0;
    }
    .trust-center {
        font-size: 48px;
        top: 50%;
        right: 0;
    }
    .trust-bottom {
        font-size: 48px;
        top: calc(50% + 48px);
        left: 0;
    }
}
@media (max-width: 1023px) {    
    .trust-top {
        font-size: 36px;
        top: calc(50% - 36px);
        left: -50px;
    }
    .trust-center {
        font-size: 36px;
        top: 50%;
        right: -50px;
    }
    .trust-bottom {
        font-size: 36px;
        top: calc(50% + 36px);
        left: -50px;
    }
}
@media (max-width: 768px) {
    #trust .text-container {
        height: 45vh;
    }
    .trust-top {
        font-size: 18px;
        top: calc(50% - 18px);
        left: -50px;
    }
    .trust-center {
        font-size: 18px;
        top: 50%;
        right: -40px;
    }
    .trust-bottom {
        font-size: 18px;
        top: calc(50% + 18px);
        left: -40px;
    }
}