/*=====================================
         BREADCRUMB PART STYLE
======================================*/
.breadcrumb {
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin-bottom: 0px;
  background: none;
  border-radius: 0px;
}

.breadcrumb-item {
  text-transform: capitalize;
}

.breadcrumb-item a {
  color: var(--white);
  text-transform: capitalize;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #ddd;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

/*=====================================
         PAGINATION PART STYLE
======================================*/
.pagination {
  align-items: center;
  justify-content: center;
}

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

.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 50%;
}

.page-item .active {
  color: var(--white);
  background: var(--primary);
}

.page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: none;
  padding: 0px;
  color: var(--text);
  background: var(--light-white);
}

.page-link:hover {
  color: var(--white);
  background: var(--primary);
}

.page-link:focus {
  box-shadow: none;
}

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

.form-control {
  border: none;
  outline: none;
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 30px;
  color: var(--heading);
  background: var(--light-white);
  border: 1px solid transparent;
  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-within {
  background: var(--contact-form);
  border-color: var(--primary);
  box-shadow: none;
  outline: 0;
}

.form-control::-webkit-file-upload-button {
  border: none;
  outline: none;
  cursor: pointer;
  height: 100%;
  font-size: 15px;
  letter-spacing: 0.3px;
  background: transparent;
  text-transform: capitalize;
  color: var(--placeholder);
}

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

.form-control::file-selector-button {
  border: none;
  outline: none;
  cursor: pointer;
  height: 100%;
  font-size: 15px;
  letter-spacing: 0.3px;
  background: transparent;
  text-transform: capitalize;
  color: var(--placeholder);
}

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

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

/*=====================================
      INNER PORTFOLIO SEARCH STYLE
======================================*/
.port-src {
  text-align: center;
  margin-bottom: 35px;
}

.port-form {
  padding: 7px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  display: inline-block;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

.port-form input {
  border: none;
  width: 320px;
  height: 50px;
  padding: 0px 20px;
  background: transparent;
}

.port-form .btn-inline:hover {
  transform: translateY(0px);
}

@media (max-width: 575px) {
  .port-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    padding: 15px 10px;
  }
  .port-form input {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .port-form .custom-select {
    width: 100%;
    height: 45px;
    border-left: none;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .port-form input {
    width: 215px;
  }
}

/*=====================================
         INNER BANNER PART STYLE
======================================*/
.single-banner {
  background: url(../../images/banner/single.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.single-oly {
  background: rgba(209, 65, 40, 0.8);
  padding: 98px 0px 175px;
}

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

.single-content h1 {
  font-size: 38px;
  line-height: 46px;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .single-oly {
    padding: 60px 0px 118px;
  }
  .single-content h1 {
    font-size: 35px;
    line-height: 43px;
  }
}

/*=====================================
            CONTACT PART STYLE
======================================*/
.contact-address {
  text-align: center;
}

.contact-address:hover .address-icon i {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-3px);
}

.address-icon {
  margin-bottom: 28px;
}

.address-icon i {
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--white);
  background: var(--heading);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.address-text h4 {
  line-height: 20px;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.address-text p {
  color: var(--heading);
  line-height: 24px;
}

.address-text p span {
  display: block;
  margin-top: 8px;
}

.contact-img img {
  width: 100%;
}

@media (max-width: 767px) {
  .contact-part .mb-5 {
    margin-bottom: 10px !important;
  }
  .contact-address {
    margin-bottom: 30px;
  }
  .contact-img {
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .address-text p {
    font-size: 15px;
  }
}

/*=====================================
            SINGLE BANNER STYLE
======================================*/
.single-oly {
  padding: 115px 0px 115px;
}

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

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

.blog-det-part .container {
  max-width: 1000px;
}

.blog-det-banner {
  position: relative;
  border-radius: 10px;
  margin-bottom: 50px;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
}

.blog-det-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(128, 0, 255, 0.1), rgba(0, 0, 0, 0.8));
}

.blog-det-banner img {
  width: 100%;
  border-radius: 10px;
}

.blog-det-content {
  position: absolute;
  bottom: 50px;
  left: 30px;
  padding: 0px 30px;
}

.blog-det-title {
  margin-bottom: 25px;
}

.blog-det-title h2 {
  font-size: 34px;
  line-height: 44px;
}

.blog-det-title h2 a {
  color: var(--white);
}

.blog-det-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}

.blog-det-meta li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 18px;
  border-right: 1px solid var(--text);
}

.blog-det-meta li:first-child {
  padding-left: 0px;
}

.blog-det-meta li:last-child {
  padding-right: 0px;
  border-right: none;
}

.blog-det-meta li i {
  font-size: 14px;
  margin-right: 8px;
  margin-top: -2px;
  color: var(--white);
}

.blog-det-meta li p {
  font-size: 14px;
  color: var(--light-white);
  text-transform: uppercase;
}

.content-fluid {
  padding: 0px 80px;
}

.blog-det-descrip p {
  margin-bottom: 35px;
}

.blog-det-descrip p span {
  display: block;
  margin-top: 25px;
}

.blog-det-subtitle {
  margin-bottom: 35px;
}

.blog-det-subtitle h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-det-subtitle p a {
  text-decoration: underline;
}

.blog-det-quote {
  padding: 50px 50px;
  background: var(--gray);
  border-left: 5px solid var(--primary);
  margin-bottom: 45px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

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

.blog-det-quote span {
  font-weight: 500;
  align-self: flex-end;
  text-transform: capitalize;
}

.blog-det-list {
  list-style: disc;
  margin-left: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.blog-det-list li {
  margin-bottom: 30px;
}

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

.blog-det-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin: 45px 0px;
}

.blog-det-tag {
  display: flex;
  align-items: flex-start;
  justify-content: start;
}

.blog-det-tag h4 {
  font-weight: 700;
  margin-right: 15px;
}

.blog-det-tag ul li {
  margin: 0px 5px 10px;
  display: inline-block;
}

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

.blog-det-tag ul li a:hover {
  color: var(--white);
  background: var(--primary);
}

.blog-det-share {
  display: flex;
  align-items: flex-start;
  justify-content: start;
}

.blog-det-share h4 {
  font-weight: 700;
  margin-right: 15px;
}

.blog-det-share ul li {
  margin: 0px 5px 10px;
  display: inline-block;
}

.blog-det-share ul li a i {
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--gray);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-det-share ul li a i:hover {
  color: var(--white);
  background: var(--primary);
}

.blog-det-author {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  padding: 45px 45px;
  margin-bottom: 50px;
  border-radius: 10px;
  background: var(--gray);
}

.author-img {
  margin-right: 30px;
}

.author-img a img {
  width: 100px;
  border-radius: 5px;
}

.author-social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.author-social li {
  margin: 0px 3px;
}

.author-social li a i {
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.author-social li a i:hover {
  color: var(--white);
  background: var(--primary-gdnt);
}

.author-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.author-content h4 a {
  display: block;
  font-size: 14px;
  color: var(--primary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.author-content h4 a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.blog-det-navigate {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
  margin-bottom: 60px;
  position: relative;
}

.navigate-post {
  width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
}

.navigate-post::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(128, 0, 255, 0.1), rgba(0, 0, 0, 0.8));
}

.navigate-post img {
  width: 100%;
  border-radius: 10px;
}

.navigate-post h4 {
  position: absolute;
  bottom: 25px;
  left: 0px;
  padding: 0px 30px;
  line-height: 28px;
  font-weight: 600;
}

.navigate-post h4 a {
  color: var(--white);
}

.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 5px;
  padding: 9px 20px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
}

.prev-arrow:hover,
.next-arrow:hover {
  color: var(--white);
  background: var(--primary);
}

.prev-arrow {
  left: 0px;
}

.prev-arrow i {
  margin-right: 8px;
}

.next-arrow {
  right: 0px;
}

.next-arrow i {
  margin-left: 8px;
}

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

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

.comment-list li ul {
  margin-left: 100px;
}

.comment {
  display: flex;
  padding: 45px 0px;
  border-top: 1px solid var(--border);
  position: relative;
}

.comment-img {
  margin-right: 30px;
}

.comment-img a img {
  width: 100px;
  border-radius: 5px;
}

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

.comment-content h4 span {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.comment-reply {
  position: absolute;
  top: 25px;
  right: 15px;
}

.comment-reply a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-transform: capitalize;
}

.comment-reply a:hover {
  color: var(--primary);
}

.comment-reply a i {
  margin-right: 8px;
}

.blog-det-form h3 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-det-part {
    padding: 60px 0px 0px;
  }
  .blog-det-banner {
    box-shadow: none;
    border-radius: 0px;
    margin-bottom: 30px;
  }
  .blog-det-banner::before {
    display: none;
  }
  .blog-det-banner img {
    margin-bottom: 30px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.25);
  }
  .blog-det-content {
    position: inherit;
    left: 0px;
    bottom: 0px;
    padding: 0px;
  }
  .blog-det-title {
    margin-bottom: 15px;
  }
  .blog-det-title h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-det-title h2 a {
    color: var(--heading);
  }
  .blog-det-meta {
    flex-wrap: wrap;
  }
  .blog-det-meta li {
    border: none;
    padding: 2px 7px;
  }
  .blog-det-meta li p,
  .blog-det-meta li i {
    color: var(--text);
    font-size: 13px;
  }
  .content-fluid {
    padding: 0px;
  }
  .blog-det-quote {
    padding: 35px 30px;
  }
  .blog-det-quote p {
    font-size: 18px;
  }
  .blog-det-list {
    padding-bottom: 30px;
  }
  .blog-det-footer {
    flex-direction: column;
    margin: 35px 0px;
  }
  .blog-det-tag {
    margin-bottom: 25px;
  }
  .blog-det-author {
    flex-direction: column;
    padding: 35px;
  }
  .author-img {
    margin: 0px 0px 15px;
  }
  .blog-det-navigate {
    flex-direction: column-reverse;
  }
  .navigate-post {
    width: 100%;
    margin-bottom: 30px;
  }
  .navigate-post h4 {
    font-size: 18px;
    bottom: 30px;
    padding: 0px 25px;
    line-height: 26px;
  }
  .next-arrow {
    top: 0px;
  }
  .prev-arrow {
    top: inherit;
    bottom: -15px;
  }
  .comment {
    flex-direction: column;
    padding: 30px 0px;
  }
  .comment-img {
    margin: 0px 0px 15px;
  }
  .comment-content h4 {
    margin-bottom: 5px;
  }
  .comment-reply {
    top: 45px;
  }
  .comment-list li ul {
    margin-left: 60px;
  }
  .form-btn {
    text-align: center;
  }
}

@media (min-width: 431px) and (max-width: 767px) {
  .blog-det-navigate {
    width: 400px;
    margin: 0 auto 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .blog-det-part {
    padding: 80px 0px 0px;
  }
  .navigate-post {
    width: 320px;
  }
  .prev-arrow,
  .next-arrow {
    top: 0%;
  }
}
