/*
Theme Name: Coralina Lite
Theme URI: https://web-cude.com/coralina/
Author: spoot1986
Author URI: https://web-cude.com/
Description: Coralina is a simple WordPress theme for the blogging and news site. Lightweight and elegant design will make your web project irresistible.
Version: 1.0.6
Text Domain: coralina-lite
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, news, two-columns, right-sidebar, custom-background, custom-colors, custom-logo, custom-menu, translation-ready
*/

/*01 Main*/

body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

*::selection {
 	background: #F33535;
 	color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track-piece {
    background: rgb(212, 212, 212);
}

::-webkit-scrollbar-thumb:vertical {
  height: 8px;
  background: #F33535;
}


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif;
}

a{
	text-decoration: none;
	transition: all 0.3s linear;
	color: #F33535;
}

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

img{
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	-webkit-transition: all 1s ease-out;
}

iframe{
    max-width:100%;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 10px;
    padding: 10px;
    font-size: 16px!important;
    margin-bottom: 0px!important;
}

blockquote p{
    margin-bottom: 0px!important;
}

ol, ul, dl {
    list-style: none;
}

input, textarea, button{
    outline: none;
}

input:focus::-webkit-input-placeholder { 
    color:transparent; 
}

input:focus:-moz-placeholder { 
    color:transparent; 
}

input:focus::-moz-placeholder {
    color:transparent;
}

input:focus:-ms-input-placeholder { 
    color:transparent;
}

/*Table*/
.table thead th {
    border-bottom: 0px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #cccccc;
    color: #ffffff;
}

/*Buttons*/

/*Red button*/
.button-red{
	padding: 10px 20px 10px 20px;
    background: #F33535;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.button-red:hover{
    background: #ffffff;
    color: #F33535;  
}

/*Search button*/
.btn{
	color: #fff!important;
    margin-bottom: 10px;
    border-radius: 0px;
}

.btn:focus, .btn.focus {
  outline: none!important;
  box-shadow: none!important;
}

/*To top button*/
.to-top {
    padding: 4px 0px 0px 8px;
    position: fixed;
    bottom: 10px;
    cursor: pointer;
    display: none;
    color: #ffffff;
    font-size: 17px;
    left: 8px;
    z-index: 999;
    background: #b9b9b9;
    height: 30px;
    width: 30px;
    opacity: 0.7;
} 

/*To bottom*/
.to-bottom{
    position: absolute;
    bottom: 10px;
}

.to-bottom .fas{
   color: #ffffff;
   font-size: 24px;
   transition: all 0.3s linear;
}

.to-bottom .fas:hover{
    padding-bottom: 10px;
}

/*Elements*/
.str-gray{
    color: #888888;
}

/*Section margin, padding*/
.section-mg{
    margin-bottom: 40px;
    margin-top: 40px;
}

.section-mg-lg{
    margin-bottom: 60px;
    margin-top: 60px;
}

.section-pd{
    padding-bottom: 40px;
    padding-top: 40px;
}

.section-pd-lg{
    padding-bottom: 60px;
    padding-top: 60px;
}

/*02 Header*/

.header{
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
}

.header-sticky{
    top:0px;
	position: fixed;
	display: none;
	z-index: 999;
}

.header-main{
	border-bottom: 1px solid #e6e6e6;
}

.header_wrapper{
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Site branding*/
.site-branding p{
	margin: 0px;
    color: #5a5a5a;
}

.site-branding a{
	text-decoration: none;
	color: #F33535;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
}

.site-description{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    margin-left: 2px;
}

.site-logo{
    width: 140px;
}

.site-logo:hover{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE 6-9 */
}

/*Navigation menu*/
.nav{
	justify-content: center;
}

.top-navigation{
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.top-navigation a{
    color: #3e3e3e;
    padding: 6px;
}	

.top-navigation a:hover{
    color: #F33535;
}   

.top-navigation .menu-link-active{
    color: #F33535;
}

.sub-menu{
    display: none;
}

/*Mobile navigation menu*/
.mobile-menu-icon{
    display: none;
    font-size: 20px;
}

.mobile-menu{
    position: fixed;
    width: 50%;
    height: 100%;
    background-color: #f1f1f1;
    z-index: 999;
    top:0px;
    left: 50%;
    display: none;
    padding: 15px;
}

.mobile-menu .close{
    height: 55px;
    width: 100%;
    color: #3e3e3e;
    font-size: 18px;
}

.mobile-menu-wrapper{
    background: url(../coralina-lite/imgs/sections_bg.jpg) no-repeat 80% 30% / cover;
    height: 95%;
    width: 100%;
}

.nav-mobile{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    text-align: right;
    font-size: 23px;
    font-family: 'Montserrat', sans-serif;
}

.nav-mobile li{
    list-style-type: none;
}

.nav-mobile a{
    color: #3e3e3e;
}

/*Contact phone*/
.contact-phone{
    color: #3e3e3e;
    font-size: 15px;
    font-weight: 600;
}

.contact-phone i{
    color: #F33535; 
}

/*03 Page 404*/
.page-404-content{
    display: flex;
}

.page-404{
    text-align: center;
    width: 100%;
}

.page-404 .wrapper-404{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.page-404 .h1{
    color: #f33535;
    font-size: 80px;
}    

.page-404 .desc{
    color: #777777;
    font-size: 45px;
}   

.border-404{
	border: 1px solid #e6e6e6;
    padding: 50px 90px 50px 90px;
}

/*04 Footer*/
.footer{
	background: url(../coralina-lite/imgs/sections_bg.jpg) no-repeat 80% 30% / cover;
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer p{
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #616161;
    font-size: 13px;
    font-weight: 400;
}   

.bottom-navigation{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
}

.bottom-navigation a{
    color: #8e8e8e;
    padding: 8px;
}   

.bottom-navigation a:hover{
    color: #F33535;
}   

.bottom-navigation .menu-link-active{
    color: #F33535;
}

.footer .social {
    align-items: center;
    justify-content: center;
    display: flex;
}

.footer .social a{
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    border: 1px solid #b1b1b1;
    background-color: #f3f3f3;
    font-size: 15px;
    margin: 5px;
    color: #3e3e3e;
} 

.footer .social a:hover{
    color: #ffffff;
    background: #3e3e3e;
    border: 1px solid #3e3e3e;
}

/*05 WordPress*/

/*Core*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.gallery-caption {
    display: block;
}

.bypostauthor {
    display: block;
}

/*Posts list*/
.site-content{
    background: #ffffff; 
}

.posts {
    line-height: 30px;
}

.category-description{
    text-align: center;
    margin-bottom: 25px;
    color: #545454;
    line-height: 35px;
}

.posts .h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    color: #3e3e3e;
    margin-bottom: 15px;
    padding: 0px;
    line-height: 32px;
}

.posts .subtitle{
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #8e8e8e;
    margin-bottom: 15px;
    font-size: 16px;
    margin-bottom: 30px;
}

.posts .h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    color: #3e3e3e;
    font-weight: 600;
}

.posts .h3:hover{
    color: #F33535; 
}

.posted-on{
    font-size: 14px;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    text-align: left;
}

.posted-on a{
    color: #afafaf; 
    font-size: 13px;
    margin-left: 4px;
}

.posted-on a:hover{
    color: #F33535; 
}

.one-post .line-red{
    margin: 5px 0px 0px 0px;
    padding: 0px;
}

.one-post{
    border: 1px solid #f3f3f3;
    transition: all 0.3s linear;
    color: #616161;
    line-height: 25px;
    font-size: 16px;
    text-align: left;
    margin-bottom: 25px;
    padding-bottom: 10px;
    box-shadow: 0 10px 6px -6px #efefef;
}

.posts .entry-thumbnail{
    overflow: hidden;
    margin-bottom: 0px;
}

.posts .entry-thumbnail img{
    object-fit: cover;
    height: 350px;
    width: 100%;
}

.posts .entry-thumbnail img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.posts-list .entry-thumbnail img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.entry-title{
    padding: 10px 15px 0px 15px;
    text-align: left;
}    

.entry-summary{
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100px;
    font-size: 16px;
    color: #545454;
    padding: 10px 15px 10px 15px;
    line-height: 28px;
    text-align: left;
}

.entry-meta{
    padding: 5px 15px 5px 15px;
}

/*Breadcrumbs*/
.breadcrumbs-wrapper{
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumbs-wrapper p{
    margin-bottom: 5px;
}

.breadcrumbs h1{
    color: #ffffff;
    font-size: 28px;
}

.breadcrumbs a{
    color: #f1f1f1;
}

.breadcrumbs .fas{
    color: #f1f1f1;
    font-size: 12px;
}

.breadcrumbs .no-bg{
    background: none;
}

.breadcrumbs .no-bg h1{
    color: #656565;
    margin: 0px;
}    

.breadcrumbs .no-bg a{
    color: #656565;
}

.breadcrumbs .no-bg .fas{
    color: #bdbdbd;
}

/*One post*/
.post{
    margin-bottom: 50px;
}

.post .entry-meta{
    padding: 0px;
    margin-left: 15px;
}

.post .entry-thumbnail{
    text-align: center;
}

.post .entry-thumbnail img{
    width: 100%;
}    

.post-title{
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    color: #3e3e3e;
    font-family: 'Montserrat', sans-serif;
}

.entry-content{
    color: #545454;
    line-height: 35px;
    margin-left: 15px;
    padding: 0px;
}

.entry-content img{
    max-width: 100%;
    height: auto;
}

.entry-content li:before {
    content: "•";
    color: white;
    background: #cccccc;
    display: inline-block;
    text-align: center;
    margin: 5px 10px;
    line-height: 25px;
    width: 25px;
    height: 25px;
}

.entry-content ul{
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}

/*Post meta*/
.cat_cloud{
    display: inline-block;
    color: #000;
    line-height: 1;
    font-size: 10px!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0 5px 5px 0;
}

.cat_cloud a{
    margin-right: 5px;
    background-color: #efefef;
    padding: 6px 10px;
}

.tags_cloud{
    display: inline-block;
    color: #000;
    line-height: 1;
    font-size: 10px!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0 5px 5px 0;
}

.tags_cloud a{
    margin-right: 5px;
    background-color: #efefef;
    padding: 6px 10px;
}

/*Post share social*/
.post-share-social{
    width: 100%;
    text-align: right;
    padding-right: 20px;
}

.post-share-social .contact-icon {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    font-size: 12px;
    color: #ffffff;
    margin-right: 3px;
}

.post-share-social .facebook {
    background-color: #3B5998;
    border: 2px solid #3B5998;
}

.post-share-social .google-plus {
    background-color: #dd4b39;
    border: 2px solid #dd4b39;
}

.post-share-social .viber {
    background-color: #8f5db7;
    border: 2px solid #8f5db7;
}

.post-share-social .whatsapp {
    background-color: #4aae20;
    border: 2px solid #4aae20;
}

/*Pagination*/
.pagination {
    width: 100%;
    text-align: center;
}

.pagination span {
    background-color: #f1f1f1;
    padding: 5px 18px;
    color: #656565;
}

.pagination a {
    background-color: #ffffff;
    padding: 5px 18px;
    color: #656565;
}

/*Page*/
.page-title{
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    color: #3e3e3e;
    font-family: 'Montserrat', sans-serif;
}

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

/*Widgets*/
.widget{
    margin-bottom: 25px;
}

.widget-area{
    line-height: 28px;
    color: #b1b1b1;
    margin-left: 35px;
    font-weight: 400;
}

.secondary .widget-area{
    margin-top: 5px;
    font-family: 'Open Sans', sans-serif;
    line-height: 28px;
    font-size: 16px;
}

.widget-area a{
    color: #828282;
}   

.widget-area a:hover{
    color: #F33535;
}   

.widget-area ul{
    margin:0px;
    padding: 0px;
}

.widget-area li{
    list-style-type: none;
    color: #828282; 
}

.widget-area li span{
    color: #f33535; 
}

.widget-title{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #3e3e3e;
    font-family: 'Montserrat', sans-serif;
}

.widget table{
    width:100%;
}

#wp-calendar tfoot{
    display: none;
}

#wp-calendar caption{
    display: none;
}

.search-form label{
    width: 100%;
}

input[type=search]{
    height: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    background-color: transparent;
    line-height: 1.4;
    max-width: 100%;
    font-size: 14px;
    -webkit-transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    width: 100%;
    outline: none;
}

.search-submit{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: url(../coralina-lite/imgs/go.png) 50% no-repeat;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
    width: 30px;
    height: 39px;
    position: absolute;
    top: 6px;
    right: 17px;
}

.widget-fas{
    color: #e6e6e6;
}

.widget li{
    border-bottom: 1px solid #e6e6e6;
    width: 80%;
    margin: 10px 0px 10px 0px;
    padding: 0px 0 5px 0px;
}

.post-date{
    display: none;
}

.tagcloud a{
    font-size: 14px!important;
    margin: 5px 5px 5px 0px;
    background-color: #efefef;
    padding: 2px 10px;
    display: inline-block;
}

/*Comments*/
.comment-form{
    border: 1px solid #eaeaea;
    padding: 20px;
    background: #f1f1f1;
}

.comment-form p label{
    display: block!important;
    font-weight: 100;
    font-size: 14px;
    margin-top: 15px;
}    

.comments-area{
    margin-top: 25px;
    margin-left: 15px;
}    

.comment-reply-title{
    color: #6b6b6b;
    font-size: 18px;
    margin-left: 10px;
}

.comment-body{
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 15px;
}    

.comment-author img{
    display: none;
}

.required{
    color:#da0f00;
}

.comment-respond{
    margin-top: 30px;
    margin-bottom: 30px;
    color: #6b6b6b;
}

.form-submit{
    margin-top: 15px;
}

.form-submit .submit{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: #F33535;
    color: #ffffff;
    border: 1px solid #F33535;
    cursor: pointer;
    transition: all 0.3s linear;
}

.form-submit .submit:hover{
    color: #F33535;
    background-color: #ffffff;
}

.comment-body footer{
    background-image: none;
    border-top: 2px solid #dcdcdc;
    padding: 15px;
}

.comment-content{
    padding: 15px;
    line-height: 25px;
    font-size: 16px;
}

.comment-content p{
    color: #737373;
    font-style: italic;
    line-height: 26px;
}

.comment-author{
    margin-bottom: 10px;
    color: #6b6b6b;
    font-family: 'Open Sans', sans-serif;
}

.reply{
    padding: 10px;  
}

.says{
    display: none;
}

.comment-metadata{
    font-size: 14px;
}

.comment-metadata a{
    color: #afafaf;
}

.reply a {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: #F33535;
    color: #ffffff;
    border: 1px solid #F33535;
    cursor: pointer;
    transition: all 0.3s linear;
}

.comments-area li > ul,
.comments-area li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

.form-control, input[type=email], input[type=text], input[type=password], textarea {
    height: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    line-height: 1.4;
    max-width: 100%;
    font-size: 14px;
    -webkit-transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: border-color 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    width: 100%;
}

/*Not found result*/
.not-found{
    width: 100%;
    text-align: center;
}

.not-found .desc{
    color: #777777;
    font-size: 28px;
    line-height: 50px;
}