@charset "UTF-8";

/*------------------------------------------------------------------------------
    Tamplate Name: kindness
    Description: kindness - Web Tamplate HTML Tamplate | Homepage
    Author: codezion
    Author URL:  https://www.templatemonster.com/authors/codezion/
    Version: 1.0

    -------------------------------------------------------------------------

    >>> TABLE OF CONTENTS:
    ======================

    01. Common/Reusable CSS
      1.1 - Animations
      1.2 - General
      1.3 - Section Title
      1.4 - Video Button
      1.5 - Slick Arrow
      1.6 - Slick Dots
      1.7 - Typography
      1.8 - Tables
      1.9 - Forms
      1.10 - Buttons
      1.11 - Paginations
      1.12 - Colors
      1.13 - Accordion
      1.14 - Tab
    02. Homepage
      2.1 - Header
      2.2 - Banner
      2.3 - About Us
      2.4 - Services
      2.5 - Our Team
      2.6 - Testimonial
      2.7 - Blog
      2.8 - Footer
      2.9 - Copyright
    03. About Us
    04. Services
    04. Destination
    05. Gellery
    06. Team
    07. Blog Grid
    08. Blog Details
    09. Blog Left
    10. Blog Right
    11. Contact Us

  -----------------------------------------------------------------*/

  /*------google fonts------*/
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rokkitt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    

  :root {
    --thm-font: 'Poppins', sans-serif;
    /*  Hedding*/
    --thm-b-font: 'Oswald', sans-serif;
    /*  Body-font*/
    --thm-icon-font: "Font Awesome 5 Pro";
    /*icon-font*/
    --thm-color-one: #c60930;
    --thm-color-two: #1f1f1f;
    --thm-color-three: #3b5998;
    --thm-color-four: #41a1f2;
    --thm-color-five: #ff0000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #636060;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/

  }


/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    font-family: sans-serif;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #acaaaa;
    background: #fff;
    border: 2px solid #f5f4f4;
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 25px;
    border-radius: 10px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #efefef;
    position: relative;
    padding: 20px 75px;
    border-left: 3px solid var(--thm-color-one);
    /* border-radius: 10px; */
    /* border-bottom: 2px solid #e2dcdc; */
    margin: 30px 0;
    /* border-top: 2px solid #e2dcdc; */
    /* border-right: 2px solid #e2dcdc; */
   
    font-style: italic;
}

blockquote p {
     color: #000;
}
blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 35px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0px;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
    padding-left: 35px;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/


.slick-slide {
    padding:10px;
    
}

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 20px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}

.slick-prev.slick-arrow {
  position: absolute;
  top: 43%;
  left: 10%;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 0;
  transition: 0.5s all;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 43%;
    right: 10%;
/*    left: 0;*/
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}



.slick-arrow.slick-prev:hover {
    border: 2px solid #bfa16b;
    background-color:transparent;
    color: #bfa16b !important;
}
.slick-arrow.slick-prev:hover:before {
    color: #bfa16b;
}
.slick-arrow.slick-prev:focus {
    border: 2px solid #bfa16b;
    background-color: transparent;
    color: #bfa16b;
}
.slick-arrow.slick-prev:focus:before {
    color: #bfa16b;
}

.slick-arrow.slick-next:hover {
    border: 2px solid #bfa16b;
    background-color: transparent;
    color: #bfa16b !important;
}
.slick-arrow.slick-next:hover:before {
    color: #bfa16b;
}
.slick-arrow.slick-next:focus {
    border: 2px solid #bfa16b;
    background-color: transparent;
    color: #bfa16b;
}
.slick-arrow.slick-next:focus:before {
    color: #bfa16b;
}

.testimonial-slider .slick-prev.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}
.testimonial-slider .slick-next.slick-arrow {
    border: none;
    font-size: 0;
    display: none;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 0px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #c9c9c9;
    margin: 0 8px;
    transition: 0.6s all;
    border: 0px solid #c9c9c9;
}

.slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button::before {
    content: '';
    width: 22px;
    height: 21.8px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -4px;
    left: -4px;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}
.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    background: var(--thm-color-one) !important;
}
.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid #c9c9c9;
    border-radius: 50%;
    /* background-color: var(--thm-color-two); */
    /* color: var(--thm-white); */
    width: 15px;
    height: 14px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* font-size: 18px; */
    background: #c9c9c9;
    padding: 0;
    position: relative;
    font-size: 0;
}
.pagination .page-item .page-link::before {
    content: '';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: transparent;
/*    border: 2px solid var(--thm-color-one);*/
    position: absolute;
    top: -4.8px;
    left: -4px;
}
.pagination .page-item .active::before {
    content: '';
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -4px;
    left: -3.9px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: 400;
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
    line-height: 1.2;
}

h4 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    line-height: 1.3;
}

h6 {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;
}

p {
    margin-bottom: 25px;
    color: #838383;
    font-family: 'Roboto', serif;
}

a {
    color: var(--thm-color-one);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    /* width: 40px; */
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}

/*Buttons*/

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
/*.btn:hover{
    background-color: #d11930;
}*/

.btn:hover {
    background-color: transparent;
}

.thm-btn {
    font-size: 16px;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    padding: 2px 28px;
    border-radius: 5px;
    transition: 0.5s all;
    font-weight: 500;
    background-color: transparent;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}

.thm-btn:hover,
.thm-btn:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: transparent;
}

.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 10px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 6px 42px;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}


/*---------------------------------------*/

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #000;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}

/*------topbar start--------*/


.header.sticky .topbar-follow{
  display: none;
}
.header.sticky .topbar-icon{
  display: none;
}
.header.sticky .navigation {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.header.sticky .menu-item a {
    color: #fff;
    padding-bottom: 0;
}
.header.sticky .logo {
  margin-bottom: 0px;
}

.header.sticky .navigation-warper {
    display: flex;
    justify-content: space-around;
}


.header.sticky .navigation .menu-item-has-children .sub-menu {
    top: 63px;
}
.logo-two {
  display: none;
}

.topbar-icon span {
    color: #fff;
    padding-right: 15px;
}
.topbar-follow {
  display: flex;
  align-items: center;
}
.topbar-follow h6 {
    margin-bottom: 0;
    margin-right: 10px;
    color: #fff;
    font-weight: 400;
}
.topbar-icon i {
  margin-right: 5px;
  transition: 0.5s all;
  cursor: pointer;
}
.topbar-icon i:hover {
  color: var(--thm-color-one);
}
.tobbar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-icon i {
    color: #fff;
}

.logo {
  display: flex;
  justify-content: center;
}
/*.logo a img {
    width: 64%;
}*/
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.sticky .menu-icon {
    display: none;
}
.icon-nm {
    font-size: 8px;
    background: var(--thm-color-one);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    /* padding: 1px 5px; */
    color: #fff;
    position: absolute;
    top: 0;
    right: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-icon i {
    color: #fff;
    width: 40px;
}
.menu-icon {
    display: flex;
    align-items: center;
}
.menu-icon-top {
    position: relative;
}

.menu-item a {
    padding: 0 25px;
    color: #fff;
    /* text-transform: uppercase; */
    font-family: Roboto;
}
.menu-item a:hover {
  color: var(--thm-color-one);
}
.active {
  color: var(--thm-color-one) !important;
}

.logo-three {
  display: none;
}
.logo-four {
  display: none;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
    left: 100%;
/*    top: 52px;*/
}
.header .navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.9s all;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
}

.sub-menu {
    position: absolute;
    top: 87px;
    left: 0;
    width: 215px;
    opacity: 0;
    visibility: hidden;
    transition: 0s all;
}
li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
}
.menu-item a {
    padding: 15px 15px;
    font-size: 18px;
/*    padding-bottom: 0;*/
}
.header .navigation .menu-item-has-children .sub-menu .menu-item {
    padding: 0px 10px;
    width: 100%;
    border-bottom: 1px solid #fff !important;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
    margin: 0;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
    font-size: 16px;
    padding: 15px 10px;
    font-weight: 500;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0px;
}

.header .navigation .main-menu .sub-menu .menu-item a:hover:before {
    opacity: 0;
}
.header .navigation .menu-item-has-children {
    position: relative;
}

.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    margin-left: 10px;
    font-family: var(--thm-icon-font);
}



/*------topbar end--------*/

/*---hamburger--*/

.hamburger {
  display: none;
}
.hamburger-btn span {
    display: flex;
    width: 35px;
    height: 2px;
    background-color: var(--thm-color-one);
    margin-bottom: 6px;
    transition: 0.5s all;
    position: relative;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
  display: none;
}
.hamburger-btn.active span:last-child {
  margin-bottom: 0;
}
.hamburger-btn.active span:last-child {
  transform: rotate(-45deg);
  top: -4px;
}

.navigation-warper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/*------ header start--------*/


.header {
    position: absolute;
    z-index: 1;
    top: 60px;
    left: 0;
    right: 0;
    /* padding: 10px 0; */
    /* border-bottom: 2px solid #fff; */
    /* padding-top: 60px; */
}
.header.can-sticky.topber-sec {
    border-bottom: 1px solid #dbdbdb;
    padding: 10px 0px;
    top: 0;
}


.banner-section:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
   z-index: -1;
}
.banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  color: #fff;
  text-align: center;
}
.banner-title h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    /* text-transform: uppercase; */
}
.banner-title p {
    color: #fff;
}
.title-color {
    color: var(--thm-color-one);
}
.banner-title h6 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
/*.banner-title {
  padding-top: 250px;
}*/
.banner-btn {
    padding: 2px 16px;
    border: 2px solid var(--thm-color-one);
    color: #fff;
    transition: 0.5s all;
    background: var(--thm-color-one);
    border-radius: 7px;
}
.banner-btn:hover {
    background: #fff;
}
.banner-title.text-left {
    text-align: left;
}

.banner-two .slick-prev.slick-arrow {
    display: none !important;
}
.banner-two .slick-next.slick-arrow {
    display: none !important;
}
.banner-btn:focus {
    /* color: red; */
    background: #000;
}


/*------ header end--------*/

.overlay:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s all;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.overlay:hover:before {
  opacity: 1;
  width: 100%;
  transform: scale(1.1);
}
.service-image.overlay.relative {
  overflow: hidden;
}

/*------sub header start-----*/

.subheder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.subheder:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.subhedaer-title h3 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/*----feture start----------*/

.feture-card {
    display: flex;
    padding: 15px 25px;
    align-items: center;
    border: 1px solid #d7d3d3;
    background: #fff;
    position: relative;
    bottom: 40px;
    margin-bottom: 25px;
}
.feture-perra h6 {
    margin: 0;
    font-weight: 700;
}
.feture-perra {
    padding-left: 16px;
}
.feture-perra p {
    margin-bottom: 0;
}

/*----about start-----------*/

.about-perra h6 {
    margin: 0;
    color: var(--thm-color-one);
    letter-spacing: 1px;
}

.about-perra {
    max-width: 520px;
}
.about-image img {
    width: 100%;
}
.about-perra h4 {
    line-height: 1.3;
}

/*--------- donate start -----------*/


.service-card {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #d8d6d6;
    background: #fff;
    border-radius: 7px;
}

.service-image.overlay-two {
    overflow: hidden;
    transition: 0.5s all;
    border-radius: 7px;
}
.overlay-two img {
  width: 100%;
  transform: scale(1.0);
  transition: 0.5s all;
}
.overlay-two img:hover {
  transform: scale(1.3);
}

.section-hedding {
    position: relative;
    padding-bottom: 1px;
    margin-bottom: 10px;
}
.section-hedding h6 {
    margin: 0;
    color: var(--thm-color-one);
    letter-spacing: 2px;
    font-family: Poppins;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}


.service-perra {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 30px;
}
.thm-btn-more {
  border: 2px solid;
  padding: 5px 15px;
  color: #bfa16b;
  transition: 0.5s all;
}
.thm-btn-more:hover {
  color: #000;
}

.service-perra i {
    font-size: 55px;
    color: #bfa16b;
}
.service-perra i {
    font-size: 55px;
    color: #bfa16b;
    margin: 20px 0;
}

/*------product start-------*/

.product-star i {
    color: #ffc107;
}

.product-star {
    padding: 10px 0;
}
.support-box.text-center h5 {
    margin-bottom: 0;
    font-weight: 600;
}
.product-price-one {
    text-decoration: line-through;
    /* font-weight: 600; */
    padding-right: 10px;
}
.product-price-two {
    color: var(--thm-color-one);
}
.offer {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--thm-color-one);
    padding: 0px 20px;
    border-radius: 30px;
    color: #fff;
}
.product-img-icon {
    position: absolute;
    /* width: 40px; */
    /* height: 40px; */
    top: 0;
    right: 0;
    display: inline-grid;
}
.product-img-icon i {
    font-size: 25px;
    padding-bottom: 15px;
    transition: 0.2s all;
}
.product-img-icon i:hover {
    color: var(--thm-color-one);
}
.support-images img {
    /* padding: 50px 0; */
    padding-top: 50px;
}
.support-images.overlay-three img:hover {
    transform: scale(1.1);
}
.product-slider .slick-prev.slick-arrow {
    position: absolute;
    top: -100px;
    left: 0%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid var(--thm-color-one);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thm-color-one);
    border-radius: 50%;
}
.product-slider .slick-next.slick-arrow {
    position: absolute;
     top: -100px;
    right: 0%;
    /* left: 0; */
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
   border: 2px solid var(--thm-color-one);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thm-color-one);
    border-radius: 50%;
}
.product-slider .slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.product-slider .slick-arrow.slick-next:hover::before {
    color: var(--thm-color-one);
}
.product-slider .slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.product-slider .slick-arrow.slick-prev:hover::before {
    color: var(--thm-color-one);
}

.support-images.overlay-three.relative {
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-add a {
    background-color: var(--thm-color-one);
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    margin-top: 15px;
    transition: all 0.6s ease;
    bottom: -100px;
    border: 1px solid;
    left: 32%;
    position: absolute;
}

.product-add a:hover {
    color: var(--thm-color-one);
    background: #fff;
}

.support-box {
    position: relative;
    overflow: hidden;
}
.support-box:hover .product-add a {
    bottom: 20px;
}
.product-add {
    transition: all 0.6s ease;
}
.product-add {
    padding: 18px 0;
}

/*------team start--------*/

.support-details.text-center h5 {
    margin-bottom: 0;
    font-weight: 500;
}
.support-details.text-center span {
    color: var(--thm-color-one);
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
}
.icon-team {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-grid;
}
.icon-team i {
    width: 40px;
    height: 40px;
    background: var(--thm-color-one);
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s all;
    animation: teams;
    animation-duration: 1s;
    animation-iteration-count: 3;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}
@keyframes teams {
  from {
        transform: translateY(-10%);
    }
    to {
        transform: translateY(10%);
    }

}

.icon-team i:hover {
    background: #fff;
    color: var(--thm-color-one);
}

/*---------blog start---------*/

.blog-image.overlay.relative img {
    width: 100%;
}




/*-------seing start---------*/


.tour-detail {
  display: flex;
  justify-content: space-between;
  padding: 7px 15px;
  border-bottom: 2px solid #c4bcaec2;
}
.tour-boat p {
  margin: 0;
  transition: 0.5s all;
}
.tour-boat p:hover {
  color: #bfa16b;
}
.seeing-title {
  padding: 15px 0;
  color: #bfa16b;
  font-size: 24px;
  font-family: Oswald;
}


/*----play btn-start----*/


.contact-play {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.contact-play:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.contact-video {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}


glightbox_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }

.outer_circle {
  stroke-width: 3;
  stroke-dasharray: 410; 
   stroke-dashoffset: 0;
  stroke-linecap: square;
  transition: all .4s ease-out;
}

.glightbox_video:hover .outer_circle {
stroke-dashoffset:410;
  transition: stroke .7s .4s ease-out, stroke-dashoffset .4s ease-out
}

.glightbox_video:hover 
.inner-circle {
  fill: #bfa16b;
  transition:fill .4s .3s ease-out;
  
}

.glightbox_video:hover
.play{
    fill: white;
  transition:fill .4s .3s ease-out;
}

/*----support start------*/

.support-details {
  padding: 15px 0px;
}
.team-hover-name {
    position: absolute;
    transition: 0.5s all;
    bottom: -100px;
    left: 0px;
    z-index: 2;
    background:var(--thm-color-one);
    width: 100%;
}
.support-details.team-hover-name span {
    color: #fff;
}

.support-box:hover .team-hover-name {
    bottom: 0px;
    border-radius: 0 0 7px 7px;
}
.support-details.team-hover-name h5 a {
    color: #fff;
}
.support-box {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #cfcece;
}
.support-details-name h6 {
    margin-bottom: 10px;
    line-height: 1.3;
}
.support-image img {
  width: 100%;
}
.support-details-name span {
  color: #bfa16b;
  font-family: Oswald;
  font-style: italic;
}
.support-details i {
    /* background: #bfa16b; */
    padding: 10px;
    color: var(--thm-color-one);
    transition: 0.5s all;
}
.support-details i:hover {
    /* background: #000; */
    color: #000;
}
.support-details p {
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
}
.support-image.overlay.relative {
    overflow: hidden;
    border-radius: 8px;
}
.support-details-name {
  line-height: 1;
}
.testi-box {
  text-align: center;
  background: #fff;
  padding: 50px 70px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  justify-content: center;
  max-width: 70%;
  margin: auto;
} 
.testi-box-two {
    background: #fff;
    padding: 50px 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    justify-content: center;
    text-align: left;
}
.testi-quite i {
    font-size: 40px;
    color: #bfa16b;
}
.testi-image h5 {
    margin-bottom: 0;
    color: #fff;
}
.testi-image span {
    color: var(--thm-color-one);
}
.testi-perra p {
    color: #fff;
}
.testi-box img {
  align-items: center;
  justify-content: center;
  display: flex;
  margin: auto;
  width: ;
}  
.testi-star i {
  color: #bfa16b;
}
.testi-star {
  margin-bottom: 20px;
}

.testimonaial-slider .slick-prev.slick-arrow {
    position: absolute;
    top: 43%;
    left: 0%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid var(--thm-color-one);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thm-color-one);
    border-radius: 50%;
}
.testimonaial-slider  .slick-arrow::before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}
.testimonaial-slider .slick-arrow.slick-next::before {
    content: "\f054";
}
.testimonaial-slider .slick-next.slick-arrow {
  position: absolute;
  top: 43%;
  right: 0%;
  /* left: 0; */
  bottom: 0;
  z-index: 1;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 0;
  transition: 0.5s all;
  border: 2px solid var(--thm-color-one);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--thm-color-one);
  border-radius: 50%;
}

.section-padding.testimonail {
  z-index: 0;
}
.overlay-testi {
    position: relative;
}
.overlay-testi:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

}
.border-line {
    width: 2px;
    height: 200px;
    background: #fff;
    position: relative;
}
.border-line:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--thm-color-one);
    width: 2px;
    height: 60px;
}
.testi-jhon-doe {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testi-perra {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-image.item-a img {
    width: 70%;
}
    .item-a {
    width: 370px;
    display: inline-grid;
    justify-content: center;
}
    .item-b {
    width: 2px;
    /* height: 400px; */
    margin: 0 40px;
}
    .item-c {
    width: 700px;
    margin-right: 15px;
}
    
    @media (max-width: 768px) {
        .item-a { width:100%; }
        .item-b { width:2px%; }
    }
    
@media screen and (min-width:576px) and (max-width: 768px) {
   .item-c {
    width: 510px;
}
}

/*-------latest-blog-start------*/

.blog-box {
  position: relative;
  margin-bottom: 30px;
}
.blog-image {
  position: relative;
}
.blog-image.overlay.relative {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.blog-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fff;
  padding: 2px 10px;
  color: #bfa16b;
}
.blog-admin {
    margin-bottom: 10px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}
.blog-admin span {
    margin-right: 20px;
}
.blog-admin span:hover {
    color: var(--thm-color-one);
}

.blog-admin i {
  color: var(--thm-color-one);
}

.blog-perra h5 {
    margin-bottom: 10px;
}
.blog-perra {
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #cfcece;
    border-top: 0;
}
.glightbox_video {
    position: relative;
}

.glightbox_video i {
    position: absolute;
    top: 40%;
    left: 44%;
    font-size: 30px;
}
.auther {
    border-radius: 50%;
}

.row.border-bottom.pt-5.medile {
    padding-left: 116px;
}


/*--------footer start------------*/

.footer-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.footer-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.ft-icon {
  color: #bfa16b;
}
.ft-icon i {
  padding-right: 5px;
  transition: 0.5s all;
}
.ft-icon i:hover{
  color: #fff;
}
.ft-logo p{
  color: #fff;
}
.ft-logo img{
  padding-bottom: 15px;
}
.ft-title h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}
.ft-title p {
    color: #fff;
}
.ft-title span {
    display: flex;
    color: #fff;
    align-items: baseline;
}
.ft-title span i {
    padding-right: 10px;
    color: var(--thm-color-one);
}
.ft-list {
  color: #bfa16b;
}
.ft-list i {
    padding-right: 10px;
    color: var(--thm-color-one);
}
.ft-news button {
    background: var(--thm-color-one);
    padding: 5px 11px;
    color: #fff;
    border-radius: 0 7px 7px 0;
    border: 2px solid var(--thm-color-one);
}
.ft-news input {
    width: 60%;
    padding: 5px 11px;
    border-radius: 7px 0 0 7px;
    border: 2px solid #fff;
}
.ft-list li a {
  color: #fff;
  transition: 0.5s all;

}
.ft-list li a:hover {
  color: var(--thm-color-one);  
}
.ft-title {
  padding-top: 25px;
}
.ft-address {
  color: #fff;
  display: flex;
  align-items: baseline;
}
.ft-address i {
  color: #bfa16b;
  padding-right: 10px;
  transition: 0.5s all;
}
.ft-address i:hover {
  color: #fff;
}
.ft-news {
    white-space: break-spaces;
    display: flex;
}
.ft-list-image li img {
  padding-bottom: 4px;
}

.copyright {
  background-color: var(--thm-color-one);
  text-align: center;
  padding: 10px 0;
}
.copyright p {
  margin-bottom: 0;
  color: #fff;
}
/*.ft-list-image li img:hover {
  transform: scale(1.1);
}*/
.ft-list-image li img {
  padding-bottom: 4px;
  transform: scale(1.0);
  overflow: hidden;
  transition: 0.2s all;
}
.back-top {
  display: inline-flex;
  background: red;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 15px;
  bottom: 70px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  z-index: 100;
}

.back-top {
    width: 40px;
    height: 40px;
    border: 2px solid var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--thm-white);
    font-size: 22px;
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: var(--thm-color-one);
    transition: 0.3s all;
    z-index: 100;
}

.back-top:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    border-color: var(--thm-color-two);
}

.back-top a h6 {
    color: #fff;
    font-size: 14px;
}


/*--------subheader start---------*/

.subhedaer-title h4 {
    color: #fff;
    margin-bottom: 0;
}
.subhedaer-title span {
    color: #fff;
}
.subhedaer-title span a {
    color: var(--thm-color-one);
}
.subhedaer-title span:hover {
    color: var(--thm-color-one);
    cursor: pointer;
}
.subheader {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}




/*----------contact start-------*/


.contact-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.contact-sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.contact-btn {
    float: right;
    color: #fff;
    background: #ff6819;
    padding: 5px 30px;
    transition: 0.5s all;
}
.contact-btn h4 a {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
}
.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-btn:hover {
    background: #000;
}


/*----------contact end-------*/

/*------blog-grid-start-----*/

.blog-grid-box {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-title h6 {
    border: 2px solid;
    padding: 5px 14px;
    text-align: center;
    color: var(--thm-color-one);
}
.search-name {
    border: 2px solid;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background: var(--thm-color-one);
    font-size: 16px;
}
.blog-search-box {
    position: relative;
}
.blog-search-box input {
    width: 100%;
    padding: 7px 15px;
    border: 2px solid #eaeaea;
    background-color: #eaeaea;
}
.blog-search-box i {
    position: absolute;
    right: 0px;
    top: 0px;
     width: 55px;
    height: 46px;
    background-color: var(--thm-color-one);
    border: 2px solid var(--thm-color-one);
}
.blog-ser-icon {
    width: 55px;
    height: 46px;
    background-color: var(--thm-color-one);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.blog-category {
    justify-content: space-between;
    display: flex;
}
.popular-post {
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    align-items: center;
}
.popular-post span {
    padding-left: 15px;
}
.tags-line p {
    margin: 0;
    border: 2px solid;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 3px 10px;
    transition: 0.5s all;
    cursor: pointer;
}
.tags-line p:hover {
    color: var(--thm-color-one);
}
.popular-post img {
    transition: 0.5s all;
}
.popular-post img:hover {
    transform: scale(1.1);
}

.blog-left-titile {
    font-size: 16px;
}

.blog-search-box input::placeholder {
    color: #000;
}

/*.popular-post img {
    width: 30%;
}*/

.blog-image-detail.blog-image img {
    width: 100%;
}
.blog-detail-share {
    display: flex;
    justify-content: space-between;
}
.blog-share-icon h6 {
    padding-right: 10px;
    align-items: center;
    display: flex;
    margin: 0;
}
.blog-share-icon a {
    width: 30px;
    /* align-items: center; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-share-tag a {
    border: 2px solid;
    padding: 5px 25px;
    margin-right: 0;
    margin-left: 10px;
    margin-bottom: 10px;
    color: gray;
}
.blog-share-tag a:hover {
    color: var(--thm-color-one);
}
.popular-post p {
    font-size: 14px;
    padding-left: 15px;
    margin: 0;
}
.blog-details-box {
    padding: 30px;
    border: 2px solid #f0efef;
}
.blog-details img {
    width: 100%;
}
.blog-sosail {
    background: #fff;
    position: relative;
    bottom: 35px;
    padding: 15px 15px;
    /* display: inline-flex; */
    text-align: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 50%;
    left: 25%;
}
.blog-sosail span {
    padding-right: 15px;
}
.blog-sosail span i {
    color: var(--thm-color-one);
}
.smith-image img {
    width: 6%;
    padding-right: 10px;
}
.smith-image {
    padding: 15px 0;
}
.blog-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-tab-left span {
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 5px;
}
.blog-tab-left span:hover {
    color: var(--thm-color-one);
}
.blog-tag-right i {
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    right: -8px;
}
.blog-tag-right span {
    background: gray;
    color: #fff;
    padding: 4px 10px;
    border-radius: 0 15px 15px 0;
    font-size: 12px;
    margin-right: 6px;
}
.blog-smithbg img {
    width: 24%;
}
.blog-smithbg {
    display: flex;
    background: #efefef;
    padding: 15px;
    margin: 15px 0;
    align-items: center;
}
.blog-detail-button {
    display: flex;
    justify-content: space-between;
}
.blog-detail-button a {
    border: 1px solid;
    padding: 0 10px;
}
.blog-smithbg-perra-name h6 {
    margin-bottom: 0;
}
.blog-smithbg-perra-name {
    display: flex;
    justify-content: space-between;
}
.blog-smithbg-perra {
    padding-left: 15px;
}
.blog-smithbg-perra-name p {
    margin-bottom: 0;
    color: #000;
}
.blog-auther-detail img {
    width: 7%;
    position: absolute;
    left: 0;
}
.blog-auther-detail {
    padding-left: 100px;
    position: relative;
}
.blog-auther-name {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.blog-date h6 {
    margin-bottom: 0;
}
.blog-date p {
    margin-bottom: 10px;
    background: var(--thm-color-one);
    color: #fff;
    rtex: ;
    text-align: center;
    border-radius: 7px;
    font-size: 13px;
    width: 100px;
}
.blog-auther-name i {
    width: 30px;
    height: 30px;
    background: var(--thm-color-one);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 5px;
}
.blog-auther-detail.auther-middiel {
    padding-left: 200px;
}
.blog-auther-detail.auther-middiel img {
    left: 8%;
}
.auther-blog {
    margin: 40px 0;
}
.form-group input {
    width: 100%;
    padding: 5px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}
.form-group textarea {
    width: 100%;
    height: 170px;
    padding: 5px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}
.blog-btn-leave {
    border: 1px solid;
    padding: 5px 15px;
    color: var(--thm-color-one);
    border-radius: 5px;
}
.blog-tab-left {
    padding: 30px 0;
}
.blog-tag-right {
    padding: 30px 0;
}

/*------blog-grid-end-----*/

10. Coming Soon
========================*/
.coming-soon {
    background-image: url(../images/404.jpg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
/*.coming-soon .coming-soon-img {
    min-height: 450px;
}*/
.coming-soon .coming-soon-text {
    padding: 80px 40px;
    /* background-color: #fe6700; */
    text-align: center;
    /* background: #fc4a1a; */
    background: linear-gradient(to left, #f33030, #f11e0675);
    margin-top: 64px;
}
.coming-soon .coming-soon-text h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10.5px;
}
.coming-soon .coming-soon-text .counter {
    display: flex;
    justify-content: center;
    margin: 0px 0px 30px;
}
.coming-soon .coming-soon-text .counter .counter-box {
    text-align: center;
    width: 25%;
    padding: 0 15px;
    margin: 0 15px;
    position: relative;
    background-color: var(--thm-color-one);
    border: 2px solid var(--thm-color-one);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.coming-soon .coming-soon-text .counter .counter-box .inner-box {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1;
    margin-top: 20px;
    font-weight: 600;
}
.coming-soon .newsletter-form .group-form .input-group-append {
    pointer-events: all;
    width: 80px;
    color: #fff;
}
.coming-soon .coming-soon-contact ul li {
    text-align: center;
    width: 33.33%;
    margin-bottom: 20px;
}
.coming-soon .social-media ul {
    justify-content: center;
    display: flex;
}
.coming-soon .social-media ul li {
    margin: 0 10px;
    font-size: 22px;
}
.text-light-dark.fw-600.d-block {
    color: #fff;
}
.input-group-append {
    background: var(--thm-color-one);
}
.custom-flex {
    display: flex;
}
.text-custom-white {
    color: #fff;
}

.form-control.form-control-custom {
    width: 100%;
}
.input-group-append {
    position: absolute;
    right: 5px;
    top: 5px;
}
.form-control.form-control-custom {
    border: 2px solid #eeebeb;
}
.custom-flex a:hover {
    color: #fff;
}

.error-search input {
    width: 100%;
    padding: 10px 16px;
}


/*------------------*/


/*---error start---*/


.error-hedding h3 {
    padding-top: 50px;
}   
.error-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0dcdc;
}

.error-search input:focus {
    border: 2px solid #bfa16b ;
}
.error-search i {
    position: absolute;
    top: 5px;
    right: 0px;
    transition: 0.5s all;
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-search {
    position: relative;
}
.error-search i:hover {
    color: #d11930;
}
.back-home-btn {
    width: 235px;
    height: 50px;
    color: #fff;
    background: #bfa16b ;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border: 2px solid #bfa16b ;
    transition: 0.5s all;
}
.back-home-btn:hover {
    background-color: #fff;
    border: 2px solid;
}

/*---------------*/

/*-----t & c----*/

.perra-cheched i {
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 35px;
    display: flex;
    background: #bfa16b ;
    color: #fff;
    margin-right: 15px;
    margin-top: 8px;
}
.thm-btn.term-btn-one {
    border: 2px solid;
    color: #bfa16b ;
    transition: 0.5s  all;
}   
.thm-btn.term-btn-two {
    border: 2px solid #bfa16b ;
    background: #bfa16b ;
    margin-left: 20px;
}
.thm-btn.term-btn-one:hover {
    background: #bfa16b ;
    color: #fff;
    border: 2px solid #bfa16b ;
}
.thm-btn.term-btn-one:focus {
    background: #bfa16b ;
    color: #fff;
    border: 2px solid #bfa16b ;
}
.policy-perra h5 {
    font-size: 40px;
}
.policy-perra h6 {
    font-size: 25px;
}

/*--------rang slider---------*/

.range-slider input {
    width: 100%;
}
.donate-detail {
    padding-top: 20px;
    padding-right: 6px;
}
.donate-detail h5 {
    margin-bottom: 0;
}
.range-sliderfd label {
    display: flex;
    justify-content: end;
}

.range-slider p {
    margin-bottom: 0;
    display: flex;
    justify-content: end;
    color: var(--thm-color-one);
}
.donate-detail p {
    margin-bottom: 0;
}
.donate-bottom {
    display: flex;
    justify-content: space-between;
}
.thm-color-first {
    color: var(--thm-color-one) !important;
}
.donate-bottom span {
    color: #000;
}

/*-----testi----*/

.contact-play .our-ministries-hedding h6 {
    color: #fff;
    margin-bottom: 0;
}
.contact-play .our-ministries-hedding h4 {
    color: #fff;
    margin-bottom: 0;
}
.our-ministries-hedding {
    margin-bottom: 30px;
    padding-left: 60px;
}
.miniustries-list {
    display: flex;
    justify-content: space-around;
}
.miniustries-list-item h6 {
    color: #fff;
}
.miniustries-list-item i {
    color: var(--thm-color-one);
    padding: 0 10px;
    border-left: 1px solid #9f9f9f;
}

/*-----pagination-----------*/

.pagination a {
    width: 30px;
    height: 30px;
    background: var(--thm-color-one);
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
    transition: 0.5s all;
}
.pagination .active {
    background: #000;
    color: #fff !important;
}
.pagination a:hover {
    background: #000;
}

.pagination {
    font-weight: bold;
    font-size: 16px;
    font-family: $font-stack;
}
    
    .prev {
        &:before {
            content: "« ";
            font-weight: normal;
        }
    }

    .next {
        &:after {
            content: " »";
            font-weight: normal;
        }
    }

    .next, .prev {
        &:hover {
            border-color: lighten(black, 8%);
            @include background(linear-gradient(top, lighten(black, 15%), lighten(black, 10%)));
            box-shadow: 0 0 6px rgba(black, 0.6), inset 0 1px rgba(white, .1);
            color: darken(white, 8%);
            text-shadow: none;
        }
    }
}

.pagination {
    margin-top: 200px;
}


/*----------------*/

.color-one {
    background: var(--thm-color-three);
    border: 1px solid var(--thm-color-three);
    transition: 0.5s all;
}
.color-one:hover {
    background: #fff;
    color: var(--thm-color-three);
    border: 1px solid var(--thm-color-three);
}
.color-two {
    background: var(--thm-color-four);
    border: 1px solid var(--thm-color-four);
     transition: 0.5s all;
}
.color-two:hover {
    background: #fff;
    color: var(--thm-color-four);
    border: 1px solid var(--thm-color-four);
}
.color-three {
    background: var(--thm-color-five);
    border: 1px solid var(--thm-color-five);
     transition: 0.5s all;
}
.color-three:hover {
    background: #fff;
    color: var(--thm-color-five);
    border: 1px solid var(--thm-color-five);
}
.color-four {
    background: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
    transition: 0.5s all;
    right: 0 !important;
}
.color-four:hover {
    background: #fff;
    color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/*------------product-details start---------------*/

.brass {
    display: flex;
    justify-content: space-between;
}
.brass h5 {
    margin-bottom: 0;
}
.brass i {
    color: var(--thm-color-one);
}

.color-star {
    color: #ffc107;
}
.price-big {
    font-size: 30px;
    color: var(--thm-color-one);
    padding-right: 10px;
}
.product-detail-brass-number button {
    background: var(--thm-color-one);
    color: #fff;
    padding: 2px 15px;
    border-radius: 5px;
    margin-left: 20px;
}
.product-detail-brass-number input {
    padding: 0px 14px;
}

.quantity {
    position: relative;
    display: flex;
    align-items: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]
{
  -moz-appearance: textfield;
}

.quantity input {
    width: 80px;
    height: 42px;
    line-height: 1.65;
    /* float: left; */
    /* display: block; */
    /* padding: 0; */
    margin-right: 0;
    padding-left: 20px;
    border: 1px solid #eee;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 20px;
    text-align: center;
    color: #333;
    font-size: 25px;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
    line-height: 0.7;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    /* border-bottom: 1px solid #eee; */
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 5px;
    /* right: 0; */
}

.quantity-button.quantity-down {
    position: absolute;
    bottom: -1px;
    height: 50%;
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 5px;
}
.color-cate {
    color: #000;
    padding-right: 10px;
}
.brass-category {
    display: flex;
}
.color-red {
    color: red;
}

.slider-nav img {
    width: 6% !important;
    border: 1px solid #000;
    padding: 5px;
    margin: 5px;
}

.brass-slider .slick-prev.slick-arrow {
    position: absolute;
    top: 43%;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--thm-color-one);
    border-radius: 5px;
}
.brass-slider .slick-next.slick-arrow {
    position: absolute;
    top: 43%;
    right: 0%;
    /* left: 0; */
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
     background: var(--thm-color-one);
    border-radius: 5px;
}

.slider-nav {
    padding: 0 45px;
}
.paroduct-details-rating h5 {
    font-weight: 600;
}
.rating-no span {
    font-size: 35px;
    color: #000;
}
.rating-no i {
    color: var(--thm-color-one);
}
.rating-line {
    width: 0.8px;
    height: 100px;
    background: #cacaca;
    margin: 0 150px;
}
.score-line {
    /* height: 2px; */
    width: 100px;
    background-color: #000;
    height: 2px;
    position: relative;
}
.score-line::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: var(--thm-color-one);
}

.rating-score li {
    display: flex;
    align-items: center;
}
.rating {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}
.score-line {
    /* height: 2px; */
    width: 100px;
    background-color: #ececec;
    height: 2.3px;
    position: relative;
    margin: 0 10px;
}

.color-black {
    color: #000;
}

.customer-review p {
    display: flex;
    margin-right: 16px;
}
.review-nine {
    font-size: 22px;
    background: var(--thm-color-one);
    display: inline-flex;
    line-height: 1;
    height: 30px;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 0;
    padding: 5px 9px;
}
.review-nine i {
    font-size: 12px;
    line-height: 2;
}

.review-like-date {
    display: flex;
    justify-content: space-between;
}
.rev-date span {
    padding-right: 20px;
}
.rev-like span {
    paddinf-lef: ;
    padding-left: 70px;
}
.brass i {
    line-height: 2;
}
.details-right {
    border: 1px solid #000;
    padding: 15px;
    border-radius: 10px;
}
.dry {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.concem {
    border-bottom: 1px solid;
}
.concem h6 {
   margin-bottom: 0;
}
.similar-brass-btn {
    background: var(--thm-color-one);
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
}
.similar-brass h6 {
    margin-bottom: 0;
}
.similar-brass p {
    margin-bottom: 0;
}
.similar-image {
    padding-right: 15px;
    line-height: 4;
}


/*----------contact start-------*/


.contact-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.contact-sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.contact-btn {
    float: right;
    color: #fff;
    background: #ff6819;
    padding: 5px 30px;
    transition: 0.5s all;
}
.contact-btn h4 a {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
}
.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-btn:hover {
    background: #000;
}


/*-----------contact-us start-------------------*/

.contact-icon i {
    width: 100px;
    height: 100px;
    background: var(--thm-color-one);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
}
.contact-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
/*.contact-box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url(..//images/contact/2.png);
    z-index: -2;
}*/
.location {
    position: relative;
    z-index: 0;
}
.location:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url(..//images/contact/2.png);
    z-index: -2;
}

.phone {
    position: relative;
    z-index: 0;
}
.phone:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url(..//images/contact/3.png);
    z-index: -2;
}

.message {
    position: relative;
    z-index: 0;
}
.message:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url(..//images/contact/4.png);
    z-index: -2;
}

.contact-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 50px;
    text-align: center;
    margin-bottom: 25px;
    background-color: #fff;
    position: relative;
    z-index: 0;
}
.contact-address h5 a{
    color: #fff;
}
.contact-address h5 {
    color: #fff;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}
.contact-form-text input {
    width: 100%;
    padding: 7px 15px;
    margin-bottom: 15px;
    border: 2px solid #f4f4f4;
    transition: 0.3s all;
    background-color: #fff;
    border-radius: 10px;
}
.contact-form-text input:focus {
    border: 2px solid var(--thm-color-one);
}

.form-textaree textarea {
    width: 100%;
    height: 149px;
    padding: 5px 15px;
    border: 2px solid #f4f4f4;
    transition: 0.3s all;
}
.ct-b textarea {
    background: #fff;
}
.form-textaree textarea:focus {
    border: 2px solid var(--thm-color-one);
}

.btn.thm-btn.contact-button {
    border: 2px solid var(--thm-color-one);
     color: #fff; 
    margin-top: 15px;
    width: 100%;
    background-color: var(--thm-color-one);
    border-radius: 10px;
}

.contact-button:hover {
    color: var(--thm-color-one) !important;
    border: 2px solid #ff6819;
    background-color: #fff !important;
    
}
.contact-button:focus {
    color: var(--thm-color-one) !important;
    border: 2px solid #ff6819;
    background-color: #fff !important;
}
.contact-form {
    padding: 30px;
    border: 1px solid #e8e8e8;
}
.contact-hedding h5 {
    font-weight: 500;
}
.contact-map img {
    width: 100%;
    height: 520px;
}



/*----------contact end-------*/

.error-search input {
    width: 100%;
    padding: 10px 16px;
}


/*------------------*/


/*---error start---*/


.error-hedding h3 {
    padding-top: 50px;
}   
.error-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0dcdc;
}

.error-search input:focus {
    border: 2px solid var(--thm-color-one);
}
.error-search i {
    position: absolute;
    top: 5px;
    right: 0px;
    transition: 0.5s all;
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-search {
    position: relative;
}
.error-search i:hover {
    color: #d11930;
}
.back-home-btn {
    width: 235px;
    height: 50px;
    color: #fff;
    background: var(--thm-color-one);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    border: 2px solid var(--thm-color-one);
    transition: 0.5s all;
}
.back-home-btn:hover {
    background-color: #fff;
    border: 2px solid;
}

/*---------------*/

/*-----t & c----*/

.perra-cheched i {
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 35px;
    display: flex;
    background: var(--thm-color-one);
    color: #fff;
    margin-right: 15px;
    margin-top: 8px;
}
.thm-btn.term-btn-one {
    border: 2px solid;
    color: var(--thm-color-one);
    transition: 0.5s  all;
}   
.thm-btn.term-btn-two {
    border: 2px solid var(--thm-color-one) ;
    background: var(--thm-color-one) ;
    margin-left: 20px;
}
.thm-btn.term-btn-one:hover {
    background: var(--thm-color-one);
    color: #fff;
    border: 2px solid var(--thm-color-one);
}
.thm-btn.term-btn-one:focus {
    background: var(--thm-color-one);
    color: #fff;
    border: 2px solid var(--thm-color-one);
}
.policy-perra h5 {
    font-size: 40px;
}
.policy-perra h6 {
    font-size: 25px;
}

/*-----------------*/

/*----faq start----*/

.accordions {
    width: 80%;
    margin: 100px auto;
    border: 2px solid #e5e5e5;
}

.accordions h3 {

text-align: left;

font-weight: bold;

font-family: “Roboto”, sans-serif;

}

.accordion-item {
    background-color: #fff;
    color: #ffffff;
    margin-bottom: 5px;
    border: 2px solid #d6d5da;
}

.accordion-item .accordion-title {
    cursor: pointer;
    padding: 20px;
    transition: transform 0.4s ease-in-out;
    background: #e5e5e5;
}

.accordion-item .accordion-title.active-title {

background-color: #d11930;

color: #fff;

}
.accordion-item .accordion-title.active-title h3 {
    color: #fff;
}
#item1 p {
    margin-bottom: 20px;
}

.accordion-item .accordion-title h3 {

font-weight: 700;

margin: 0;

justify-content: space-between;

font-weight: bold;

font-size: 18px;

display: flex;

}

.accordion-item .accordion-title i.fa-chevron-down {

transform: rotate(0);

transition: 0.4s;

}

.accordion-item .accordion-title i.fa-chevron-down.chevron-top {

transform: rotate(-180deg);

color: #fff;

}

.accordion-item .accordion-content {

display: none;

line-height: 1.7;

color: #100e34;

padding: 20px;

background-color: #ffffff;

border-radius: 0 0 5px 5px;

}

.accordion-item .accordion-content.active {

display: block;

}

.accordion-item .accordion-content p {

margin: 0;

font-size: 16px;

font-family: “Nunito Sans”, sans-serif;

}

.details {

background: #dce1f2;

}

.details .detailed_info {

margin: 50px auto;

}

.details img {

margin: 0 auto;

display: block;

}

.details h3 {

font-weight: bold;

font-size: 20px;

font-family: “Poppins”, sans-serif;

}

.details p {

font-size: 16px;

line-height: 1.5em;

font-family: “Nunito Sans”, sans-serif;

}

.details ul li {

font-size: 16px;

line-height: 1.7em;

font-family: “Nunito Sans”, sans-serif;

}

/*----faq end----*/


/*----checkout start----*/

.progress-round .step.active {
    width: 44px;
    height: 44px;
    border: 1px solid var(--thm-color-one);
    background: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    background: var(--thm-color-one) !important;
    color: #fff !important;
}
.progress-round .step {
    width: 44px;
    height: 44px;
    border: 2px solid #e9e9e9;
    background: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 25px;
}
.title {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    color: #2e2e2e;
    text-align: center;
}
.progress-round {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    /* justify-content: center; */
    align-items: center;
}
.progress-round .step::after {
    position: absolute;
    z-index: -1;
    top: 20px;
    left: 44px;
    width: 340px;
    height: 2px;
    content: '';
    background-color: #efefef;
}

.billing-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.billing-info h4 {
    margin-bottom: 0;
    padding-right: 50px;
}
.billing-info a {
    color: var(--thm-color-one);
    text-decoration: underline;
}
.contact-form-text span {
    padding-left: 30px;
}
.contact-form-text label {
    color: #000;
}
.login-eye.toggle-password {
    padding: 0;
}
 input {
    color: #a8a8a8;
}
.delivers-work h6 {
    margin-bottom: 0;
    color: var(--thm-color-one);
    font-size: 16px;
}
.delivers-work {
    padding: 10px 20px;
    margin-bottom: 0px;
}
.delivers {
    border-radius: 10px;
    border: 1px solid;
    margin-bottom: 30px;
}
.list__item i {
    padding: 0 10px;
    /* color: gray; */
}
.deliver-address span {
    padding-left: 25px;
}

.panel-body {
    padding: 45px 80px;
    flex: 1;
    /* border: 1px solid; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.step {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: block;
  width: 25px;
  height: 25px;
  margin-bottom: 30px;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #efefef;
}
 
.step::before {
    color: #2e2e2e;
    position: absolute;
    top: 50px;
    font-size: 16px;
}
 
.step:last-child:after {
  content: none;
}
 
.step.active {
  background-color: #1abc9c;
}

.step:nth-child(1):before {
  content: 'Cart';
}
.step:nth-child(2):before {
  right: -40px;
  content: 'Confirmation';
}
.step:nth-child(3):before {
  right: -30px;
  content: 'Payment';
}
.step:nth-child(4):before {
  right: 0;
  content: 'Finish';
}
.payment-method {
  display: flex;
  margin-bottom: 60px;
  justify-content: space-between;
}
 
.method {
  display: flex;
  flex-direction: column;
  width: 382px;
  height: 122px;
  padding-top: 20px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  background-color: rgb(249, 249, 249);
  justify-content: center;
  align-items: center;
}
 
.card-logos {
  display: flex;
  width: 150px;
  justify-content: space-between;
  align-items: center;
}
 
.radio-input {
  margin-top: 20px;
}
.ship-to  {
    display: flex;
    justify-content: space-between;
}
 .ship-to p {
    margin-bottom: 0;
 }
 .ship-change {
    color: var(--thm-color-one);
    text-decoration: underline;
}
b, strong {
    font-weight: bolder;
    color: #000;
}
.shipping-details-type ul li {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-weight: 600;
}
.shipping-details-type ul li {
    display: flex;
    justify-content: space-between;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}
.ship-type {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
}
.ship-discount li {
    display: flex;
    justify-content: space-between;
}
.sip-coupan span {
    color: var(--thm-color-one);
}

.gfhjjgjghg {
    border-top: 1px solid #f4f4f4;
    
}
.fgdfh {
    padding-right: 55px;
    border-right: 1px solid #f4f4f4;
    padding-top: 35px;
}
.col-lg-4.fgdf {
    padding-top: 35px;
}


/*----checkout end----*/

/*----login start----*/


.login-sec {
    background-color: #f5f5f5;
    padding: 30px;
}
.login-btn button {
    background: var(--thm-color-one);
    padding: 5px 35px;
    color: #fff;
    border-radius: 5px;
    margin-right: 20px;
}
.login-btn button i {
    padding-right: 6px;
}
.login-with-line {
    position: relative;
    margin: 35px 0;
    text-align: center;
}

.login-with-line:before {
    position: absolute;
    content: '';
    top: 13px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 2px;
    background: gray;
}
.login-with-line:after {
    position: absolute;
    content: '';
    top: 13px;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 2px;
    background: gray;
}
.remember {
    display: flex;
    justify-content: space-between;
}
.forge-pass p {
    color: #ff0000;
    cursor: pointer;
}
.login-btn.text-center button {
    width: 47%;
}
.login-eye {
    position: absolute;
    top: 45px;
    right: 5%;
    cursor: pointer;
    color: lightgray;
}
.contact-form-text {
    position: relative;
}
.fa.fa-fw.field-icon.toggle-password.fa-eye-slash {
    position: absolute;
    top: 45px;
    right: 5%;
}

/*----login end----*/


/*---- payment start ----*/

.pay-amount-enter {
    display: flex;
    justify-content: space-between;
    border: 1px solid darkgray;
    padding: 10px;
    align-items: center;
    border-radius: 5px 5px 0 0;
}
.enter-amount-price {
    border: 1px solid darkgray;
    padding: 3px 15px;
    border-radius: 5px;
}
.enter-amount-price.price-big-two {
    border: 0;
}
.pay-amount-enter.border-btt {
    border-radius: 0 0 5px 5px;
}
.pay-amount {
    margin-bottom: 25px;
}
.pay-amount-enter.border-none {
    border-radius: 0;
}
.invoice {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.invoice button {
    background: var(--thm-color-one);
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
}
.icon-order i {
    background: var(--thm-color-one);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.reward {
    display: flex;
}
.supercoin span {
    color: #000;
}
span.icon-order {
    color: #000;
}
.order-detail p {
    color: #000;
}
.order-box {
    border: 2px solid #ededed;
    border-radius: 5px;
    margin-bottom: 30px;
}
.order-detail {
    padding: 25px 25px;
    align-items: center;
}
.order-box-border{
    border-right: 1px solid #ededed;
}
.order-brass h6 {
    margin-bottom: 0;
}
.order-brass  {
    padding-left: 15px;
}
.review-rate p {
    margin-bottom: 0;
    color: var(--thm-color-one);
}
.review-rate {
    margin-top: 20px;
}

.progressbar {
  counter-reset: step;
}
.progressbar li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    width: 23.33%;
    position: relative;
    text-align: center;
    cursor: pointer;
}
.progressbar li:before {
    /* content: counter(step); */
    /* position: absolute; */
    content: '';
/*    counter-increment: step;*/
    width: 20px;
    height: 20px;
    line-height: 7px;
    border: 11px solid var(--thm-color-one);
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background-color: #fff;
}
.progressbar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--thm-color-one);
    top: 10px;
    left: -50%;
    z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: var(--thm-color-one);
}
.progressbar li.active:before {
    border-color: var(--thm-color-one);
}
.progressbar li.active + li:after {
  background-color: var(--thm-color-one);
}
.fgdfg {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.order-detaildf h6 {
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 32px;
}
.counter-list {
    display: flex;
    justify-content: space-between;
}
.counter-list p {
    max-width: 175px;
    font-size: 14px;
}
p.policy-perra {
    padding: 30px 20px;
}


/*---- payment  end----*/


/*---- oeder-list start ----*/

.search-box input {
    width: 85%;
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid #ededed;
    position: relative;
}
.search-box {
    position: relative;
    text-align: center;
}

.search-box span {
    position: absolute;
    right: 7%;
    top: 0px;
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 0 5px 5px 0;
    padding: 6px 15px;
    border: 1px solid var(--thm-color-one);
}
.search-box i {
    padding-right: 10px;
}
.order-list-filter-list {
    padding-bottom: 20px;
}
.order-item-delivered td {
    border: 0;
}
.order-item-delivered {
    border: 1px solid var(--thm-border);
    text-align: start;
}

.order-item-delivered td h6 {
    margin-bottom: 0;
}
.order-list-deliver {
    text-align: end;
    padding-right: 25px;
}
.order-price {
    text-align: center;
    color: #000;
    font-weight: 600;
}

.table-grouph table {
    margin-top: 30px;
}

/*---- oeder-list  end----*/

/*---- my account  strat----*/

.account-image {
    display: flex;
    align-items: center;
}
.account-image-name h6 {
    margin-bottom: 0;
}
.account-image-name {
    padding-left: 20px;
}
.jhon-doe {
    position: relative;
}
.jhon-doe i {
    position: absolute;
    bottom: 0;
    right: 8%;
    background: var(--thm-color-one);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.linked-account h6 {
    margin-bottom: 0;
}
.google-sign {
    display: flex;
    justify-content: space-between;
}
.google-image h6 {
    margin-bottom: 0;
}
.google-image p {
    margin-bottom: 0;
}
.account-left-details {
    margin-bottom: 15px;
}
.account-left-details span {
    padding-left: 6px;
}
.account-left {
    position: relative;
    margin-bottom: 50px;
}
.account-left:before {
    position: absolute;
    content: '';
    top: 0;
    /* left: 0; */
    right: 50px;
    bottom: 0;
    width: 1px;
    height: 140vh;
    background: #f4f4f4;
    z-index: 1;
}
.account-left:after {
    position: absolute;
    content: '';
    top: 38px;
    right: 48px;
    bottom: 0;
    width: 4px;
    height: 55px;
    background: var(--thm-color-one);
    z-index: 2;
}


/*---- my account  end----*/

/*-----paly-btn start---------*/

.modal-header .btn-close {
    /* background: #fff; */
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #fff;
    color: #fff;
    /* margin: 0; */
    position: absolute;
    right: 18px;
    top: 24px;
    z-index: 1;
}
.modal-content {
    background-color: transparent;
    border: 0px solid rgba(0,0,0,.2);
}
.modal-header {
    border-bottom: 0px solid #dee2e6;
    padding: 0;
}
.modal-dialog {
    max-width: 501px;
    margin: 8.75rem auto;
}

 .container-as {
     position: absolute;
     top: 45%;
     left: 25%;
     transform: translate(-50%, -50%);
     z-index: 0;
}

  .container-as a {
    text-decoration: none;
    /* background-image: linear-gradient(to right, #6400a4, #5e07b5, #5411c6, #411bd8, #1225eb); */
    color: #b77b50;
    border-radius: 50%;
    background: #fff;
    width: 80px;
    position: relative;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.container-as a::after {
            position: absolute;
            content: '';
            bottom: -7px;
            top: -7px;
            left: -7px;
            right: -7px;
            background-color: transparent;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0px;
            opacity: 1;
            transform-origin: center;
            animation: anim 800ms linear infinite;
        }

.container-as a::before {
            position: absolute;
            content: '';
            bottom: -7px;
            top: -7px;
            left: -7px;
            right: -7px;
            background-color: transparent;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0px;
            opacity: 0.8;
            transform-origin: center;
            animation: anim 800ms linear 400ms infinite;
        }

        @keyframes anim {
            from {
                margin: 0px;
                opacity: 1;
            }

            to {
                margin: -15px;
                opacity: 0;
            }
        }
.feture-image img {
    width: 100%;
    height: 100%;
    animation-name: rotate;
    animation-timing-function: linear;
    transform-origin: top left;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-direction: alternate;

}

@keyframes rotate {
  from {
        transform: translateX(-10%);
    }
    to {
        transform: translateX(10%);
    }

}

.P-0 {
    padding: 0;
}

/*---------------------------*/

.wave:before {
    background-image: url(../images/wave1.png);
    position: absolute;
    content: '';
    left: 0;
    background-size: contain;
    width: 6400px;
    height: 50px;
}


.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.wave {
  background: url(../images/wave1.png) repeat-x;
  position: absolute;
  top: -70px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%,
    100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
.endWave{
    display:none;
}


/*------------animations end------------------*/

.value-display {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="62" fill="none"><path fill="currentColor" d="M27.3 27.3C25 29.6 17 35.8 17 43v3c0 3 2.5 5 3.2 5.8a6 6 0 1 1-8.5 0C12.6 51 15 49 15 46v-3c0-7.2-8-13.4-10.3-15.7A16 16 0 0 1 16 0a16 16 0 0 1 11.3 27.3z"/><circle cx="16" cy="56" r="1" fill="%235D509E"/></svg>') top center no-repeat;
        position: absolute;
        box-sizing: border-box;
        left: var(--value-percent, 0%);
        bottom: calc(var(--element-height) / 2 - var(--thumb-size) / 2);
        width: 32px;
        height: 62px;
        text-align: center;
        padding: 8px 3px 0;
        margin: 0 0 0 -16px;
        filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        transform-origin: 50% 90%;
        opacity: 0.0001;
        transform: scale(.2);
        color: #fff;
        font: inherit;
        font-size: calc(100% - var(--value-width, 3) / 5 * .2em);
        text-overflow: clip;
        text-shadow: 0 -.5px 0 rgba(0,0,0,0.4);
        transition: all 200ms ease;
        transition-property: opacity, transform;
        will-change: transform;
        pointer-events: none;
        overflow: hidden;
      }

      range-slider.touch-active .thumb-wrapper .value-display {
        opacity: 1;
        transform: scale(1);
      }

      range-slider {
  --element-height: 24px;
  --track-height: 3px;
  --thumb-size: 16px;

  position: relative;
  display: flex;
  align-items: center;
  height: var(--element-height);
  width: 100%;
  min-width: 130px;
  margin: 2px;
  overflow: visible;
  cursor: pointer;

  /* Without this prop capture pointer events will not work on touch devices */
  touch-action: none;
}

range-slider:focus {
  outline: 0;
}

range-slider[disabled] {
  filter: grayscale(1);
  opacity: 0.8;
}

/* Track */
range-slider::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--track-height);
  border-radius: calc(var(--track-height) / 2);
  background: linear-gradient(#6221ea, #6221ea) 0/ var(--value-percent, 0%) 100% no-repeat #c6afe5;
}

range-slider:focus .thumb {
  box-shadow: 0 0 0 0.3em rgba(98, 33, 234, .2);
}

range-slider.touch-active .thumb-wrapper .thumb {
  box-shadow: none;
  transform: scale(1.5);
}

.thumb {
  background: #6221ea;
  border-radius: 50%;
  width: var(--thumb-size);
  height: var(--thumb-size);
  position: absolute;
  bottom: calc(var(--element-height) / 2 - var(--thumb-size) / 2);
  left: var(--value-percent, 0%);
  margin-left: calc(var(--thumb-size) / 2 * -1);
  transition: transform 200ms ease;
  will-change: transform;
  pointer-events: none;
}

.thumb-wrapper {
  position: absolute;
  left: calc(var(--thumb-size) / 2);
  right: calc(var(--thumb-size) / 2);
  bottom: 0;
  height: 0;
  overflow: visible;
}

output {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    color: var(--thm-color-one);
}

.range-slider.project {
    position: relative;
    padding-top: 30px;
}