@font-face {
    font-family: 'Nunito-regular';
    src: url("./fonts/Nunito-regular.ttf") format('truetype');       
}
@font-face {
    font-family: 'Nunito-semibold';
    src: url("./fonts/Nunito-semibold.ttf") format('truetype');       
}
@font-face {
    font-family: 'Nunito-bold';
    src: url("./fonts/Nunito-bold.ttf") format('truetype');       
}
@font-face {
    font-family: 'Billgates';
    src: url('./fonts/Billgates.ttf') format('truetype');
}



/*Variables*/
:root {
    --white-color: #FCFCFA;
    --black-color: #0D0D0D;
    --purple-color: #7B77F2;
    --purple-hover: #544FF2;
    --pink-color: #FD698C;
    --pink2-color: #F26363;
  }

/*Nav Styles*/
.navbar{
    color: var(--black-color);
    background-color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
.nav-item {
    font-family: 'Nunito-semibold';
    font-weight: 550;
}
a.nav-link:hover{
    color: var(--purple-color) !important;
}
a.navbar-brand{
    font-family: 'Nunito-bold';
    color: var(--purple-color) !important;
    font-weight: bold;
    font-size: 20px;
}
a.navbar-brand:hover{
    color: var(--purple-hover);
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--purple-color) !important;
}
ul.dropdown-menu.dropdown-menu-light.show {
    background-color: var(--white-color);
    border: 1px solid rgba(0,0,0,0);
    background: var(--white-color);
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--purple-hover) !important;
    font-family: 'Nunito-bold';
}


/*Hero 2 */
.hero2{
    /* background: linear-gradient(180deg, rgba(253, 105, 140, 0.8) 0%, rgba(169, 114, 206, 0.735312) 64.69%, rgba(123, 119, 242, 0.7) 100%); */
    background-image: url("/img/home/background.webp");
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 177px;
    color: var(--white-color);
    align-items: center;
}

.hero2 h1{
    font-weight: 500;
    font-family: 'Nunito-semibold';
    font-size: 48px;

}

.hero2 p{
    font-family: 'Nunito-regular';
    font-size: 20px;
}
.hero2 .social-maru{
    align-content: center;
}
.hero .social-maru .svg-icon{
    fill: var(--white-color);
}
.hero2 path {
    fill: var(--white-color);
}
.hero2 path:hover{
    fill: var(--pink-color);
}
/*End Hero*/

/*Contact*/
#contact {
    background: #FFDEE6;
}
.contact a{
    font-family: 'Nunito-regular';
    text-decoration: none;
    color: var(--black-color);
    font-size: 20px;
}
.contact p{
    font-family: 'Nunito-regular';
    font-size: 16px;
}

.contact h2{
    font-family: 'Nunito-bold';
    color: var(--purple-color);
}
.contact .input-txt{
    background: #F9F9F9;
    border: 1px solid #7B77F2;
    border-radius: 5px;
}
.contact .input-txt:hover{
    background: #F9F9F9;
    border: 2px solid var(--purple-hover);
    border-radius: 5px;
}
.contact .textarea-txt{
    background: #F9F9F9;
    border: 1px solid #7B77F2;
    border-radius: 5px;
}
.contact .textarea-txt:hover{
    background: #F9F9F9;
    border: 2px solid var(--purple-hover);
    border-radius: 5px;
}

.contact .btn{
    background: var(--purple-color);
    color: var(--white-color);
}
.contact .btn:hover{
    background: var(--purple-hover);
    color: var(--white-color);
}

@media only screen and (max-width: 393px) {
    .contact img{
        width: 27px;
    }
    .contact a{
        font-size: 15px;
    }
}

@media only screen and (max-width: 500px) {
    .contact img{
        width: 27px;
    }
    .contact a{
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .contact img{
        width: 27px;
    }
    .contact a{
        font-size: 15px;
    }
}

/*End Contact*/

/*Footer*/
#footer{
    background: var(--purple-hover);
    color: var(--white-color);
}
#footer path {
    fill: var(--white-color);
}
#footer path:hover{
    fill: var(--pink-color);
}
.copy.col-lg-6.col-sm-12.col-sm-12-mb-2-mt-2.text-center{
    font-family: 'Nunito-semibold';
}
/*End Footer*/

.cards img{
    border-radius: 5px;
}

.cards p{
    color: var(--black-color);
    font-size: 20px;
    font-family: 'Nunito-semibold';
}

.cards a{
    text-decoration: none;
}

.projects-item:hover p{
    color: var(--purple-hover);
}

.cards .over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: #7b77f2e1;
    border-radius: 5px; 
  }

  .card:hover .over {
    opacity: 1;
  }

  .card {
    display: block;
    width: auto;
    height: auto;
    background: transparent;
    border: none !important;
    box-shadow: none !important; 
}
  .iconify {
    color: white;
    font-size: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

/*Hero projects */
.hero-projects{
    /* background: linear-gradient(180deg, rgba(253, 105, 140, 0.8) 0%, rgba(169, 114, 206, 0.735312) 64.69%, rgba(123, 119, 242, 0.7) 100%); */
    background-image: url("/img/home/background.webp");
    background-position:top;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-color);
    align-items: center; 
    
}

.hero-projects a{
    color: var(--white-color);
    text-decoration: none;
    font-family: 'Nunito-semibold';
}

.hero-projects a:hover{
    color: var(--white-color) !important;
    text-decoration: underline;
}

li.breadcrumb-item.active{
    color: var(--white-color);
    font-family: 'Nunito-regular';
}
/*End Hero*/

/*Front projects*/


.front-projects-transphoria-pines{
    background: url("/img/projects/transphoria/transphoria-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-transphoria-pines{
    background: url("/img/projects/transphoria/transphoria-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-epicp-hoenix{
    background: url("/img/projects/epic_phoenix/epic-phoenix.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-otro{
    background: url("/img/projects/olympus_2/banner_olympus_2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-olympus2{
    background: url("/img/projects/olympus_2/banner_olympus_2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}


.front-Rainbow-Canvas{
    background: url("/img/projects/rainbow_canvas/banner-new.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-pets{
    background: url("/img/projects/bi_pets/banner-bi-pets.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-stillbi{
    background: url("/img/projects/Still_bi/banner-stillbi.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-visibility{
    background: url("/img/projects/bi_visibility/banner-bivisility.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-ordinaryworlds{
    background: url("/img/projects/ordinary_words/banner-ordinary-words.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-tofindyouagain{
    background: url("/img/projects/To_find_you_again/banner_to_find_you_again.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-spirit{
    background: url("/img/projects/spirit/banner_spirit.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.front-projects-alias{
    background: url("/img/projects/alias/baner-alias.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}


@media only screen and (max-width: 393px) {
    .front-projects-pets{
        background-position: 70% 30%;
    }
    .front-projects-stillbi{
        background-position: 70% 30%;
    }
    .front-projects-visibility{
        background-position: 30% 70%;
    }
    .front-projects-ordinaryworlds{
        background-position: 60% 40%;
    }
    .front-projects-tofindyouagain{
        background-position: 70% 30%;
    }
    .front-projects-spirit{
        background-position: 70% 30%;
    }
}
@media only screen and (max-width: 500px) {
    .front-projects-pets{
        background-position: 70% 30%;
    }
    .front-projects-stillbi{
        background-position: 70% 30%;
    }
    .front-projects-visibility{
        background-position: 30% 70%;
    }
    .front-projects-ordinaryworlds{
        background-position: 60% 40%;
    }
    .front-projects-tofindyouagain{
        background-position: 70% 30%;
    }
    .front-projects-spirit{
        background-position: 70% 30%;
    }
}
@media only screen and (max-width: 600px) {
    .front-projects-pets{
        background-position: 70% 30%;
    }
    .front-projects-stillbi{
        background-position: 70% 30%;
    }
    .front-projects-visibility{
        background-position: 30% 70%;
    }
    .front-projects-ordinaryworlds{
        background-position: 65% 35%;
    }
    .front-projects-tofindyouagain{
        background-position: 70% 30%;
    }
    .front-projects-spirit{
        background-position: 70% 30%;
    }
}
/*End front projects*/

/*Filter projects*/
a.btn-filter.btn {
    width: 143px;
    height: 45px;
    border: 1px solid var(--purple-hover);
    border-radius: 5px;
    text-align: center;
    color: var(--purple-color);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    font-family: 'Nunito-semibold';
    justify-content: center;
    align-items: center;
    padding: 10px;
}

a.btn-filter.btn.active {
    background: var(--purple-color);
    color: var(--white-color); 
}

a.btn-filter.btn:hover{
    background: var(--purple-color);
    color: var(--white-color);
}


/*Filtering*/

.projects-item.show{
	animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.projects-item.hide {
    display: none;
}

/*About me*/
.description h2 {
    font-family: 'Nunito-semibold';
    color: var(--purple-color);
}
.description p{
    font-family: 'Nunito-regular';
    font-size: 18px;
}

.h2-before{
    height: 40px;
    background-color: #7B77F2;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    background: var(--purple-color);
    bottom: 0;
    left: calc(50% - 20px);
    margin-left: auto;
    margin-right: auto;
}

.desc{
    padding-top: 2vh;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 2vh;
}
/*End About me*/

/*///////////////////////////////////////////////*/
                /*Gallery style*/
/*//////////////////////////////////////////////*/

.icon-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: #7b77f2e1;
    border-radius: 5px; 
  }

  .img-card.card:hover .icon-over {
    opacity: 1;
  }

.img-card.card .card {
    display: block;
    width: auto;
    height: auto;
    background: transparent;
    border: none !important;
    box-shadow: none !important; 
}

  .icon-gallery {
    color: white;
    font-size: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  .img-fluid{
    border-radius: 5px !important;
  }

  /*Back to top*/
#btn-back-to-top {
    background-color: var(--pink-color);
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    border-radius: 100%;
  }

#btn-back-to-top i{
    color: white;
  }

#btn-back-to-top:hover{
    background-color: #f84a73;
}
/*Back to top end*/

/*modal button*/
.modal .btn{
    background: var(--purple-color);
    color: var(--white-color);
}
.modal .btn:hover{
    background: var(--purple-hover);
    color: var(--white-color);
}