* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
    padding-left: 0px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

a {
    text-decoration: none;
    display: inline-block;
}

.main {
    display: flex;
}

.title {
    padding-bottom: 40px;
    font-family: 'Abril Fatface', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #d6c6b2;
    text-align: center;
    text-transform: capitalize;
}

.button {
    text-align: center;
    margin-top: 50px;
}

.button a {
    color: #222222;
    background-color: #d6c6b2;
    padding: 10px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

/* ==========================================
    navbar start
============================================== */

nav {
    background-color: transparent;
    position: absolute !important;
    width: 100%;
    top: 0;
    z-index: 999;
    padding-top: 20px !important;
}

nav ul li {
    padding-right: 20px;
}

nav ul li a {
    color: #FFFFFF !important;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

nav ul li a::after {
    content: "";
    background-color: #D6C6B2;
    width: 100%;
    height: 0%;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

nav ul li a:hover::after {
    height: 84px;
}

nav ul li a:hover {
    color: #08080C !important;
}

/* ==========================================
    navbar end
============================================== */

/* ==========================================
    banner start
============================================== */

#banner {
    background-color: #08080C !important;
    padding-bottom: 100px;
}

#banner .bnr {
    position: relative;
}

#banner .text img {
    position: absolute;
    top: 0px;
    left: 15%;
}

#banner .text {
    text-align: right;
    padding-right: 110px;
    padding-top: 249px;
}

#banner .text h3 {
    font-family: 'Abril Fatface', cursive;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

#banner .text h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 100px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 90px;
}

#banner .text h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 85px;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    z-index: 99;
    padding-bottom: 10px;
}

#banner .text a {
    text-transform: uppercase;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 16px;
    padding: 10px 20px;
    color: #e7dcce !important;
    border: 1px solid #D6C6B2;
    margin-left: 25px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#banner .text .btn2 {
    padding: 10px 30px;
    margin-right: -10px;
}

#banner .text a:hover {
    background-color: #D6C6B2;
    border-color: #D6C6B2;
    color: #000000 !important;
}

/* ==========================================
    banner end
============================================== */

/* ==========================================
    about-me start
============================================== */

#about-me {
    background-color: #282828;
    padding: 80px 0px;
}

#about-me .text .title {
    padding-top: 50px;
    text-align: left;
}

#about-me .text {
    margin-left: 30px;
}

#about-me .text p {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 50px;
    width: 630px;
}

#about-me .text h3 {
    font-family: 'Abril Fatface', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #d6c6b2;
    padding-bottom: 30px;
    text-transform: capitalize;
}

#about-me .text ul li {
    display: inline-block;
    margin-right: 15px;
}

#about-me .text ul li a {
    width: 50px;
    height: 50px;
    border: 1px solid #FFFFFF;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#about-me .text ul li a:hover {
    background-color: #d6c6b2;
    color: #08080C !important;
}

/* ==========================================
    about-me end
============================================== */

/* ==========================================
    service start
============================================== */

#service {
    background: url(../images/servicebg.png) no-repeat center;
    background-size: cover;
    padding: 100px 0px;
}

#service .service-slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 20px;
    margin-top: 30px;
}

#service .service-slider .item p {
    font-family: 'Open Sans', sans-serif;
    color: #d6c6b2;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

#service .service-slider .item h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #d6c6b2;
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

#service .slick-prev {
    position: absolute;
    bottom: -86px;
    left: 48%;
    z-index: 99;
    color: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all .5s linear;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#service .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30a";
    color: #FFFFFF;
    font-size: 30px;
    top: 50%;
    position: absolute;
    left: -9%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#service .slick-next {
    position: absolute;
    bottom: -86px;
    left: 52%;
    z-index: 99;
    color: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all .5s linear;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#service .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30b";
    color: #FFFFFF;
    font-size: 30px;
    top: 50%;
    position: absolute;
    left: 116%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#service .slick-next:hover, #service .slick-prev:hover {
    background-color: #d6c6b2;
}

/* ==========================================
    service end
============================================== */

/* ==========================================
    portfolio start
============================================== */

#portfolio {
    background-color: #282828;
    padding: 80px 0px;
}

#portfolio .title {
    text-align: left;
    padding-bottom: 18px;
}

#portfolio .main {
    flex-wrap: wrap;
    justify-content: space-between;
}

#portfolio .main .mix {
    width: 48%;
    margin-bottom: 20px;
    position: relative;
}

#portfolio .main .mix img {
    width: 100%;
    display: block;
}

#portfolio .main .mix .overlay {
    position: absolute;
    width: 00%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(214, 198, 178, 0.7);
    opacity: 0;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#portfolio .main .mix .overlay I {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #333333;
    color: #D6C6B2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#portfolio .main .mix .overlay h4 {
    width: 100%;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #222222;
    font-size: 20px;
    position: absolute;
    top: 92%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#portfolio .main .mix .overlay h3 {
    width: 100%;
    font-family: 'Open Sans';
    font-weight: 600;
    color: #222222;
    font-size: 22px;
    position: absolute;
    top: 85%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#portfolio .main .mix:hover .overlay {
    opacity: 1;
    width: 100%;
}

#portfolio ul li {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #fffbfb;
    font-size: 20px;
    cursor: pointer;
}

#portfolio ul li.mixitup-control-active {
    color: #D6C6B2;
    padding-left: 25px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

/* ==========================================
    portfolio end
============================================== */

/* ==========================================
    testimonial start
============================================== */

#testimonial {
    background: url(../images/testimonialbgpng.png)no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

#testimonial .overlay {
    width: 100%;
    height: 100%;
    padding: 100px 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

#testimonial .overlay .testimonial-slider .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
}

#testimonial .overlay .testimonial-slider .item .img {
    width: 33%;
}

#testimonial .overlay .testimonial-slider .item .text {
    width: 65%;
}

#testimonial .overlay .testimonial-slider .item .text h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    padding-bottom: 5px;
}

#testimonial .overlay .testimonial-slider .item .text h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
}

#testimonial .overlay .testimonial-slider .item .text ul li {
    display: inline-block;
    padding-right: 10px;
}

#testimonial .overlay .testimonial-slider .item .text i {
    font-size: 16px;
    color: #d6c6b2;
    padding-top: 10px;
}

#testimonial .overlay .testimonial-slider .item .text p {
    font-size: 14px;
    color: #ffffff;
    padding-right: 10px;
}

#testimonial .slick-prev {
    position: absolute;
    bottom: -86px;
    left: 48%;
    z-index: 99;
    color: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all .5s linear;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#testimonial .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30a";
    color: #FFFFFF;
    font-size: 30px;
    top: 50%;
    position: absolute;
    left: -9%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#testimonial .slick-next {
    position: absolute;
    bottom: -86px;
    left: 52%;
    z-index: 99;
    color: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: all .5s linear;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#testimonial .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30b";
    color: #FFFFFF;
    font-size: 30px;
    top: 50%;
    position: absolute;
    left: 116%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#testimonial .slick-next:hover, #testimonial .slick-prev:hover {
    background-color: #d6c6b2;
}

/* ==========================================
    testimonial end
============================================== */

/* ==========================================
    pricing start
============================================== */

#pricing {
    background-color: #282828;
    padding: 100px 0px;
}

#pricing .item {
    text-align: center;
    color: #FFFFFF;
    background-color: rgb(59, 59, 59);
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#pricing .item h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #222222;
    background-color: #d6c6b2;
    padding: 20px 0px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#pricing .item h2 {
    font-size: 60px;
    line-height: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

#pricing .item h2::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 80%;
    height: 2px;
    content: "";
    background-color: #d6c6b2;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#pricing .item span {
    font-size: 24px;
    color: #ffffff;
}

#pricing .item ul {
    padding-top: 20px;
}

#pricing .item ul li {
    padding-top: 15px;
}

#pricing .item a {
    color: #d6c6b2;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid #ffffff;
    padding: 10px 22px;
    display: inline-block;
    margin-bottom: 30px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#pricing .item .pricing-img {
    position: relative;
    padding: 40px 0px;
}

#pricing .item .pricing-img .img2 {
    position: absolute;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 31px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

#pricing .item .pricing-img .img3 {
    position: absolute;
    top: 34px;
    left: 44%;
}

#pricing .item:hover .pricing-img .img2 {
    opacity: 1;
    filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.5));
    -webkit-filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.5));
}

#pricing .item:hover {
    background-color: #D6C6B2;
    color: #08080C !important;
}

#pricing .item:hover span {
    color: #08080C !important;
}

#pricing .item:hover h3 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#pricing .item:hover a {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-color: transparent;
    color: #08080C !important;
}

/* ==========================================
    pricing end
============================================== */

/* ==========================================
    my-blog start
============================================== */

#my-blog {
    background-color: #333333;
    padding: 80px 0px;
}

#my-blog .item {
    display: flex;
    justify-content: space-between;
    background-color: #282828;
    margin-bottom: 20px;
}

#my-blog .item .img {
    width: 42%;
    position: relative;
}

#my-blog .item .img img {
    display: block;
    width: 100%;
}

#my-blog .item .img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(214, 198, 178, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 85%;
    padding-left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
    box-sizing: border-box;
    opacity: 0;
}

#my-blog .item .text {
    width: 55%;
    padding: 30px 0px;
    color: #999999;
}

#my-blog .item .text h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #d6c6b2;
    padding-top: 16px;
}

#my-blog .item .text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    padding-top: 22px;
    padding-right: 10px;
}

#my-blog .item .text a {
    color: #999999;
    margin-left: 8px;
}

#my-blog .item .text span {
    font-size: 14px;
    margin-right: 30px;
}

#my-blog .item .text a span {
    margin-right: 0px;
}

#my-blog .item .text i {
    margin-right: 4px;
}

#my-blog .item:hover .overlay {
    padding-top: 20px;
    padding-left: 78%;
    opacity: 1;
}

#my-blog .item .text .btn1 {
    font-size: 16px;
    padding-top: 22px;
    color: #d6c6b2
}

#my-blog .item .text .btn2 {
    font-size: 16px;
    padding-top: 22px;
    color: #d6c6b2;
    margin-left: 160px;
    margin-top: 15px;
}

#my-blog .item .text .btn1 i {
    margin-left: 10px;
}

#my-blog .item .text .btn2 i {
    margin-right: 10px;
}

#my-blog .item-2 {
    margin-bottom: 20px;
}

#my-blog .item-2 .img {
    position: relative;
}

#my-blog .item-2 .img img {
    display: block;
    width: 100%;
    height: 100%;
}

#my-blog .item-2 .img .overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(214, 198, 178, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 54%;
    padding-left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
    box-sizing: border-box;
    opacity: 0;
}

#my-blog .item-2:hover .overlay {
    padding-top: 20px;
    padding-left: 78%;
    opacity: 1;
}

#my-blog .item-2 .text-2 {
    padding: 30px 15px;
    color: #666666;
    background-color: #D6C6B2;
}

#my-blog .item-2 .text-2 h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #222222;
    padding-top: 16px;
    text-align: center;
}

#my-blog .item-2 .text-2 p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #222222;
    padding-top: 22px;
    padding-right: 10px;
    text-align: center;
}

#my-blog .item-2 .text-2 a {
    color: #666666;
    margin-left: 8px;
}

#my-blog .item-2 .text-2 span {
    font-size: 14px;
    margin-right: 100px;
    color: #666666;
}

#my-blog .item-2 .text-2 I {
    margin-right: 5px;
}

#my-blog .item-2 .text-2 a span {
    margin-right: 0px;
}

#my-blog .item-2 .text-2 .btn1 {
    font-size: 16px;
    padding-top: 22px;
    color: #222222;
}

#my-blog .item-2 .text-2 .btn2 {
    font-size: 16px;
    padding-top: 22px;
    color: #222222;
    margin-left: 232px;
    margin-top: 15px;
}

#my-blog .item-2 .text-2 .btn1 i {
    margin-left: 10px;
}

#my-blog .item-2 .text-2 .btn2 i {
    margin-right: 10px;
}

/* ==========================================
    my-blog end
============================================== */

/* ==========================================
    footer start
============================================== */

footer {
    background-color: #282828;
    padding: 80px 0px;
    padding-bottom: 0px;
    color: #FFFFFF;
}

footer .footer-title h3 {
    color: #f5f5f5;
    font-family: 'Abril Fatface', cursive;
    font-size: 20px;
    font-weight: 400;
}

footer .item-1 Ul LI {
    margin-top: 20px;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

footer .item-1 Ul li a, span {
    color: #CCCCCC;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

footer .item-1 Ul li span {
    margin-left: 30px;
}

footer .item-1 Ul li:hover a {
    color: #d6c6b2 !important;
}

footer .item-1 Ul li:hover span {
    color: #d6c6b2 !important;
}

footer .item-2 {
    margin-top: 86px;
}

footer .item-2 Ul LI {
    margin-right: 15px;
    margin-top: 20px;
    color: #CCCCCC;
    display: inline-block;
}

footer .item-2 Ul LI a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 20px;
    color: #f1f1f1;
    border: 1px solid #f1f1f1;
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}

footer .item-2 Ul LI a:hover {
    color: #08080C;
    background-color: #D6C6B2;
    border-color: #D6C6B2;
}

footer .contact {
    background-color: #333333;
    padding: 30px 20px;
    position: relative;
}

footer .contact .footer-title h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

footer .contact input {
    width: 47%;
    margin-top: 30px;
    background-color: transparent;
    border: none;
    outline: 1px solid #CED4DA;
    padding: 4px 15px;
    color: #f1f1f1;
}

footer .contact input:nth-child(1) {
    margin-right: 37px;
}

footer .contact textarea {
    width: 100%;
    height: 160px;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    border: none;
    outline: 1px solid #CED4DA;
    padding: 4px 15px;
    color: #f1f1f1;
}

footer .contact button {
    width: 100px;
    height: 100px;
    background-color: #d6c6b2;
    position: absolute;
    bottom: 35px;
    right: 16px;
    text-align: center;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

footer .contact button i {
    font-size: 42px;
    position: absolute;
    top: 65%;
    left: 63%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
footer .copyright{
    text-align: center;
    background-color: #333333;
    padding: 20px 0px;
    margin-top: 10px;
}
footer .copyright h4{
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 200;
    color: #CED4DA;
}
/* ==========================================
    footer end
============================================== */