/*
++
++ Template Name: AR-Coder - Personal Portfolio & Resume
++ Version: 1.0
++
*/

/*
#########################################
#                 Index                 #
01- Preload
02- Navigation Bar
03- Home
04- About
05- Skills
06- Resume
07- Statistics
08- Services
09- Portfolio
10- Testimonials
11- Blog
12- Sponsors
13- Map
14- Contact
15- Footer
#########################################
*/
/*
#########################################
			Default Settings
#########################################
*/
/*
------------------------------------
			All Transition
------------------------------------
*/
* {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

/*
----------------
	The Body
----------------
*/
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 25px;
    font-weight: 300;
    font-size: 16px;
    overflow: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a,
a:hover,
a:focus,
button:focus {
    outline: 0;
    text-decoration: none;
    color: #fff;
}

input,
textarea {
    background-color: #f9f9f9;
    width: 100%;
    padding: 10px;
    font-size: 13px;
    color: #989898;
    border: 1px solid #F1F1F1;
    margin-bottom: 30px;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid #ff3356;
}

/*
-------------------
	Typography
-------------------
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #9b9b9b;
    font-size: 14px;
}

/*
------------------------------------
			Display Table
------------------------------------
*/
.display-table {
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
    min-height: 100%;
}

/*
------------------------------------
			My Classes
------------------------------------
*/
.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.container {
    position: relative;
    z-index: 4;
}

.overflow {
    overflow: hidden;
}

.button-design {
    background-color: #ff3356;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    height: 50px;
    line-height: 50px;
    letter-spacing: 2px;
    border: 1px solid #ff3356;
    margin-top: 30px;
    min-width: 170px;
}

.button-design:hover {
    background-color: #444;
    border: 1px solid #444;
    color: #fff;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title .head {
    color: #444;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 0.75;
    margin: 0;
    position: relative;
    padding-left: 40px;
    padding-top: 14.5px;
    z-index: 5;
    margin-top: 10px;
}

.section-title .head:before {
    content: '';
    position: absolute;
    background-color: #ddd;
    width: 110px;
    height: 90%;
    z-index: -2;
    left: 0;
    top: 0;
}

.section-title .head span.color {
    color: #ff3356;
}

.section-title .head span.number {
    font-size: 30px;
    position: absolute;
    top: -10px;
    left: 0px;
    color: #ff3356;
    z-index: -1;
}

.section-title h3 {
    color: #333;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
    font-size: 25px;
    margin: 28px 0 16px 0;
}

.section-title p {
    width: 400px;
    margin: 0;
    display: inline-block;
}

/*
------------------------------------
			Start Preload
------------------------------------
*/

.preload {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

.box-preload {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.box-preload div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 10px;
    background-color: #ff3356;
    -webkit-animation: box-preload 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation: box-preload 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.box-preload div:nth-child(1) {
    left: 6px;
    -webkit-animation-delay: -0.24s;
    animation-delay: -0.24s;
}

.box-preload div:nth-child(2) {
    left: 26px;
    -webkit-animation-delay: -0.12s;
    animation-delay: -0.12s;
}

.box-preload div:nth-child(3) {
    left: 45px;
    -webkit-animation-delay: 0;
    animation-delay: 0;
}

@-webkit-keyframes box-preload {
    0% {
        top: 6px;
        height: 63px;
    }

    50%,
    100% {
        top: 19px;
        height: 30px;
    }
}

@keyframes box-preload {
    0% {
        top: 6px;
        height: 63px;
    }

    50%,
    100% {
        top: 19px;
        height: 30px;
    }
}

/*
------------------------------------
			End Preload
------------------------------------
*/




/*
------------------------------------
			Start Navbar
------------------------------------
*/
.navbar {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.navbar.active {
    background-color: #FFF !important;
    border-bottom: 1px solid #e9e9e9;
}

.navbar .navbar-brand {
    color: #FFF !important;
    font-weight: 700;
    font-size: 28px;
    padding: 12px 0;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.navbar .navbar-brand img {
    width: 75px;
}

.navbar .navbar-brand img.two {
    display: none;
}

.navbar.active .navbar-brand img.one {
    display: none;
}

.navbar.active .navbar-brand img.two {
    display: block;
}

.navbar.active .navbar-brand {
    color: #ff3356 !important;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 8px 0;
    margin-left: 20px;
    color: #FFF;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar .navbar-nav .nav-item:first-of-type .nav-link {
    margin-left: 0;
}

.navbar .navbar-nav .nav-link:before,
.navbar .navbar-nav .nav-link:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #ff3356;
    position: absolute;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.navbar .navbar-nav .nav-link:after {
    top: 8px;
    right: 0;
}

.navbar .navbar-nav .nav-link:before {
    bottom: 8px;
    left: 0;
}

.navbar .navbar-nav .nav-link:hover:after,
.navbar .navbar-nav .nav-link:hover:before,
.navbar .navbar-nav .nav-link.active:after,
.navbar .navbar-nav .nav-link.active:before {
    width: 50%;
}

.navbar .navbar-nav .nav-link.active,
.navbar.active .navbar-nav .nav-link.active {
    color: #ff3356;
}

.navbar.active .navbar-nav .nav-link {
    color: #444;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #ff3356;
}

/*
------------------------------------
			End Navbar
------------------------------------
*/
/*
------------------------------------
			Start Header
------------------------------------
*/
.header {
    background-image: url(../images/header/header.jpg);
    height: 100vh;
    color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 4;
}

.header .header-info {
    text-align: center;
    position: relative;
}

.header .header-info .hello {
    text-transform: uppercase;
    font-size: 24px;
    color: #f1f1f1;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    display: inline-block;
}

.header .header-info h1 {
    text-transform: capitalize;
    font-size: 75px;
    font-weight: 700;
    position: relative;
    line-height: 60px;
    margin-bottom: 40px;
}

.header .header-info p {
    text-transform: uppercase;
    font-size: 22px;
    color: #f1f1f1;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.header .header-info .typed-cursor {
    color: #ff3356;
}

.header .header-info .icon {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header .header-info .icon a {
    display: block;
    margin: 12px 0;
}

.header .header-info .icon a i {
    font-size: 16px;
    color: #ddd;
}

.header .header-info .icon a i:hover {
    color: #ff3356;
}

.scroll-down {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 140px;
}

.scroll-down .scroll {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-down .line {
    display: block;
    margin-bottom: 5px;
    width: 1px;
    background-color: #FFF;
    margin-left: 15px;
    -webkit-animation: line-scroll-down 4s infinite;
    animation: line-scroll-down 4s infinite;
}

@-webkit-keyframes line-scroll-down {
    0% {
        height: 0;
    }

    25% {
        height: 40px;
    }

    50% {
        height: 0;
    }

    75% {
        height: 40%;
    }

    100% {
        height: 0;
    }
}

@keyframes line-scroll-down {
    0% {
        height: 0;
    }

    25% {
        height: 40px;
    }

    50% {
        height: 0;
    }

    75% {
        height: 40%;
    }

    100% {
        height: 0;
    }
}

.scroll-down:hover .scroll {
    color: #ff3356;
}

.scroll-down:hover .line {
    background-color: #ff3356;
}

/*
------------------------------------
			End Header
------------------------------------
*/
/*
------------------------------------
			Start About
------------------------------------
*/
.about {}

.about .about-img {
    position: relative;
    margin: 0 70px 50px 0;
}

.about .about-img:after {
    content: '';
    position: absolute;
    border: 8px solid #ff3356;
    width: 90%;
    height: 90%;
    left: 0px;
    bottom: -50px;
    z-index: -1;
}

.about .about-img .ar-img {
    position: relative;
    margin: 84px 0 0 50px;
}

.about .about-img .ar-img:before {
    content: '';
    top: -80px;
    right: -70px;
    position: absolute;
    background-image: url(../images/dots.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 150px;
    width: 150px;
    z-index: 2;
}

.about .about-text .section-title {
    margin-bottom: 0px;
}

.about .about-text .section-title h3 {
    margin: 16px 0 30px 0;
}

.about .about-text .box-info .info {
    display: inline-block;
    margin: 0 30px 30px 0;
    width: calc(50% - 35px);
}

.about .about-text .box-info .info i {
    float: left;
    font-size: 25px;
    color: #ff3356;
    margin-top: 14px;
}

.about .about-text .box-info .info div {
    padding-left: 45px;
}

.about .about-text .box-info .info div p:nth-of-type(1) {
    margin-bottom: 0px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about .about-text .box-info .info div p:nth-of-type(2) {
    margin-bottom: 0px;
    letter-spacing: 1.5px;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
}

.about .about-text .button-design {
    margin: 0;
}

/*
------------------------------------
			End About
------------------------------------
*/
/*
------------------------------------
			Start Skills
------------------------------------
*/
.skills {
    background-color: #f8f9fa;
}

.skills .box {
    margin-bottom: 30px;
}

.skills .box .title {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #444;
    display: inline-block;
}

.skills .skills-box {
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 10px;
    position: relative;
}

.skills .skills-box .line {
    height: 100%;
    display: block;
    width: 0%;
    background-color: #ff3356;
    position: relative;
    -webkit-transition: 2.5s ease-in-out;
    -o-transition: 2.5s ease-in-out;
    transition: 2.5s ease-in-out;
}

.skills .box .line .line-percentage {
    position: absolute;
    top: -24px;
    right: -12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #444;
    text-transform: uppercase;
}

/*
------------------------------------
			End Skills
------------------------------------
*/
/*
------------------------------------
			Start Resume
------------------------------------
*/
.resume {}

.resume .resume-box {
    padding: 0 20px;
    position: relative;
}

.resume .resume-box:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 2px;
    background-color: #f1f1f1;
    left: 0;
    top: 0;
}

.resume .resume-box .resume-title:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 61px;
    background-color: #ff3356;
    left: 0;
}

.resume .resume-box .resume-title div {
    background-color: #ff3356;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
    padding: 18px 25px;
}

.resume .resume-box .item {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #f3f2f2;
}

.resume .resume-box .item h4 {
    font-size: 20px;
    color: #333;
    display: block;
    font-weight: 600;
}

.resume .resume-box .item span {
    color: #ff3356;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 8px 0 16px 0;
    display: inline-block;
}

.resume .resume-box .item p {
    margin-bottom: 0;
}

/*
------------------------------------
			End Resume
------------------------------------
*/
/*
------------------------------------
			Start Statistics
------------------------------------
*/
.statistics {
    background-image: url(../images/statistics/statistics.jpg);
    color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 4;
}

.statistics .statistics-item {
    text-align: center;
    margin-bottom: 30px;
}

.statistics .statistics-item span {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
}

.statistics .statistics-item p {
    position: relative;
    color: #FFF;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin: 24px 0 0 0;
    letter-spacing: 1px;
}

/*
------------------------------------
			End Statistics
------------------------------------
*/
/*
------------------------------------
			Start Service
------------------------------------
*/
.service {}

.service .item-service {
    overflow: hidden;
    padding: 50px 40px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
    position: relative;
}

.service .item-service .item-overlay {
    content: '';
    background-color: #ff3356;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.service .item-service:hover .item-overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.service .item-service .content {
    position: relative;
    z-index: 1;
}

.service .item-service i {
    font-size: 35px;
    color: #ff3356;
}

.service .item-service:hover i {
    color: #FFF;
}

.service .item-service h4 {
    margin: 20px 0 12px 0;
    font-size: 20px;
    color: #444;
    font-weight: 600;
}

.service .item-service:hover h4 {
    color: #FFF;
}

.service .item-service p {
    margin-bottom: 0;
}

.service .item-service:hover p {
    color: #EEE;
}

.service .item-service .number {
    position: absolute;
    top: 80%;
    right: 10%;
    font-size: 48px;
    font-weight: 600;
    color: #EEE;
}

/*
------------------------------------
			End Service
------------------------------------
*/
/*
------------------------------------
			Start Portfolio
------------------------------------
*/
.portfolio {
    background-color: #f8f9fa;
}

.portfolio .portfolio-link {
    margin-bottom: 30px;
}

.portfolio .portfolio-link li {
    display: inline-block;
    position: relative;
    padding: 8px 0;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}

.portfolio .portfolio-link li:first-of-type {
    margin-left: 0;
}

.portfolio .portfolio-link li:hover,
.portfolio .portfolio-link li.active {
    color: #ff3356;
}

.portfolio .portfolio-link li:after,
.portfolio .portfolio-link li:before {
    content: '';
    width: 0;
    height: 2px;
    background-color: #ff3356;
    position: absolute;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.portfolio .portfolio-link li:after {
    top: 8px;
    right: 0;
}

.portfolio .portfolio-link li:before {
    bottom: 8px;
    left: 0;
}

.portfolio .portfolio-link li:hover:after,
.portfolio .portfolio-link li:hover:before,
.portfolio .portfolio-link li.active:after,
.portfolio .portfolio-link li.active:before {
    width: 50%;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
}

.portfolio .portfolio-item:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio .portfolio-item .item-overlay {
    text-align: center;
    position: absolute;
    background-color: #444;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    opacity: 0;
    visibility: hidden;
}

.portfolio .portfolio-item .item-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFF;
    font-size: 35px;
}

.portfolio .portfolio-item:hover .item-overlay {
    opacity: 1;
    visibility: visible;
}

.mix {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

/*
------------------------------------
			End Portfolio
------------------------------------
*/
/*
------------------------------------
			Start Testimonials
------------------------------------
*/
.testimonials {}

.testimonials .owl-carousel .item {
    background-color: #f8f9fa;
    padding: 50px 20px 50px 20px;
    border: 1px solid #f1f1f1;
    position: relative;
}

.testimonials .owl-carousel .item p {
    margin-bottom: 10px;
}

.testimonials .owl-carousel .item span:first-of-type {
    color: #ff3356;
    position: relative;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    display: block;
}

.testimonials .owl-carousel .item span:first-of-type:before {
    content: '';
    position: absolute;
    left: -20px;
    width: 1px;
    height: 28px;
    background-color: #ff3356;
}

.testimonials .owl-carousel .item span:last-of-type {
    display: block;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}

.testimonials .owl-carousel .item .cleint-photo {
    margin-top: 16px;
    position: relative;
}

.testimonials .owl-carousel .item .cleint-photo:before {
    content: '';
    position: absolute;
    left: -20px;
    width: 1px;
    height: 100%;
    background-color: #ff3356;
}

.testimonials .owl-carousel .item .cleint-photo img {
    width: 100px;
}

.testimonials .owl-carousel .item .icon {
    position: absolute;
    top: 70%;
    right: 10%;
}

.testimonials .owl-carousel .item .icon i {
    font-size: 48px;
    color: #f1f1f1;
}

.testimonials .owl-carousel .owl-nav button.owl-next,
.testimonials .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 1px solid #ff3356;
    margin-top: 20px;
}

.testimonials .owl-carousel .owl-nav button.owl-next:hover,
.testimonials .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #ff3356;
}

.testimonials .owl-carousel .owl-nav button.owl-next span,
.testimonials .owl-carousel .owl-nav button.owl-prev span {
    font-size: 25px;
    color: #ff3356;
}

.testimonials .owl-carousel .owl-nav button.owl-next:hover span,
.testimonials .owl-carousel .owl-nav button.owl-prev:hover span {
    color: #FFF;
}

.testimonials .owl-carousel .owl-dots {
    display: none;
}

/*
------------------------------------
			End Testimonials
------------------------------------
*/
/*
------------------------------------
			Start Blog
------------------------------------
*/
.blog {
    background-color: #f8f9fa;
}

.post {
    margin-bottom: 30px;
}

.post .post-title {
    width: 75%;
    margin: -30px auto 0 auto;
    padding: 40px 20px;
    background-color: #FFF;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.post .post-title .time span.one {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 16px;
    color: #ff3356;
    display: inline-block;
}

.post .post-title .time span.one i {
    margin-right: 5px;
}

.post .post-title .time span.two a {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: #ff3356;
    display: inline-block;
    padding: 0px 4px;
}

.post .post-title h4 {
    margin-top: 12px;
}

.post .post-title h4 a {
    color: #444;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.post .post-title h4 a:hover {
    color: #ff3356;
}

/*
------------------------------------
			End Blog
------------------------------------
*/
/*
------------------------------------
			Start Sponsors
------------------------------------
*/
.sponsors {}

.sponsors .carousel-sponsors .item .item-img img {
    opacity: 0.5;
}

.sponsors .carousel-sponsors .item:hover .item-img img {
    opacity: 1;
}

.sponsors .carousel-sponsors .owl-nav,
.sponsors .carousel-sponsors .owl-dots {
    display: none;
}

/*
------------------------------------
			End Sponsors
------------------------------------
*/
/*
------------------------------------
			Start Map
------------------------------------
*/
.map {
    position: relative;
    z-index: 3;
}

.map div iframe {
    width: 100%;
    height: 100%;
}

/*
------------------------------------
			End Map
------------------------------------
*/
/*
------------------------------------
			Start Contact
------------------------------------
*/
.contact {
    background-color: #f8f9fa;
    background-image: url(../images/map.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact form {
    padding: 40px 20px;
    background-color: #FFF;
    border: 1px solid #f1f1f1;
}

.contact textarea {
    min-height: 150px;
}

.contact .button-design {
    margin: 0;
    width: 100%
}

/*
------------------------------------
			End Contact
------------------------------------
*/
/*
------------------------------------
			Start Footer
------------------------------------
*/
.footer {
    text-align: center;
}

.footer ul li {
    display: inline-block;
    background-color: #ff3356;
    width: 35px;
    margin: 0 8px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.footer ul li:hover {
    background-color: #444;
}

.footer ul li a i {
    font-size: 14px;
}

.footer ul li:hover a i {
    color: #ff3356;
}

.footer p {
    margin: 24px 0 0 0;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    letter-spacing: 1.5px;
    line-height: 28px;
}

/*
------------------------------------
			End Footer
------------------------------------
*/
/*
------------------------------------
			Start Line Page
------------------------------------
*/
.line-page {}

.line-page span {
    position: fixed;
    height: 100%;
    top: 0;
    width: 1px;
    background-color: #f1f1f1;
    z-index: 2;
}

.line-page span:nth-of-type(1) {
    left: 8%;
}

.line-page span:nth-of-type(2) {
    left: 28%;
}

.line-page span:nth-of-type(3) {
    left: 50%;
}

.line-page span:nth-of-type(4) {
    right: 28%;
}

.line-page span:nth-of-type(5) {
    right: 8%;
}

/*
------------------------------------
			End Line Page
------------------------------------
*/
/*
------------------------------------
			Start Scroll Top
------------------------------------
*/
.scroll-top {
    position: fixed;
    top: 75%;
    right: 30px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.scroll-top .line {
    background-color: #9E9E9E;
    -webkit-animation: none;
    animation: none;
    height: 50px;
    margin-left: 14px;
}

.scroll-top .scroll {
    color: #9E9E9E;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    font-size: 14px;
}

/*
------------------------------------
			End Scroll Top
------------------------------------
*/