@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700|Work+Sans:300,400,500,600,700,800,900');

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #f7f7f7;
    color: #a5a5a5;
}

div {
    display: block;
    position: relative;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0px;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p:last-of-type {
    margin-bottom: 0;
}

p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 1px #ffa07f;
    transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FFFFFF;
    background: #ffa07f;
}

p a:hover::after {
    opacity: 0.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.form-control {
    color: #db5246;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    transition: all 200ms ease;
}

.trans_300 {
    transition: all 300ms ease;
}

.trans_400 {
    transition: all 400ms ease;
}

.trans_500 {
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.nopadding {
    padding: 0px !important;
}

/*********************************
3. Header
*********************************/

.header {
    background-color: #787878;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 15px;
    transition: all 200ms ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

/*********************************
3.1 Logo
*********************************/

.logo a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
}

.logo a img {
    width: 300px;
    max-width: 100%;
    height: auto;
}

/*********************************
3.2 Main Navigation
*********************************/

.main_nav {
    margin-left: 46px;
}

.main_nav ul li {
    display: inline-block;
}

.main_nav ul li:not(:last-child) {
    margin-right: 29px;
}

.main_nav ul li a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: all 200ms ease;
}

.main_nav ul li a:hover,
.main_nav ul li.active a {
    color: rgba(255, 255, 255, 1);
}

/*********************************
3.3 Search
*********************************/

.search_container form {
    display: inline-block;
    position: relative;
}

.header_search_input {
    display: inline-block;
    width: 262px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    outline: none;
    border-radius: 5px;
    padding-left: 49px;
    color: #FFFFFF;
}

.header_search_input::-webkit-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_search_input:-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_search_input::-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_search_input:-ms-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_search_input::input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_search_icon {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}

/*********************************
3.4 Hamburger
*********************************/

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
}

.hamburger:hover i {
    color: rgba(255, 255, 255, 0.5);
}

/*********************************
4. Menu
*********************************/

.menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 101;
    padding-right: 60px;
    padding-top: 87px;
    padding-left: 50px;
}

.menu .logo a {
    color: #000000;
}

.menu .logo a img {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.menu.active {
    right: 0;
}

.menu_close_container {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    transform: rotate(45deg);
    cursor: pointer;
}

.menu_close {
    width: 100%;
    height: 100%;
    transform-style: preserve-3D;
}

.menu_close div {
    width: 100%;
    height: 2px;
    background: #232323;
    top: 8px;
    transition: all 200ms ease;
}

.menu_close div:last-of-type {
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}

.menu_close:hover div {
    background: #937c6f;
}

.menu .logo {
    margin-bottom: 60px;
}

.menu_nav ul li {
    margin-bottom: 11px;
}

.menu_nav ul li a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 200ms ease;
}

.menu_nav ul li a:hover {
    color: #937c6f;
}

.menu .search {
    width: 100%;
    margin-bottom: 67px;
}

.search {
    display: inline-block;
    width: 400px;
    transform: translateY(2px);
}

.menu .header_search_input {
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.5);
}

.menu .header_search_input::-webkit-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

.menu .header_search_input:-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

.menu .header_search_input::-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

.menu .header_search_input:-ms-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

.menu .header_search_input::input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

/*********************************
6. Main Content
*********************************/

.page_content {
    background: #f7f7f7;
}

.page_content.custom-padding {
    margin-top: 150px;
}

@media screen and (max-width: 992px) {
    .page_content.custom-padding {
        margin-top: 120px;
    }
}

/*********************************
7. Section Panel
*********************************/

.section_title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    padding-bottom: 10px;
    white-space: nowrap;
    transform: translateY(3px);
}

.section_title::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #000000;
    content: '';
}

.section_content {
    padding-top: 33px;
}

/*-------------------------- top content --------------------- */

.top-content {
    padding: 20px 0;
}

.top-content h1 {
    font-size: 40px;
    color: #000000;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
    .top-content h1 {
        font-size: 36px;
    }
}

.top-content h2 {
    font-size: 36px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 768px) {
    .top-content h2 {
        font-size: 30px;
        margin: 0 0 10px 0;
    }
}

.top-content p {
    line-height: 1.4;
}

/*------------------------- top content end ----------------- */

.card {
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
}

.card-body {
    padding-top: 16px;
    padding-left: 25px;
    padding-bottom: 15px;
}

.card-img-top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

@media screen and (min-width: 768px) {
    .card-title.card-title-small {
        min-height: 45px;
    }
}

.card-title a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 200ms ease;
}

.card-title a:hover {
    color: #999;
}

.short-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.post_meta {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-weight: 500;
    margin-top: 22px;
}

.post_meta a,
.post_meta span {
    display: inline-block;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.grid {
    width: calc(100% + 30px);
}

.grid-item {
    float: left;
}

.card_small_no_image,
.card_small_with_image {
    width: 263px;
}

.card_small_with_image .card-body {
    padding-top: 17px;
}

.card_small_with_image .post_meta {
    margin-top: 32px;
}

.card_default .card-body {
    padding-top: 17px;
}

.card_default .post_meta {
    margin-top: 17px;
}

.card_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 6px;
    overflow: hidden;
}

/*********************************
9. Pagination
*********************************/

.pagination-page {
    margin: 80px 0;
}

.pagination-page-item {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    text-align: center;
    min-width: 40px;
    height: 40px;
    border-radius: 5px;
    border: solid 1px #d7d7d7;
    background-color: #fff;
    cursor: pointer;
    padding: 7px 10px;
    transition: all .3s ease;
}

.pagination-page-item.active,
.pagination-page-item:hover {
    color: #fff;
    border: solid 1px #1f1f1f;
    background-color: #1f1f1f;
}

/*********************************
10. Sidebar
*********************************/

.sidebar {
    width: 100%;
    height: 100%;
    padding-top: 83px;
    padding-left: 30px;
    padding-bottom: 80px;
}

.sidebar_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 375px;
    height: 100%;
    background: #ededed;
}

.sidebar_title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.sidebar_section {
    margin-bottom: 40px;
}

.categories {
    padding: 20px 0 0 0;
}

.categories li {
    padding: 5px 0;
}

.categories li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    transition: all 200ms ease;
}

.categories li a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.sidebar_section_content {
    padding-top: 18px;
}

.side_post a {
    display: block;
}

.side_post:not(:last-child) {
    margin-bottom: 15px;
}

.side_post_image div {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
}

.side_post_image div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side_post_content {
    padding-left: 20px;
    margin-top: -5px;
}

.side_post_title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 1.285;
    transition: all 200ms ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}

.side_post_title:hover {
    color: rgba(0, 0, 0, 0.5);
}

.side_post_content .post_meta {
    margin-top: 7px;
}

/*********************************
6. Post Content
*********************************/

.page_content {
    background: #f7f7f7;
}

.category {
    margin-top: 80px;
}

/*********************************
  Post Panel
*********************************/

.post_panel {
    height: 108px;
    z-index: 10;
}

.author_image div {
    width: 58px;
    height: 58px;
    border: solid 5px #FFFFFF;
    border-radius: 50%;
    overflow: hidden;
}

.author_image div img {
    max-width: 100%;
}

.post_panel .post_meta {
    font-family: 'Ubuntu', sans-serif;
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    margin-top: 0;
}

.post_panel .post_meta a,
.post_panel .post_meta span {
    display: inline-block;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 500;
}

.post_panel .post_meta span {
    margin-left: 10px;
    padding-left: 5px;
}

.post_panel .post_meta span::before {
    display: block;
    position: absolute;
    top: 1px;
    left: -4px;
    content: '•';
}

/*********************************
  Post Body
*********************************/

.post_body {
    padding-left: 69px;
    padding-top: 59px;
    padding-right: 100px;
    padding-bottom: 45px;
    background: #FFFFFF;
    border-radius: 6px;
}

.post_p {
    font-size: 16px;
    line-height: 1.875;
    color: rgba(0, 0, 0, 0.8);
}

.post_body figure {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.post_body figure img {
    max-width: 100%;
}

.post_body figcaption {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 8px;
}

.post_body-title {
    color: #000000;
}

/*------------------------ blog-post-styles ------------------------*/

.post_title {
	font-size: 42px;
  	color: #313131;
	margin-top: 15px;
}

.single-post-text img {
	margin: 15px 0 10px 0;
}

.single-post-text h2 {
    font-size: 28px;
  	color: #313131;
	margin-top: 15px;
    margin-bottom: 10px;
}

.single-post-text h3 {
    font-size: 24px;
    color: #313131;
	margin-top: 15px;
    margin-bottom: 10px;
}

.single-post-text p {
	margin: 0 0 10px 0;
}

.single-post-text a{
	border-bottom: solid 1px #ffa07f;
}

.single-post-text ol {
	padding-left: 15px;
}

.single-post-text ol li {
	padding: 5px 0;
}

.single-post-text ul {
	list-style: none;
  	padding-left: 15px;
}

.single-post-text ul li {
	padding: 5px 0;
}

.single-post-text ul li,
.single-post-text ul li a {
	color: #000;
}

.single-post-text blockquote {
  	font-style: italic;
	padding: 10px 20px;
    margin: 10px 0 20px 0;
    font-size: 17.5px;
    border-left: 5px solid #ddd;
}

.single-post-text table {
	width: 100%;
  	border: 1px solid #ddd;
  	background-color: #fff;
  	border-collapse: collapse;
  	margin: 15px 0;
}

.single-post-text table,
.single-post-text td,
.single-post-text th {
	border: 1px solid #ddd;
    border-collapse: collapse;
  	padding: 10px 15px;
}

.single-post-text td,
.single-post-text th {
	border: 1px solid #ddd;
    border-collapse: collapse;
  	padding: 10px 15px;
}

/*---------------------- blog-post-styles end ----------------------*/

.post_tags {
    margin-top: 40px;
}

.post_tag {
    display: inline-block;
    width: auto;
    height: 24px;
    border: solid 1px #d7d7d7;
    border-radius: 3px;
    background: transparent;
    margin-bottom: 5px;
    transition: all 200ms ease;
}

.post_tag:not(:last-child) {
    margin-right: 6px;
}

.post_tag a {
    display: block;
    line-height: 22px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.post_tag:hover {
    background: #ededed;
    border-color: #ededed;
}

.bottom_panel {
    margin-top: 0;
}

/*********************************
6.3 Similar Posts
*********************************/

.similar_posts {
    margin-top: 15px;
}

/*********************************
  Comments
*********************************/

.comments {
    margin-top: 40px;
}

.comments_title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
}

.comments_container {
    width: 100%;
    padding-bottom: 40px;
    margin-top: 44px;
}

.comment_list>li {
    margin-bottom: 15px;
}

.comment {
    width: 100%;
    background: #FFFFFF;
    border-radius: 6px;
}

.comment_body {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    padding-right: 30px;
}

.comment_author_image {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
}

.comment_author_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment_body .post_meta {
    margin-top: 0;
    margin-left: 18px;
}

.reply_button {
    width: 76px;
    height: 28px;
    background: rgba(45, 223, 128, 0.1);
    color: rgba(45, 223, 128, 1);
    border: none;
    outline: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 200ms ease;
}

.reply_button:hover {
    background: rgba(45, 223, 128, 1);
    color: #FFFFFF;
}

.comment_content {
    margin-top: 22px;
}

.comment ul li {
    border-top: solid 1px #e5e5e5;
}

/*********************************
  Post Comment
*********************************/

.post_comment {
    margin: 40px 0 50px 0;
}

.post_comment_title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.post_comment_form_container {
    width: 100%;
    background: #FFFFFF;
    border-radius: 6px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
    padding-bottom: 40px;
    margin-top: 44px;
}

.comment_input {
    display: inline-block;
    width: calc(50% - 15px);
    height: 42px;
    border: none;
    outline: none;
    border-bottom: solid 1px #cccccc;
    background: transparent;
    transition: all 200ms ease;
}

.comment_input:first-child {
    margin-right: 25px;
}

.comment_input:hover,
.comment_text:hover {
    border-color: rgba(0, 0, 0, 1);
}

.comment_text {
    width: 100%;
    height: 90px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: solid 1px #cccccc;
    padding-top: 11px;
    margin-top: 23px;
    transition: all 200ms ease;
}

.comment_input::-webkit-input-placeholder,
.comment_text::-webkit-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.3);
    transition: all 200ms ease;
}

.comment_input:-moz-placeholder,
.comment_text:-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.3);
    transition: all 200ms ease;
}

.comment_input::-moz-placeholder,
.comment_text::-moz-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.3);
    transition: all 200ms ease;
}

.comment_input:-ms-input-placeholder,
.comment_text:-ms-input-placeholder {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.3);
    transition: all 200ms ease;
}

.comment_input::input-placeholder,
.comment_text::input-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_input:hover::-webkit-input-placeholder,
.comment_text:hover::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_input:hover:-moz-placeholder,
.comment_text:hover:-moz-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_input:hover::-moz-placeholder,
.comment_text:hover::-moz-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_input:hover:-ms-input-placeholder,
.comment_text:hover:-ms-input-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_input:hover::input-placeholder,
.comment_text:hover::input-placeholder {
    color: rgba(0, 0, 0, 1);
}

.comment_button {
    width: 143px;
    min-height: 36px;
    background: rgba(45, 223, 128, 0.1);
    color: rgba(45, 223, 128, 1);
    line-height: 1.2;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 200ms ease;
    margin-top: 24px;
    padding: 5px 10px;
}

.comment_button:hover {
    background: rgba(45, 223, 128, 1);
    color: #FFFFFF;
}

/*********************************
11. Footer
*********************************/

.footer {
    width: 100%;
    background-color: #1f1f1f;
    padding: 50px 0 15px 0;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    line-height: 0.75;
}

.footer_logo a img {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.footer-links {
    margin: 0 0 30px 0;
}

.footer-links h3 {
    font-size: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    color: #fff;
}

.copyright {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #898989;
    text-align: center;
    padding: 20px 0;
}