/*Gorga - Personal Portfolio Template*/


/*Table of content
---------
font
general
loader
button
modal
home page
home intro
about
portfolio
contact
responsive
---------*/


/*font*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

/*general*/

body {
    font-family: 'Cinzel', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 14px;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 110%;
    margin: 0;
    font-family: 'Cinzel', sans-serif;
    font-weight: 500;
    color: rgba(255, 94, 97, 1);
    letter-spacing: 1px;
}

p {
    margin: 8px 0;
    line-height: 22px;
}

a {
    color: #111;
}

a:hover {
    color: #111;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

.segments {
    padding: 75px 0 75px;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    margin: 0 25%;
}

.section-title .line {
    background: #333;
    height: 3px;
    width: 50px;
    margin: 0 auto;
    margin-top: 10px;
}

.bg-second {
    background-color: #f8f8f8;
}

.bg-light {
    background-color: #fff;
}


/*loader*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #fafafa;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border-radius: 50%;
    background-color: #FF7A7C;
    -webkit-animation: mymove 1s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: mymove 1s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@keyframes mymove {
    0% {
        -webkit-transform: scale(0);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(0);
        /* IE 9 */
        transform: scale(0);
        /* Firefox 16+, IE 10+, Opera */
    }
    50% {
        -webkit-transform: scale(1, 1);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(1, 1);
        /* IE 9 */
        transform: scale(1, 1);
        /* Firefox 16+, IE 10+, Opera */
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1, 1);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: scale(1, 1);
        /* IE 9 */
        transform: scale(1, 1);
        /* Firefox 16+, IE 10+, Opera */
        opacity: 0;
    }
}


/*button default*/

.button {
    background: rgb(255, 96, 99);
    background: -moz-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: linear-gradient(135deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6063', endColorstr='#23538a', GradientType=1);
    color: #fff;
    position: relative;
    padding: 8px 20px;
    border: 0;
    margin-top: 25px;
    font-size: 14px;
    z-index: 0;
    border-radius: 30px;
    transition: all .4s ease;
}

.button:hover {
    background: rgb(35, 83, 138);
    background: -moz-linear-gradient(-45deg, rgba(35, 83, 138, 1) 0%, rgba(255, 96, 99, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(35, 83, 138, 1) 0%, rgba(255, 96, 99, 1) 100%);
    background: linear-gradient(135deg, rgba(35, 83, 138, 1) 0%, rgba(255, 96, 99, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23538a', endColorstr='#ff6063', GradientType=1);
    color: #fff;
}


/*modal*/

.modal-dialog {
    padding: 0 5px;
    width: 100%;
    text-align: left;
}

.modal-content {
    background-color: rgba(62, 79, 97, 0.67);
    border-radius: 0;
    padding: 30px;

}

.back-to-top {
    position: fixed;
    z-index: 100;
    left: 100%;
    margin-left: -50px;
    opacity: 1;
    top: 0;
    margin-top: 30px;
    background: #FF7A7C;
    transition: all .4s ease;
   }

.back-to-top:hover {
    transform: rotate(180deg);
}

/*home intro*/

.home-page .first-section {
    padding: 0;
    border-style: solid;
    border-color: #FF7A7C;
    border-width: 0 2px 2px 0;
}

.home-page .second-section {
    padding: 0;
    border-style: solid;
    border-color: #FF7A7C;
    border-width: 0 0 2px 2px;
}

.home-page .third-section {
    padding: 0;
    border-style: solid;
    border-color: #FF7A7C;
    border-width: 2px 2px 0 0;
}

.home-page .fourth-section {
    padding: 0;
    border-style: solid;
    border-color: #FF7A7C;
    border-width: 2px 0 0 2px;
}

.home-page img {
    width: 100%;
}


/*home intro*/

.home-intro {
    position: relative;
}

.home-intro .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2e3f4c38;
    text-align: center;
    padding-top: 15%;
}

.home-intro .content h2 {
    color: #FF7A7C;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 5px;
}

.home-intro .content #typed {
    color: #FF7A7C;
}

.home-intro .content {
    color: #fff;
}

.home-intro .content h5 {
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.home-intro .content p {
    margin: 10px 15%;
}

.home-intro .content .curblink {
    color: #FF7A7C;
    font-weight: 400;
}

.home-intro .social-media {
    margin-top: -25px;
}

.home-intro .social-media ul {
    padding: 0;
    margin: 0;
}

.home-intro .social-media ul li {
    list-style-type: none;
    display: inline-block;
    margin: 20px;
}

.home-intro .social-media ul li a i {
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgb(255, 96, 99);
    background: -moz-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: linear-gradient(135deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6063', endColorstr='#23538a', GradientType=1);
    line-height: 35px;
    border-radius: 50%;
    border: 2px dotted #f9f9f9;
}


/*about*/

.about {
    position: relative;
}

.about .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2e3f4c38;
    text-align: center;
    padding-top: 20%;
}

.about .content .button-text {
    background: transparent;
    padding: 0;
    color: #FF7A7C;
    margin-top: 0;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 5px;
    z-index: 99;
    transition-duration: .3s;
    transition-delay: .1s;
}

.about .content .link-text:hover .line {
    transform: translateY(2px);
    opacity: 1;
}

.about .content .link-text:hover .line2 {
    transform: translateY(-2px);
    opacity: 1;
}

.about .content .link-text:hover .button-text  {
    color: #fff;
}

.about .content .link-text:hover .button-text span {
    color: #FF7A7C;
    transition-duration: .3s;
    transition-delay: .2s;
}

.about .content-image img {
    width: 100%;
}

.about .content-text p span {
    color: #555;
    font-weight: 500;
    font-size: 18px;
}

.about .skill {
    margin-top: 30px;
}

.about .progress {
    height: 5px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f1f1f1;
    margin-bottom: 30px;
}

.about .progress:last-child {
    margin-bottom: 0;
}

.about .progress .progress-bar {
    background: rgb(255, 96, 99);
    background: -moz-linear-gradient(left, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: linear-gradient(to right, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6063', endColorstr='#23538a', GradientType=1);
}

.about .content h6 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.about .testimonial-section {
    margin-top: 75px;
    text-align: center;
}

.about .testimonial-section .contents {
    margin: 0 8%;
    border: 1px dashed #ddd;
    padding: 20px;
}

.about .testimonial-section .contents img {
    width: 60px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.about .testimonial-section .contents .rate {
    margin-top: 20px;
}

.about .testimonial-section .contents .rate ul {
    padding: 0;
    margin: 0;
}

.about .testimonial-section .contents .rate ul li {
    list-style-type: none;
    display: inline-block;
}

.about .testimonial-section .contents .rate ul li i {
    color: #ffa500;
}

.about .testimonial-section .contents h5 {
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 5px;
}

.about .testimonial-section .contents span {
    font-style: italic;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    transition: .4s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 14px;
    background-color: #555;
}


/*portfolio*/

.portfolio {
    position: relative;
}

.portfolio .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2e3f4c38;
    text-align: center;
    padding-top: 20%;
}

.portfolio .content .button-text {
    background: transparent;
    padding: 0;
    color: #FF7A7C;
    margin-top: 0;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 5px;
    z-index: 99;
    transition-duration: .3s;
    transition-delay: .1s;
}

.portfolio .content .link-text:hover .line {
    transform: translateY(27px);
    opacity: 1;
}

.portfolio .content .link-text:hover .line2 {
    transform: translateY(27px);
    opacity: 1;
}

.portfolio .content .link-text:hover .button-text  {
    color: #fff;
}

.portfolio .content .link-text:hover .button-text span {
    color: #FF7A7C;
    transition-duration: .3s;
    transition-delay: .2s;
}

.portfolio .content-image {
    position: relative;
    overflow: hidden;
}

.portfolio .content-image .folio-caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding-top: 28%;
    transition: transform .3s linear;
    transform: scale(0, 0)
}

.portfolio .content-image:hover .folio-caption {
    transform: scale(1, 1);
}

.portfolio .content-image .folio-caption i {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    font-size: 22px;
    background: #FF7A7C;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    transition-duration: .3s;
    transition-delay: .4s;
    opacity: 0;
}

.portfolio .content-image .folio-caption i:hover {
    transition: .4s ease-out;
    background-color: #fff;
    color: #FF7A7C;
}

.portfolio .content-image:hover .folio-caption i {
    opacity: 1;
    transform: scale(1, 1);
    transform: translate(-50%);
}

.portfolio .content-image img {
    width: 100%;
}

.portfolio .col-md-4 {
    padding: 10px;
}

.portfolio .col-md-6 {
    padding: 10px;
}

.portfolio .col-md-3 {
    padding: 10px;
}


/*contact*/

.contact {
    position: relative;
}

.contact .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #2e3f4c38;
    text-align: center;
    padding-top: 20%;
}

.contact .content .button-text {
    background: transparent;
    padding: 0;
    color: #FF7A7C;
    margin-top: 0;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 5px;
    z-index: 99;
    transition-duration: .3s;
    transition-delay: .1s;
}

.contact .content .link-text:hover .line {
    transform: translateY(27px);
    opacity: 1;
}

.contact .content .link-text:hover .line2 {
    transform: translateY(27px);
    opacity: 1;
}

.contact .content .link-text:hover .button-text  {
    color: #fff;
}

.contact .content .link-text:hover .button-text span {
    color: #FF7A7C;
    transition-duration: .3s;
    transition-delay: .2s;
}

.contact .data-contact {
    margin-bottom: 30px;
}

.contact .data-contact .wrap-data {
    margin-bottom: 30px;
    ;
}

.contact .data-contact .icon {
    text-align: center;
}

.contact .data-contact .icon i {
    float: left;
    font-size: 22px;
    border: 2px dotted #f9f9f9;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 40px;
    margin-right: 15px;
    background: rgb(255, 96, 99);
    background: -moz-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    background: linear-gradient(135deg, rgba(255, 96, 99, 1) 0%, rgba(35, 83, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6063', endColorstr='#23538a', GradientType=1);
    color: #fff;
}

.contact .data-contact .text {
    overflow: hidden;
}

.contact .data-contact .text h5 {
    font-family: 'Cinzel', serif;
    margin-bottom: 8px;
}

.contact .wrap-name {
    float: left;
    width: calc(50% - 10px);
}

.contact .wrap-email {
    overflow: hidden;
    float: right;
    width: calc(50% - 10px);
}

.contact .content-map .map {
    width: 100%;
    height: 358px;
}

.contact .content input,
.contact .content textarea {
    width: 100%;
    color: #333;
    border: 1px solid #ddd;
    transition: all .4s ease;
}

.contact .content input {
    padding: 11px 15px;
    margin-bottom: 20px;
}

.contact .content textarea {
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none;
}

::-webkit-placeholder {
    /* Chrome/Opera/Safari */
    color: #555;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #555;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #555;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #555;
}

.popup-form__btn {
    color: rgba(17, 17, 17, 0.829);
}

@media (max-width: 768px) {
    .home-page .first-section {
        padding: 0;
        border-style: solid;
        border-color: #FF7A7C;
        border-width: 0 0 2px 0;
    }

    .home-page .second-section {
        padding: 0;
        border-style: solid;
        border-color: #FF7A7C;
        border-width: 0 0 2px 0;
    }

    .home-page .third-section {
        padding: 0;
        border-style: solid;
        border-color: #FF7A7C;
        border-width: 0 0 2px 0;
    }

    .home-page .fourth-section {
        padding: 0;
        border-style: solid;
        border-color: #FF7A7C;
        border: 0;
    }

    .link-text .line,
    .link-text .line2 {
        display: none;
    }

    .about .content-image {
        margin-bottom: 30px;
    }

    .portfolio .content-image .folio-caption i {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        color: #fff;
        font-size: 18px;
        background: #FF7A7C;
        background-color: rgb(255, 122, 124);
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        transition-duration: .3s;
        transition-delay: .4s;
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .modal-dialog {
        margin: 0;
    }

    .portfolio .content-image .folio-caption i {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        color: #fff;
        font-size: 22px;
        background: #FF7A7C;
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 50%;
        transition-duration: .3s;
        transition-delay: .4s;
        opacity: 0;
    }

    .contact .content-left {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .home-intro .content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
        padding-top: 10%;
    }

    .home-intro .content h2 {
        font-size: 40px;
    }

    .about .content .button-text {
        font-size: 40px;
    }

    .portfolio .content .button-text {
        font-size: 40px;
    }

    .contact .content .button-text {
        font-size: 40px;
    }

    .home-intro .content p {
        margin: 10px 6%;
    }
}

@media (max-width: 360px) {
    .home-intro .content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
        padding-top: 17%;
    }

    .home-intro .content h2 {
        font-size: 35px;
    }

    .home-intro .content p {
        display: none;
    }

    .about .content .button-text {
        font-size: 30px;
    }

    .portfolio .content .button-text {
        font-size: 30px;
    }

    .contact .content .button-text {
        font-size: 30px;
    }

    .about .testimonial-section .contents {
        margin: 0;
    }
}


