/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    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;
}


/*** Navbar ***/

.fixed-top{
    transition:.5s;
}

/* ===========================
   Top Bar
=========================== */

.top-bar{
    height:45px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.fixed-top .top-bar small,
.fixed-top .top-bar a,
.fixed-top .top-bar i{
    color:#fff;
    font-weight:600;
    transition:.3s;
}

/* ===========================
   Logo
=========================== */

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-logo{
    height:80px;
    width:auto;
    object-fit:contain;
    transition:.3s;
}

/* Saat Navbar Berwarna Putih */

.fixed-top.bg-white .navbar-logo{
    height:55px;
}

/* ===========================
   Navbar Menu
=========================== */

.fixed-top .navbar .navbar-nav .nav-link{
    padding:25px 15px;
    color:#fff;
    font-weight:600;
    outline:none;
    transition:.3s;
}

.fixed-top .navbar .navbar-nav .nav-link:hover,
.fixed-top .navbar .navbar-nav .nav-link.active{
    color:var(--primary);
}

/* Tombol Brosur */

.fixed-top .btn-sm-square{
    background:rgba(255,255,255,.9);
}

/* ===========================
   Setelah Scroll
=========================== */

.fixed-top.bg-white{
    background:#fff!important;
}

.fixed-top.bg-white .top-bar{
    border-bottom:1px solid rgba(0,0,0,.07);
}

.fixed-top.bg-white .top-bar small,
.fixed-top.bg-white .top-bar a,
.fixed-top.bg-white .top-bar i{
    color:#333;
}

.fixed-top.bg-white .navbar .navbar-nav .nav-link{
    color:#555;
}

.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active{
    color:var(--dark);
}

/* Dropdown */

.navbar .dropdown-toggle::after{
    border:none;
    content:"\f107";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    vertical-align:middle;
    margin-left:8px;
}

/* ===========================
   Mobile
=========================== */

@media (max-width:991.98px){

    .navbar{
        background:#fff;
    }

    .navbar-logo{
        height:50px;
    }

    .navbar .navbar-nav{
        margin-top:10px;
        border-top:1px solid rgba(0,0,0,.07);
        background:#fff;
    }

    .navbar .navbar-nav .nav-link{
        padding:10px 0;
        color:#555!important;
        font-weight:600;
    }

    .navbar-toggler{
        border:none;
        box-shadow:none!important;
    }

}

/* ===========================
   Desktop Dropdown
=========================== */

@media (min-width:992px){

    .navbar .nav-item .dropdown-menu{
        display:block;
        visibility:hidden;
        top:100%;
        transform:rotateX(-75deg);
        transform-origin:0% 0%;
        transition:.5s;
        opacity:0;
    }

    .navbar .nav-item:hover .dropdown-menu{
        transform:rotateX(0deg);
        visibility:visible;
        opacity:1;
    }

}

/*** Hero Carousel ***/

#header-carousel{
    position: relative;
    height: 1100px;
}

#header-carousel .carousel-inner,
#header-carousel .carousel-item{
    height: 1100px;
}

#header-carousel .carousel-item{
    position: relative;
    overflow: hidden;
}

#header-carousel .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption{
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    text-align: left;
}

.hero-subtitle{
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title{
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-buttons .btn{
    min-width: 180px;
    border-radius: 50px;
    font-weight: 600;
}

/* Navigation */

.carousel-control-prev,
.carousel-control-next{
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

/* Indicator */

.carousel-indicators{
    bottom: 25px;
}

.carousel-indicators button{
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #fff;
    opacity: .5;
}

.carousel-indicators .active{
    opacity: 1;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media (max-width: 991.98px){
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item{
        height: 620px;
    }

    .hero-subtitle{
        font-size: 16px;
    }

    .hero-title{
        font-size: 46px;
    }
}

@media (max-width: 767.98px){
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item{
        height: 520px;
    }

    .carousel-caption{
        text-align: center;
    }

    .hero-subtitle{
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-title{
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero-buttons{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn{
        width: 100%;
        margin-left: 0 !important;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display: none;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/

.about-img{
    position: relative;
}

.about-img img{
    position: relative;
    z-index: 2;
}

.about-img::before{
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: repeating-radial-gradient(
        #FFFFFF,
        #EEEEEE 5px,
        transparent 5px,
        transparent 10px
    );
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}

/* Highlight */

.about-highlight{
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px 25px;

    background: var(--light);
    border-left: 5px solid var(--primary);
    border-radius: 10px;

    transition: .3s;
}

.about-highlight:hover{
    transform: translateY(-3px);
}

.about-highlight-number{
    min-width: 90px;

    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);

    line-height: 1;
}

.about-highlight-content h5{
    margin-bottom: 5px;
    font-weight: 700;
}

.about-highlight-content p{
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

/* Info */

.about-info{
    align-items: flex-start;
}

.about-info i{
    font-size: 1.1rem;
}

.about-info h6{
    margin-bottom: 5px;
    font-weight: 700;
}

.about-info p{
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

/* Responsive */

@media (max-width:991.98px){
    .about-img{
        margin-bottom: 20px;
    }
}

@media (max-width:575.98px){
    .about-highlight{
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;

    }

    .about-highlight-number{
        font-size: 2.5rem;
        min-width: auto;
    }

}

/*** Special Services ***/

.special-service-item{
    height:100%;
    display:flex;
    flex-direction:column;

    padding:40px 30px;

    background:#fff;
    border-radius:12px;

    text-align:center;

    transition:.3s;
    box-shadow:0 0 35px rgba(0,0,0,.05);
}

.special-service-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.special-service-image{
    width:100%;
    height:220px;

    overflow:hidden;
    border-radius:10px;

    margin-bottom:25px;

    flex-shrink:0;
}

.special-service-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:.3s;
}

.special-service-item:hover .special-service-image img{
    transform:scale(1.05);
}

.special-service-item h4{
    margin-bottom:15px;
    font-weight:700;
}

.special-service-item p{
    margin-bottom:0;
    color:#666;
    line-height:1.7;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991.98px){

    .special-service-item{
        padding:35px 25px;
    }

    .special-service-image{
        height:200px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:575.98px){

    .special-service-item{
        padding:25px 18px;
    }

    .special-service-image{
        height:180px;
        margin-bottom:20px;
    }

    .special-service-item h4{
        font-size:1.35rem;
    }

    .special-service-item p{
        font-size:.95rem;
        line-height:1.7;
    }

}

/*** Services ***/

.service-item{
    height:100%;

    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 0 45px rgba(0,0,0,.07);

    transition:.3s;
}

.service-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 45px rgba(0,0,0,.10);
}

/* Image */

.service-image{
    width:100%;
    aspect-ratio:16/10;

    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:.5s;
}

.service-item:hover .service-image img{
    transform:scale(1.08);
}

/* Content */

.service-content{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:30px;
}

.service-content h4{

    font-weight:700;

    margin-bottom:15px;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    overflow:hidden;

}

.service-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;

    overflow:hidden;

}

/* Price */

.service-price{

    margin-top:auto;

    padding-top:20px;

    border-top:1px solid #eee;

    color:#888;

    font-size:.95rem;

}

.service-price span{

    display:block;

    margin-top:6px;

    color:var(--primary);

    font-size:1.8rem;

    font-weight:700;

    line-height:1.2;

}

/* Tablet */

@media (max-width:991.98px){

    .service-content{

        padding:25px;

    }

}

/* Mobile */

@media (max-width:767.98px){

    .service-content{

        padding:20px;

    }

    .service-content h4{

        font-size:1.2rem;

    }

    .service-price span{

        font-size:1.5rem;

    }

}

/*** Feature ***/

.feature-image{

    width:100%;
    height:100%;

}

.feature-image img{

    width:100%;
    height:100%;

    min-height:520px;

    object-fit:cover;

    display:block;

}

.feature-content{

    padding:80px;

}

.feature-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.9rem;

}

.feature-content h2{

    font-size:2.5rem;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.3;

}

.feature-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.feature-content .btn{

    min-width:220px;

    font-weight:600;

}

/* Tablet */

@media (max-width:991.98px){

    .feature-image img{

        min-height:400px;

    }

    .feature-content{

        padding:60px 40px;

    }

}

/* Mobile */

@media (max-width:767.98px){

    .feature-image img{

        min-height:280px;

    }

    .feature-content{

        padding:40px 20px;

        text-align:center;

    }

    .feature-content h2{

        font-size:2rem;

    }

}

/*** Project ***/

.project-item{
    height: 100%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .3s;
}

.project-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,.10);
}

/* Image */

.project-item .position-relative{
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.project-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}

.project-item:hover img{
    transform: scale(1.08);
}

/* Category Badge */

.project-item .bg-secondary{
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Title */

.project-item h5,
.project-item .h5{
    font-weight: 700;
    color: var(--dark);
    transition: .3s;
}

.project-item h5:hover,
.project-item .h5:hover{
    color: var(--primary);
}

/* Description */

.project-item p{

    color:#666;

    line-height:1.7;

    margin-bottom:0;

    min-height:82px;

    overflow:hidden;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:3;

    text-overflow:ellipsis;

}

/* Footer */

.project-item small{
    display: block;
}

.project-item small a{
    font-weight: 500;
    transition: .3s;
}

.project-item small a:hover{
    color: var(--primary) !important;
}

/* Responsive */

@media (max-width:991.98px){

    .project-item .position-relative{
        height:220px;
    }

}

@media (max-width:767.98px){

    .project-item .position-relative{
        height:200px;
    }

}

/*** Team ***/

.team-item{
    height:100%;

    background:#fff;
    border-radius:12px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 0 45px rgba(0,0,0,.07);

    transition:.3s;
}

.team-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 45px rgba(0,0,0,.10);
}

/* Image */

.team-image{
    width:100%;
    aspect-ratio:1/1;

    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:.5s;
}

.team-item:hover .team-image img{
    transform:scale(1.08);
}

/* Content */

.team-content{
    padding:25px;
}

.team-content h5{
    margin-bottom:8px;
    font-weight:700;
}

.team-content span{
    display:block;

    margin-bottom:20px;

    color:#666;
}

/* Social */

.team-social{
    display:flex;
    justify-content:center;
    gap:10px;
}

.team-social a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--light);

    color:var(--primary);

    transition:.3s;
}

.team-social a:hover{
    background:var(--primary);
    color:#fff;
}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:991.98px){

    .team-content{
        padding:22px;
    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:767.98px){

    .team-content{
        padding:20px;
    }

    .team-content h5{
        font-size:1.1rem;
    }

    .team-content span{
        font-size:.9rem;
    }

    .team-social a{
        width:38px;
        height:38px;

        font-size:.95rem;
    }

}

/*** CTA ***/

.cta-section{
    position: relative;

    /* Background */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    /* Layout */
    padding: 120px 0;
    overflow: hidden;
}

.cta-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .45);
}

.cta-section .container{
    position: relative;
    z-index: 2;
}

.cta-subtitle{
    display: inline-block;

    padding: 8px 20px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;

    color: #fff;

    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-section h1{
    line-height: 1.2;
}

.cta-section p{
    line-height: 1.8;
}

.cta-section .btn{
    min-width: 220px;
    font-weight: 600;
}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:991.98px){

    .cta-section{

        padding: 90px 0;

        /* Disable Parallax */
        background-attachment: scroll;

    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:767.98px){

    .cta-section{

        padding: 70px 0;

        /* Disable Parallax */
        background-attachment: scroll;

    }

    .cta-subtitle{

        font-size: .8rem;
        letter-spacing: 1.5px;

    }

    .cta-section h1{

        font-size: 2rem;

    }

    .cta-section p{

        font-size: .95rem;

    }

    .cta-section .btn{

        width: 100%;
        min-width: auto;

    }

}

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/* ========================= */
/* Responsive */
/* ========================= */

.testimonial-item p{
    line-height: 1.7;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;

    overflow: hidden;
}

@media (max-width: 991.98px){

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next{
        width:45px;
        height:45px;
        font-size:16px;
    }

}

@media (max-width: 767.98px){

    .testimonial-item{
        padding:30px 25px !important;
    }

    .testimonial-item h5{
        font-size:1rem;
    }

    .testimonial-item span{
        font-size:.9rem;
    }

    .testimonial-carousel .owl-item .testimonial-item img{
        width:55px;
        height:55px;
    }

    .testimonial-carousel .owl-nav{
        margin-top:20px;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next{
        width:42px;
        height:42px;
        margin:0 8px;
        font-size:15px;
    }

}

/*********************************
        PROJECT MODAL
*********************************/

#projectModal .modal-dialog{
    max-width:1200px;
}

#projectModal .modal-content{
    border:none;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

#projectModal .modal-header{
    padding:28px 30px 18px;
    border:none;
}

#projectModal .modal-title{
    font-weight:700;
}

#projectModal .modal-body{
    padding:0 30px 30px;
}

/* ========================= */
/* Image */
/* ========================= */

.project-modal-image{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
    border-radius:18px;
}

.project-modal-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* ========================= */
/* Gallery Button */
/* ========================= */

.project-gallery-prev,
.project-gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.project-gallery-prev{
    left:18px;
}

.project-gallery-next{
    right:18px;
}

.project-gallery-prev:hover,
.project-gallery-next:hover{
    background:var(--primary);
}

/* ========================= */
/* Content */
/* ========================= */

.project-modal-category{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:.9rem;
}

#projectModal h2{
    margin:15px 0 25px;
    font-weight:700;
    line-height:1.3;
}

#projectModal p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;

}

#projectModal .btn{
    min-width:220px;
    font-weight:600;
}

/* ========================= */
/* Laptop */
/* ========================= */

@media (max-width:1199.98px){

    #projectModal .modal-dialog{
        max-width:95%;
    }

}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:991.98px){

    #projectModal .modal-header{
        padding:25px 25px 15px;
    }

    #projectModal .modal-body{
        padding:0 25px 25px;
    }

    .project-modal-image{
        margin-bottom:30px;
        aspect-ratio:16/10;
    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:767.98px){

    #projectModal .modal-dialog{
        margin:15px;
    }

    #projectModal .modal-content{
        border-radius:18px;
    }

    #projectModal .modal-header{
        padding:20px;
    }

    #projectModal .modal-body{
        padding:0 20px 20px;
    }

    .project-modal-image{
        aspect-ratio:4/3;
        margin-bottom:25px;
        border-radius:14px;
    }

    #projectModal h2{
        font-size:1.8rem;
        margin-bottom:18px;
    }

    #projectModal p{
        font-size:.95rem;
        margin-bottom:25px;
    }

    .project-gallery-prev,
    .project-gallery-next{
        width:42px;
        height:42px;
        font-size:.9rem;
    }

    .project-gallery-prev{
        left:12px;
    }

    .project-gallery-next{
        right:12px;
    }

    #projectModal .btn{
        width:100%;
        min-width:auto;
    }

}

@media (max-width:575.98px){

    #projectModal .modal-title{

        font-size:1.4rem;

    }

    #projectModal h2{
        font-size:1.55rem;
    }

    .project-modal-category{
        font-size:.8rem;
        letter-spacing:2px;
    }

}

/*** Footer ***/

.footer{
    color:#999;
}

/* Contact */

.footer p{
    margin-bottom:15px;
}

.footer p i{
    color:var(--primary);
}

/* Social */

.footer .btn.btn-square{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

/* Link */

.footer .btn.btn-link{

    display:block;

    padding:0;

    margin-bottom:10px;

    text-align:left;

    color:#999;

    font-weight:400;

    text-transform:none;

    transition:.3s;

}

.footer .btn.btn-link::before{

    content:"\f105";

    font-family:"Font Awesome 5 Free";

    font-weight:900;

    margin-right:10px;

    color:#999;

}

.footer .btn.btn-link:hover{

    color:var(--light);

    letter-spacing:1px;

    box-shadow:none;

}

.footer .btn.btn-link:hover::before{

    color:var(--primary);

}

/* Copyright */

.footer .copyright{

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.08);

    font-size:.95rem;

    text-align:center;

}

.footer .copyright a{

    color:var(--light);

    font-weight:600;

    text-decoration:none;

}

.footer .copyright a:hover{

    color:var(--primary);

}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:991.98px){

    .footer .col-lg-4{

        text-align:center;

    }

    .footer .btn.btn-link{

        text-align:center;

    }

    .footer .btn.btn-link::before{

        display:none;

    }

    .footer .d-flex{

        justify-content:center;

    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:767.98px){

    .footer{

        text-align:center;

    }

    .footer h4{

        margin-bottom:20px;

    }

    .footer p{

        font-size:.95rem;

    }

    .footer .btn.btn-link{

        margin-bottom:12px;

        text-align:center;

    }

    .footer .btn.btn-link::before{

        display:none;

    }

    .footer .d-flex{

        justify-content:center;

    }

    .footer .copyright{

        font-size:.9rem;

        line-height:1.8;

    }

}