/* -> cookie bar
================================ */
#cookie-bar {
	background: #353535;
	height: auto;
	color: #fff;
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 600;
	padding: 8px 20px;
}

#cookie-bar p {
	margin: 0;
	padding: 0;
}

#cookie-bar a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
	padding: 4px 10px;
	margin-left: 20px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	border: 1px solid #fff;
}

#cookie-bar a:hover {
	color: #353535;
	background-color: #fff;
}
/*================================ */

/* -> Main
================================ */
body {
	font-family: 'Montserrat', sans-serif;
	line-height: 30px;
	font-size: 15px;
    color: #787878;
    font-weight: 500;
    overflow-x: hidden;
}

a{
	color: #fff;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

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

.transition{
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

.grecaptcha-badge{
    visibility: collapse !important;  
}

#content{
    width: calc(100% - 340px);
    margin-left: 340px;
    overflow: hidden;
}

/* Titles */
h1,
h2,
h3,
h4,
h5{
    margin: 0;
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 2;
}

h1{
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    color: #1d1d1d;    
}

h2{
    font-size: 36px;
}   

h3{
    font-size: 32px;
    font-weight: 700;
    color: #383838;
}

h4{
    font-size: 22px;
    font-weight: 700;
    color: #383838;
    line-height: 1.5;
}

h5{
    font-size: 16px;
    font-weight: 700;
    color: #383838;
}

h1.white,
h2.white,
h3.white,
h4.white,
h5.white{
    color: #fff;
}

.h-text{
    font-size: 28px;
    font-family: "Futura", sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Buttons */
.btn{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 20px 50px;
    display: inline-block;
    margin-top: 20px;
    background-color: #2F2F2F;
    color: #fff!important;
    border-radius: 30px;
}

    .btn:hover {
        background-color: #000;
        color: #ffffff!important;
    }

.btn-small{
    font-size: 15px;
    margin-right: 20px;
    font-weight: 700;
}

    .btn-small:hover i{
        transform: translateX(5px);
    }

    .btn i,
    .btn-small i{
        margin-left: 5px;
    }


/* Forms */
.form-input{
    width: 100%;
    margin-bottom: 14px;
}

    .form-input input[type="text"],
    .form-input input[type="email"],
    .form-input textarea,
    .form-input select{
        width: 100%;
        display: block;
        border: 1px solid #d7d7d7;
        padding: 17px 22px;
        font-size: 14px;
        font-weight: 500;
        color: #767676;
        font-family: "Montserrat", sans-serif;
        transition: all .3s;
        -moz-transition: all .3s;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
    }

    .form-input.error input[type="text"],
    .form-input.error input[type="email"],
    .form-input.error textarea,
    .form-input.error select{
        border-color: #e10000;
    }

    .form-input textarea{
        height: 200px;
        resize: none;
    }

        .form-input input:hover,
        .form-input textarea:hover,
        .form-input input:focus,
        .form-input textarea:focus{
            border-color: #000;
        }

.form-text{
    font-size:15px;
    line-height: 26px;
    margin-top: 0;
    margin-left: 5px;
}

    .form-text input{
        transform: translateY(2px);
        display: inline-block;
    }

    .form-text label{
        cursor: pointer;
        line-height: 26px;
    }

    .form-text.error label{
        color: #e10000;
    }

    .form-text a{
        color: #000!important;
        text-decoration: underline!important;
    }


/* Pages Header */
#header{
    height: 290px;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

    #header:before{
        content: '';
        background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
        opacity: 0.6;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        z-index: 1;
    }

    .breadcrumb{
        font-size:15px;
        line-height: 20px;
        color:#fff;
        background-color:transparent;
        padding:0;
        font-weight: 400;
        margin: 15px 0px 0px;
        display: block;
        position: relative;
        z-index: 3;
    }

        .breadcrumb > li{
            display: inline-block;
            margin: 0px 20px;
            position: relative;
        }

            .breadcrumb > li + li:before{
                content:"";
                position: absolute;
                width: 15px;
                border-bottom: 2px solid #fff;
                transform: translateY(-5px);
                left: -29px;
                bottom: 3px;
            }

            .breadcrumb li a{
                color:#fff;
                text-decoration: none;
            }

                .breadcrumb > .active{
                    color:#fff;
                    text-decoration:none;
                }

                .breadcrumb li a:hover{
                    color:#fff;
                    text-decoration:underline;
                }

/*Pagination*/
#pagination{
    text-align: left;
}

    #pagination ul{
        padding: 0;
    }

        #pagination ul li{
            display: inline-block;
            margin: 0px;
        }

            #pagination ul li a{
                display: inline-block;
                line-height: 45px;
                font-size: 12px;
                width: 45px;
                height: 45px;
                margin-right: 7px;
                border-radius: 50%;
                font-weight: 700;
                color: #929292;
                background-color: #ddd;
                text-align: center;
            }

                #pagination ul li a.active,
                #pagination ul li a:hover{
                    background: #2f2f2f;
                    color: #FFF;
                }


/*Loading*/
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
}

#loading{
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    position: fixed;
    background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    flex-direction: column;
}

    #loading img{
        width: 280px;
        animation: rotation 8s infinite linear;
    }

#loading.hidden{
    opacity: 0;
    visibility: hidden;
}


/* Search */
#search{
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100vw - 357px);
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/home.jpg');
    background-position: bottom center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
}

#search.show{
    opacity: 1;
    visibility: visible;
}

        #search:before {
            content: '';
            background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
            opacity: 0.8;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            position: absolute;
            z-index: 1;
        }

    #search form{
        display: flex;
        max-width: 600px;
        width: 100%;
        z-index: 2;
    }

        .search input{
            border-radius: 30px 0px 0px 30px;
            padding-left: 30px;
            height: 60px;
        }

        .search .btn{
            width: 100px!important;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            margin: 0;
            text-align: center;
            padding: 15px 30px 15px 20px;
        }

#search-btn{
    position: fixed;
    right: 30px;
    top: 20px;
    padding: 0;
    padding-right: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}


/* Datepicker */
.datepicker-container {
    background-color: #fff;
    direction: ltr;
    font-size: 12px;
    left: 0;
    line-height: 30px;
    position: fixed;
    top: 0;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 250px;
    z-index: -1;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    color: #1d1d1d;
    padding: 15px 10px;
  }
  
  .error .datepicker-container{
      border-color: #e10000!important;
  }
  
  .datepicker-label{
      font-size: 14px;
  }
  
      .datepicker-label span{
          margin-left: 5px;
      } 
  
      .datepicker-label-featured{
          color: rgba(123, 22, 217, 0.3)!important;
      }
  
      .datepicker-label-picked{
          color: #fa8072;
      }
  
      .datepicker-label-invalid{
          color: #f5f5f5;
      }
  
  .datepicker-dropdown {
    border: 1px solid #ccc;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    position: absolute;
    z-index: 1;
  }
  
  .datepicker-inline {
    position: static;
  }
  
  .datepicker-top-left,
  .datepicker-top-right {
    border-top-color: #fa8072;
  }
  
  .datepicker-top-left::before,
  .datepicker-top-left::after,
  .datepicker-top-right::before,
  .datepicker-top-right::after {
    border-top: 0;
    left: 10px;
    top: -5px;
  }
  
  .datepicker-top-left::before,
  .datepicker-top-right::before {
    border-bottom-color: #39f;
  }
  
  .datepicker-top-left::after,
  .datepicker-top-right::after {
    border-bottom-color: #fff;
    top: -4px;
  }
  
  .datepicker-bottom-left,
  .datepicker-bottom-right {
    border-bottom-color: #39f;
  }
  
  .datepicker-bottom-left::before,
  .datepicker-bottom-left::after,
  .datepicker-bottom-right::before,
  .datepicker-bottom-right::after {
    border-bottom: 0;
    bottom: -5px;
    left: 10px;
  }
  
  .datepicker-bottom-left::before,
  .datepicker-bottom-right::before {
    border-top-color: #fa8072;
  }
  
  .datepicker-bottom-left::after,
  .datepicker-bottom-right::after {
    border-top-color: #fff;
    bottom: -4px;
  }
  
  .datepicker-top-right::before,
  .datepicker-top-right::after,
  .datepicker-bottom-right::before,
  .datepicker-bottom-right::after {
    left: auto;
    right: 10px;
  }
  
  .datepicker-panel > ul {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
  }
  
  .datepicker-panel > ul[data-view="months"] {
    margin-top: 10px;
    font-size: 13px;
  }
  
  .datepicker-panel > ul[data-view="week"] {
    color: #282828;
    margin-top: 7px;
    font-size: 13px;
    font-weight: 600;
  }
  
  .datepicker-panel > ul[data-view="days"] {
    color: #333;
    font-size: 13px;
    font-weight: 600;
  }
  
  .datepicker-panel > ul::before,
  .datepicker-panel > ul::after {
    content: " ";
    display: table;
  }
  
  .datepicker-panel > ul::after {
    clear: both;
  }
  
  .datepicker-panel > ul > li {
    background-color: #fff;
    cursor: pointer;
    float: left;
    height: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 14.28%;
  }
  
  .datepicker-panel > ul > li:hover,
  .datepicker-panel > ul > li[data-view="month current"]:hover,
  .datepicker-panel > ul > li[data-view="year current"]:hover{
    color: #fff;
    background-color: #fa8072;
  }
  
  .datepicker-panel > ul[data-view="week"] > li:hover {
    color: #282828;
  }
  
  .datepicker-panel > ul > li.muted {
    color: #999;
  }
  
  .datepicker-panel > ul > li.muted:hover {
    color: #fff;
    background-color: #fa8072;
  }
  
  .datepicker-panel > ul > li.highlighted {
      color: #282828;
      font-weight: 600;
  }
  
  .datepicker-panel > ul > li.highlighted:hover {
    color: #FFFFFF;
  }
  
  .datepicker-panel > ul > li.picked,
  .datepicker-panel > ul > li.picked:hover {
    color: #fff;
    background-color: #fa8072;
  }
  
  .datepicker-panel > ul > li.disabled,
  .datepicker-panel > ul > li.disabled:hover {
    background-color: #f5f5f5;
    color: #ccc!important;
    cursor: default;
  }
  
  .datepicker-panel > ul > li.disabled.highlighted,
  .datepicker-panel > ul > li.disabled:hover.highlighted {
    background-color: #fff;
  }
  
  .datepicker-panel > ul > li.featured {
    background-color: rgba(123, 22, 217, 0.3)!important;
    color: #fff!important;
  }
  
  .datepicker-panel > ul > li.featured:hover {
    background-color: rgba(123, 22, 217, 0.3)!important;
    color: #fff!important;
  }
  
  .datepicker-panel > ul > li[data-view="years prev"],
  .datepicker-panel > ul > li[data-view="year prev"],
  .datepicker-panel > ul > li[data-view="month prev"],
  .datepicker-panel > ul > li[data-view="years next"],
  .datepicker-panel > ul > li[data-view="year next"],
  .datepicker-panel > ul > li[data-view="month next"],
  .datepicker-panel > ul > li[data-view="next"] {
    font-size: 18px;
  }
  
  .datepicker-panel > ul > li[data-view="years current"],
  .datepicker-panel > ul > li[data-view="year current"],
  .datepicker-panel > ul > li[data-view="month current"] {
    width: 71.44%;
    letter-spacing: -0.45px;
    color: #000;
  }
  
  .datepicker-panel > ul[data-view="years"] > li,
  .datepicker-panel > ul[data-view="months"] > li {
    height: 60px;
    line-height: 60px;
    width: 25%;
  }
  
  .datepicker-panel > ul[data-view="week"] > li,
  .datepicker-panel > ul[data-view="week"] > li:hover {
    background-color: #fff;
    cursor: default;
  }
  
  .datepicker-hide {
    display: none;
  }
/* ============================= */





/* -> Menu
================================ */
.navbar{
    width: 340px;
    height: 100vh;
    left: 0;
    background-color: #f5f5f5;
    z-index: 999;
    padding: 0px;
    text-align: center;
}

@media (min-height: 600px) and (max-height: 860px){
    .navbar{
        display: block;
        overflow-y: auto;
        padding: 40px 0px;
    }
}

    .navbar-brand{
        margin: 0 0 20px 5px;
        font-family: 'Poppins', sans-serif;
        color: #2b2b2b!important;
        font-weight: 700;
        font-size: 24px;
    }

        .navbar-brand img{
            height: 110px;
            margin-bottom: 8px;
        }

        .navbar-brand span{
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            color: #989898;
            letter-spacing: 2px;
            color: #bbb;
            display: block;
        }

    .navbar-collapse{
        flex-grow: unset;
        justify-content: center;
    }

        .navbar ul > li:last-child{
            margin-right: 0px;
        }

            .navbar ul > li > a{
                color: #878787;
                position: relative;
                padding: 7px 15px;
                display: inline-block;
                font-size: 15px;
                font-weight: 600;
                line-height: 27px;
                font-family: 'Poppins', sans-serif;
            }

                .navbar ul > li:first-child > a:hover,
                .navbar ul > li:first-child > a.active{
                    color: #fa8072!important;
                }

                .navbar ul > li:nth-child(2) > a:hover,
                .navbar ul > li:nth-child(2) > a.active{
                    color: gold!important;
                }

                .navbar ul > li:nth-child(3) > a:hover,
                .navbar ul > li:nth-child(3) > a.active{
                    color: #31f552!important;
                }

                .navbar ul > li.last > a:hover,
                .navbar ul > li.last > a.active{
                    color: #333333!important;
                }

                .navbar ul > li > a > i{
                    padding: 12px 15px;
                }

            .socials{

            }

                .socials a{
                    padding: 0px!important;
                }

                    .socials a:hover{
                        transform: translateY(-5px);
                    }

                    .socials:before{
                        content: '';
                        height: 15px;
                        width: 1px;
                        margin: 20px auto;
                        border-left: 1px solid #b1816a;
                        display: block;
                    }
/* ============================= */


/* -> Home
================================ */
#home{
	position: relative;
    min-height: 100vh;
    padding: 60px 0px;
    height: auto;
    overflow: hidden;
    text-align: center;
}

    #home-bg{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-image: url('../img/home.jpg');
        background-position: bottom center;
        background-size: cover;
        opacity: 0.8;
    }

        #home-bg:before {
            content: '';
            background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
            opacity: 0.8;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            position: absolute;
            z-index: 1;
        }

    .home-img{
        background-position: center;
        background-size: cover;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        /* border: 24px solid #f3f3f3; */
    }

    .home-img-back{
        content: '';
        position: absolute;
        left: 50%;
        top: -24px;
        width: 210px;
        height: 210px;
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: 1;
        /* background: #000; */
        background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
        opacity: 1;
    }

    #home h1{
        position: relative;
        z-index: 2;
    }

        #home h1 span{
            font-size: 20px;
            font-weight: 400;
            text-transform: none;
            color: #989898;
            z-index: 2;
            display: block;
        }

        #home p{
            font-size: 18px;
            line-height: 32px;
        }
/* ============================= */



/* -> Recent Posts
================================ */
#recent-posts{
    padding: 120px 0px;
    background-color: #fff;
}

    .empty{
        height: 400px;
    }

    .posts{
        margin-bottom: 70px;
    }

    .posts:first-child{
        margin-top: 0;
    }

        .posts > a,
        .related-posts > a{
            position: relative;
            display: block;
        }

        .posts-img-box{
            overflow: hidden;
            border-radius: 3px;
        }

            .posts-img-box:after{
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to right, #ddaab4, #bfe8d1, #ded189);
                opacity: 0;
                transition: all .3s;
                -moz-transition: all .3s;
                -webkit-transition: all .3s;
                -o-transition: all .3s;
                border-radius: 3px;
            }

                .posts > a:hover .posts-img-box:after,
                .related-posts > a:hover .posts-img-box:after{
                    opacity: 0.7;
                }

            .posts-img{
                height: 300px;
                background-position: center;
                background-size: cover;
                position: relative;
            }

                .posts > a:hover .posts-img{
                    transform: scale(1.1);
                }

            .post-views{
                line-height: 1;
                width: 78px;
                text-align: center;
                height: 78px;
                padding: 23px 0px 0px !important;
                margin: 0px !important;
                background-image: none;
                border-radius: 50%;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
                position: absolute;
                bottom: -13px;
                left: -15px;
                color: #444444;
                background-color: #ffffff;
            }
    
                .post-views i{
                    font-size: 18px;
                }

        .posts-cat{
            font-size: 12px;
            line-height: 22px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            padding-top: 5px;
        }

        .posts-date{
            color: #959595;
            font-weight: 500;
            font-size: 12px;
            line-height: 22px;
            letter-spacing: 1px;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            text-transform: uppercase;
        }

            .posts-date span:after{
                content: '';
                margin-bottom: 0.3em;
                border-bottom-width: 1px;
                border-bottom-style: solid;
                display: inline-block;
                margin-left: 12px;
                margin-right: 12px;
                width: 6px;
                border-color: #aaa;
            }

        .posts-share{

        }

            .posts-share a{
                margin: 0px 13px;
                display: inline-block;
                color: #202020!important;
                cursor: pointer;
            }

            .posts-share a:first-child{
                margin-left: 0px;
            }

                .posts-share a:hover{
                    transform: translateY(-5px);
                }

    #recent-posts .btn{
        width: 380px;
    }
/* ============================= */


/* -> Services Page
================================ */
#services-page{
    padding: 80px 0px;
    min-height: calc(100vh - 420px);
}
/* ============================= */


/* -> Service Page
================================ */
#service-page{
    padding: 80px 0px;
}

    #service-page h1{
        font-size: 28px;
        line-height: 42px;
        color: #343434;
    }

    #service-img{
        height: 100%;
        background-position: center;
        background-size: cover;
        min-height: 350px;
    }

    .price{
        font-size: 20px;
        font-weight: 700;
        color: #666666;
    }

        .price span{
            color: #fa8072;
        }

    #service-page form{
        margin-top: 20px;
        border-top: 2px solid #fa8072;
        padding-top: 30px;
    }
/* ============================= */



/* -> Posts Page
================================ */
#posts-page{
    padding: 80px 0px;
}

    #posts-page .posts-img{
        height: 400px;
    }

    #posts-page .post-share{
        margin-top: 30px!important;
    }
        

    #sidebar{

    }

        .sidebar-title{
            font-size: 14px;
            color: #383838;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: "Poppins", sans-serif;
            margin-bottom: 20px;
        }

            .sidebar-title span{
                display: block;
                border-top-width: 2px;
                border-top-style: solid;
                /* border-color: transparent; */
                overflow: hidden;
                /* margin-top: 5px; */
                width: 18px;
                margin-left: 15px;
            }

        #sidebar-about{

        }

            .sidebar-about-img{
                height: 120px;
                width: 120px;
                background-position: center;
                background-size: cover;
                border-radius: 50%;
                margin-bottom: 20px;
            }

        #sidebar-newsletter{
            color: #666666;
            padding: 35px 50px 45px;
            background-color: #f4f4f4;
        }

            #sidebar-newsletter input{
                padding: 10px 22px;
            }

            #sidebar-newsletter .btn{
                padding: 16px 50px;
            }

        #sidebar-popular{

        }

            .popular-post{
                margin-bottom: 35px;
            }

                .popular-post-img{
                    height: 70px;
                    width: 70px;
                    border-radius: 50%;
                    flex-shrink: 0;
                    margin-right: 20px;
                    background-position: center;
                    background-size: cover;
                }

                .popular-post-info{

                }

                    .popular-post-info b{
                        color: #4c4c4c;
                        font-size: 14px;
                        line-height: 22px;
                        display: block;
                    }

                    .popular-post-info > span{
                        color: #a0a0a0;
                        font-size: 11px;
                        line-height: 15px;
                        text-transform: uppercase;
                        letter-spacing: .5px;
                        font-family: "Poppins", sans-serif;
                    }
/* ============================= */


/* -> Post Page
================================ */
#post-page{
    padding: 80px 0px;
}

    #post-page h1{
        font-size: 28px;
        line-height: 42px;
        color: #343434;
    }

    #post-img{
        height: 380px;
        background-position: center;
        background-size: cover;
        max-width: 940px;
        margin: 30px auto;
        position: relative;
        border-radius: 3px;
    }

    .post-share{
        position: relative;
        margin: 60px 0px 40px;
    }

        .post-share:after {
            white-space: nowrap;
            overflow: hidden;
            display: block;
            margin-right: 106px;
            margin-left: 14px;
            content: "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -";
        }

        .post-share a{
            margin: 0px 13px;
            color: #202020!important;
            cursor: pointer;
        }

        .post-share a:first-child{
            margin-left: 0px;
        }

            .post-share a:hover{
                transform: translateY(-5px);
            }

        .post-share b{
            display: inline-block;
            position: absolute;
            right: 0px;
            color: #202020;
        }

    .related-posts{
        
    }  

        .related-posts .posts-img{
            height: 215px;
        }

        .related-posts h4{
            font-size: 17px;
            line-height: 27px;
        }

    #comments{
    }

        #comments hr{
            margin: 60px 0px;
        }

        .comment{
            text-align: justify;
            margin-top: 50px;
        }

        .comment:nth-child(2){
            margin-top: 0;
        }

            .comment span{
                font-size: 14px;
                color: #959595;
            }

            .comment-box{
                background-color: #f7f7f7;
                border: 1px solid #d7d7d7;
                padding: 10px 15px;
                border-radius: 3px;
            }

                .comment-box p{
                    margin: 0;
                }
/* ============================= */


/* -> About Page
================================ */
#about-page{
    padding: 80px 0px;
}

    #about-page h1{
        font-size: 28px;
        color: #343434;
    }

    #about-img{
        background-position: center;
        background-size: cover;
        height: 500px;
        max-width: 500px;
        margin: 30px auto;
        position: relative;
        border-radius: 50%;
    }
/* ============================= */


/* -> Contacts Page
================================ */
#contacts-page{
    padding: 80px 0px;
}

    #contacts-page h6 a{
        color: #787878;
    }
/* ============================= */


/* -> Footer
================================ */
footer{
    position: relative;
    color: #b3b7b5;
    padding: 50px 0px;
    background-color: #2f2f2f;
    overflow: hidden;
    /* width: calc(100% - 340px);
    margin-left: 340px; */
}

    footer a{
        color: #b3b7b5;
    }
/* ============================= */
