/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../images/banner.jpg) center center no-repeat;
    background-size: cover;
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eda1a1;
    border: 1px solid rgba(16,15,15,0.5);
    border-radius: 45px;
    transition: .3s;
}

  .btn.btn-social:hover {
        border-color: var(--primary);
        background: var(--primary);
    }

.btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    color: #3dbcdd;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

 .btn.btn-link:hover {
        color: var(--primary) !important;
        letter-spacing: 1px;
        box-shadow: none;
    }





.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}



/*** About ***/
.about-img img {
    transition: .5s;
}

    .about-img img:hover {
        background: var(--primary) !important;
    }

.h1, .h2, .h3, .h4, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Lobster Two', cursive;
   
    font-size:2em;
}

.hmv-box {
    padding: 20px 0px;
}

.inner-hmv {
    padding: 15px;
    box-shadow: 0 0px 10px rgba(0,0,0,.1);
    position: relative;
    overflow: hidden;
    height: 800px;
}

.icon-box-hmv {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border: 3px solid #4babb1;
    border-radius: 6px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .icon-box-hmv i {
        font-size: 60px;
        color: #eea412;
    }

.inner-hmv h3 {
    font-size: 28px;
    color: #212121;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.inner-hmv p {
    margin: 0px;
}

.inner-hmv:hover .icon-box-hmv {
    border: 3px solid #eea412;
}

    .inner-hmv:hover .icon-box-hmv i {
        color: #4babb1;
    }

.inner-hmv:hover h3 {
    color: #eea412;
}

.tr-pa {
    font-size: 170px;
    color: #fbfbfb;
    position: absolute;
    top: -20px;
    right: -10px;
    line-height: 125px;
    font-weight: 700;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.inner-hmv:hover .tr-pa {
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

