/**
 * ==========================================
 * About Hero
 * ==========================================
 */

.tr-about-hero{

    padding:110px 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(0,180,255,.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #081b33 0%,
            #0A2E73 45%,
            #174EA6 100%
        );

    color:#ffffff;

    overflow:hidden;

}

/* ==========================================
   Container
========================================== */

.tr-about-hero__content{

    max-width:760px;

}

/* ==========================================
   Badge
========================================== */

.tr-about-hero .tr-section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    margin-bottom:20px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

/* ==========================================
   Breadcrumb
========================================== */

.tr-breadcrumb{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:24px;

    font-size:14px;

}

.tr-breadcrumb a{

    color:#9fd2ff;

    text-decoration:none;

    transition:color .3s ease;

}

.tr-breadcrumb a:hover{

    color:#ffffff;

}

.tr-breadcrumb span{

    color:rgba(255,255,255,.85);

}

/* ==========================================
   Heading
========================================== */

.tr-about-hero__title{

    margin:0 0 24px;

    font-size:56px;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-1px;

    color:#ffffff;

}

/* ==========================================
   Description
========================================== */

.tr-about-hero__text{

    max-width:700px;

    margin-bottom:36px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}

/* ==========================================
   Buttons
========================================== */

.tr-about-hero__buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.tr-about-hero .tr-btn--outline{

    background:transparent;

    border:2px solid #ffffff;

    color:#ffffff;

}

.tr-about-hero .tr-btn--outline:hover{

    background:#ffffff;

    color:#0A2E73;

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

    .tr-about-hero{

        padding:90px 0;

    }

    .tr-about-hero__title{

        font-size:42px;

    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:576px){

    .tr-about-hero{

        padding:70px 0;

    }

    .tr-about-hero__title{

        font-size:34px;

    }

    .tr-about-hero__text{

        font-size:16px;

    }

    .tr-about-hero__buttons{

        flex-direction:column;

    }

    .tr-about-hero__buttons .tr-btn{

        width:100%;

        justify-content:center;

    }

}