/********** Template CSS **********/
:root {
    --primary: #00093c;
    --secondary: #F4a261;
    --light: #FAFAFB;
    --dark: #0d1229;
}

.technology
{
    position: absolute;
    bottom: 20px;
}

.technology span {
font-size: 10px;
    background-color: #fff;
    padding: 3px;
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 600;
    margin-right: 3px;
border-top-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** 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 {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 38px;
    height: 38px;
}
@media (max-width:400px){
    .btn-lg-square {
        width: 36px;
        height: 36px;
    }
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    /* display: none; */
    /* transition: .5s; */
   
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}


/*** Header ***/
#home {
    margin-bottom: 6rem;
    background: url(../img/bg-header.png) left top no-repeat;
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}





/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.port-hover-title{
    position: absolute;
    bottom: 100px !important;
    left: 35px !important;
    z-index:1;
    font-size: 18px;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:  url(../img/split_background.png)  no-repeat;
    /* display: flex; */
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}
@media(max-width:400px){
    
        .portfolio-btn {
            position: absolute;
            width: 100%;
            height: 115%;
            top: -31px;
            left: -1px;
            align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
    }
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 55px !important;
}
@media (max-width:360px){
    .portfolio-item:hover .portfolio-btn {
        opacity: 1;
        padding-bottom: 15px !important;
    }
}

footer{
    width:100%;
    /* position:absolute; */
    bottom:0;
    background: linear-gradient(to right,#00093c, #2d0b00);
    color:#fff;
    padding:100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 18px;
    line-height: 20px;
}
footer .row{
    width:85%;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content:space-between;
}
.heading{
    text-transform: uppercase;
    color:#00093c;
}




/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(#f4a261, rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map{
    /* set max padding */
    
}

.contact-map {
    background: linear-gradient(#eeb07e,#f4a261 ), url(../img/background.jpg) center center no-repeat;
}

.contact-form {
    background: linear-gradient(#eeb07e,#f4a261), url(../img/background.jpg) center center no-repeat;
}


input:focus, textarea:focus {
    outline: none !important;
    border-color: initial !important; 
}

/*** Contact End ***/

