/*=====================================
             ALL FORM STYLE
======================================*/
.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: none;
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 0px;
  color: var(--heading);
  background: var(--light-white);
  border-bottom: 2px solid var(--border);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--body);
  background: var(--light-white);
  border-color: #2681db;
}

textarea.form-control {
  height: 215px;
  padding: 15px 20px;
}

.form-btn .btn {
  width: 100%;
  height: 50px;
  padding: 10px 30px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.form-control::-webkit-file-upload-button {
  height: 45px;
  border: none;
  background: none;
  color: var(--placeholder);
}

.form-control::-webkit-file-upload-button:focus {
  border: none;
  outline: none;
}

/*=====================================
        PAGINATION COMPONENTS STYLE
======================================*/
.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 25px;
  border-radius: var(--card-radius);
  background: var(--light-white);
  border: 1px solid var(--border);
}

.page-item {
  margin: 0px 6px;
}

/*=====================================
            BLOG CARD STYLE
======================================*/
.blog-card {
  background: var(--light-white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-card:hover {
  background: var(--white);
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08) rotate(1deg);
          transform: scale(1.08) rotate(1deg);
}

.blog-img {
  position: relative;
  overflow: hidden;
  z-index: -1;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}

.blog-img img {
  width: 100%;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}

.blog-overlay span {
  color: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.safety {
  background: #dc3545;
}

.marketing {
  background: #28a745;
}

.advertise {
  background: #982fd5;
}

.security {
  background: #e69721;
}

.blog-content {
  margin-top: -30px;
  padding: 0px 20px 20px;
}

.blog-avatar {
  margin-bottom: 15px;
}

.blog-avatar img {
  width: 60px;
  border-radius: var(--card-radius);
  border: 3px solid var(--white);
}

.blog-meta {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.blog-meta li {
  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;
}

.blog-meta li i {
  font-size: 15px;
  margin-right: 8px;
  color: #2681db;
  margin-top: -1px;
}

.blog-meta li p {
  font-size: 15px;
  line-height: 15px;
  color: var(--heading);
  text-transform: capitalize;
}

.blog-meta li p a {
  color: var(--heading);
}

.blog-text {
  margin-bottom: 27px;
}

.blog-text h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-text h4 a {
  color: var(--gray);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-text h4 a:hover {
  color: #2681db;
}

.blog-read {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-read:hover {
  color: #2681db;
}

.blog-read:hover i {
  margin-left: 8px;
}

.blog-read i {
  margin-left: 3px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

/*=====================================
        SINGLE BANNER PART STYLE
======================================*/
.single-banner {
  background: url(public/images/bg/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 53, 138, 0.65)), to(rgba(5, 44, 112, 0.65)));
  background: linear-gradient(rgba(4, 53, 138, 0.65), rgba(5, 44, 112, 0.65));
  z-index: -1;
}

.single-content {
  text-align: center;
}

.single-content h2 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 13px;
}

.single-content .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .single-banner {
    padding: 70px 0px;
  }
}

/*=====================================
         BLOG DETAILS PART STYLE
======================================*/
.blog-details-part {
  padding: 100px 0px;
}

.blog-details-title {
  margin-bottom: 20px;
}

.blog-details-title h2 a {
  color: var(--heading);
}

.blog-details-meta {
  margin-bottom: 30px;
}

.blog-details-meta li {
  display: inline-block;
  margin-right: 15px;
}

.blog-details-meta li a {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  color: var(--body);
  border-radius: var(--card-radius);
  border: 1px solid #2681db;
  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;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-details-meta li a:hover {
  color: var(--white);
  background: #2681db;
  border-color: #2681db;
}

.blog-details-meta li a:hover i,
.blog-details-meta li a:hover p {
  color: var(--white);
}

.blog-details-meta li a i {
  margin-right: 5px;
  color: #2681db;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-details-meta li a p {
  line-height: 14px;
  text-transform: capitalize;
  color: #2681db;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-details-meta li a p span {
  margin-left: 8px;
}

.blog-details-image img {
  width: 100%;
  border-radius: var(--card-radius);
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
}

.blog-details-content {
  /*margin-bottom: 45px;*/
  /*padding: 50px 50px 50px;*/
  /*border-bottom: 1px solid var(--border);*/
}

.blog-details-content p {
  font-size: 16px;
  /*line-height: 32px;*/
}

.blog-details-content .description {
  margin-bottom: 35px;
}

.blog-details-content .description p {
  display: block;
  margin-bottom: 20px;
}

.blog-details-content .description p span {
  display: block;
  margin-top: 25px;
}

.blog-details-content .sub-content {
  margin-bottom: 10px;
}

.blog-details-content .sub-content h3 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 500;
}

.blog-details-content .sub-content p a {
  text-decoration: underline;
}

.blog-details-content .quote-content {
  padding: 50px 50px;
  background: var(--light-white);
  border-left: 5px solid #2681db;
  margin-bottom: 45px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-details-content .quote-content p {
  font-size: 22px;
  font-style: italic;
  line-height: 35px;
  margin-bottom: 35px;
}

.blog-details-content .quote-content h5 {
  font-weight: 700;
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-transform: capitalize;
}

.blog-details-content .quote-content h5 a {
  color: var(--heading);
}

.blog-details-content .list-content {
  list-style: disc;
  margin-left: 20px;
}

.blog-details-content .list-content li {
  margin-bottom: 10px;
}

.blog-details-content .list-content li:last-child {
  margin-bottom: 0px;
}

.blog-details-widget {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}

.blog-details-widget .tag-list {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog-details-widget .tag-list li {
  margin-right: 8px;
}

.blog-details-widget .tag-list li h4 {
  margin-right: 5px;
}

.blog-details-widget .tag-list li a {
  font-size: 14px;
  padding: 2px 16px;
  border-radius: 30px;
  color: var(--heading);
  text-transform: capitalize;
  border: 1px solid var(--border);
}

.blog-details-widget .tag-list li a:hover {
  color: var(--white);
  background: #2681db;
}

.blog-details-widget .share-list {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog-details-widget .share-list li {
  margin-right: 8px;
}

.blog-details-widget .share-list li h4 {
  margin-right: 5px;
}

.blog-details-widget .share-list li a i {
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #2681db;
  background: var(--light-white);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-details-widget .share-list li a i:hover {
  color: var(--white);
  background: #2681db;
}

.blog-details-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 45px 45px;
  margin-bottom: 50px;
  border-radius: var(--card-radius);
  background: var(--light-white);
  border: 1px solid var(--border);
}

.blog-details-author .author-intro {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #dddddd;
}

.blog-details-author .author-intro a img {
  width: 100px;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
}

.blog-details-author .author-intro h4 a {
  color: var(--heading);
}

.blog-details-author .author-intro p {
  line-height: 22px;
}

.blog-details-author .author-intro p a {
  font-size: 14px;
  font-weight: 500;
  color: #2681db;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-details-author .author-intro p a:hover {
  color: #2681db;
  text-decoration: underline;
}

.blog-details-author .author-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 20px;
}

.blog-details-author .author-content ul li {
  margin-right: 15px;
}

.blog-details-author .author-content ul li a i {
  width: 36px;
  height: 36px;
  font-size: 13px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  color: #2681db;
  background: var(--white);
  border: 1px solid var(--border);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-details-author .author-content ul li a i:hover {
  color: var(--white);
  background: #2681db;
  border-color: #2681db;
}

.blog-details-author .author-content p {
  line-height: 29px;
}

.blog-card {
  margin-bottom: 30px;
}

.blog-details-navigate {
  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;
  padding: 30px 30px;
  margin-bottom: 45px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  background: var(--light-white);
}

.blog-details-navigate a {
  width: 200px;
  margin: 0px 15px;
  padding: 12px 0px;
  color: #2681db;
  background: var(--white);
  border-radius: var(--card-radius);
  text-transform: capitalize;
  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;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-details-navigate a:hover {
  color: var(--white);
  background: #2681db;
}

.blog-details-navigate a span,
.blog-details-navigate a i {
  margin: 0px 5px;
}

.blog-details-comment {
  margin-bottom: 30px;
}

.comment-title {
  margin-bottom: 30px;
}

.comment-title h3 {
  font-size: 28px;
}

.comment-list li {
  padding: 30px 0px;
  border-top: 1px solid var(--border);
}

.comment-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.comment-list li ul {
  margin-left: 125px;
  margin-top: 30px;
}

.comment-list li ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 25px;
}

.comment-author a {
  margin-bottom: 15px;
}

.comment-author a img {
  width: 100px;
  border-radius: var(--card-radius);
}

.comment-author .btn {
  width: 100px;
  font-size: 12px;
  padding: 5px 0px;
  border-radius: 5px;
}

.comment-author .btn span {
  margin-left: 3px;
}

.comment-content h4 {
  margin-bottom: 10px;
}

.comment-content h4 a {
  color: var(--heading);
}

.comment-content h4 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  line-height: 22px;
}

.blog-details-form .form-title {
  margin-bottom: 30px;
}

.blog-details-form .form-title h3 {
  font-size: 28px;
}

@media (max-width: 767px) {
  .blog-details-part {
    padding: 60px 0px;
  }
  .blog-details-meta li {
    margin: 5px;
  }
  .blog-details-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-details-widget .tag-list {
    margin-bottom: 30px;
  }
  .blog-details-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 30px;
  }
  .blog-details-author .author-intro {
    padding-right: 0px;
    margin-right: 0px;
    border-right: none;
    margin-bottom: 15px;
  }
  .blog-details-author .author-content ul li {
    margin-right: 8px;
  }
}

@media (max-width: 575px) {
  .blog-details-title h2 {
    font-size: 22px;
    line-height: 32px;
  }
  .blog-details-content {
    padding: 30px 0px;
  }
  .blog-details-content .quote-content {
    padding: 30px 30px;
  }
  .blog-details-navigate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-details-navigate a {
    margin: 15px 0px;
  }
  .comment-list li ul {
    margin-left: 80px;
  }
  .comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .comment-author {
    margin: 0px 0px 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .blog-details-part {
    padding: 80px 0px;
  }
  .blog-details-meta li {
    margin: 5px;
  }
}
