/*About roles page*/ .roles-row { display: flex; margin-bottom:2rem; } .roles-column { flex: 50%; } .roles-img-left, .roles-img-right { height:30rem; background-repeat: no-repeat !important; background-position: center !important; background-size: cover !important; transition: background-position .69s ease-in-out; position: relative; /* Ensure this is relative for positioning hover effects */ display: inline-block; } .roles-img-left{ border-right: 2pt solid #0067c5; } .roles-img-right { border-left: 2pt solid #0067c5; } .roles-txt{ padding: 2rem; justify-content: space-around; } .roles-border-left, .roles-border-right { position:relative; background-color:#fff; border:2pt solid #0067c5; } .roles-border-left:before, .roles-img-left:before { position:absolute; left:-1px; top:-1px; content:''; border-top: 69px solid #0067c5; border-right: 69px solid transparent; } .roles-border-left:after, .roles-img-left:after { position:absolute; left:-3px; top:-3px; content:''; border-top: 69px solid white; border-right: 69px solid transparent; } .roles-border-right:before, .roles-img-right:before { position:absolute; right:-1px; top:-1px; content:''; border-top: 69px solid #0067c5; border-left: 69px solid transparent; } .roles-border-right:after, .roles-img-right:after { position:absolute; right:-3px; top:-3px; content:''; border-top: 69px solid white; border-left: 69px solid transparent; } .roles-btn-container { position: absolute; bottom: 20px; display: flex; gap: 10px; } .roles-btn { display: inline-block; padding: 10px 20px; background-color: #fff; color: #0067c5; text-align: center; text-decoration: none; border-radius: 0px; border: 2pt solid #0067c5; font-size: 16px; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: background-color 0.3s ease; /* Smooth hover effect */ } .roles-btn:hover { color: #fff !important; background-color: #0067c5; }