/*
Theme Name: GWPT
Theme URI: https://goodwpthemes.com
Author: GoodWPThemes
Description: A theme for the GoodWPThemes.com homepage
Version: 1.0
*/
/** GENERAL
*****************************/
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: #fff;
  color: #333333;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
}

a {
  color: #1E5F8D;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #00a6eb;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 24px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: 400;
  margin: 0 0 15px 0;
  padding: 0;
}

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

#main {
  margin-top: 60px;
}

@media (min-width: 992px) {
  #main {
    margin-top: 102px;
  }
}

.scrolltop {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.1);
  color: #666;
  padding: 12px 10px;
  font-size: 16px;
  border-radius: 3px;
  right: 20px;
  bottom: 20px;
}

@media (max-width: 768px) {
  .scrolltop {
    bottom: 15px;
  }
}

.scrolltop:focus {
  background: rgba(0, 0, 0, 0.1);
  color: #666;
}

.scrolltop:hover {
  background: #1E5F8D;
  color: #fff;
}

.container {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .container {
    padding: 0;
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

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

.clearfix::after, #header::after, #main::after, #footer::after, .container::after, .container-fluid::after, .row::after {
  clear: both;
  content: "";
  display: block;
}

/** HEADER
*****************************/
#header {
  background: #fff;
  z-index: 1030;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.header-fixed {
  height: 102px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 30px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .header-fixed {
    height: 60px;
    padding: 15px 0;
  }
}

.logo {
  float: left;
  transition: 0.4s;
}

.logo img {
  height: 42px;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }
}

.header-collapse {
  height: 60px;
  padding: 15px 0;
}

.header-collapse .logo img {
  height: 30px;
}

/** Navs
*****************************/
/* Top Nav */
#topnav {
  background: #fff;
  text-align: right;
  float: right;
  position: relative;
}

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

#topnav li {
  float: left;
  padding: 10px 0;
  margin: 0;
  position: relative;
}

#topnav a {
  font-size: 14px;
  padding: 0 0 0 30px;
  margin: 0;
  color: #333333;
  line-height: 1;
  display: block;
  font-weight: 400;
}

#topnav a:hover, #topnav a.current {
  color: #00a6eb;
}

#topnav li:first-child a {
  padding-left: 0;
}

#topnav .icon-menu {
  display: none;
  float: right;
  font-size: 24px;
  cursor: pointer;
  margin-right: -6px;
}

@media (max-width: 768px) {
  #topnav .icon-menu {
    display: inline-block;
  }
  #topnav ul {
    display: none;
    position: absolute;
    top: 32px;
    right: 0px;
    background: #fff;
    text-align: left;
    width: 180px;
    padding: 10px 20px;
    border: 2px solid #eee;
  }
  #topnav li {
    float: none;
    padding: 10px 0;
    margin: 0;
  }
  #topnav a {
    padding: 0;
  }
  #topnav:hover ul {
    display: block;
  }
}

/* =WP-PAGENAVI
-------------------------------------------------------------- */
.pagination {
  padding: 0 0 20px 0;
  margin: 0;
}

.wp-pagenavi {
  padding: 0;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  padding: 5px 8px;
  margin: 2px;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  border: none;
  color: #1E5F8D;
}

.wp-pagenavi span.current {
  font-weight: normal;
  background: #1E5F8D;
  border-radius: 2px;
  color: #fff;
  padding: 4px 12px;
}

.wp-pagenavi a:hover {
  transition: all 0.3s ease-in-out 0s;
  color: #00a6eb;
}

.wp-pagenavi span.pages {
  padding: 4px 8px 4px 0;
}

/** HOME
*****************************/
#section-intro {
  background: url(img/intro-bg.jpg) fixed;
  background-size: cover;
  text-align: center;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

#section-intro .intro-overlay {
  background: rgba(0, 0, 0, 0.75);
  overflow: hidden;
  height: 100%;
  z-index: 2;
  padding: 60px 0;
}

#section-intro h1 {
  color: #fff;
  margin: 0 0 15px 0;
  font-weight: 600;
  padding: 0;
  font-size: 28px;
}

@media (min-width: 768px) {
  #section-intro h1 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  #section-intro h1 {
    font-size: 48px;
  }
}

#section-intro p {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 300;
}

#section-intro p {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 768px) {
  #section-intro p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (min-width: 992px) {
  #section-intro p {
    font-size: 24px;
    line-height: 32px;
  }
}

#section-intro .intro-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  transition: 0.4s;
}

#section-intro .intro-social a:hover {
  color: white;
}

#section-about {
  padding: 30px 0;
}

#section-about .about {
  background: #fff;
  padding: 25px 30px 15px 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

#section-about h2 {
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 600;
  padding: 0;
}

#section-about p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 15px;
}

/** CONTENT
*****************************/
@media (min-width: 992px) {
  .content {
    float: left;
    width: 640px;
  }
}

@media (min-width: 1200px) {
  .content {
    width: 840px;
  }
}

.page-content {
  padding: 24px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.page-content p:last-child {
  margin-bottom: 0;
}

.entry {
  font-size: 16px;
  color: #555;
  line-height: 24px;
}

.page-header {
  padding: 30px 0;
  background: #fafafa;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  color: #888;
}

.page-header h1 {
  font-size: 28px;
  margin: 0 0 15px 0;
  font-weight: 300;
}

.page-header p {
  padding: 0;
  margin: 0 0 15px 0;
  text-align: justify;
  font-size: 16px;
  color: #333;
}

.contact-form {
  margin-top: -10px;
  font-size: 14px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  padding: 10px;
  border: 1px solid #c1c1c1;
}

.contact-form .your-subject input, .contact-form .theme-name input, .contact-form .theme-demo input, .contact-form .theme-download input, .contact-form textarea {
  width: 100%;
}

.contact-form input[type="submit"] {
  margin-top: 24px;
  transition: all 0.3s;
  border-radius: 3px;
  border: 0;
  padding: 10px 20px;
  background: #1E5F8D;
  color: #fff;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background: #00a6eb;
}

.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
}

/** Comments
*****************************/
#comments {
  margin: 30px 0 0 0;
}

#comments p {
  margin: 15px 0 10px 0;
}

h3#comments-title {
  font-weight: bold;
  font-size: 20px;
  padding: 0;
  margin: 0 0 15px 0;
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.commentlist li.comment {
  line-height: 24px;
  margin: 0 0 15px 0;
  padding: 0 0 0 0px;
}

.commentlist li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#comments .comment-body ul,
#comments .comment-body ol {
  margin-bottom: 15px;
}

#comments .comment-body blockquote p:last-child {
  margin-bottom: 15px;
}

.commentlist .avatar {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-bottom: 2px;
  border-radius: 50%;
  float: left;
}

.comment-author {
  padding: 10px;
  height: 60px;
  display: block;
  background: #F2F2F2;
  border: 1px solid #DFDFDF;
  border-radius: 2px;
}

.comment-author cite {
  font-style: normal;
  font-weight: bold;
}

.comment-author .says {
  font-style: italic;
}

.fn, .fn a:link, .fn a:hover, .fn a:visited {
  font-family: Arial, Helvetica, Sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}

.comment-meta {
  margin: -30px 0 0 60px;
  display: block;
  font-size: 11px;
  padding: 0;
}

.comment-meta a:link,
.comment-meta a:visited {
  text-decoration: none;
}

.reply {
  text-align: right;
  margin: -5px 0 30px 0;
}

.comment-reply-link {
  font-size: 12px;
  font-weight: normal;
  text-decoration: none;
  background: #eee;
  border: 1px solid #ddd;
  color: #333;
  padding: 5px 20px;
  border-radius: 2px;
  transition: all  0.2s;
}

.comment-reply-link:hover {
  color: #fff;
  background: #1E5F8D;
  border: 1px solid #1E5F8D;
}

.comment-awaiting-moderation {
  float: right;
  margin-top: -42px;
  padding-right: 10px;
  color: red;
}

.commentlist .children {
  list-style: none;
  margin: 0;
}

/* Children */
.commentlist .children li {
  border: none;
  margin: 0;
}

.nocomments {
  display: none;
}

#comments .pingback {
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.commentlist li.comment + li.pingback {
  margin-top: -6px;
}

#comments .pingback p {
  font-size: 12px;
  line-height: 18px;
  display: block;
  margin: 0;
}

#comments .pingback .url {
  font-style: italic;
  font-size: 13px;
}

.comments-navigation {
  margin-bottom: 15px;
}

/* Comments form */
#respond {
  overflow: hidden;
  position: relative;
}

h3#reply-title {
  font-weight: bold;
  font-size: 20px;
  padding: 0;
  margin: 0 0 15px 0;
}

#respond .required {
  color: #FF4B33;
}

#respond .comment-notes {
  margin-bottom: 1em;
}

.form-allowed-tags {
  display: none;
}

.children #respond {
  margin: 0 48px 0 0;
}

#comments-list #respond {
  margin: 0 0 18px 0;
}

#comments-list ul #respond {
  margin: 0;
}

#cancel-comment-reply-link {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
}

#respond .required {
  color: #FF4B33;
  font-weight: bold;
}

#respond label {
  font-size: 12px;
  font-weight: bold;
  display: block;
}

#respond input {
  margin: 10px 0 0 0;
  width: 50%;
  padding: 10px;
}

#respond textarea {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px;
}

#respond .form-allowed-tags {
  font-size: 12px;
  line-height: 18px;
}

#respond .form-allowed-tags code {
  font-size: 11px;
}

#respond input[type=submit] {
  margin: 0;
}

#respond .form-submit {
  margin: 0;
}

#respond .form-submit input {
  width: auto;
  font-size: 14px;
  background: #1E5F8D;
  color: #fff;
  border: none;
  padding: 10px 18px;
  transition: 0.3s;
  margin-top: 10px;
}

#respond .form-submit input:hover {
  background: #00a6eb;
}

#respond dl {
  margin: 0 0 10px;
}

#respond dt {
  display: inline;
  font-weight: normal;
}

#respond dd {
  display: inline;
}

/** Themes
*****************************/
#themelist .themelist-box {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  height: 370px;
  background: #fff;
}

@media (min-width: 992px) {
  #themelist .themelist-box {
    float: left;
    width: 300px;
    margin-right: 35px;
  }
}

@media (min-width: 1200px) {
  #themelist .themelist-box {
    width: 400px;
  }
}

#themelist .themelist-box:nth-child(2n) {
  margin-right: 0;
}

#themelist .themelist-box .featured-img {
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}

#themelist .themelist-box h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  padding: 15px 10px;
}

#themelist .themelist-box h2 a {
  color: #555;
}

#themelist .themelist-box h2 a:hover {
  color: #00a6eb;
}

#themelist .themelist-box .themelist-meta {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  color: #888;
}

#themelist .themelist-box .themelist-meta a {
  color: #888;
}

#themelist .themelist-box .themelist-meta a:hover {
  color: #00a6eb;
}

#themes-single {
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 24px;
}

#themes-single .featured-img {
  height: 300px;
  overflow: hidden;
  margin: -24px -24px 0 -24px;
  border-bottom: 1px solid #ccc;
}

@media (min-width: 768px) {
  #themes-single .featured-img {
    height: 400px;
  }
}

@media (min-width: 992px) {
  #themes-single .featured-img {
    height: 500px;
  }
}

@media (min-width: 1200px) {
  #themes-single .featured-img {
    height: 600px;
  }
}

#themes-single h1 {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  padding: 20px 0;
}

#themes-single .themes-meta {
  padding: 0 0 10px 0;
  font-size: 12px;
  color: #888;
  border-bottom: 1px dotted #ccc;
}

#themes-single .themes-meta a {
  color: #888;
}

#themes-single .themes-meta a:hover {
  color: #00a6eb;
}

#themes-single .themes-meta .meta-comments {
  padding-left: 15px;
}

#themes-single .entry {
  font-size: 16px;
  padding-top: 15px;
}

#themes-single .sharethis {
  padding: 10px;
  height: 50px;
  margin: 0 -24px !important;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
  font-weight: bold;
}

#themes-single .sharethis .alignleft {
  padding-top: 4px;
}

#themes-single .sharethis a {
  display: inline-block;
  font-weight: normal;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #fff;
  margin-left: 4px;
}

#themes-single .sharethis a.share-twitter {
  background: #00aced;
}

#themes-single .sharethis a.share-twitter:hover {
  background: rgba(0, 172, 237, 0.6);
}

#themes-single .sharethis a.share-facebook {
  background: #3b5998;
}

#themes-single .sharethis a.share-facebook:hover {
  background: rgba(59, 89, 152, 0.8);
}

#themes-single .sharethis a.share-gplus {
  background: #bc3804;
}

#themes-single .sharethis a.share-gplus:hover {
  background: rgba(188, 56, 4, 0.8);
}

#themes-single .sharethis a .share-title {
  display: none;
}

@media (min-width: 768px) {
  #themes-single .sharethis a .share-title {
    display: inline;
  }
}

#themes-single .themes .theme-item h2 {
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 15px 0;
  font-weight: bold;
  color: #1E5F8D;
}

#themes-single .themes .theme-item .description {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

#themes-single .themes .theme-item .screenshot {
  background: whitesmoke;
  text-align: center;
  padding: 20px;
  margin-top: 15px;
}

#themes-single .themes .theme-item .screenshot img {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  #themes-single .themes .theme-item .screenshot img {
    width: 75%;
  }
}

#themes-single .themes .theme-item .screenshot .buttons {
  padding-top: 15px;
  margin: 0 -20px;
}

#themes-single .themes .theme-item .screenshot .buttons a {
  display: inline-block;
  border-radius: 3px;
  padding: 8px 16px;
  margin: 0 5px;
  color: #fff;
}

@media (max-width: 768px) {
  #themes-single .themes .theme-item .screenshot .buttons a {
    margin: 0 2px;
    padding: 8px 12px;
  }
}

#themes-single .themes .theme-item .screenshot .buttons a.theme-demo {
  background: #00a6eb;
}

#themes-single .themes .theme-item .screenshot .buttons a.theme-demo:hover {
  background: #29c0ff;
}

#themes-single .themes .theme-item .screenshot .buttons a.theme-download {
  background: #1E5F8D;
}

#themes-single .themes .theme-item .screenshot .buttons a.theme-download:hover {
  background: #2981bf;
}

#themes-single .themes .theme-item .pad {
  margin-top: 30px;
  text-align: center;
}

.themes-not-found {
  padding-bottom: 30px;
  margin: 0;
}

.themes-not-found p {
  font-size: 16px;
  margin: 0;
  font-style: italic;
  color: #666;
}

/** SIDEBAR
*****************************/
.sidebar {
  margin-top: 30px;
  position: relative;
}

@media (min-width: 992px) {
  .sidebar {
    margin-top: 0;
    margin-left: 30px;
    float: right;
    width: 300px;
  }
}

/* Search */
.searchform {
  text-align: left;
  background: #fff;
  border: 1px solid #cad4d7;
  margin-bottom: 20px;
  padding: 4px;
}

.searchform .s {
  background: #fff;
  color: #666;
  border: none;
  width: 80%;
  float: left;
  padding: 8px 10px 8px 6px;
  outline: none;
  margin: 0;
}

.searchform .sbutton {
  float: right;
  width: 20%;
  height: 32px;
  border: 0;
  margin-left: -2px;
  cursor: pointer;
  background: #1E5F8D;
  color: #fff;
  transition: all 0.3s ease;
}

.searchform .sbutton:hover {
  background: #00a6eb;
}

.sidebar-social {
  margin-bottom: 20px;
}

.sidebar-social a {
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  padding: 10px 0;
  margin: 0;
  color: #fff;
}

.sidebar-social .sidebar-twitter {
  background: #00aced;
}

.sidebar-social .sidebar-twitter:hover {
  background: rgba(0, 172, 237, 0.6);
}

.sidebar-social .sidebar-facebook {
  background: #3b5998;
}

.sidebar-social .sidebar-facebook:hover {
  background: rgba(59, 89, 152, 0.8);
}

.sidebar-social .sidebar-rss {
  background: #ed7527;
}

.sidebar-social .sidebar-rss:hover {
  background: rgba(237, 117, 39, 0.8);
}

.sidebar-social .sidebar-mail {
  background: #59ae5b;
  cursor: pointer;
}

.sidebar-social .sidebar-mail:hover {
  background: rgba(89, 174, 91, 0.8);
}

.sidebar-social i {
  font-size: 16px;
}

.sad {
  margin-bottom: 20px;
}

/* Widget Area */
.widget-area {
  border: 1px solid #cad4d7;
  list-style-type: none;
  list-style: none;
  margin: 0 0 15px 0;
  padding: 15px;
  color: #333;
  font-size: 13px;
  background: #fff;
}

.widget-title {
  color: #fff;
  font-size: 16px;
  line-height: 14px;
  font-weight: 400;
  margin: -15px -15px 15px -15px;
  padding: 12px 12px 14px 12px;
  background: #1E5F8D;
}

.widget-area .widget-title a, .widget-area .widget-title a:hover {
  color: #111;
  text-decoration: none;
}

.widget-area a {
  color: #00a6eb;
  text-decoration: none;
}

.widget-area a:hover {
  color: #85dbff;
  text-decoration: none;
}

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

.widget ul li {
  padding: 0;
  margin: 0 0 15px 0;
}

.newsletter p {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 13px;
}

.newsletter .email {
  width: 70%;
  float: left;
}

.newsletter .email input {
  width: 100%;
  border: 1px solid #cad4d7;
  padding: 6px 8px;
  font-size: 14px;
  background: #fafafa;
}

.newsletter .email input:focus {
  background: #fff;
}

.newsletter .submit {
  float: right;
  width: 30%;
}

.newsletter .submit input {
  width: 100%;
  background: #1E5F8D;
  color: #fff;
  border: 0;
  transition: all 0.3s ease;
  padding: 7px 8px;
  font-size: 14px;
  cursor: pointer;
}

.newsletter .submit input:hover {
  background: #00a6eb;
}

/** FOOTER
*****************************/
#section-themes {
  background: #fafafa;
  margin-top: 30px;
  padding: 20px 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

#section-themes h2 {
  font-size: 18px;
  margin: 0 0 15px 0;
  padding: 0;
  font-weight: bold;
}

#section-themes ul {
  display: block;
  padding: 0;
  list-style: none;
}

#section-themes ul li {
  padding: 8px 0;
  line-height: 20px;
}

@media (min-width: 768px) {
  #section-themes ul li {
    width: 50%;
    float: left;
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  #section-themes ul li {
    width: 33.33%;
  }
}

#section-themes ul li span {
  font-size: 11px;
  color: #888;
  font-style: italic;
}

#section-themes i {
  color: #00a6eb;
}

#footer {
  padding: 15px 0;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.copyrights {
  color: #333;
  padding: 15px 0;
  float: left;
}

.gst {padding: 0.5rem 0 0.5rem 0;}

@media (max-width: 767px) {
  .copyrights {
    float: none;
    text-align: center;
    padding-bottom: 0;
  }
}

.footer-menu {
  color: #555;
  font-size: 13px;
  padding: 15px 0;
  float: right;
}

.footer-menu a {
  color: #555;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #00a6eb;
}

.footer-menu span {
  color: #ccc;
  margin: 0 5px;
}

@media (max-width: 767px) {
  .footer-menu {
    float: none;
    text-align: center;
  }
}
