.gold-hero{
background-size: 100%;
background-position-y: -170px;
}
.gold-hero-title{
   color: #fff;
   font-size: 55px;
   height: 100%;
   margin-left: 20%;
   display: flex;
   align-items: center;
   width: 35%;
   z-index: 2;
}
.gold-content-main{
    width: 100%
}
.gold-content-sub{
    width: 80%;
    height: auto;
    margin: auto;
    align-items: center;
}

.gold-article-revers{
    flex-direction: row-reverse;
}
.gold-article-revers .gold-article{
    padding-left: 2rem;
}
.gold-article, .gold-image{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gold-article .small-tag{
    text-transform: uppercase;
    color: #504f4f;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: .5px;
    margin-bottom: 25px;
}
.gold-article p{
    font-size: 45px;
    margin-bottom: 35px;
}
.gold-article .gold-apply-btn{
    text-transform: capitalize;
    width: fit-content;
    padding: 10px 20px;
    color: #fff;
    background-color: #000;
    transition-property: background-color;
    transition-duration: 0.4s;
    transition-delay: 0s;
}
.gold-apply-btn:hover{
    background-color: #4775AE;
    cursor: pointer;
}
.gold-image img{
    width: 100%;
    transform: scale(1);
    transition-property: transform;
    transition-duration: 0.6s;
    transition-delay: 0s;
}
.gold-image img:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.scroll-fade {
    opacity:0;
}
.top-space{
    padding-top: 170px;
}
.bottom-space{
    padding-bottom: 170px;
}
/* 13inc */
@media (max-width: 1280px){
    .gold-hero{
        height:420px;
        background-size: cover;
    }
    .gold-hero-title{
        width: 55%;
    }
}
/* iphoneSE */
@media (max-width: 768px){
    .gold-hero{
       background-position-y:0px ;
    }
    .gold-hero-title{
        font-size: 37px;
        margin-left: 5%;
        width: fit-content;
    }
    .gold-content-sub{
        height:auto;
        gap: 30px;
        width: 90%;
    }
    .gold-article-revers .gold-article{
        padding-left: 0rem;
    }
    .gold-article p{
        font-size: 24px;
    }
    .bottom-space{
        padding-bottom: 60px;
    }
    .top-space{
        padding-top: 60px;
    }
}