
/* Buttons */
button,
input[type=reset],
input[type="button"],
input[type="submit"],
.sigma_btn {
    font-family: iranyekanLight;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    background-color: #c72f90;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 17px 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: uppercase;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 24px rgba(0, 0, 0, .1);
}

button i,
input[type=reset] i,
input[type="button"] i,
input[type="submit"] i,
.sigma_btn i {
  margin: 0 0 0 10px;
  color: #fff;
  z-index: 1;
}

.btn-rounded button,
.btn-rounded input[type=reset],
.btn-rounded input[type="button"],
.btn-rounded input[type="submit"],
.btn-rounded .sigma_btn,
.rounded-border input[type="number"],
.rounded-border input[type="text"],
.rounded-border input[type="email"],
.rounded-border input[type="password"],
.rounded-border input[type="tel"],
.rounded-border input[type="url"],
.rounded-border input[type="search"],
.rounded-border select,
.rounded-border textarea,
.rounded-border .form-control {
  border-radius: 6px;
}

.btn-pill button,
.btn-pill input[type=reset],
.btn-pill input[type="button"],
.btn-pill input[type="submit"],
.btn-pill .sigma_btn,
.pill-border input[type="number"],
.pill-border input[type="text"],
.pill-border input[type="email"],
.pill-border input[type="password"],
.pill-border input[type="tel"],
.pill-border input[type="url"],
.pill-border input[type="search"],
.pill-border select,
.pill-border textarea,
.pill-border .form-control {
  border-radius: 25px;
}

.bottom-border input[type="number"],
.bottom-border input[type="text"],
.bottom-border input[type="email"],
.bottom-border input[type="password"],
.bottom-border input[type="tel"],
.bottom-border input[type="url"],
.bottom-border input[type="search"],
.bottom-border select,
.bottom-border textarea,
.bottom-border .form-control {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--thm-border);
  padding: 8px 0;
}

button:hover,
input[type=reset]:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.sigma_btn:hover,
button:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
.sigma_btn:focus {
  color: #fff;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .1);
  outline: none;
}

button.secondary,
input[type=reset].secondary,
input[type="button"].secondary,
input[type="submit"].secondary,
.sigma_btn.secondary {
  background-color: var(--thm-secondary);
}

button.secondary:hover,
input[type=reset].secondary:hover,
input[type="button"].secondary:hover,
input[type="submit"].secondary:hover,
.sigma_btn.secondary:hover,
button.secondary:focus,
input[type=reset].secondary:focus,
input[type="button"].secondary:focus,
input[type="submit"].secondary:focus,
.sigma_btn.secondary:focus {
  color: #fff;
}

button.tertiary,
input[type=reset].tertiary,
input[type="button"].tertiary,
input[type="submit"].tertiary,
.sigma_btn.tertiary {
  background-color: var(--thm-secondary-hover);
}

button.tertiary:hover,
input[type=reset].tertiary:hover,
input[type="button"].tertiary:hover,
input[type="submit"].tertiary:hover,
.sigma_btn.tertiary:hover,
button.tertiary:focus,
input[type=reset].tertiary:focus,
input[type="button"].tertiary:focus,
input[type="submit"].tertiary:focus,
.sigma_btn.tertiary:focus {
  color: #fff;
}

button.light,
input[type=reset].light,
input[type="button"].light,
input[type="submit"].light,
.sigma_btn.light {
  background-color: #fff;
  color: var(--thm-secondary);
}

button.light i,
input[type=reset].light i,
input[type="button"].light i,
input[type="submit"].light i,
.sigma_btn.light i {
  color: var(--thm-secondary);
}

button.light:hover,
input[type=reset].light:hover,
input[type="button"].light:hover,
input[type="submit"].light:hover,
.sigma_btn.light:hover,
button.light:focus,
input[type=reset].light:focus,
input[type="button"].light:focus,
input[type="submit"].light:focus,
.sigma_btn.light:focus {
  color: var(--thm-secondary);
}

/* btn-hover-styles */
/* Style 1 */
.btn-style-1 button:before,
.btn-style-1 input[type=reset]:before,
.btn-style-1 input[type="button"]:before,
.btn-style-1 input[type="submit"]:before,
.btn-style-1 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: calc(100% - 10px);
  border-radius: 0;
  background-color: var(--thm-base-hover);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s;
}

/* Style 2 */
.btn-style-2 button:before,
.btn-style-2 input[type=reset]:before,
.btn-style-2 input[type="button"]:before,
.btn-style-2 input[type="submit"]:before,
.btn-style-2 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}

/* Style 3 */
.btn-style-3 button:before,
.btn-style-3 input[type=reset]:before,
.btn-style-3 input[type="button"]:before,
.btn-style-3 input[type="submit"]:before,
.btn-style-3 .sigma_btn:before {
  content: "";
  position: absolute;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  width: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}

/* Style 4 */
.btn-style-4 button:before,
.btn-style-4 input[type=reset]:before,
.btn-style-4 input[type="button"]:before,
.btn-style-4 input[type="submit"]:before,
.btn-style-4 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}

/* Style 5 */
.btn-style-5 button:before,
.btn-style-5 input[type=reset]:before,
.btn-style-5 input[type="button"]:before,
.btn-style-5 input[type="submit"]:before,
.btn-style-5 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}

/* Style 6 */
.btn-style-6 button:before,
.btn-style-6 input[type=reset]:before,
.btn-style-6 input[type="button"]:before,
.btn-style-6 input[type="submit"]:before,
.btn-style-6 .sigma_btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -120px;
  bottom: -50px;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  z-index: -1;
  transition: 0.3s;
}

/* Style 7 */
.btn-style-7 button:before,
.btn-style-7 input[type=reset]:before,
.btn-style-7 input[type="button"]:before,
.btn-style-7 input[type="submit"]:before,
.btn-style-7 .sigma_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  background-color: var(--thm-base-hover);
  transform: scaleY(0);
  transform-origin: 50%;
  transition: 0.3s;
}

/* Style 8 */
.btn-style-8 button:before,
.btn-style-8 input[type=reset]:before,
.btn-style-8 input[type="button"]:before,
.btn-style-8 input[type="submit"]:before,
.btn-style-8 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 110%;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: skewX(-25deg);
  transition: 0.3s;
  z-index: -1;
  border-radius: 0;
  background-color: var(--thm-base-hover);
}

/* Style 9 */
.btn-style-9 button:before,
.btn-style-9 input[type=reset]:before,
.btn-style-9 input[type="button"]:before,
.btn-style-9 input[type="submit"]:before,
.btn-style-9 .sigma_btn:before {
  content: "";
  position: absolute;
  left: 90%;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: skewX(-25deg);
  transition: 0.3s;
  z-index: -1;
  border-radius: 0;
  background-color: var(--thm-base-hover);
}

/* for secondary btn */
button.secondary:before,
input[type=reset].secondary:before,
input[type="button"].secondary:before,
input[type="submit"].secondary:before,
.sigma_btn.secondary:before {
  background-color: var(--thm-secondary-hover);
}

/* for tertiary btn */
button.tertiary:before,
input[type=reset].tertiary:before,
input[type="button"].tertiary:before,
input[type="submit"].tertiary:before,
.sigma_btn.tertiary:before,
button.tertiary:before {
  background-color: #4224b1;
}

/* for light btn */
button.light:before,
input[type=reset].light:before,
input[type="button"].light:before,
input[type="submit"].light:before,
.sigma_btn.light:before {
  background-color: rgba(0, 0, 0, 0.1);
}

/* for buttons have rounded borders */
.btn-rounded button:before,
.btn-rounded input[type=reset]:before,
.btn-rounded input[type="button"]:before,
.btn-rounded input[type="submit"]:before,
.btn-rounded .sigma_btn:before {
  border-radius: 6px;
}

/* for pill button */
.btn-pill button:before,
.btn-pill input[type=reset]:before,
.btn-pill input[type="button"]:before,
.btn-pill input[type="submit"]:before,
.btn-pill .sigma_btn:before {
  border-radius: 25px;
}

.btn-style-1 button:hover:before,
.btn-style-1 input[type=reset]:hover:before,
.btn-style-1 input[type="button"]:hover:before,
.btn-style-1 input[type="submit"]:hover:before,
.btn-style-1 .sigma_btn:hover:before {
  opacity: 1;
  visibility: visible;
  width: calc(100% - 10px);
}

.btn-style-2 button:hover:before,
.btn-style-2 input[type=reset]:hover:before,
.btn-style-2 input[type="button"]:hover:before,
.btn-style-2 input[type="submit"]:hover:before,
.btn-style-2 .sigma_btn:hover:before {
  height: 100%;
}

.btn-style-3 button:hover:before,
.btn-style-3 input[type=reset]:hover:before,
.btn-style-3 input[type="button"]:hover:before,
.btn-style-3 input[type="submit"]:hover:before,
.btn-style-3 .sigma_btn:hover:before {
  width: 160%;
  height: 100%;
}

.btn-style-4 button:hover:before,
.btn-style-4 input[type=reset]:hover:before,
.btn-style-4 input[type="button"]:hover:before,
.btn-style-4 input[type="submit"]:hover:before,
.btn-style-4 .sigma_btn:hover:before {
  width: 100%;
}

.btn-style-5 button:hover:before,
.btn-style-5 input[type=reset]:hover:before,
.btn-style-5 input[type="button"]:hover:before,
.btn-style-5 input[type="submit"]:hover:before,
.btn-style-5 .sigma_btn:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.btn-style-6 button:hover:before,
.btn-style-6 input[type=reset]:hover:before,
.btn-style-6 input[type="button"]:hover:before,
.btn-style-6 input[type="submit"]:hover:before,
.btn-style-6 .sigma_btn:hover:before {
  right: 0;
  bottom: 0;
}

.btn-style-7 button:hover:before,
.btn-style-7 input[type=reset]:hover:before,
.btn-style-7 input[type="button"]:hover:before,
.btn-style-7 input[type="submit"]:hover:before,
.btn-style-7 .sigma_btn:hover:before {
  transform: scaleY(1);
}

.btn-style-8 button:hover:before,
.btn-style-8 input[type=reset]:hover:before,
.btn-style-8 input[type="button"]:hover:before,
.btn-style-8 input[type="submit"]:hover:before,
.btn-style-8 .sigma_btn:hover:before {
  left: 0%;
  transform: scale(1, 1);
}

.btn-style-9 button:hover:before,
.btn-style-9 input[type=reset]:hover:before,
.btn-style-9 input[type="button"]:hover:before,
.btn-style-9 input[type="submit"]:hover:before,
.btn-style-9 .sigma_btn:hover:before {
  left: 0%;
  transform: scale(1, 1);
}

button.mfp-close,
button.mfp-arrow{
  box-shadow: none;
}

button.mfp-close:before,
button.mfp-arrow:before,
button.close:before{
  content: none;
}

button.btn-sm,
input[type=reset].btn-sm,
input[type="button"].btn-sm,
input[type="submit"].btn-sm,
.sigma_btn.btn-sm {
  font-size: 14px;
  padding: 12px 20px;
  text-transform: capitalize;
}

button.btn-md,
input[type=reset].btn-md,
input[type="button"].btn-md,
input[type="submit"].btn-md,
.sigma_btn.btn-md {

}

button.btn-lg,
input[type=reset].btn-lg,
input[type="button"].btn-lg,
input[type="submit"].btn-lg,
.sigma_btn.btn-lg {

}

.btn-link {
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-link:hover {
  text-decoration: none;
  color: var(--thm-base-hover);
}

.btn-link i {
  transition: 0.3s;
  margin-left: 10px;
  font-size: 13px;
}

.btn-link:hover i {
  margin-left: 13px;
}

/* Inputs */
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea,
.form-control {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  font-size: 16px;
  color: #686a6f;
  font-weight: 400;
  padding: 14px 30px;
  letter-spacing: 0.1em;
  background-color: #f4f5f8;
  border: 1px solid var(--thm-border);
  border-radius: 0;
  transition: all 300ms ease;
  font-family: var(--thm-b-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 17px;
}

textarea {
  padding: 15px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group>i {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
}

i.show-password {
  cursor: pointer;
}

textarea {
  height: auto;
  resize: none;
  line-height: 1;
}

input[type="number"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #c72f90;
}

input[type="number"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #a5a5a5;
}

/*Checkboxes and radios*/
input[type="checkbox"],
input[type="radio"] {
  opacity: 0;
  position: absolute;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-weight: 400;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--thm-border);
  border-radius: 3px;
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 16px;
  outline: 0;
  -webkit-transition: background-color .2s ease-out;
  -o-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  width: 16px;
}

input[type="radio"]+label:before {
  border-radius: 50%;
}

input[type="checkbox"]+label:after,
input[type="radio"]+label:after {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 10px;
  height: 5px;
  content: " ";
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  transition: 0.3s;
}

input[type="radio"]+label:after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: #c72f90;
}

input[type=checkbox]:checked+label:before,
input[type=checkbox]:checked+label.switch-toggle:before {
  background-color: #c72f90;
  border-color: #c72f90;
}

input[type=checkbox]:checked+label:after,
input[type=radio]:checked+label:after {
  opacity: 1;
}

.custom-control{
  padding-left: 0;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
  background-color: #c72f90;
}
.custom-control-input:focus~.custom-control-label::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*Checkbox With Toggle Swich*/
input[type="checkbox"]+label.switch-toggle {
  padding-left: 70px;
}

input[type="checkbox"]+label.switch-toggle:before {
  border-radius: 16px;
  height: 30px;
  width: 60px;
  background-color: var(--thm-border);
}

input[type="checkbox"]+label.switch-toggle:after {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0;
  background-color: #fff;
  opacity: 1;
}

input[type=checkbox]:checked+label.switch-toggle:after {
  left: 36px;
}

/* Input Groups */
.input-group input[type="number"],
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"],
.input-group input[type="tel"],
.input-group input[type="url"],
.input-group input[type="search"],
.input-group select,
.input-group textarea,
.input-group .form-control {
  flex: 1 auto;
  width: 1%;
}

.input-group-prepend,
.input-group-append {
  margin: 0;
}

.input-group-append button i{
  margin: 0;
}

.input-group-prepend button,
.input-group-prepend input[type=reset],
.input-group-prepend input[type="button"],
.input-group-prepend input[type="submit"],
.input-group-prepend .sigma_btn,
.input-group-prepend button:before,
.input-group-prepend input[type=reset]:before,
.input-group-prepend input[type="button"]:before,
.input-group-prepend input[type="submit"]:before,
.input-group-prepend .sigma_btn:before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.input-group input[type="number"]:last-child,
.input-group input[type="text"]:last-child,
.input-group input[type="email"]:last-child,
.input-group input[type="password"]:last-child,
.input-group input[type="tel"]:last-child,
.input-group input[type="url"]:last-child,
.input-group input[type="search"]:last-child,
.input-group select:last-child,
.input-group textarea:last-child,
.input-group .form-control:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group input[type="number"]:not(:last-child),
.input-group input[type="text"]:not(:last-child),
.input-group input[type="email"]:not(:last-child),
.input-group input[type="password"]:not(:last-child),
.input-group input[type="tel"]:not(:last-child),
.input-group input[type="url"]:not(:last-child),
.input-group input[type="search"]:not(:last-child),
.input-group select:not(:last-child),
.input-group textarea:not(:last-child),
.input-group .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append button,
.input-group-append input[type=reset],
.input-group-append input[type="button"],
.input-group-append input[type="submit"],
.input-group-append .sigma_btn,
.input-group-append button:before,
.input-group-append input[type=reset]:before,
.input-group-append input[type="button"]:before,
.input-group-append input[type="submit"]:before,
.input-group-append .sigma_btn:before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none;
}

/* Colors &  background-colors */
.primary-color {
  color: #c72f90;
}

.secondary-color {
  color: var(--thm-secondary);
}

.tertiary-color {
  color: var(--thm-secondary-hover);
}

.light-bg {
  background-color: #f7f7f7;
}

.bg-white {
  background-color: #fff;
}

.bg-primary-1 {
  background-color: #c72f90;
}

.bg-secondary-1 {
  background-color: var(--thm-secondary);
}

.bg-tertiary {
  background-color: var(--thm-secondary-hover);
}

.bg-primary-light {
  background-color: var(--thm-base-hue);
}

.bg-secondary-light {
  background-color: #c8c8c8;
}

.bg-tertiary-light {
  background-color: #d4c8ff;
}

.bg-gray {
  background-color: #f8f8f8;
}

.twitter {
  background-color: rgb(44, 170, 225) !important;
  color: #fff;
}

.twitter:before {
  background-color: #2488b3 !important;
}

.facebook {
  background-color: rgb(59, 87, 157) !important;
  color: #fff;
}

.facebook:before {
  background-color: #273a6b !important;
}

.google {
  background-color: rgb(220, 74, 56) !important;
  color: #fff;
}

.google:before {
  background-color: #af1705 !important;
}

.youtube {
  background-color: rgb(229, 45, 39) !important;
  color: #fff;
}

.youtube:before {
  background-color: #b7140f !important;
}

/* Slick */
.slick-slide {
  position: relative;
  outline: none;
}

.slick-prev,
.slick-next {
  position: relative;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--thm-secondary);
  border: 0;
  padding: 0;
  outline: none;
  transition: 0.3s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background-color: #c72f90;
  color: #fff;
}

.slick-prev:before,
.slick-next:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

[class*="btn-style-"] .slick-prev::after,
[class*="btn-style-"] .slick-next::after {
  display: none;
}

[class*="btn-style-"] .slick-prev::before,
[class*="btn-style-"] .slick-next::before {
  content: "\f053";
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}

[class*="btn-style-"] .slick-prev:hover::before,
[class*="btn-style-"] .slick-next:hover::before{
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
}

[class*="btn-style-"] .slick-next::before,
.slick-next:before {
  content: "\f054";
}

.slick-dots li:focus,
.slick-dots li:hover,
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-dots li+li {
  margin-left: 10px;
}

.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
  border: 0;
  padding: 0;
}

[class*="btn-style-"] .slick-dots li button::after,
[class*="btn-style-"] .slick-dots li button::before {
  display: none;
}

.slick-dots .slick-active button {
  background-color: #c72f90;
}

/*--- custom arrows ---- */

.sigma_custom-arrows{
  display: flex;
  align-items: center;
}

.sigma_custom-arrows .slick-prev,
.sigma_custom-arrows .slick-next{
  background-color: #c72f90;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

.sigma_custom-arrows .slick-prev:hover,
.sigma_custom-arrows .slick-next:hover{
  background-color: var(--thm-base-hover);
}

.sigma_custom-arrows .slick-next{
  margin-left: 12px;
}
.sigma_aside {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  z-index: 99;
  background-color: #fff;
  transition: .3s;
  overflow-y: auto;
}

.sigma_aside-overlay.aside-trigger,
.sigma_aside:not(.sigma_aside-desktop) {
  display: none;
}

.sigma_aside .sigma_logo-wrapper {
  padding: 30px 15px;
}

    .sigma_aside .navbar-nav li a {
        display: flex;
        font-family: iranyekanLight;
        align-items: center;
        text-align:center;
        padding: 12px 15px;
        color: var(--thm-secondary);
        font-weight: 600;
        border-bottom: 1px solid var(--thm-border);
    }

.sigma_aside .navbar-nav li a:hover{
  color: #c72f90;
}

.sigma_aside .navbar-nav li.menu-item-has-children>a:after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f107";
  right: 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.sigma_aside .navbar-nav li .sub-menu {
  display: none;
}

.sigma_aside .navbar-nav li .sub-menu {
  background-color: #f8f8f8;
}

.sigma_aside-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .4);
}

.aside-open .sigma_aside {
  left: 0;
}

.aside-open .sigma_aside:not(.sigma_aside-desktop)+.sigma_aside-overlay,
.aside-right-open .sigma_aside-desktop+.sigma_aside-overlay {
  opacity: 1;
  visibility: visible;
}

.sigma_aside.sigma_aside-desktop {
  right: -420px;
  width: 420px;
  left: auto;
}
.sigma_aside.sigma_aside-desktop .sidebar{
  padding: 30px;
}

.aside-right-open .sigma_aside.sigma_aside-desktop {
  right: 0;
}

/*-------------- Subheader --------------------------- */
.sigma_subheader {
  padding: 200px 0;
  position: relative;
}

.sigma_subheader .container {
  position: relative;
}

.sigma_subheader .sigma_subheader-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.sigma_subheader .sigma_subheader-inner h1 {
  color: #fff;
  font-size: 72px;
  margin-bottom: 8px;
}

.sigma_subheader .sigma_subheader-inner p {
  max-width: 550px;
  color: #999b9f;
}

    .sigma_subheader .breadcrumb {
        background-color: transparent;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
        font-family: iranyekanLight;
    }

.sigma_subheader .breadcrumb li {
  color: #fff;
  font-size: 16px;
  padding: 0;
}

    .sigma_subheader .breadcrumb li a {
        color: #c72f90;
        font-weight: 600;
        display: inline-block;
        font-family: iranyekanLight;
    }

.sigma_subheader .breadcrumb li a:hover {
  text-decoration: none;
  color: var(--thm-base-hover);
}

.sigma_subheader .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  padding: 0 12px;
}

.sigma_subheader .breadcrumb li,
.sigma_subheader .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* Style 2 */
.sigma_subheader.style-3 .sigma_subheader-inner,
.sigma_subheader.style-2 .sigma_subheader-inner,
.sigma_subheader.style-11 .sigma_subheader-inner {
  text-align: left;
  margin: 0;
}

.sigma_subheader.style-2 .breadcrumb,
.sigma_subheader.style-11 .breadcrumb {
  justify-content: flex-start;
}

/* Style 3 */
.sigma_subheader.style-3 {
  padding: 0;
}

.sigma_subheader.style-3 .sigma_subheader-inner {
  padding: 140px 0;
}

.sigma_subheader.style-3 .breadcrumb {
  position: absolute;
  bottom: 0;
  right: 15px;
  background-color: #fff;
  border-radius: 0;
  padding: 20px;
}

.sigma_subheader.style-3 .breadcrumb li,
.sigma_subheader.style-3 .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: var(--thm-b-text);
}

/* Style 4 */
.sigma_subheader.style-4 .sigma_subheader-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 185px;
  background-color: transparent;
}

.sigma_subheader.style-4 .sigma_subheader-shape svg {
  width: calc(125% + 1.3px);
  height: 185px;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.sigma_subheader.style-4 .sigma_subheader-shape svg path {
  fill: #ffffff;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

/* Style 5 */
.sigma_subheader.style-5::after {
  content: '';
  background-color: #fff;
  display: block;
  width: 120%;
  height: 70px;
  left: 0;
  position: absolute;
  right: 0;
  bottom: -28px;
  transform: rotate(-2deg);
}

/* Style 6 */
.sigma_subheader.style-6 {
  padding: 60px 0;
}

.sigma_subheader.style-6 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_subheader.style-6 .sigma_subheader-inner {
  margin: 0;
  text-align: left;
}

.sigma_subheader.style-6 .sigma_subheader-inner h1 {
  font-size: 38px;
}

/* Style 7 */
.sigma_subheader.style-9,
.sigma_subheader.style-8,
.sigma_subheader.style-7 {
  padding: 280px 0 40px;
}

.sigma_subheader.style-9 .sigma_subheader-inner,
.sigma_subheader.style-8 .sigma_subheader-inner,
.sigma_subheader.style-7 .sigma_subheader-inner {
  margin: 0;
  text-align: left;
}

.sigma_subheader.style-9 .breadcrumb,
.sigma_subheader.style-8 .breadcrumb,
.sigma_subheader.style-7 .breadcrumb {
  justify-content: flex-start;
}

.sigma_subheader.style-9::before,
.sigma_subheader.style-8::before,
.sigma_subheader.style-7::before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
}

.sigma_subheader.style-8 .sigma_stroke-text {
  text-align: left;
  opacity: 1;
  font-style: italic;
}

.sigma_subheader.style-9 {
  border-bottom: 2px solid var(--thm-border);
}

.sigma_subheader.style-9 .sigma_subheader-inner h1 {
  color: var(--thm-secondary);
}

/* Style 10 */
.sigma_subheader.style-10 {
  padding: 40px 0;
}

.sigma_subheader.style-10 .sigma_subheader-inner {
  text-align: left;
  margin: 0;
}

.sigma_subheader.style-10 .sigma_subheader-inner h1 {
  color: var(--thm-secondary);
  display: inline-block;
  position: relative;
}

.sigma_subheader.style-10 .sigma_subheader-inner h1::after,
.sigma_subheader.style-10 .sigma_subheader-inner h1::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--thm-secondary);
  width: 100vw;
  height: 20px;
}

.sigma_subheader.style-10 .sigma_subheader-inner h1::after {
  margin-left: 20px;
}

.sigma_subheader.style-10 .sigma_subheader-inner h1::before {
  right: 100%;
  margin-right: 20px;
}

/* Style 11 */

.sigma_subheader.style-11 .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
  content: "|";
}



/*-------------- Video Icon & Ratings General style --------------------------- */
.sigma_video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  color: #c72f90;
  font-size: 20px;
  transition: 0.3s;
}

.sigma_video-btn:hover {
  background-color: #c72f90;
  color: #fff;
}

.sigma_video-btn:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.sigma_video-btn:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
}

.sigma_rating-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sigma_rating-wrapper span{
  margin-left: 10px;
  font-size: 13px;
}

.sigma_rating {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 14px;
}

.sigma_rating i {
  display: inline-block;
  color: #fcb71b;
}

.sigma_rating i+i {
  padding-left: 4px;
}

/*-------------- Info Box --------------------------- */
/* Info Box style 1 */
.sigma_info {
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  padding: 40px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.sigma_info .sigma_info-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.sigma_info .sigma_info-title .sigma_info-icon,
.sigma_info.style-21 .sigma_info-description .sigma_info-icon{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  margin-right: 20px;
}

.sigma_info .sigma_info-title .sigma_info-icon i {
  font-size: 36px;
  line-height: 0;
}

.sigma_info .sigma_info-title h5 {
  margin: 0;
  flex: 1;
  font-size: 20px;
}

.sigma_info .sigma_info-description p {
  margin-bottom: 0;
}

/* Info Box style 2, 3 , 4 & 7 */
.sigma_info.style-2 {
  padding: 30px;
  background-color: #fff;
}

.sigma_info.style-2 .sigma_info-title,
.sigma_info.style-3 .sigma_info-title,
.sigma_info.style-4 .sigma_info-title,
.sigma_info.style-6 .sigma_info-title,
.sigma_info.style-7 .sigma_info-title,
.sigma_info.style-8 .sigma_info-title,
.sigma_info.style-11 .sigma_info-title,
.sigma_info.style-19 .sigma_info-title,
.sigma_info.style-12 .sigma_info-title,
.sigma_info.style-13 .sigma_info-title,
.sigma_info.style-16 .sigma_info-title,
.sigma_info.style-22 .sigma_info-title {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  max-width: 100%;
}

.sigma_info.style-2 .sigma_info-title .sigma_info-icon {
  border-radius: 8px
}

.sigma_info.style-2 .sigma_info-title .sigma_info-icon i{
  font-size: 40px;
  line-height: 0;
}

.sigma_info.style-2 .sigma_info-title .sigma_info-icon,
.sigma_info.style-3 .sigma_info-title .sigma_info-icon,
.sigma_info.style-4 .sigma_info-title .sigma_info-icon,
.sigma_info.style-7 .sigma_info-title .sigma_info-icon,
.sigma_info.style-11 .sigma_info-title .sigma_info-icon,
.sigma_info.style-19 .sigma_info-title .sigma_info-icon,
.sigma_info.style-12 .sigma_info-title .sigma_info-icon,
.sigma_info.style-13 .sigma_info-title .sigma_info-icon,
.sigma_info.style-16 .sigma_info-title .sigma_info-icon,
.sigma_info.style-22 .sigma_info-title .sigma_info-icon {
  margin-right: 0;
}

.sigma_info.style-2 .sigma_info-title h5,
.sigma_info.style-7 .sigma_info-title h5,
.sigma_info.style-11 .sigma_info-title h5,
.sigma_info.style-19 .sigma_info-title h5,
.sigma_info.style-12 .sigma_info-title h5,
.sigma_info.style-13 .sigma_info-title h5 {
  margin: 25px 0 14px;
}

.sigma_info.style-2 .sigma_btn,
.sigma_info.style-4 .sigma_btn,
.sigma_info.style-11 .sigma_btn,
.sigma_info.style-13 .sigma_btn,
.sigma_info.style-2 .btn-link,
.sigma_info.style-4 .btn-link,
.sigma_info.style-11 .btn-link,
.sigma_info.style-13 .btn-link {
  margin-top: 15px;
}

/* Info Box style 3 & 6 */
.sigma_info.style-3,
.sigma_info.style-5,
.sigma_info.style-6,
.sigma_info.style-8,
.sigma_info.style-16 {
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.sigma_info.style-3 .sigma_info-title,
.sigma_info.style-6 .sigma_info-title,
.sigma_info.style-8 .sigma_info-title,
.sigma_info.style-16 .sigma_info-title {
  align-items: center;
}

.sigma_info.style-3 .sigma_info-title .sigma_info-icon,
.sigma_info.style-6 .sigma_info-title .sigma_info-icon,
.sigma_info.style-8 .sigma_info-title .sigma_info-icon,
.sigma_info.style-16 .sigma_info-title .sigma_info-icon {
  border-radius: 6px;
  background-color: #c72f90;
  margin-bottom: 30px;
  margin-right: 0;
  color: #fff;
}

.sigma_info.style-3 .sigma_info-title h5,
.sigma_info.style-16 .sigma_info-title h5 {
  margin: 0 0 12px;
}

.sigma_info.style-3 a {
  width: 50px;
  height: 50px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-text);
  border-radius: 50%;
  margin: 30px auto 0;
}

.sigma_info.style-3 a:hover {
  background-color: #c72f90;
  color: #fff;
}

/* Info Box style 4 */
.sigma_info.style-4 {
  text-align: center;
  margin-top: 40px;
  background-color: #fff;
  padding: 10px 10px 0;
}

.sigma_info.style-4 .sigma_info-title {
  height: 200px;
  border-radius: 6px;
  margin: -50px auto 0;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}

.sigma_info.style-4 .sigma_info-title .shape-1 {
  position: absolute;
  left: -10px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: 1s;
}

.sigma_info.style-4 .sigma_info-title .shape-2 {
  position: absolute;
  right: -16px;
  bottom: 36px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(135deg);
  transition: 1s;
}

.sigma_info.style-4 .sigma_info-title:hover .shape-1 {
  top: 40px;
}

.sigma_info.style-4 .sigma_info-title:hover .shape-2 {
  bottom: 46px;
}

.sigma_info.style-4 .sigma_info-title .shape-1.round,
.sigma_info.style-4 .sigma_info-title .shape-2.round {
  border-radius: 50%;
}

.sigma_info.style-4 .sigma_info-title .sigma_info-icon {
  font-size: 38px;
  margin-right: 0;
}

.sigma_info.style-4 .sigma_info-title .sigma_info-icon i{
  font-size: 56px;
  line-height: 0;
}

.sigma_info.style-4 .sigma_info-description {
  padding: 40px 20px;
}

.sigma_info.style-4 .sigma_info-description h5,
.sigma_info.style-5 .sigma_info-description h5 {
  margin-bottom: 15px;
}

.sigma_info.style-4 .sigma_info-description p {
  margin-bottom: 0;
}

.sigma_info.style-4 .btn-link {
  justify-content: center;
  margin-top: 15px;
  font-weight: 400;
}

/* Info Box style 5 */
.sigma_info.style-5 {
  background-color: #f8f8f8;
  border-radius: 0;
}

.sigma_info.style-5 .sigma_info-thumb,
.sigma_info.style-21 .sigma_info-thumb,
.sigma_info.style-21 .sigma_info-thumb {
  overflow: hidden;
  position: relative;
  display: block;
}

.sigma_info.style-5 .sigma_info-thumb img,
.sigma_info.style-21 .sigma_info-thumb img,
.sigma_info.style-21 .sigma_info-thumb img {
  transition: 0.3s;
  width: 100%;
}

.sigma_info.style-5 .sigma_info-thumb:hover img,
.sigma_info.style-21 .sigma_info-thumb:hover img,
.sigma_info.style-21 .sigma_info-thumb:hover img {
  transform: scale(1.1);
}

.sigma_info.style-5 .sigma_info-description {
  padding: 30px;
}

/* Info Box style 6 */
.sigma_info.style-6 {
  background-color: transparent;
  padding: 20px 20px 0;
}

.sigma_info.style-6 .sigma_info-title .sigma_info-icon,
.sigma_info.style-8 .sigma_info-title .sigma_info-icon {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  color: #c72f90;
  border: 3px solid #c72f90;
  font-size: 30px;
  z-index: 1;
}

.sigma_info.style-6 .sigma_info-title span.text,
.sigma_info.style-8 .sigma_info-title span.text {
  position: absolute;
  display: block;
  top: -52px;
  right: -12px;
  font-size: 120px;
  color: rgb(51 51 51 / 19%);
}

.sigma_info.style-6 .sigma_info-title h5 {
  margin-bottom: 22px;
}

/* Info Box style 7 */
.sigma_info.style-7 {
  padding: 40px 30px;
  overflow: hidden;
}

.sigma_info.style-7 .sigma_info-title .sigma_info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.sigma_info.style-7 .shape-1,
.sigma_info.style-7 .shape-2 {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: none;
  background-color: rgb(255 255 255 / 13%);
  transition: .3s;
}

.sigma_info.style-7 .shape-2,
.sigma_info.style-7.bg-white .shape-2 {
  right: -22px;
  top: auto;
  bottom: 10px;
}

.sigma_info.style-7.bg-white .shape-1,
.sigma_info.style-7.bg-white .shape-2 {
  background-color: rgb(0 0 0 / 13%);
}

.sigma_info.style-7:hover .shape-1 {
  top: -40px;
}

.sigma_info.style-7:hover .shape-2 {
  bottom: 20px;
}

/* Info Box style 8 */
.sigma_info.style-8 {
  background-color: #fff;
  padding: 50px;
}

.sigma_info.style-8 .sigma_info-title .sigma_info-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: var(--thm-secondary);
  border: 2px dashed var(--thm-border);
  font-size: 20px;
  position: relative;
  margin-bottom: 40px;
}

.sigma_info.style-8 .sigma_info-title h5 {
  line-height: 1.6;
}

.sigma_info.style-8 .sigma_info-title .sigma_info-icon span.text {
  position: absolute;
  top: -6px;
  left: -15px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #c72f90;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(var(--thm-base-rgb), .5);
}

/*-------------- Features --------------------------- */

/* Info Box style 9 */
.sigma_info.style-9 {
  background-color: #fff;
  box-shadow: none;
  border: 1px solid var(--thm-border);
  border-radius: 25px;
  transition: .3s;
  padding: 30px;
}

.sigma_info.style-9 * {
  transition: .3s;
}

.sigma_info.style-9 .sigma_info-title {
  display: flex;
  align-items: center;
}

.sigma_info.style-9 .sigma_info-title .sigma_info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #c72f90;
  box-shadow: 0px 0 40px 5px rgba(0, 0, 0, .03);
  border-radius: 50%;
  margin-right: 20px;
}

.sigma_info.style-9 .sigma_info-title .sigma_info-icon i {
  font-size: 16px;
}

.sigma_info.style-9 .sigma_info-title p {
  margin: 0;
}

.sigma_info.style-9 .sigma_info-description {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_info.style-9 .sigma_info-description i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--thm-secondary);
  color: #fff;
  border-radius: 50%;
  margin: 0;
}

.sigma_info.style-9:hover {
  background-color: var(--thm-secondary);
}

.sigma_info.style-9:hover * {
  color: #fff;
}

.sigma_info.style-9:hover .sigma_info-title .sigma_info-icon {
  background-color: #c72f90;
}

.sigma_info.style-9:hover .sigma_info-description i {
  background-color: #c72f90;
}

/* info box style 10 */
.sigma_info.style-10,
.sigma_info.style-15,
.sigma_info.style-17,
.sigma_info.style-18,
.sigma_info.style-20,
.sigma_info.style-24 {
  box-shadow: none;
  padding: 0;
  display: flex;
}

.sigma_info.style-10 .sigma_info-title,
.sigma_info.style-15 .sigma_info-title,
.sigma_info.style-17 .sigma_info-title,
.sigma_info.style-18 .sigma_info-title,
.sigma_info.style-20 .sigma_info-title,
.sigma_info.style-24 .sigma_info-title {
  align-items: flex-start;
  margin-bottom: 0;
}

.sigma_info.style-10 .sigma_info-title .sigma_info-icon i {
  font-size: 40px;
  line-height: 0;
}

.sigma_info.style-10 .sigma_info-description,
.sigma_info.style-15 .sigma_info-description,
.sigma_info.style-17 .sigma_info-description,
.sigma_info.style-18 .sigma_info-description,
.sigma_info.style-20 .sigma_info-description,
.sigma_info.style-24 .sigma_info-description {
  flex: 1;
}

.sigma_info.style-10 .sigma_info-description h5,
.sigma_info.style-15 .sigma_info-description h5,
.sigma_info.style-20 .sigma_info-description h5 {
  margin: 0 0 14px;
  font-size: 20px;
}

.sigma_info.style-10,
.sigma_info.style-11,
.sigma_info.style-15,
.sigma_info.style-19,
.sigma_info.style-20,
.sigma_info.style-22 {
  border: 1px solid var(--thm-border);
  padding: 30px;
  transition: .3s;
}

.sigma_info.style-10:hover,
.sigma_info.style-11:hover {
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, .03);
  border-color: transparent;
}

.sigma_info.style-10 .sigma_info-title .sigma_info-icon,
.sigma_features.style-4 .sigma_info-title .sigma_info-icon,
.sigma_features.style-17 .sigma_info-title .sigma_info-icon,
.sigma_features.style-18 .sigma_info-title .sigma_info-icon {
  border: 0;
  border-radius: 6px;
}

/* info box style 11 */
.sigma_info.style-11,
.sigma_info.style-12,
.sigma_info.style-13 {
  box-shadow: none;
  text-align: center;
}

.sigma_info.style-11 .sigma_info-title,
.sigma_info.style-13 .sigma_info-title {
  align-items: center;
}

.sigma_info.style-11 .sigma_info-title .sigma_info-icon,
.sigma_info.style-12 .sigma_info-title .sigma_info-icon,
.sigma_info.style-13 .sigma_info-title .sigma_info-icon,
.sigma_info.style-19 .sigma_info-title .sigma_info-icon,
.sigma_info.style-22 .sigma_info-title .sigma_info-icon {
  border-radius: 6px;
}

/* info box style 12 */
.sigma_info.style-12 {
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
  border-radius: 0;
  text-align: left;
}

/* info box style 13 */
.sigma_info.style-13 {
  padding: 0;
  margin: 0;
}

.sigma_info.style-13 .sigma_info-description p {
  max-width: 700px;
  margin: 0 auto;
}

.sigma_info.style-13 .sigma_info-description {
  margin-bottom: 15px;
}

.sigma_info-slider .slick-dots,
.sigma_info-image-slider-2 .slick-dots {
  margin-top: 20px;
}

.sigma_info-slider .slick-dots li button,
.sigma_info-image-slider-2 .slick-dots li button {
  background-color: var(--thm-border);
}

.sigma_info-slider .slick-dots .slick-active button,
.sigma_info-image-slider-2 .slick-dots .slick-active button {
  background-color: #c72f90;
}

.sigma_info-image-slider .slick-prev,
.sigma_info-image-slider .slick-next,
.sigma_info-image-slider-2 .slick-prev,
.sigma_info-image-slider-2 .slick-next {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c72f90;
  color: #fff;
}

.sigma_info-image-slider .slick-prev:hover,
.sigma_info-image-slider .slick-next:hover,
.sigma_info-image-slider-2 .slick-prev:hover,
.sigma_info-image-slider-2 .slick-next:hover {
  background-color: var(--thm-base-hover);
}

.sigma_info-image-slider .slick-next,
.sigma_info-image-slider-2 .slick-next {
  right: 10px;
  left: auto;
}

.sigma_info-image-slider:hover .slick-prev,
.sigma_info-image-slider-2:hover .slick-prev {
  left: 20px;
  opacity: 1;
  visibility: visible;
}

.sigma_info-image-slider:hover .slick-next,
.sigma_info-image-slider-2:hover .slick-next {
  right: 20px;
  opacity: 1;
  visibility: visible;
}

.sigma_info-image.has-width {
  width: calc(1140px - 20%);
}

hr {
  border-top: 1px solid var(--thm-border);
  margin: 30px 0;
}

/* info box style 14 */
.sigma_info.style-14 {
  background-color: var(--thm-secondary);
  text-align: center;
  transition: .3s;
}

.sigma_info.style-14 .sigma_info-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  color: #313131;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  font-size: 40px;
  line-height: 1;
  justify-content: center;
}

.sigma_info.style-14 h5 {
  color: #fff;
}

.sigma_info.style-14 p {
  color: #999b9f;
}

.sigma_info.style-14 .sigma_icon-block-content {
  margin-top: 20px;
}

.sigma_info.style-14 .sigma_icon-block-content i {
  width: 50px;
  height: 50px;
  color: #999b9f;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #999b9f;
  transition: .3s;
}

.sigma_info.style-14::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .1);
  width: 120px;
  height: 120px;
  transition: .3s;
}

.sigma_info.style-14:hover {
  transform: translateY(-5px);
}

.sigma_info.style-14:hover::before {
  width: 160px;
  height: 160px;
}

.sigma_info.style-14:hover .sigma_icon-block-content i {
  color: #c72f90;
  border-color: #fff;
  transform: rotate(45deg);
}

/* info box style 15 */

.sigma_info.style-15{
  border: 0;
}

.sigma_info.style-15 .sigma_info-title .sigma_info-icon{
  width: 40px;
  height: 40px;
}

/* info box style 16 */

.sigma_info.style-16 .sigma_info-title .sigma_info-icon{
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 4px solid rgb(225 225 225 / 24%);
    color: var(--thm-secondary);
    position: relative;
}

.sigma_info.style-16 .sigma_info-title .sigma_info-icon i{
  font-size: 36px;
}

.sigma_info.style-16 .sigma_info-title .sigma_info-icon span{
  width: 35px;
  height: 35px;
  background-color: #c72f90;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: -20px;
}

.sigma_info-image.style-16{
  position: relative;
  margin: -190px 0 100px;
}

.info-space{   /* Temporary Code for space */
  padding-bottom: 200px;
}

/* info box style 17 */

.sigma_info.style-17,
.sigma_info.style-18,
.sigma_info.style-24{
  background-color: #c72f90;
  margin-bottom: 0;
  border-radius: 0;
  padding: 35px 30px;
}

.sigma_info.style-17.with-hue{
  background-color: rgba(var(--thm-base-rgb), .8);
}

.sigma_info.style-17 .sigma_info-title .sigma_info-icon{
  width: auto;
  height: auto;
  color: #fff;
}
.sigma_info.style-17 .sigma_info-title .sigma_info-icon i,
.sigma_info.style-18 .sigma_info-title .sigma_info-icon i{
  font-size: 40px;
}

.sigma_info.style-17 .sigma_info-description h5 {
  margin: 0 0 10px;
}

.sigma_info.style-17 .sigma_info-description h5,
.sigma_info.style-17 .sigma_info-description p,
.sigma_info.style-18 .sigma_info-description p{
  color: #fff;
}

/* info box style 18 */

.sigma_info-wrapper.style-18,
.sigma_info-wrapper.style-24{
  display: flex;
  align-items: center;
  background-color: #252525;
  padding: 35px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sigma_info.style-18,
.sigma_info.style-24{
  flex: 0 0 33.3%;
  padding: 0;
  background-color: transparent;
}
.sigma_info.style-18 + .sigma_info.style-18,
.sigma_info.style-24 + .sigma_info.style-24{
  padding-left: 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}
.sigma_info.style-18 .sigma_info-title .sigma_info-icon,
.sigma_info.style-24 .sigma_info-title .sigma_info-icon{
  color: #c72f90;
  width: 50px;
  height: 50px;
}
.sigma_info.style-18 .sigma_info-title,
.sigma_info.style-24 .sigma_info-title{
  align-items: center;
}

/* info box style 19 */

.sigma_info.style-19,
.sigma_info.style-22{
  text-align: left;
  border: 0;
  margin-bottom: 60px;
}

.sigma_info.style-19 .sigma_info-title .sigma_info-icon{
  margin: -65px 0 0;
}

/* info box style 20 */

.sigma_info.style-20{
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sigma_info.style-20 .sigma_info-description h5 a,
.sigma_info.style-20 .sigma_info-description p{
  color: #fff;
}

.sigma_info.style-20 .sigma_info-description h5 a:hover{
  color: var(--thm-base-hover);
}
.sigma_info.style-20 .sigma_info-title{
  align-items: center;
}
.sigma_info.style-20 .sigma_info-title .sigma_info-icon{
  color: #c72f90;
}
.sigma_info.style-20 .sigma_info-title .sigma_info-icon i{
  font-size: 46px;
}

/* info box style 21 */

.sigma_info.style-21{
  text-align: center;
  border-radius: 0;
  padding: 50px 40px;
  overflow: hidden;
}

.sigma_info.style-21 .sigma_info-title{
  flex-direction: column;
  margin-bottom: 14px;
}

.sigma_info.style-21 .sigma_info-title .sigma_info-icon{
  width: auto;
  height: auto;
  background-color: transparent;
  color: #c72f90;
  margin-bottom: 26px;
  margin-right: 0;
}

.sigma_info.style-21 .sigma_info-title  h5{
  font-size: 20px;
}
.sigma_info.style-21 .sigma_info-title .sigma_info-icon i{
  font-size: 66px;
  line-height: 0;
}

.sigma_info.style-21 .absolute-icon{
  position: absolute;
  top: -28px;
  right: -28px;
  font-size: 140px;
  color: #fff;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
}

.sigma_info.style-21:hover{
  background-color: #c72f90;
  box-shadow: 0 0 40px 5px rgba(var(--thm-base-rgb), 0.2);
}

.sigma_info.style-21:hover .sigma_info-title h5,
.sigma_info.style-21:hover .sigma_info-description p,
.sigma_info.style-21:hover .sigma_info-title .sigma_info-icon{
  color: #fff;
}

.sigma_info.style-21:hover .absolute-icon{
  opacity: 0.2;
  visibility: visible;
}

.sigma_info.style-21.has-border{
  border: 2px solid var(--thm-border);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.sigma_info.style-21.has-border:hover{
  box-shadow: none;
  background-color: transparent;
}

.sigma_info.style-21.has-border .sigma_info-title .sigma_info-icon.secondary-color,
.sigma_info.style-21.has-border:hover .sigma_info-title .sigma_info-icon.secondary-color{
  color: var(--thm-secondary);
}
.sigma_info.style-21.has-border:hover .sigma_info-title h5{
  color: var(--thm-secondary);
}
.sigma_info.style-21.has-border:hover .sigma_info-title .sigma_info-icon{
  color: #c72f90;
}

/* info box style 22 */

.sigma_info.style-22{
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  padding: 30px 25px;
}

.sigma_info.style-22 .sigma_info-description{
  flex: 1;
}

.sigma_info.style-22 .sigma_info-title .sigma_info-icon{
  margin: 0 20px 0 0;
}

.sigma_info.style-22 .sigma_info-description h5{
  margin: 0 0 14px;
}

/* info box style 23 */

.sigma_info-wrapper.style-23{
  position: relative;
  padding: 0;
  background-color: transparent;
}

.sigma_info-wrapper.style-23:after{
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 44px;
width: calc(100% - 30px);
height: 1px;
z-index: -1;
background-color: var(--thm-border);
}

.sigma_info.style-23{
  padding: 0;
  box-shadow: none;
}

.sigma_info.style-23 .sigma_info-title{
  margin-bottom: 0;
  align-items: flex-start;
}

.sigma_info.style-23 .sigma_info-description h5{
  margin-bottom: 10px;
}
.sigma_info.style-23 .sigma_info-title .sigma_info-icon{
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
  color: #c72f90;
  margin-right: 28px;
}
.sigma_info.style-23 .sigma_info-title .sigma_info-icon i{
  font-size: 56px;
}

.sigma_info.style-23 .sigma_info-description .steps{
  font-size: 14px;
  display: block;
  font-weight: 600;
  color: #c72f90;
  margin: 10px 0 18px;
}

.sigma_info.style-23 .sigma_info-description .pulsive-dot{
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #c72f90;
  margin-left: 6px;
}
.sigma_info.style-23 .sigma_info-description .pulsive-dot:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #c72f90;
  opacity: 0.2;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
}


/* info box style 24 */

.sigma_info-wrapper.style-24{
  background-color: #fff;
  padding: 20px 50px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
  border-radius: 15px;
}

.sigma_info.style-24{
  padding: 10px 0;
}
.sigma_info.style-24 + .sigma_info.style-24{
  border-left-color: var(--thm-border);
  padding-left: 70px;
}

.sigma_info.style-24 .sigma_info-title .sigma_info-icon{
  border: 1px solid var(--thm-border);
  background-color: #fff;
}
.sigma_info.style-24 .sigma_info-title .sigma_info-icon i{
  font-size: 24px;
}

/* info box style 25 */

.sigma_info-has-image.style-25 .absolute-image{
 position: absolute;
 right: 0;
 top: 0;
 width: 38%;
 height: 100%;
 z-index: -1;
}

.sigma_info-wrapper.style-25{
  padding: 70px 70px 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 8%);
  background-color: #fff;
  margin-bottom: 0;
}

.sigma_info.style-25{
  border: 0;
  padding: 0;
  max-width: 450px;
  margin-bottom: 50px;
  text-align: left;
  display: flex;
  box-shadow: none;
}

.sigma_info.style-25:hover{
  background-color: transparent;
  transform: none;
}

.sigma_info.style-25 .sigma_info-icon{
  margin-bottom: 0;
  margin-right: 26px;
  text-align: center;
}

.sigma_info.style-25 .sigma_info-icon i{
  font-size: 46px;
  color: #c72f90;
}

.sigma_info.style-25 .sigma_info-icon .number{
  display: block;
  color: rgb(104 106 111 / 3%);
  font-size: 46px;
  font-weight: 400;
  margin-top: 12px;
  line-height: 1;
}

.sigma_info.style-25 .sigma_info-description{
  flex: 1;
}

.sigma_info.style-25 .sigma_info-description h5{
  margin-bottom: 10px;
}

.sigma_info.style-25 .sigma_info-description h5 a:hover{
  color: var(--thm-base-hover);
}

/*-------------- Category --------------------------- */
/* Category style 1 */
.sigma_category {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.sigma_category a,
.sigma_category img {
  width: 100%;
  transition: 0.3s;
}

.sigma_category img {
  height: 100%;
  object-fit: cover;
}

.sigma_category:hover img {
  transform: scale(1.1);
}

.sigma_category .sigma_category-content {
  width: calc(100% - 20px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.sigma_category .sigma_category-content span {
  background-color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-secondary);
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, .03);
}

/* Category style 2 */
.sigma_category.style-2 .sigma_category-content {
  width: auto;
  left: 30px;
  top: 30px;
  bottom: auto;
  transform: none;
}

.sigma_category.style-2 .sigma_category-content span {
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 0;
}

/* Category style 3 */
.sigma_category.style-3 {
  transition: .3s;
}

.sigma_category.style-3 .sigma_category-content {
  text-align: center;
  color: var(--thm-secondary);
  margin-bottom: 10px;
}

.sigma_category.style-3 .sigma_category-content h6 {
  margin: 0;
  font-size: 24px;
  transition-duration: .3s;
  transition-delay: .1s;
  transform: translateY(20px);
}

.sigma_category.style-3 .sigma_category-content span {
  background-color: transparent;
  padding: 0;
  color: var(--thm-b-text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition-duration: .3s;
  transition-delay: .1s;
  font-weight: 400;
  box-shadow: none;
}

.sigma_category.style-3:hover {
  transform: scale(1.3);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, .1);
}

.sigma_category.style-3:hover .sigma_category-content h6,
.sigma_category.style-3:hover .sigma_category-content span {
  transform: translateY(0);
}

.sigma_category.style-3:hover .sigma_category-content h6 {
  font-size: 20px;
}

.sigma_category.style-3:hover .sigma_category-content span {
  opacity: 1;
  visibility: visible;
  font-size: 12px;
}

/*-------------- General Section --------------------------- */
/* Style 1 */
.sigma_general-list {
  position: relative;
  margin-bottom: 30px;
}

.sigma_general-list ul li {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
}

.sigma_general-list ul li+li {
  margin-top: 20px;
}

.sigma_general-list ul li i {
  width: 40px;
  height: 40px;
  background-color: #c72f90;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(var(--thm-base-rgb), .5);
}

.sigma_general-list ul li span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--thm-secondary);
  padding-left: 20px;
  flex: 1;
}

/* Style 2 */
.sigma_general-list.style-2 ul li,
.sigma_general-list.style-3 ul li {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

/* Style 3 */
.sigma_general-list.style-4 ul li i,
.sigma_general-list.style-3 ul li i {
  background-color: transparent;
  color: #c72f90;
  box-shadow: none;
  width: auto;
  height: auto;
}

/* Style 4 */
.sigma_general-list.style-4 ul li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_general-list.style-4 ul li+li {
  margin-top: 15px;
}

/* Style 5 */
.sigma_general-list.style-5 ul li {
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
}
.sigma_general-list.style-5,
.sigma_general-list.style-5 ul li p{
  margin: 0;
}
.sigma_general-list.style-5 ul li span{
  display: block;
  padding: 0;
}

.sigma_general-list.style-5 ul li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--thm-border);
}

/*-------------- Blog Sections --------------------------- */
/* Pagination */
.pagination {
  margin-top: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link,
.pagination .page-item .page-link {
  border-radius: 0;
}

.pagination .page-link {
  color: var(--thm-secondary);
  border: 0;
  background-color: #fff;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .04);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  margin-left: 15px;
}

.pagination .page-item.active .page-link {
  background-color: #c72f90;
}

.pagination .page-item:not(.active) .page-link:hover,
.pagination .page-item:not(.active) .page-link:focus {
  color: #c72f90;
  outline: none;
}

/* Style 1 */
.sigma_post {
  position: relative;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  margin-bottom: 30px;
  transition: 0.3s;
}

.sigma_post .sigma_post-thumb {
  position: relative;
  overflow: hidden;
}

.sigma_post .sigma_post-thumb a:first-child{
  display: block;
}

.sigma_post .sigma_post-thumb img{
  transition: 0.3s;
  width: 100%;
}

.sigma_post .sigma_post-thumb:hover img {
  transform: scale(1.1);
}

.sigma_post .sigma_post-categories {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
}

.sigma_post .sigma_post-categories a,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .sigma_post-categories a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  background-color: #c72f90;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  transition: 0.3s;
}

.sigma_post .sigma_post-categories a:hover,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .sigma_post-categories a:hover {
  background-color: var(--thm-base-hover);
}

.sigma_post .sigma_post-categories a+a {
  margin-left: 10px;
}

.sigma_post .sigma_post-body {
  padding: 30px;
  position: relative;
}

.sigma_post .sigma_post-body:before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background-color: #c72f90;
}

.sigma_post .sigma_post-meta {
  border-bottom: 1px solid var(--thm-border);
  padding-bottom: 15px;
}

.sigma_post .sigma_post-meta ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.sigma_post .sigma_post-meta ul li {
  font-family: iranyekanLight;
  color: var(--thm-b-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
}

.sigma_post .sigma_post-meta ul li i {
  margin-top: -4px;
}

.sigma_post .sigma_post-meta ul li a {
  color: var(--thm-b-text);
}

.sigma_post .sigma_post-meta ul li a:hover {
  color: var(--thm-base-hover);
}

.sigma_post .sigma_post-meta ul li+li {
  padding-left: 10px;
  margin-left: 10px;
}

.sigma_post .sigma_post-meta ul li+li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--thm-border);
}

.sigma_post .sigma_post-date {
  position: absolute;
  right: 20px;
  top: -28px;
  text-align: center;
  padding: 12px 15px;
  font-weight: 600;
  background-color: #c72f90;
  color: #fff;
  line-height: 1;
  font-size: 15px;
  transition: 0.3s;
}

.sigma_post .sigma_post-date:hover {
  background-color: var(--thm-base-hover);
}

.sigma_post .sigma_post-body .sigma_post-content {
  padding: 15px 0 0;
}

.sigma_post .sigma_post-body .sigma_post-content h5 {
  margin-bottom: 15px;
}

.sigma_post .sigma_post-body .btn-link {
  color: var(--thm-secondary);
  font-weight: 600;
  margin-top: 15px;
  font-size: 14px;
}

.sigma_post .sigma_post-body .btn-link i {
  color: #c72f90;
}

.sigma_post .sigma_post-body .btn-link:hover {
  color: var(--thm-base-hover);
}

.sigma_post.style-1 .sigma_post-meta ul {
  margin-top: 0;
}

/* Style 2 */
.sigma_post.style-2 .sigma_post-body,
.sigma_post.style-10 .sigma_post-body,
.sigma_post.style-11 .sigma_post-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.sigma_post.style-2 img,
.sigma_post.style-10 img,
.sigma_post.style-11 img {
  width: 100%;
}

.sigma_post.style-2 .sigma_post-body:before,
.sigma_post.style-11 .sigma_post-body:before {
  content: none;
}

.sigma_post.style-2 .sigma_post-body .sigma_post-content,
.sigma_post.style-11 .sigma_post-body .sigma_post-content {
  padding: 0;
}

.sigma_post.style-2 .sigma_post-body .sigma_post-content h5 a,
.sigma_post.style-2 .sigma_post-body .sigma_post-content p,
.sigma_post.style-11 .sigma_post-body .sigma_post-content h5 a,
.sigma_post.style-11 .sigma_post-body .sigma_post-content p {
  color: #fff;
}

.sigma_post.style-2 .sigma_post-body .sigma_post-content h5 a:hover,
.sigma_post.style-11 .sigma_post-body .sigma_post-content h5 a:hover {
  color: #c72f90;
}

.sigma_post.style-2 .sigma_post-body .sigma_post-content p{
  font-size: 15px;
}

.sigma_post.style-2 .sigma_post-body .btn-link {
  color: #c72f90;
}

/* Style 3 */
.sigma_post.style-3,
.sigma_post.style-4,
.sigma_post.style-12 {
  background-color: transparent;
  box-shadow: none;
}

.sigma_post.style-3 .sigma_post-body,
.sigma_post.style-4 .sigma_post-body,
.sigma_post.style-12 .sigma_post-body {
  border-radius: 0;
  background-color: #fff;
  width: calc(100% - 30px);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  margin: -25px auto 0;
}

.sigma_post.style-3 .sigma_post-body:before,
.sigma_post.style-4 .sigma_post-body:before,
.sigma_post.style-12 .sigma_post-body:before {
  content: none;
}

.sigma_post.style-3 .sigma_post-thumb {
  border-radius: 0;
}

.sigma_post.style-3 .sigma_post-meta,
.sigma_post.style-4 .sigma_post-meta,
.sigma_post.style-11 .sigma_post-meta,
.sigma_post.style-12 .sigma_post-meta,
.sigma_post.style-15 .sigma_post-meta {
  border-bottom: none;
  padding: 0;
}

.sigma_post.style-3 .sigma_post-meta ul,
.sigma_post.style-5 .sigma_post-meta ul {
  margin: 0;
}

.sigma_post.style-3 .sigma_post-meta ul li.author img {
  border-radius: 50%;
  margin-right: 10px;
}

.sigma_post.style-3 .sigma_post-meta ul li+li,
.sigma_post.style-4 .sigma_post-meta ul li+li,
.sigma_post.style-11 .sigma_post-meta ul li+li,
.sigma_post.style-12 .sigma_post-meta ul li+li,
.sigma_post.style-15 .sigma_post-meta ul li+li {
  padding-left: 0;
}

.sigma_post.style-3 .sigma_post-meta ul li+li:before,
.sigma_post.style-4 .sigma_post-meta ul li+li:before,
.sigma_post.style-11 .sigma_post-meta ul li+li:before,
.sigma_post.style-12 .sigma_post-meta ul li+li:before,
.sigma_post.style-15 .sigma_post-meta ul li+li:before {
  content: none;
}

.sigma_post.style-3 .sigma_post-body .sigma_post-content {
  padding: 15px 0;
}

.sigma_post.style-3 .sigma_post-body .sigma_post-content h5,
.sigma_post.style-4 .sigma_post-body .sigma_post-content h5 {
  margin-bottom: 0;
}

/* Style 4 */
.sigma_post.style-4 .sigma_post-body,
.sigma_post.style-12 .sigma_post-body,
.sigma_post.style-15 .sigma_post-body {
  border-radius: 0;
}

.sigma_post.style-4 .sigma_post-meta ul li.bold-text a {
  color: var(--thm-secondary);
  font-weight: 700;
}

.sigma_post.style-4 .sigma_post-body .sigma_post-content,
.sigma_post.style-12 .sigma_post-body .sigma_post-content,
.sigma_post.style-15 .sigma_post-body .sigma_post-content {
  padding: 0;
}

.sigma_post.style-4 .sigma_post-meta {
  margin: 12px 0 10px;
}

.sigma_post.style-4 .sigma_post-body .sigma_post-content p,
.sigma_post.style-12 .sigma_post-body .sigma_post-content p {
  font-size: 14px;
}

/* Style 5 */
.sigma_post.style-5 {
  border-radius: 0;
  overflow: hidden;
}

.sigma_post.style-5 .sigma_post-body:before {
  content: none;
}

.sigma_post.style-5 .sigma_post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

 .sigma_post.style-5 .sigma_post-meta a,
 .sigma_post.style-11 .sigma_post-meta .sigma_post-date,
 .sigma_post.style-12 .sigma_post-meta .sigma_post-date,
 .sigma_post.style-15 .sigma_post-meta .sigma_post-date{
  color: var(--thm-b-text);
  font-family: iranyekanLight;
  font-size: 14px;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  font-weight: 500;
}

.sigma_post.style-5 .sigma_post-meta a:hover {
  color: var(--thm-base-hover);
}

.sigma_post.style-5 .sigma_post-meta a i,
.sigma_post.style-12 .sigma_post-meta a i,
.sigma_post.style-15 .sigma_post-meta a i,
.sigma_post.style-11 .sigma_post-meta i {
  color: #c72f90;
  font-weight: 500;
  margin-right: 8px;
  font-size: 16px;
}

.sigma_post.style-5 .sigma_post-meta ul li+li:before {
  content: none;
}

.sigma_post.style-5 .sigma_post-meta ul li+li {
  padding-left: 0;
}

.sigma_post.style-5 .sigma_post-meta ul li a {
  color: #c72f90;
  font-weight: 500;
  font-size: 16px;
}

/* Style 6 */
.sigma_post.style-6,
.sigma_post.style-7,
.sigma_post.style-9,
.sigma_post.style-10 {
  box-shadow: none;
  background-color: transparent;
}

.sigma_post.style-6 .sigma_post-body,
.sigma_post.style-7 .sigma_post-body,
.sigma_post.style-9 .sigma_post-body {
  padding: 15px 0 0 0;
}

.sigma_post.style-6 .sigma_post-body .sigma_post-content,
.sigma_post.style-9 .sigma_post-body .sigma_post-content,
.sigma_post.style-10 .sigma_post-body .sigma_post-content {
  padding: 15px 0 0;
}

.sigma_post.style-6 .sigma_post-meta,
.sigma_post.style-7 .sigma_post-meta,
.sigma_post.style-9 .sigma_post-meta,
.sigma_post.style-10 .sigma_post-meta {
  padding: 0;
  border: 0;
}

.sigma_post.style-6 .sigma_post-body:before,
.sigma_post.style-7 .sigma_post-body:before,
.sigma_post.style-9 .sigma_post-body:before,
.sigma_post.style-10 .sigma_post-body:before {
  content: none;
}

.sigma_post.style-6 .sigma_post-meta ul {
  margin: 0;
}

/* Style 7 */
.sigma_post.style-7 {
  margin-bottom: 60px;
}

.sigma_post.style-7 .sigma_post-body .sigma_post-content h5+p {
  margin: 15px 0;
}

.sigma_post.style-7 .sigma_post-body .sigma_post-content h5,
.sigma_post.style-8 .sigma_post-body .sigma_post-content h5 {
  margin-bottom: 0;
}

.sigma_post.style-7 .sigma_post-body .sigma_post-content,
.sigma_post.style-8 .sigma_post-body .sigma_post-content {
  padding: 0;
}

.sigma_post.style-7 .sigma_post-meta ul li i {
  margin-right: 10px;
  font-size: 16px;
}

.sigma_post.style-7 .sigma_post-meta ul li+li:before,
.sigma_post.style-8 .sigma_post-meta ul li+li:before {
  content: none;
}

.sigma_post.style-7 .sigma_post-meta ul li+li,
.sigma_post.style-8 .sigma_post-meta ul li+li {
  padding-left: 0;
  margin-left: 20px;
}

/* Style 8 */
.sigma_post.style-8 {
  border-radius: 0;
  overflow: hidden;
}

.sigma_post .sigma_post-body:before {
  content: none;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-content p {
  margin: 20px 0;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta {
  border: 0;
  padding: 0;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta ul {
  justify-content: space-between;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta ul li span,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .author-info span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--thm-b-text);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta ul .author-name,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .author-info .author-name {
  color: var(--thm-secondary);
  display: block;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta ul .author-name:hover,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .author-info .author-name:hover {
  color: var(--thm-base-hover);
}

.sigma_post.style-8 .sigma_post-body .sigma_post-meta ul li:last-child {
  flex-direction: column;
}

/* Style 9 */
.sigma_post.style-9 .sigma_post-body .sigma_post-content,
.sigma_post.style-10 .sigma_post-body .sigma_post-content {
  border-bottom: 1px solid #c72f90;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.sigma_post.style-9 .sigma_post-body .btn-link,
.sigma_post.style-10 .sigma_post-body .btn-link {
  margin-top: 0;
}

/* Style 10 */
.sigma_post.style-10 .sigma_post-meta ul li,
.sigma_post.style-10 .sigma_post-meta ul li a,
.sigma_post.style-10 .sigma_post-body .sigma_post-content h5 a,
.sigma_post.style-10 .sigma_post-body .sigma_post-content p,
.sigma_post.style-10 .sigma_post-body .btn-link {
  color: #fff;
}

.sigma_post.style-10 .sigma_post-meta ul li+li:before {
  background-color: #fff;
}

.sigma_post.style-10 .sigma_post-meta ul li a:hover,
.sigma_post.style-10 .sigma_post-body .sigma_post-content h5 a:hover,
.sigma_post.style-10 .sigma_post-body .btn-link:hover {
  color: var(--thm-base-hover);
}

/* Style 11 */

.sigma_post.style-11 .sigma_post-meta .sigma_post-date,
.sigma_post.style-12 .sigma_post-meta .sigma_post-date,
.sigma_post.style-15 .sigma_post-meta .sigma_post-date{
    border: 0;
    padding: 5px 25px;
    background-color: #c72f90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    top: 0;
    left: 0;
    line-height: 1.8;
}
.sigma_post.style-11 .sigma_post-meta i{
  color: #fff;
  margin-top: 0;
}
.sigma_post.style-11 .sigma_post-meta ul li + li,
.sigma_post.style-12 .sigma_post-meta ul li + li,
.sigma_post.style-15 .sigma_post-meta ul li + li{
  margin-left: 20px;
}

.sigma_post.style-11 .sigma_post-meta .sigma_post-date:hover,
.sigma_post.style-12 .sigma_post-meta .sigma_post-date:hover,
.sigma_post.style-15 .sigma_post-meta .sigma_post-date:hover{
  background-color: var(--thm-base-hover);
}

.sigma_post.style-11 .sigma_post-meta li a{
  color: #fff;
}

.sigma_post.style-11 .sigma_post-body .sigma_post-content h5{
  margin-bottom: 10px;
}

/* Style 12 */

.sigma_post.style-12 .sigma_post-thumb a,
.sigma_post.style-15 .sigma_post-thumb a{
  width: 100%;
}

.sigma_post.style-12 .sigma_post-body{
  margin: -35px 0 0;
  padding: 30px 25px;
  border-bottom: 5px solid #c72f90;
}

.sigma_post.style-12 .sigma_post-meta a i,
.sigma_post.style-15 .sigma_post-meta a i{
  color: var(--thm-b-text);
  margin-top: 0;
}

.sigma_post.style-12 .sigma_post-meta .sigma_post-date i{
  color: #fff;
}
.sigma_post.style-12 .sigma_post-meta.is-absolute,
.sigma_post.style-15 .sigma_post-meta.is-absolute{
  margin: -52px 0 0;
  position: relative;
}
.sigma_post.style-12 .sigma_post-meta.is-absolute .sigma_post-date,
.sigma_post.style-15 .sigma_post-meta.is-absolute .sigma_post-date{
  margin-bottom: 0;
}
.sigma_post.style-12 .sigma_post-body .sigma_post-content h5,
.sigma_post.style-15 .sigma_post-body .sigma_post-content h5{
  margin-bottom: 8px;
}
.sigma_post.style-12 .sigma_post-meta ul{
  margin: 20px 0 8px;
}

/* Style 13 */

.sigma_post.style-13{
  box-shadow: none;
}

.sigma_post.style-13 .sigma_post-date,
.sigma_post.style-14 .sigma_post-date{
  right: 10px;
  top: -40px;
  padding: 14px 20px 18px;
  z-index: 1;
  font-weight: 400;
}
.sigma_post.style-13 .sigma_post-date span,
.sigma_post.style-14 .sigma_post-date span{
  line-height: 1.3;
  font-size: 22px;
  display: block;
  font-weight: 600;
}
.sigma_post.style-13 .sigma_post-body,
.sigma_post.style-14 .sigma_post-body{
 border: 2px solid var(--thm-border);
 border-top: 0;
 padding: 20px 30px 30px;
}
.sigma_post.style-13 .sigma_post-meta,
.sigma_post.style-14 .sigma_post-meta{
  border: 0;
  padding: 0;
}
.sigma_post.style-13 .sigma_post-meta ul li:last-child a,
.sigma_post.style-14 .sigma_post-meta ul li:last-child a{
  color: #c72f90;
}
.sigma_post.style-13 .sigma_post-meta ul li:last-child a:hover,
.sigma_post.style-14 .sigma_post-meta ul li:last-child a:hover{
  color: var(--thm-base-hover);
}

/* Style 14 */

.sigma_post.style-14 .sigma_post-date{
  right: 30px;
}
.sigma_post.style-14{
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}
.sigma_post.style-14:hover{
  box-shadow: none;
}
.sigma_post.style-14 .sigma_post-date{
  padding: 10px 20px 14px;
}
.sigma_post.style-14 .sigma_post-body{
  border-width: 1px;
}
.sigma_post.style-14 .sigma_post-body .sigma_post-content h5{
  margin-bottom: 0;
}

/* Style 15 */

.sigma_post.style-15{
  padding: 20px 20px 30px;
}

.sigma_post.style-15 .sigma_post-thumb{
  border-radius: 6px;
}

.sigma_post.style-15 .sigma_post-meta.is-absolute{
  text-align: right;
}

.sigma_post.style-15 .sigma_post-body{
  padding: 30px 0 0;
}

.sigma_post.style-15 .sigma_post-meta.is-absolute .sigma_post-date{
  left: auto;
  right: 20px;
  font-weight: 600;
}

.sigma_post.style-15 .sigma_post-meta ul{
  margin: 15px 0 12px;
}

.sigma_post.style-15 .sigma_post-body .btn-link{
  color: #c72f90;
  font-weight: 600;
  margin-top: 0;
  font-size: 16px;
}

.sigma_post.style-15 .sigma_post-body .btn-link:hover{
  color: var(--thm-base-hover);
}

/* Post-list */
.sigma_post.sigma_post-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.sigma_post-list+.sigma_post-list {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--thm-border);
}

.sigma_post.sigma_post-list .sigma_post-thumb {
  width: 270px;
  margin-right: 30px;
}

.sigma_post.sigma_post-list .sigma_post-thumb img {
  width: auto;
}

.sigma_post.sigma_post-list .sigma_post-body {
  flex: 1;
  padding-top: 0;
}

.sigma_post.sigma_post-list .sigma_post-body .sigma_post-categories {
  position: static;
  margin-bottom: 15px;
}

.sigma_post.sigma_post-list.post-format-audio .embed-responsive-16by9::before {
  padding-top: 100%;
}

/*Blog: Misc*/
.sigma_post h5 {
  font-size: 34px;
}

.col-lg-6 .sigma_post h5 {
  font-size: 28px;
}

.col-lg-6 .sigma_post.style-7,
.col-lg-4 .sigma_post.style-7,
.col-lg-3 .sigma_post.style-7 {
  margin-bottom: 30px;
}

.sigma_related-posts .sigma_post h5,
.col-lg-4 .sigma_post h5,
.col-lg-5 .sigma_post h5 {
  font-size: 22px;
}

.col-lg-4 .sigma_post.style-6 .sigma_post-body,
.col-lg-4 .sigma_post.style-7 .sigma_post-body,
.col-lg-4 .sigma_post.style-9 .sigma_post-body {
  padding: 20px 0 0;
}

.col-lg-5 .sigma_post.sigma_post-list .sigma_post-thumb {
  width: auto;
}

.col-lg-3 .sigma_post h5 {
  font-size: 22px;
}

.col-lg-3 .sigma_post.post-format-quote blockquote cite span {
  width: 50px;
  height: 50px;
}

.col-lg-4 .sigma_post.post-format-link .sigma_post-body,
.col-lg-3 .sigma_post.post-format-link .sigma_post-body {
  padding: 30px;
}

.col-lg-4 .sigma_post.post-format-quote blockquote,
.col-lg-3 .sigma_post.post-format-quote blockquote {
  padding: 30px;
}

.col-lg-4 .sigma_post.post-format-audio .embed-responsive-16by9::before {
  padding-top: 46.25%;
}

.col-lg-3 .sigma_post.post-format-audio .embed-responsive-16by9::before {
  padding-top: 66.25%;
}

/*------- Formats------------- */
/*  post format gallery */
.sigma_post.post-format-gallery .sigma_post-thumb .slick-prev,
.sigma_post.post-format-gallery .sigma_post-thumb .slick-next {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.sigma_post.post-format-gallery .sigma_post-thumb .slick-next {
  right: 10px;
  left: auto;
}

.sigma_post.post-format-gallery .sigma_post-thumb:hover .slick-prev {
  left: 20px;
  opacity: 1;
  visibility: visible;
}

.sigma_post.post-format-gallery .sigma_post-thumb:hover .slick-next {
  right: 20px;
  opacity: 1;
  visibility: visible;
}

.sigma_post.post-format-gallery .sigma_post-thumb .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/*  post format Quote */
.sigma_post.post-format-quote blockquote {
  position: relative;
  padding: 60px 50px;
  background-color: #c72f90;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
  z-index: 1;
}

.sigma_post.post-format-quote blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  font-weight: 600;
  left: 40px;
  top: -10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 80px;
  z-index: -1;
}

.sigma_post.post-format-quote blockquote p {
  color: #fff;
  font-style: italic;
  margin: 0;
  font-size: 20px;
}

.sigma_post.post-format-quote blockquote cite {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.sigma_post.post-format-quote blockquote cite span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--thm-secondary);
  font-size: 15px;
  border-radius: 50%;
  margin-right: 15px;
}

/*  post format Video */
.sigma_post.post-format-video .sigma_video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*  post format Audio */
.sigma_post.post-format-audio .embed-responsive-16by9::before {
  padding-top: 16.25%;
}

/*  post format Link */
.sigma_post.post-format-link {
  box-shadow: none;
}

.sigma_post.post-format-link .sigma_post-body {
  background-color: var(--thm-secondary);
  padding: 50px;
  position: relative;
  border-radius: 6px;
}

.sigma_post.post-format-link .sigma_post-content {
  padding: 0;
}

.sigma_post.post-format-link .sigma_post-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sigma_post.post-format-link .sigma_post-meta {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.sigma_post.post-format-link .sigma_post-meta a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}

.sigma_post.post-format-link .sigma_post-meta a i {
  margin-right: 10px;
  font-size: 20px;
}

.sigma_post.post-format-link .sigma_post-meta a:hover {
  color: var(--thm-base-hover);
}

.sigma_post.post-format-link h5 {
  color: #fff;
}

/*-------------- Blog Widgets --------------------------- */
.sidebar .widget {
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.sidebar .widget+.widget {
  margin-top: 50px;
}

.sidebar .widget .widget-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
}

.sidebar .widget .widget-title::before {
  content: '';
  background-color: #c72f90;
  width: 3px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
}

.sidebar .widget .btn-link {
  margin-top: 10px;
}

/*== search Widget & banner widget start ==*/
.widget.widget-banner,
.widget.widget-search {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}

.widget.widget-banner .widget-title::before,
.widget.widget-search .widget-title::before {
  display: none;
}

.widget.widget-blockquote{
  padding: 0;
  border: 0;
  box-shadow: none;
}
.widget.widget-blockquote .blockquote{
  border-radius: 0;
  text-align: left;
}
.widget.widget-blockquote .blockquote p{
  font-size: 14px;
  font-weight: 400;
}
.widget.widget-blockquote .blockquote a{
  margin-top: 20px;
}

/*== category Widget start ==*/
.widget.widget-categories ul li+li,
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post+.sigma_recent-post,
.widget.widget-sigma-recent-posts.style-4 .sigma_recent-post+.sigma_recent-post {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--thm-border);
}

.widget.widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--thm-b-text);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.widget.widget-categories ul li a:hover {
  padding-left: 24px;
}

.widget.widget-categories ul li a:before {
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
}

.widget.widget-categories ul li a:hover {
  color: #c72f90;
}

.widget.widget-categories ul li a span {
  color: #fff;
  background-color: #c72f90;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 400;
  transition: 0.3s;
}

.widget.widget-categories ul li a span:hover {
  background-color: var(--thm-base-hover);
}

/*== Recent Post Widget start ==*/
.widget.widget-sigma-recent-posts .sigma_recent-post {
  display: flex;
  align-items: center;
}

.widget.widget-sigma-recent-posts .sigma_recent-post+.sigma_recent-post {
  margin-top: 30px;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-image {
  position: relative;
  margin-right: 15px;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-image span {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 14px;
  color: #fff;
  font-size: 14px;
  background-color: #c72f90;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: .3s;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-image:hover span {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr {
  flex: 1;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr h6 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr h6 a {
  color: var(--thm-secondary);
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr h6 a:hover,
.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr .date:hover,
.widget.widget-sigma-recent-posts.style-4 .recent-post-image:hover,
.widget.widget-sigma-recent-posts.style-4 .recent-post-descr h6 a:hover span {
  color: #c72f90;
}

.widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr .date {
  color: var(--thm-b-text);
  font-size: 14px;
  display: inline-block;
}

/* Recent Post Style 2 */
.widget.widget-sigma-recent-posts.style-2 .sigma_recent-post {
  flex-direction: column;
  align-items: start;
}

.widget.widget-sigma-recent-posts.style-2 .sigma_recent-post .recent-post-image {
  margin-right: 0;
  margin-bottom: 15px;
}

/* Recent Post Style 3 */
.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .recent-post-descr h6 {
  margin: 8px 0 16px;
}

.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post {
  display: block;
}

.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .sigma_post-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.widget.widget-sigma-recent-posts.style-3 .sigma_recent-post .sigma_post-categories a {
  margin-bottom: 8px;
  margin-right: 8px;
}

/* Recent Post Style 4 */
.widget.widget-sigma-recent-posts.style-4 .recent-post-image {
  font-size: 18px;
  color: var(--thm-b-text);
}

.widget.widget-sigma-recent-posts.style-4 .recent-post-descr span {
  color: var(--thm-b-text);
  transition: 0.3s;
  font-weight: 400;
}

/*== Tags Widget start ==*/
.tagcloud a {
  display: inline-block;
  font-size: 14px;
  padding: 6px 15px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--thm-secondary);
  margin: 6px 6px 0px 0px;
  border-radius: 0;
}

.tagcloud a:hover {
  background-color: #c72f90;
}

/*== Banner Widget start ==*/
.widget.widget-banner .banner-area {
  border-radius: 6px;
  overflow: hidden;
}

/*== Follow Widget start ==*/
.widget.widget-follow .sigma_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  text-transform: capitalize;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, .03);
}

.widget.widget-follow .sigma_btn+.sigma_btn {
  margin-top: 15px;
}

.widget.widget-follow .sigma_btn .follow-icon i {
  display: inline-block;
  font-size: 30px;
  margin-right: 0;
  width: 40px;
  font-weight: 400;
}

.widget.widget-follow .sigma_btn .follow-icon p span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  line-height: 1;
}

.widget.widget-follow .sigma_btn i:last-child {
  font-size: 16px;
  margin: 0;
  position: relative;
  transition: 0.3s;
  left: 0;
}

.widget.widget-follow .sigma_btn:hover i:last-child {
  left: 3px;
}

/*== Insta Widget start ==*/
.widget.widget-instagram .insta-images {
  margin: 4px 2px 0 2px;
  display: flex;
  flex-wrap: wrap;
}

.widget.widget-instagram .insta-images a {
  position: relative;
  margin: 0 2px 4px;
  display: block;
  flex: 25%;
  overflow: hidden;
  border-radius: 16px;
}

.widget.widget-instagram .insta-images a::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--thm-secondary);
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, .03);
  transition: .3s;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
  border-radius: 50%;
}

.widget.widget-instagram .insta-images a:hover::before {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.widget.widget-instagram .insta-images a img {
  transition: 0.3s;
}

.widget.widget-instagram .insta-images a:hover img {
  transform: scale(1.1);
}

.instagram_gallery {
  display: flex;
  flex-wrap: wrap;
}

/* Sidebar style 2 */
.sidebar-style-2 .sidebar .widget {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.sidebar-style-2 .sidebar .widget .widget-title::before {
  display: none;
}

/* Sidebar style 3 */
.sidebar-style-3 .sidebar .widget {
  background-color: #f8f8f8;
  box-shadow: none;
}

.sidebar-style-3 .widget.widget-search {
  padding: 30px;
}

.sidebar-style-3 .sidebar input[type="number"], .sidebar-style-3 .sidebar input[type="text"], .sidebar-style-3 .sidebar input[type="email"], .sidebar-style-3 .sidebar input[type="password"],
.sidebar-style-3 .sidebar input[type="tel"], .sidebar-style-3 .sidebar input[type="url"], .sidebar-style-3 .sidebar input[type="search"], .sidebar-style-3 .sidebar select,
.sidebar-style-3 .sidebar textarea, .sidebar-style-3 .sidebar .form-control {
  background-color: #fff;
}

/* Sidebar style 4 */
.sidebar-style-4 .sidebar .widget .widget-title {
  padding-left: 50px;
}

.sidebar-style-4 .sidebar .widget .widget-title::before,
.sidebar-style-4 .sidebar .widget .widget-title::after {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  width: 20px;
  transform: translateY(-50%);
}

.sidebar-style-4 .sidebar .widget .widget-title::after {
  content: '';
  background-color: #c72f90;
  width: 10px;
  margin-right: 10px;
  left: 25px
}

.sidebar-style-4 .sidebar .widget.widget-search .widget-title {
  padding-left: 0;
}

.sidebar-style-4 .sidebar .widget.widget-search .widget-title::after {
  display: none;
}

/* Sidebar style 5 */
.sidebar-style-5 .sidebar .widget .widget-title::before {
  left: 0;
  width: 100px;
  z-index: -1;
  opacity: .3;
}

.sidebar-style-5 .sidebar .widget .widget-title {
  padding-left: 25px;
}

/* Sidebar style 6 */
.sidebar-style-6 .sidebar .widget .widget-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-style-6 .sidebar .widget .widget-title::after {
  content: '';
  background-color: #c72f90;
  margin-left: 10px;
}

.sidebar-style-6 .sidebar .widget .widget-title::before {
  margin-right: 10px;
}

.sidebar-style-6 .sidebar .widget .widget-title::after,
.sidebar-style-6 .sidebar .widget .widget-title::before {
  position: relative;
  top: auto;
  left: auto;
  height: 3px;
  width: 30px;
}

.sidebar-style-6 .sidebar .widget.widget-search .widget-title::after {
  display: none;
}

/* Sidebar style 7 */

.sidebar-style-7 .sidebar .widget{
  box-shadow: none;
  border: 2px solid var(--thm-border);
  border-radius: 0;
  padding: 40px;
}
.sidebar-style-7 .sidebar .widget.widget-search{
  padding: 40px;
}
.sidebar-style-7 .sidebar .widget .widget-title::before,
.sidebar-style-7 .sidebar .widget .widget-title::after{
    content: '';
    background-color: var(--thm-secondary);
    width: 3px;
    height: 24px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(16deg);
}
.sidebar-style-7 .sidebar .widget .widget-title::after{
  left: 7px;
}

.sidebar-style-7 .sidebar .widget .widget-title{
  padding-bottom: 15px;
  padding-left: 20px;
  border-bottom: 1px solid var(--thm-border);
}

.sidebar-style-7 .sidebar .widget.widget-categories ul li + li{
  margin-top: 15px;
  border-top: 0;
}

.sidebar-style-7 .sidebar .widget.widget-categories ul li a{
  height: 52px;
  background-color: #f8f8f8;
}

.sidebar-style-7 .sidebar .widget.widget-categories ul li a:before{
  content: none;
}
.sidebar-style-7 .sidebar .widget.widget-categories ul li a span{
  border-radius: 0;
  background-color: #dcdcdc;
  height: 52px;
  width: 50px;
  color: var(--thm-b-text);
}
.sidebar-style-7 .sidebar .widget.widget-categories ul li a:hover span{
  background-color: #c72f90;
  color: #fff;
}

.sidebar-style-7 .sidebar .widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-image{
 border-radius: 0;
}
.sidebar-style-7 .sidebar .widget.widget-sigma-recent-posts .sigma_recent-post .recent-post-descr .date i{
 color: var(--thm-secondary);
}

.sidebar-style-7 .sidebar .widget.widget-about .sigma_author-box h5 {
    margin-top: 25px;
    margin-bottom: 8px;
}
.sidebar-style-7 .sidebar .widget.widget-about .sigma_author-box .sigma_sm{
  margin-top: 25px;
}

.sidebar-style-7 .sidebar .widget.widget-about .sigma_author-box .sigma_sm li a{
  background-color: transparent;
  color: var(--thm-b-text);
}
.sidebar-style-7 .sidebar .widget.widget-about .sigma_author-box .sigma_sm li a:hover{
  background-color: transparent;
  color: #c72f90;
}


/* Sidebar style 8 */

.sidebar-style-8 .sidebar .widget{
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.sidebar-style-8 .sidebar .widget.widget-categories ul li a,
.sidebar-style-9 .sidebar .widget.widget-categories ul li a{
  padding-left: 0;
}

.sidebar-style-8 .sidebar .widget.widget-categories ul li a:hover,
.sidebar-style-9 .sidebar .widget.widget-categories ul li a:hover{
  padding-left: 5px;
}

.sidebar-style-8 .sidebar .widget.widget-categories ul li a:before,
.sidebar-style-8 .sidebar .widget .widget-title::before,
.sidebar-style-9 .sidebar .widget.widget-categories ul li a:before,
.sidebar-style-9 .sidebar .widget .widget-title::before,
.sidebar-style-10 .sidebar .widget .widget-title::before{
  content: none;
}
.sidebar-style-8 .sidebar .widget.widget-categories ul li a span{
 background-color: transparent;
 color: var(--thm-b-text);
 font-weight: 500;
}
.sidebar-style-8 .sidebar .widget.widget-categories ul li a span:hover{
  background-color: transparent;
}

.sidebar-style-8 .sidebar .widget.widget-categories.archive ul,
.sidebar-style-8 .sidebar .widget.widget-sigma-recent-posts .sigma_recent-post{
  border: 1px solid var(--thm-border);
  padding: 20px;
  border-radius: 6px;
}

.sidebar-style-8 .sidebar .widget.widget-categories.archive ul li+li,
.sidebar-style-9 .sidebar .widget.widget-categories ul li+li{
  padding-top: 0;
  border-top: 0;
}

.sidebar-style-8 .sidebar .widget.widget-categories.archive ul li a{
  font-weight: 400;
}

.sidebar-style-8 .sidebar .widget.widget-sigma-recent-posts .sigma_recent-post{
  padding: 15px;
}

.sidebar-style-8 .sidebar .widget.widget-sigma-recent-posts .recent-post-descr .date{
  color: #c72f90;
}
.sidebar-style-8 .sidebar .widget.widget-sigma-recent-posts .recent-post-descr .date:hover{
  color: var(--thm-base-hover);
}

.sidebar-style-8 .sidebar .widget.tagcloud a{
 padding: 4px 18px;
 border: 1px solid var(--thm-border);
 border-radius: 6px;
 font-size: 14px;
 margin: 6px 6px 0px 0px;
}

.sidebar-style-8 .sidebar .widget.tagcloud a:hover{
  background-color: #c72f90;
  color: #fff;
  border-color: #c72f90;
}


/* Sidebar style 9 */

.sidebar-style-9 .sidebar .widget{
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
.sidebar-style-9 .sidebar .widget{
  padding: 30px;
  border: 1px solid var(--thm-border);
  border-radius: 6px;
}

.sidebar-style-9 .sidebar .widget .widget-title{
  padding: 10px 30px;
  background-color: #f8f8f8;
  border-radius: 6px;
  margin: -32px -32px 30px -32px;
}

.sidebar-style-9 .sidebar .widget input[type="checkbox"]+label,
.sidebar-style-9 .sidebar .widget input[type="radio"]+label{
  padding-left: 34px;
}

.sidebar-style-9 .sidebar .widget input[type="checkbox"]+label:before,
.sidebar-style-9 .sidebar .widget input[type="checkbox"]+label:after{
  top: 28%;
}

.sidebar-style-9 .sidebar .widget .irs-with-grid .irs-grid{
  display: none;
}
.sidebar-style-9 .sidebar .widget .irs--flat .irs-handle>i:first-child{
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #c72f90;
  border-radius: 50%;
  top: -5px;
}
.sidebar-style-9 .sidebar .widget .irs--flat .irs-handle{
  width: auto;
}

.sidebar-style-9 .sidebar .widget .irs--flat .irs-bar,
.sidebar-style-9 .sidebar .widget .irs--flat .irs-line{
  height: 5px;
}

.sidebar-style-9 .sidebar .widget.widget-map{
  border: 0;
  padding: 0;
}

.sidebar-style-9 .sidebar .widget.widget-map .sigma_contact-map iframe{
  border-radius: 6px;
}


/* Sidebar style 10 */

.sidebar-style-10 .sidebar .widget{
  padding: 25px;
  overflow: hidden;
}
.sidebar-style-10 .sidebar .widget .widget-title{
  padding: 15px 25px;
  background-color: rgba(var(--thm-secondary-rgb), 0.1);
  margin: -25px -25px 25px;
}

.sidebar-style-10 .sidebar .widget.widget-form .form-group>i{
  top: 70%;
}

.sidebar-style-10 .sidebar .widget hr{
  margin: 25px -25px;
  border-top-width: 2px;
}

.sidebar-style-10 .sidebar .widget .widget-service ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border: 1px solid var(--thm-border);
  border-radius: 6px;
}

.sidebar-style-10 .sidebar .widget .widget-service ul li + li{
  margin-top: 10px;
}

.sidebar-style-10 .sidebar .widget.widget-booking ul li + li{
  margin-top: 15px;
}

/*-------------- Blog details Sections --------------------------- */
.sigma_post-details-categories{
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.sigma_post-details-categories a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  background-color: #c72f90;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  transition: 0.3s;
  margin: 0 5px 5px 0;
}
.sigma_post-details-categories a:hover{
  background-color: var(--thm-base-hover);
}
.sigma_post-details-meta{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sigma_post-details-meta span{
  display: inline-block;
  margin: 0 20px 5px 0;
  font-family: iranyekanLight;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.sigma_post-details-meta span i{
  margin-right: 5px;
  color: #c72f90;
}

.sigma_post-details-meta-item{
  flex: 1;
}
.sigma_post-details .sigma_sm{
  display: flex;
  align-items: center;
}
.sigma_post-details .sigma_sm li + li{
  margin-left: 15px;
}
.sigma_post-details .sigma_sm li a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: var(--thm-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sigma_post-details .sigma_sm li a:hover{
  background-color: #c72f90;
  color: #fff;
}

.sigma_author-about{
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 40px 5px rgba(0,0,0,.03);
  padding: 30px;
}
.sigma_author-about img{
  max-width: 150px;
}
.sigma_author-about-content{
  flex: 1;
  margin-left: 20px;
}
.sigma_author-about-content span{
  text-transform: uppercase;
  color: #c72f90;
  font-family: iranyekanLight;
  font-size: 16px;
}
.sigma_author-about-content p{
  margin: 0;
}
.comments-list ul {
  margin: 0;
}

.comments-list .comment-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  margin-top: 0;
}

.comments-list .comment-item+.comment-item {
  border-top: 1px solid var(--thm-border);
  padding-top: 30px;
}

.comments-list .comment-item:last-child {
  margin-bottom: 0;
}

.comments-list .comment-item img {
  width: 100px;
  margin-right: 20px;
  border-radius: 50%;
}

.comments-list .comment-item .comment-body {
  position: relative;
  flex: 1;
}

.comments-list .comment-item h5 {
  margin-bottom: 10px;
}

.comments-list .comment-item span {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 15px;
  color: #c72f90;
  font-weight: 600;
}

.comments-list .comment-item p {
  margin-bottom: 0;
}

.comments-list .comment-item .btn-link {
  padding: 10px 25px;
  border: 2px solid var(--thm-border);
  border-radius: 0;
  font-size: 14px;
  position: absolute;
  top: 0;
  color: #777;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  right: 0;
}
.comments-list .comment-item .btn-link:hover{
  background-color: #c72f90;
  border-color: #c72f90;
  color: #fff;
}

.sigma_single-pagination-item + .sigma_single-pagination-item{
  margin-top: 10px;
}
.sigma_single-pagination-thumb{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--thm-border);
  background-color: #fff;
  border-radius: 0;
  margin-right: 10px;
}
.sigma_single-pagination a{
  display: flex;
  align-items: center;
}
.sigma_single-pagination a span{
  font-size: 14px;
  color: var(--thm-b-text);
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.sigma_single-pagination a h6{
  margin: 0;
  line-height: 1;
}
.sigma_single-pagination-content{
  line-height: 1;
}
.sigma_single-pagination a img{
  max-width: 40px;
}
.sigma_single-pagination-prev,
.sigma_single-pagination-next{
  padding: 10px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid var(--thm-border);
  box-shadow: 0 0 40px 5px rgba(0,0,0,.03);
  transition: .3s;
}
.sigma_single-pagination-prev:hover,
.sigma_single-pagination-next:hover{
  background-color: #f8f8f8;
}
.sigma_single-pagination i{
  color: #838383;
  margin-left: auto;
  margin-right: 20px;
  transition: .3s;
}
.sigma_single-pagination-prev:hover i{
  transform: translateX(-3px);
}
.sigma_single-pagination-next:hover i{
  transform: translateX(3px);
}

.sigma_post-details .big-text-wrapper{
  display: flex;
  align-items: center;
  margin: 50px 0 20px;
}
.sigma_post-details .big-text-wrapper span{
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c72f90;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin-right: 32px;
}

.sigma_post-details .big-text-wrapper p{
  flex: 1;
  margin-bottom: 0;
}

.sigma_post-details .sigma_team.style-17 .sigma_team-thumb img{
  margin-bottom: 0;
}

.sigma_post-details .sigma_team.style-17 .sigma_team-body{
  border-right: 0;
  padding: 20px;
}

.sigma_post-details .sigma_team.style-17 .sigma_rating{
  margin: 6px 0;
}

.sigma_post-details .sigma_team.style-17 .sigma_team-categories{
  margin-top: 0;
}
.sigma_post-details .detail-menu-list{
  background-color: #fff;
  box-shadow: 0 0 40px 5px rgba(0,0,0,.03);
  margin: 50px 0 40px;
}

.sigma_post-details .detail-menu-list .menu{
  padding: 26px 20px;
  border-right: 1px solid var(--thm-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sigma_post-details .detail-menu-list .menu a{
  color: var(--thm-secondary);
  opacity: 0.4;
  font-size: 18px;
  font-weight: 500;
}

.sigma_post-details .detail-menu-list .menu a:hover,
.sigma_post-details .detail-menu-list .menu.nav-item .nav-link.active{
  opacity: 1;
}

.sigma_post-details .spacer{
  height: 50px;
}

/* Style 2 */
.sigma_post-details.style-2 .sigma_post-details-inner,
.sigma_post-details.style-5 .sigma_post-details-inner{
  border: 2px solid var(--thm-border);
  padding: 30px;
}

.sigma_post-details.style-2 .sigma_post-details-inner .sigma_author-about,
.sigma_post-details.style-5 .sigma_post-details-inner .sigma_author-about{
  box-shadow: none;
  border: 2px solid var(--thm-border);
}

.sigma_post-details.style-2 .comments-list .comment-item img{
  border-radius: 0;
}

/* Style 3 */
.sigma_post-details.style-3{
  text-align: center;
}

.sigma_post-details.style-3 .sigma_post-details-meta-item .sigma_sm,
.sigma_post-details.style-3 .sigma_post-details-categories,
.sigma_post-details.style-3 .sigma_post-details-meta{
  justify-content: center;
}

.sigma_post-details.style-3 .sigma_author-about{
  text-align: left;
}

.sigma_post-details.style-3 .sigma_general-list ul li i{
  display: none;
}

.sigma_post-details.style-3 .comments-list .comment-item .btn-link{
  position: relative;
  top: auto;
  margin-top: 15px;
}
.sigma_post-details.style-3 .comments-list .comment-item{
  display: block;
}
.sigma_post-details.style-3 .comments-list .comment-item img{
  margin: 0 0 15px;
}

.entry-content img{
  margin-bottom: 20px;
}

.blockquote,
.entry-content blockquote{
  position: relative;
  margin: 20px 0 30px;
  color: #fff;
  padding: 10px 20px;
  border-left: 0;
  text-align: center;
  padding: 40px;
  background-position: center;
  background-size: cover;
  background-color: #313131;
  border-radius: 35px;
}

.blockquote::before,
.entry-content blockquote::before{
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 160px;
  content: "\f10e";
  color: #fff;
  opacity: .1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.blockquote cite,
.entry-content blockquote cite{
  position: relative;
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
  color: #c72f90;
}

.blockquote p,
.entry-content blockquote p{
  position: relative;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Style 4 */

.sigma_post-details.style-4 .entry-content blockquote{
  background-color: #fff;
  box-shadow: 0 0 10px 5px rgb(0 0 0 / 3%);
  text-align: left;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
}

.sigma_post-details.style-4 .entry-content blockquote p{
  font-size: 16px;
  color: var(--thm-b-text);
  font-weight: 500;
}

.sigma_post-details.style-4 .entry-content blockquote:before{
  color: var(--thm-b-text);
  bottom: -20px;
  right: -28px;
  font-size: 130px;
}

.sigma_post-details.style-4 .entry-content blockquote cite{
  font-style: normal;
  margin: 15px 0 0;
  font-weight: 500;
}

.sigma_post-details.style-4 .sigma_general-list ul li i{
  background-color: rgba(var(--thm-base-rgb), 0.1);
  color: #c72f90;
  box-shadow: none;
}

.sigma_post-details.style-4 .sigma_single-pagination,
.sigma_post-details.style-5 .sigma_single-pagination{
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
  background-color: #fff;
  width: 100%;
}

.sigma_post-details.style-4 .sigma_single-pagination i{
  color: #fff;
  margin: 0;
}

.sigma_post-details.style-4 .sigma_single-pagination-prev,
.sigma_post-details.style-4 .sigma_single-pagination-next{
  padding: 0;
  box-shadow: none;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0;
  border: 0;
}

.sigma_post-details.style-4 .sigma_single-pagination-prev{
  background-color: var(--thm-secondary);
}
.sigma_post-details.style-4 .sigma_single-pagination-next{
  background-color: #c72f90;
}

.sigma_post-details.style-4 .pagination-breadcrumb{
  width: 50px;
  height: 50px;
  border: 1px solid #c72f90;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sigma_post-details.style-4 .pagination-breadcrumb span{
  background-color: #c72f90;
  width: 20px;
  height: 2px;
}
.sigma_post-details.style-4 .pagination-breadcrumb span + span{
  margin-top: 5px;
}

.sigma_post-details.style-4 .widget-sigma-portfolio-details{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
  background-color: #fff;
  padding: 60px;
  box-shadow: 0 2px 24px rgb(0 0 0 / 4%);
}

.sigma_post-details.style-4 .widget-sigma-portfolio-details .sigma_general-list.style-5 ul li{
  display: flex;
  align-items: center;
}

.sigma_post-details.style-4 .widget-sigma-portfolio-details .sigma_general-list.style-5 ul li span{
  display: inline-block;
}

.sigma_post-details.style-4 .widget-sigma-portfolio-details .sigma_general-list.style-5 ul li + li{
  border: 0;
  padding-top: 0;
}
.sigma_post-details.style-4 .widget-sigma-portfolio-details .sigma_social-icons li a{
  color: #fff;
}

.sigma_post-details.style-4 hr{
  margin: 25px 0;
  opacity: 0;
}

/* Style 5 */

.sigma_post-details.style-5 .sigma_post-details-meta span{
  margin: 0;
  position: relative;
}

.sigma_post-details.style-5 .sigma_post-details-meta span + span:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background-color: var(--thm-b-text);
  opacity: 0.3;
}

.sigma_post-details.style-5 .sigma_post-details-meta span + span{
  padding-left: 30px;
  margin-left: 30px;
}

.sigma_post-details.style-5 .sigma_general-list ul li span{
  color: var(--thm-b-text);
  font-weight: 400;
}
.sigma_post-details.style-5 .sigma_general-list ul li+li{
  margin-top: 10px;
}

.sigma_post-details.style-5 .entry-content blockquote{
  background-color: #f8f8f8;
  border-radius: 0;
  padding: 50px;
}

.sigma_post-details.style-5 .entry-content blockquote p{
  color: var(--thm-secondary);
  font-weight: 600;
}
.sigma_post-details.style-5 .entry-content blockquote cite{
  font-style: normal;
  font-weight: 500;
}
.sigma_post-details.style-5 .entry-content blockquote:before{
  content: "\f10d";
  opacity: 1;
  bottom: 20px;
  right: 50px;
  font-size: 220px;
}

.sigma_post-details.style-5 .tagcloud a{
  background-color: #f8f8f8;
  color: var(--thm-b-text);
  border-radius: 0;
}
.sigma_post-details.style-5 .tagcloud a:hover{
  background-color: #c72f90;
  color: #fff;
}
.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li + li{
  margin-left: 10px;
}
.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li a,
.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a{
  background-color: transparent;
  color: var(--thm-b-text);
}
.sigma_post-details.style-5 .sigma_post-details-meta-item .sigma_sm li a:hover,
.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a:hover{
  background-color: transparent;
  color: #c72f90;
}
.sigma_post-details.style-5 .sigma_single-pagination{
  box-shadow: none;
}
.sigma_post-details.style-5 .sigma_single-pagination-prev,
.sigma_post-details.style-5 .sigma_single-pagination-next{
  padding: 0;
  box-shadow: none;
  border: 0;
  margin: 0;
}
.sigma_post-details.style-5 .sigma_single-pagination-prev:hover,
.sigma_post-details.style-5 .sigma_single-pagination-next:hover{
  background-color: transparent;
}
.sigma_post-details.style-5 .sigma_single-pagination-prev h4,
.sigma_post-details.style-5 .sigma_single-pagination-next h4{
  transition: 0.3s;
}
.sigma_post-details.style-5 .sigma_single-pagination-prev:hover h4,
.sigma_post-details.style-5 .sigma_single-pagination-next:hover h4{
  color: #c72f90;
}

.sigma_post-details.style-5 .sigma_single-pagination .grid-block{
  display: grid;
  grid-template-columns: 7px 7px 7px;
  grid-template-rows: 7px 7px 7px;
  column-gap: 8px;
  grid-row-gap: 8px;
}
.sigma_post-details.style-5 .sigma_single-pagination .grid-block span{
  width: 12px;
  height: 12px;
  border: 2px solid #c72f90;
  border-radius: 50%;
}
.sigma_post-details.style-5 .sigma_post-details-inner .sigma_author-about{
  margin: 20px 0 40px;
}
.sigma_post-details.style-5 .comments-list .comment-item img{
  border-radius: 50%;
}
.sigma_post-details.style-5 .comments-list .comment-item h5{
  margin-bottom: 0;
}
.sigma_post-details.style-5 .comments-list .comment-item span{
  color: var(--thm-b-text);
  font-size: 14px;
  font-weight: 500;
}
.sigma_post-details.style-5 .comments-list .comment-item span i{
  color: #c72f90;
  margin-right: 5px;
}
.sigma_post-details.style-5 .comments-list .comment-item .btn-link{
  border-radius: 0;
}
.sigma_post-details.style-5 .comments-list .comment-item .btn-link i{
  color: #c72f90;
}
.sigma_post-details.style-5 .comments-list .comment-item .btn-link:hover i{
  color: #fff;
}

.sigma_post-details.style-5 .comments-list .comment-item:nth-child(2){
 margin-left: 120px;
}
.sigma_post-details.style-5 .comment-form{
  background-color: #f8f8f8;
  padding: 50px;
}

.sigma_post-details.style-5 .comment-form .form-control{
  background-color: #fff;
  border: 0;
}

/* Style 6 */

.sigma_post-details.style-6 .entry-content img{
  margin-bottom: 25px;
  border-radius: 6px;
}

.sigma_post-details.style-6 .sigma_post-details-meta span{
  margin-bottom: 0;
}
.sigma_post-details.style-6 .sigma_post-details-meta{
  margin-bottom: 12px;
}
.sigma_post-details.style-6 .entry-content blockquote{
  background-color: transparent;
  padding: 0 0 0 30px;
  border-radius: 0;
  text-align: left;
  margin: 30px 0 30px;
}

.sigma_post-details.style-6 .entry-content blockquote:after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background-color: #c72f90;
  border-radius: 30px;
}

.sigma_post-details.style-6 .entry-content blockquote:before{
  content: none;
}
.sigma_post-details.style-6 .entry-content blockquote p{
  font-size: 16px;
  color: var(--thm-b-text);
}
.sigma_post-details.style-6 .entry-content blockquote cite{
  font-style: normal;
  margin: 10px 0 0;
}

.sigma_post-details.style-6 .sigma_post-details-meta-item{
  display: flex;
  align-items: center;
}

.sigma_post-details.style-6 .tagcloud a{
  padding: 0;
  background-color: transparent;
  color: var(--thm-b-text);
  margin: 0;
  font-size: 16px;
}

.sigma_post-details.style-6 .tagcloud a:hover{
  color: var(--thm-base-hover);
}

.sigma_post-details.style-6 .tagcloud a + a{
  margin-left: 6px;
}

.sigma_post-details.style-6 .sigma_post-details-meta-item .sigma_sm li a{
  width: auto;
  height: auto;
}
.sigma_post-details.style-6 .sigma_sm li + li{
  margin-left: 20px;
}

.sigma_post-details.style-6 .comments-list .comment-item .btn-link{
 position: relative;
 border: 0;
 padding: 0;
 color: #c72f90;
 margin-top: 18px;
 font-size: 16px;
}
.sigma_post-details.style-6 .comments-list .comment-item .btn-link:hover{
  color: var(--thm-base-hover);
  background-color: transparent;
}

.sigma_post-details.style-6 .comments-list .comment-item .date{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  margin-bottom: 0;
  color: var(--thm-b-text);
  font-weight: 400;
}

.sigma_post-details.style-6 .comments-list .comment-item{
  padding: 30px;
  border: 2px solid var(--thm-border);
}

.sigma_post-details.style-6 .comments-list .comment-item:last-child{
  margin-left: 70px;
}

/*-------------- Services Sections --------------------------- */

/* Services */
.sigma_service{
  display: block;
  background-color: #fff;
  border: 1px solid var(--thm-border);
  padding: 40px;
  text-align: center;
  transition: .3s;
  margin-bottom: 30px;
  color: var(--thm-b-text);
  position: relative;
}

.sigma_service.border .sigma_service-thumb{
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--thm-border);
}
.sigma_service.border .sigma_service-thumb::before{
  content: '';
  position: absolute;
  top: 10px;
  right: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c72f90;
  transition: .3s;
}
.sigma_service.border .sigma_service-thumb::after{
  content: '';
  position: absolute;
  bottom: 10px;
  left: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c72f90;
  transition: .3s;
}

.sigma_service .sigma_service-thumb img{
  width: 100%;
}

.sigma_service.primary-bg:hover,
.sigma_service.primary-bg{
  background-color: #c72f90;
  border: 0;
}
.sigma_service.secondary-bg:hover,
.sigma_service.secondary-bg{
  background-color: var(--thm-secondary);
  border: 0;
}

.sigma_service.border.primary-bg .sigma_service-thumb::after,
.sigma_service.border.primary-bg .sigma_service-thumb::before,
.sigma_service.border.secondary-bg .sigma_service-thumb::after,
.sigma_service.border.secondary-bg .sigma_service-thumb::before{
  background-color: #fff;
}

.sigma_service.border:hover .sigma_service-thumb::after{
  bottom: -4px;
  left: 47px;
}
.sigma_service.border:hover .sigma_service-thumb::before{
  top: -4px;
  right: 47px;
}

.sigma_service.bg-white{
  border: 0;
}

.sigma_service.style-1.bg-white:hover .btn-link,
.sigma_service.style-1.bg-white:hover p,
.sigma_service.style-1.bg-white:hover h5{
  color: var(--thm-secondary);
}
.sigma_service.style-1.bg-white:hover i{
  color: #c72f90;
}

.sigma_service i{
  font-size: 60px;
  color: #c72f90;
  line-height: 1;
  transition: .3s;
}
.sigma_service .btn-link{
  margin-top: 20px;
  display: block;
}
.sigma_service .btn-link i{
  color: var(--thm-secondary);
  margin-left: 5px;
}
.sigma_service-thumb{
  margin-bottom: 40px;
}
.sigma_service h5{
  margin-bottom: 10px;
  transition: .3s;
}
.sigma_service p{
  margin: 0;
  transition: .3s;
}
.sigma_service:hover{
  background-color: #c72f90;
  transform: translateY(-3px);
}
.sigma_service.style-1:hover .btn-link,
.sigma_service.style-1:hover i,
.sigma_service.style-1:hover p,
.sigma_service.style-1:hover h5{
  color: #fff;
}

/* Style 2 & 3 */
.sigma_service.style-2 h5,
.sigma_service.style-6 h5,
.sigma_service.style-7 h5,
.sigma_service.style-8 h5,
.sigma_service.style-10 h5,
.sigma_service.style-16 h5{
  margin-bottom: 10px;
}
.sigma_service.style-2 i,
.sigma_service.style-6 i.icon-box,
.sigma_service.style-7 .icon-box,
.sigma_service.style-8 .icon-box{
  position: absolute;
  bottom: -30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-b-text);
  background-color: #fff;
  font-size: 30px;
  border-radius: 50%;
  box-shadow: 0 0 40px 5px rgba(0,0,0,.03);
}
.sigma_service.style-2:hover i{
  background-color: #c72f90;
  color: #fff;
}

.sigma_service.style-3,
.sigma_service.style-2,
.sigma_service.style-6,
.sigma_service.style-7,
.sigma_service.style-8,
.sigma_service.style-10,
.sigma_service.style-16{
  background-color: transparent;
  box-shadow: none;
  text-align: left;
  padding: 0;
}

.sigma_service.style-3 .sigma_service-thumb,
.sigma_service.style-2 .sigma_service-thumb,
.sigma_service.style-6 .sigma_service-thumb,
.sigma_service.style-7 .sigma_service-thumb,
.sigma_service.style-8 .sigma_service-thumb,
.sigma_service.style-10 .sigma_service-thumb,
.sigma_service.style-16 .sigma_service-thumb{
  position: relative;
  margin: 0;
  z-index: 1;
}

.sigma_service.style-3 i{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  line-height: 0;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
}

.sigma_service.style-3 .sigma_service-thumb::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.sigma_service.style-3:hover i,
.sigma_service.style-3:hover .sigma_service-thumb::before,
.sigma_service.style-2:hover i,
.sigma_service.style-2:hover .sigma_service-thumb::before{
  opacity: 1;
  visibility: visible;
}

.sigma_service.style-3 h5{
  margin-bottom: 20px;
}

.sigma_service.style-3 p,
.sigma_service.style-2 p,
.sigma_service.style-6 p,
.sigma_service.style-7 p,
.sigma_service.style-8 p,
.sigma_service.style-10 p,
.sigma_service.style-16 p{
  margin: 0;
}

.sigma_service.style-3 .sigma_service-body,
.sigma_service.style-2 .sigma_service-body{
  padding: 30px;
}
.sigma_service.style-3,
.sigma_service.style-6,
.sigma_service.style-7,
.sigma_service.style-8{
  border: 0;
}
.sigma_service.style-3 .sigma_service-body{
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 40px 5px rgba(0,0,0,.03);
  border: 0;
}
.sigma_service.style-3 .sigma_service-body::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #c72f90;
  transition: .3s;
}
.sigma_service.style-3:hover .sigma_service-body::before{
  width: 100%;
}

/* Style 4 */
.sigma_service.style-4,
.sigma_service.style-9,
.sigma_service.style-12{
  text-align: left;
}
.sigma_service.style-4 .sigma_service-footer,
.sigma_service.style-12 .sigma_service-footer{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--thm-border);
}
.sigma_service.style-4 i,
.sigma_service.style-9 i,
.sigma_service.style-12 i{
  margin-bottom: 20px;
  display: block;
}
.sigma_service.style-4 .sigma_service-footer ul{
  margin: 0;
}
.sigma_service.style-4 .sigma_service-footer ul li{
  position: relative;
  color: var(--thm-b-text);
  display: flex;
  font-size: 14px;
  align-items: center;
  margin: 0;
}
.sigma_service.style-4 .sigma_service-footer ul li + li{
  margin-top: 10px;
}
.sigma_service.style-4 .sigma_service-footer ul li::before{
  content: '-';
  margin-right: 10px;
  transition: .3s;
  color: #c72f90;
  display: block;
}
.sigma_service.style-4:hover *{
  color: #fff;
}
.sigma_service.style-4:hover .sigma_service-footer ul li{
  color: #fff;
}
.sigma_service.style-4:hover .sigma_service-footer ul li::before{
  color: #fff;
}

.sigma_service.style-4.dark,
.sigma_service.style-9.dark{
  background-color: var(--thm-secondary);
  border-color: rgba(255,255,255,.1);
}
.sigma_service.style-4.dark .sigma_service-footer{
  border-top-color: rgba(255,255,255,.1);
}
.sigma_service.style-4.dark i,
.sigma_service.style-9.dark i{
  color: #c72f90;
}
.sigma_service.style-4.dark h5,
.sigma_service.style-9.dark h5{
  color: #fff;
}
.sigma_service.style-4.dark *,
.sigma_service.style-9.dark *{
  color: #999b9f;
}
.sigma_service.style-4.dark .sigma_service-footer ul li{
  color: #999b9f;
}

/* Style 5 */
.sigma_service.style-5{
  text-align: left;
  padding: 30px;
}
.sigma_service.style-5:hover{
  background-color: transparent;
}
.sigma_service.style-5 > i{
  display: block;
  margin-bottom: 20px;
}
.sigma_service.style-5 span{
  color: #777;
}
.sigma_service.style-5 h5{
  font-size: 22px;
}
.sigma_service.style-5 .sigma_service-link i{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #313131;
  box-shadow: 0px 10px 50px 0px rgba(53,82,99,0.09);
  margin-top: 50px;
  transition: .3s;
}
.sigma_service.style-5:hover .sigma_service-link i{
  background-color: #c72f90;
  color: #fff;
}


/* Style 6 */

.sigma_service.style-6,
.sigma_service.style-7{
  background-color: #fff;
  padding: 25px;
}

.sigma_service.style-6:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 126px;
    width: 4px;
    height: 68px;
    background-color: #c72f90;
    transition: 0.3s;
}

.sigma_service.style-6 .sigma_service-body{
  padding-top: 25px;
}

.sigma_service.style-6 .sigma_service-body h5 a,
.sigma_service.style-7 .sigma_service-body h5 a,
.sigma_service.style-8 .sigma_service-body h5 a,
.sigma_service.style-10 .sigma_service-body h5 a,
.sigma_service.style-16 .sigma_service-body h5 a{
  color: var(--thm-secondary);
}

.sigma_service.style-6 .sigma_service-body h5 a:hover,
.sigma_service.style-7 .sigma_service-body h5 a:hover,
.sigma_service.style-8 .sigma_service-body h5 a:hover,
.sigma_service.style-9 .sigma_service-body h5 a:hover,
.sigma_service.style-16 .sigma_service-body h5 a:hover{
  color: var(--thm-base-hover);
}

.sigma_service.style-6 .sigma_service-body .btn-link,
.sigma_service.style-8 .sigma_service-body .btn-link,
.sigma_service.style-9 .sigma_service-body .btn-link,
.sigma_service.style-10 .sigma_service-body .btn-link,
.sigma_service.style-15 .sigma_service-body .btn-link,
.sigma_service.style-16 .sigma_service-body .btn-link{
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.sigma_service.style-6 i.icon-box,
.sigma_service.style-7 .icon-box,
.sigma_service.style-8 .icon-box{
  border-radius: 0;
  background-color: #c72f90;
  color: #fff;
  width: 70px;
  height: 70px;
  bottom: auto;
  top: 30px;
  right: 0;
  font-size: 36px;
}

.sigma_service.style-6 .sigma_service-body .btn-link i,
.sigma_service.style-8 .sigma_service-body .btn-link i,
.sigma_service.style-9 .sigma_service-body .btn-link i,
.sigma_service.style-10 .sigma_service-body .btn-link i,
.sigma_service.style-13 .sigma_service-body .btn-link i,
.sigma_service.style-16 .sigma_service-body .btn-link i,
.sigma_service.style-19 .sigma_service-footer .btn-link i{
  font-size: 13px;
  margin-left: 10px;
}

.sigma_service.style-6 .sigma_service-body .btn-link:hover i,
.sigma_service.style-8 .sigma_service-body .btn-link:hover i,
.sigma_service.style-9 .sigma_service-body .btn-link:hover i,
.sigma_service.style-10 .sigma_service-body .btn-link:hover i,
.sigma_service.style-13 .sigma_service-body .btn-link:hover i,
.sigma_service.style-16 .sigma_service-body .btn-link:hover i,
.sigma_service.style-19 .sigma_service-footer .btn-link:hover i{
  margin-left: 13px;
}

/* Style 7 */

.sigma_service.style-7 .sigma_service-body{
  padding-bottom: 25px;
}

.sigma_service.style-7 .icon-box{
  background-color: transparent;
  border: 1px solid var(--thm-border);
  margin-bottom: 22px;
  position: relative;
  top: 0;
  right: auto;
  left: 0;
  box-shadow: 0 0 16px 0px rgb(0 0 0 / 3%);
  color: var(--thm-secondary);
}

.sigma_service.style-7 .icon-box span{
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50%;
  background-color: #c72f90;
  width: 25px;
  height: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style 8 */

.sigma_service.style-8,
.sigma_service.style-10{
  background-color: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 8%);
}

.sigma_service.style-8 .sigma_service-body .btn-link i,
.sigma_service.style-15 .sigma_service-body .btn-link i,
.sigma_service.style-16 .sigma_service-body .btn-link i{
  color: #c72f90;
}

.sigma_service.style-8 .sigma_service-body{
  padding: 60px 30px 30px;
}

.sigma_service.style-8 .icon-box{
  bottom: -30px;
  top: auto;
  right: auto;
  left: 30px;
  font-weight: 600;
}

.sigma_service-wrapper{
  position: relative;
  margin-bottom: -250px;
}

.space-top{  /* Temporary Code */
  padding-top: 200px;
}

/* Style 9 */

.sigma_service.style-9{
  border: 0;
}

.sigma_service.style-9:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: #c72f90;
  transition: 0.3s;
}

.sigma_service.style-9:hover:before{
  height: 100%;
}

.sigma_service.style-9.dark span{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 75px;
    display: block;
    line-height: 1;
    font-weight: 600;
    color: rgb(79 77 77 / 85%);
}

.sigma_service.style-9 .sigma_service-body h5 a{
  color: #fff;
}

.sigma_service.style-9 .sigma_service-body .btn-link,
.sigma_service.style-9 .sigma_service-body .btn-link i{
  color: #fff;
  margin-bottom: 0;
}

.sigma_service.style-9 .sigma_service-body .btn-link:hover{
  color: #c72f90;
}

.sigma_counter-wrapper.with-service{
  padding: 30px;
  margin-bottom: 30px;
}

.sigma_counter-wrapper.with-service .sigma_counter.style-3{
  margin-top: 12px;
  padding: 12px 0 0;
}

/* Style 10 */

.sigma_service.style-10,
.sigma_service.style-16{
  text-align: center;
  box-shadow: none;
  border-width: 2px;
}

.sigma_service.style-10:hover,
.sigma_service.style-16:hover{
  box-shadow: 0 0 20px 18px rgb(0 0 0 / 3%);
  transform: none;
}

.sigma_service.style-10 .sigma_service-body,
.sigma_service.style-16 .sigma_service-body{
  padding: 30px;
}

.sigma_service.style-10 .sigma_service-body .btn-link,
.sigma_service.style-13 .sigma_service-body .btn-link{
  justify-content: center;
  color: var(--thm-b-text);
  display: inline-flex;
}

.sigma_service.style-10 .sigma_service-body h5 a,
.sigma_service.style-10 .sigma_service-body .btn-link{
  position: relative;
}

.sigma_service.style-10 .sigma_service-body .btn-link:hover,
.sigma_service.style-13 .sigma_service-body .btn-link:hover{
  color: #c72f90;
}

.sigma_service.style-10 .sigma_service-body h5 a:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--thm-secondary);
  transition: 0.3s;
}

.sigma_service.style-10 .sigma_service-body h5 a:hover:before{
  width: 100%;
}

/* Style 11 */
.sigma_service-wrapper.style-11{
  box-shadow: 0 0 10px 10px rgb(0 0 0 / 3%);
  margin-bottom: 0;
}

.sigma_service.style-11{
  padding:60px;
  background-color: #fff;
  max-width: 100%;
  margin-bottom: 0;
  text-align: left;
  display: flex;
  align-items: center;
  border: 0;
}

.sigma_service.has-bg-primary.style-11{
  background-color: #c72f90;
}
.sigma_service.has-bg-secondary.style-11{
  background-color: var(--thm-secondary);
}

.sigma_service.style-11 .sigma_service-thumb{
  margin-bottom: 0;
  margin-right: 26px;
  text-align: center;
}

.sigma_service.style-11 .sigma_service-thumb i{
  font-size: 46px;
}

.sigma_service.has-bg-primary.style-11 .sigma_service-thumb i,
.sigma_service.has-bg-secondary.style-11 .sigma_service-thumb i,
.sigma_service.has-bg-primary.style-11 .sigma_service-body h5 a,
.sigma_service.has-bg-secondary.style-11 .sigma_service-body h5 a{
  color: #fff;
}

.sigma_service.has-bg-primary.style-11 .sigma_service-body p,
.sigma_service.has-bg-secondary.style-11 .sigma_service-body p{
  color: #fbf6f6;
}

.sigma_service.has-bg-secondary.style-11 .sigma_service-body .btn-link,
.sigma_service.has-bg-primary.style-11 .sigma_service-body .btn-link{
  color: #fbf6f6;
  border-bottom:1px solid #fbf6f6;
}

.sigma_service.style-11:hover,
.sigma_service.style-12:hover{
  background-color: #fff;
  transform: none;
}

.sigma_service.has-bg-primary.style-11:hover{
  background-color: #c72f90;
  transform: none;
}
.sigma_service.has-bg-secondary.style-11:hover{
  background-color: var(--thm-secondary);
  transform: none;
}

.sigma_service.style-11 .sigma_service-body .number,
.sigma_service.style-12 .sigma_service-body .number{
  display: block;
  -webkit-text-stroke: 1px #c72f90;
  -webkit-text-fill-color: #fff;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1;
}

.sigma_service.has-bg-primary.style-11 .sigma_service-body .number{
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: #c72f90;
}
.sigma_service.has-bg-secondary.style-11 .sigma_service-body .number{
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: var(--thm-secondary);
}

.sigma_service.style-11 .sigma_service-body .btn-link{
   margin-top: 15px;
   color: var(--thm-b-text);
   border-bottom: 1px solid var(--thm-b-text);
   display: inline-flex;
}

.sigma_service.style-11 .sigma_service-body h5 a:hover,
.sigma_service.style-11 .sigma_service-body .btn-link:hover{
  color: var(--thm-base-hover);
  border-color: var(--thm-base-hover);
}

/* Style 12 */

.sigma_service.style-12{
  border: 0;
}

.sigma_service.style-12 .sigma_service-body{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sigma_service.style-12 .sigma_service-body i{
  font-size: 36px;
  margin-bottom: 0;
  color: var(--thm-b-text);
  opacity: 0.1;
}
.sigma_service.style-12 .sigma_service-body .number{
  font-size: 70px;
}
.sigma_service.style-12 .sigma_service-body .number.text-color{
  -webkit-text-stroke: 1px var(--thm-base-hover);
}
.sigma_service.style-12 .sigma_service-body .number.secondary-color{
  -webkit-text-stroke: 1px var(--thm-secondary);
}
.sigma_service.style-12 .sigma_service-footer{
  border-color: rgba(var(--thm-border-rgb), 0.3);
}

/* Style 13 */

.sigma_service.style-13{
  border: 0;
  padding: 40px 20px;
}

.sigma_service.style-13:hover,
.sigma_service.style-14:hover {
  box-shadow: 0 0 10px 10px rgb(0 0 0 / 3%);
  background-color: #fff;
  transform: none;
}

/* Style 14 */

.sigma_service.style-14{
  overflow: hidden;
  text-align: left;
}

.sigma_service.style-14 .number{
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  background-color: var(--thm-base-hue);
  color: #c72f90;
  width: 80px;
  height: 80px;
  border-bottom-left-radius: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sigma_service.style-14 .number.secondary-hue{
  background-color: rgba(var(--thm-secondary-rgb), 0.1);
  color: var(--thm-secondary);
}

/* Style 15 */

.sigma_service-sec.style-15.section{
  padding: 135px 0 70px;
}

.sigma_service.style-15,
.sigma_service.style-17{
  text-align: left;
  padding: 30px 20px;
  margin-bottom: 65px;
}

.sigma_service.style-15:hover,
.sigma_service.style-17:hover{
  background-color: transparent;
  transform: none;
}

.sigma_service.style-15 .sigma_service-thumb,
.sigma_service.style-17 .sigma_service-thumb{
  width: 80px;
  height: 80px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 6px rgb(0 0 0 / 3%);
  margin: -70px 0 26px;
  background-color: #fff;
}

.sigma_service.style-15 .sigma_service-thumb i,
.sigma_service.style-17 .sigma_service-thumb i{
  font-size: 44px;
  color: var(--thm-secondary);
}

.sigma_service.style-15 .sigma_service-body .btn-link{
  font-size: 0;
  font-weight: 600;
  margin-top: 12px;
}
.sigma_service.style-15 .sigma_service-body .btn-link i{
  font-size: 26px;
  margin-left: 0;
}

.sigma_service.style-15:hover .sigma_service-body .btn-link{
  font-size: 16px;
}
.sigma_service.style-15:hover .sigma_service-body .btn-link i{
  margin-left: 12px;
}

/* Style 16 */

.sigma_service.style-16{
  text-align: left;
  border: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.sigma_service.style-16:hover{
  background-color: #fff;
}
.sigma_service.style-16 .sigma_service-thumb{
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: -6px;
}

.sigma_service.style-16 .sigma_service-body{
  border: 2px solid var(--thm-border);
  border-top: 0;
  padding: 36px 30px 30px;
  transition: 0.3s;
}
.sigma_service.style-16:hover .sigma_service-body{
  border-color: transparent;
}

/* Style 17 */

.sigma_service-wrapper.style-17{
  padding: 70px 50px 40px;
  background-color: #fff;
  box-shadow: 0 0 10px 6px rgb(0 0 0 / 3%);
  margin: 0;
  border-radius: 6px;
}

.sigma_service.style-17{
  padding: 0;
  border: 0;
  display: flex;
  margin-bottom: 30px;
}

.sigma_service.style-17 .sigma_service-body{
  flex: 1;
}
.sigma_service.style-17 .sigma_service-thumb{
  margin: 0 20px 0 0;
}

/* Style 17 with bg */
.sigma_service.style-17.has-bg{
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 6px;
}

.sigma_service.style-17.has-bg .sigma_service-thumb{
  box-shadow: none;
  width: 60px;
  height: 60px;
}

/* style 18 */

.sigma_service.style-18{
  background-color: transparent;
  text-align: left;
  padding: 0;
  border: 0;
}

.sigma_service.style-18 .sigma_service-thumb,
.sigma_service.style-19 .sigma_service-thumb{
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  display: block;
}

.sigma_service.style-18 .sigma_service-thumb img,
.sigma_service.style-19 .sigma_service-thumb img{
  transition: 0.3s;
}

.sigma_service.style-18 .sigma_service-body{
  padding-top: 20px;
}

.sigma_service.style-18 .sigma_service-body .sigma_service-category{
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

.sigma_service.style-18 .sigma_service-body h5{
  margin-bottom: 0;
}

.sigma_service.style-18 .sigma_service-body p{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--thm-border);
}

.sigma_service.style-18:hover,
.sigma_service.style-19:hover{
  transform: none;
}

.sigma_service.style-18 .sigma_service-thumb:hover img,
.sigma_service.style-19 .sigma_service-thumb:hover img{
  transform: scale(1.1);
}


/* style 19 */

.sigma_service-dark-space.style-19{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 490px;
  background-color: var(--thm-secondary);
}
.sigma_service.style-19{
  background-color: #fff;
  text-align: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.sigma_service.style-19 .sigma_service-body{
  padding: 80px 30px 25px;
  position: relative;
}

.sigma_service.style-19 .sigma_service-body .sigma_service-icon{
  width: 100px;
  height: 100px;
  font-size: 30px;
  background-color: #fff;
  box-shadow: 0 0 20px 5px rgb(0 0 0 / 3%);
  margin: -50px auto 0;
  color: #c72f90;
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sigma_service.style-19 .sigma_service-body .sigma_service-icon:after{
  content: "";
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 3px solid #c72f90;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.sigma_service.style-19 .sigma_service-body h5{
  margin-bottom: 20px;
}

.sigma_service.style-19 .sigma_service-body.secondary-color .sigma_service-icon{
  color: var(--thm-secondary);
}

.sigma_service.style-19 .sigma_service-body.secondary-color .sigma_service-icon:after{
  border-color: var(--thm-secondary);
}

.sigma_service.style-19:hover .sigma_service-body .sigma_service-icon:after{
  opacity: 1;
  visibility: visible;
}

.sigma_service.style-19 .sigma_service-footer{
  padding: 15px;
  border-top: 1px solid rgba(var(--thm-border-rgb), 0.2);
}

.sigma_service.style-19 .sigma_service-footer .btn-link{
  color: var(--thm-b-text);
  margin-top: 0;
  display: inline-flex;
}
.sigma_service.style-19 .sigma_service-footer .btn-link:hover,
.sigma_service.style-19 .sigma_service-footer .btn-link:hover i{
  color: #c72f90;
}



/*-------------- Portfolio Sections --------------------------- */

/* Style 1 */
.sigma_portfolio {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}

.sigma_portfolio .sigma_portfolio-thumb {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.sigma_portfolio .sigma_portfolio-thumb img {
  width: 100%;
  transition: 0.3s;
}

.sigma_portfolio .sigma_portfolio-thumb:hover img {
  transform: scale(1.1);
}

.sigma_portfolio .sigma_portfolio-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: 0.3s;
}

.sigma_portfolio a.sigma_portfolio-category {
  color: #c72f90;
  font-weight: 500;
}

.sigma_portfolio .sigma_portfolio-categories a+a {
  margin-left: 10px;
}

.sigma_portfolio .sigma_portfolio-content h5 {
  margin-top: 8px;
  margin-bottom: 0;
}

.sigma_portfolio .sigma_portfolio-content h5 a {
  color: #fff;
}

.sigma_portfolio .sigma_portfolio-content h5 a:hover,
.sigma_portfolio a.sigma_portfolio-category:hover {
  color: var(--thm-base-hover);
}

.sigma_portfolio .sigma_portfolio-link {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #c72f90;
  font-size: 16px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.sigma_portfolio .sigma_portfolio-link:hover {
  background-color: #c72f90;
  color: #fff;
}

.sigma_portfolio .sigma_portfolio-thumb:hover .sigma_portfolio-link {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

/* Style 2 */
.sigma_portfolio.style-2 .sigma_portfolio-content {
  position: relative;
  align-items: center;
  background-color: transparent;
  padding: 20px 0 0 0;
}

.sigma_portfolio.style-2 .sigma_portfolio-content h5 {
  margin-top: 0;
  margin-bottom: 8px;
}

.sigma_portfolio.style-2 .sigma_portfolio-content h5 a {
  color: var(--thm-secondary);
}

.sigma_portfolio.style-2 .sigma_portfolio-content h5 a:hover {
  color: var(--thm-base-hover);
}

.sigma_portfolio.style-2 .sigma_portfolio-thumb.has-max-width {
  max-width: 400px;
  margin: 0 auto;
}

/* Style 3 (slider version) */
.sigma_portfolio.style-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.sigma_portfolio.style-3 .sigma_portfolio-content {
  flex: 1;
  position: relative;
  padding: 0;
  max-width: 500px;
  margin-left: 60px;
  background-color: transparent;
}

.sigma_portfolio.style-3 .sigma_portfolio-content p {
  margin: 0;
}

.sigma_portfolio.style-3 .sigma_portfolio-content h5 a {
  color: var(--thm-secondary);
}

.sigma_portfolio.style-3 .sigma_portfolio-content h5 a:hover {
  color: var(--thm-base-hover);
}

.sigma_portfolio.style-3 .sigma_portfolio-content .btn-link {
  margin-top: 20px;
}

.sigma_portfolio-slider .slick-prev,
.sigma_portfolio-slider .slick-next {
  background-color: #c72f90;
  color: #fff;
  position: absolute;
  right: 0;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.sigma_portfolio-slider .slick-next {
  top: calc(50% + 30px);
}

.sigma_portfolio-slider .slick-prev:hover,
.sigma_portfolio-slider .slick-next:hover,
.sigma_portfolio-slider-2 .slick-prev:hover,
.sigma_portfolio-slider-2 .slick-next:hover {
  background-color: var(--thm-base-hover);
}

.sigma_portfolio-slider .slick-prev:before {
  content: "\f077";
}

.sigma_portfolio-slider .slick-next:before {
  content: "\f078";
}

.sigma_portfolio-slider .slick-dots {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
}

.sigma_portfolio-slider .slick-dots li button,
.sigma_portfolio-slider-2 .slick-dots li button {
  background-color: var(--thm-border);
}

.sigma_portfolio-slider .slick-dots .slick-active button,
.sigma_portfolio-slider-2 .slick-dots .slick-active button {
  background-color: #c72f90;
}

.sigma_portfolio-slider .slick-dots li+li {
  margin-left: 0;
}

/* Style 4 (slider version) */
.sigma_portfolio.style-4 .sigma_portfolio-content {
  height: auto;
}

.sigma_portfolio-slider-2.slick-slider .slick-list {
  overflow: visible;
}

.sigma_portfolio-slider-2 .sigma_portfolio.style-4 {
  opacity: 0.7;
}

.sigma_portfolio-slider-2 .sigma_portfolio.style-4.slick-current {
  opacity: 1;
}

.sigma_portfolio.style-4 .sigma_portfolio-content {
  background-color: #c72f90;
}

.sigma_portfolio.style-4 a.sigma_portfolio-category {
  color: #fff;
}

.sigma_portfolio.style-4 .sigma_portfolio-content h5 a:hover,
.sigma_portfolio.style-4 a.sigma_portfolio-category:hover {
  color: var(--thm-secondary);
}

.sigma_portfolio.style-4 .sigma_portfolio-link:hover {
  background-color: var(--thm-base-hover);
}

/* Style 5 */
.sigma_portfolio.style-5 {
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.sigma_portfolio.style-5 .sigma_portfolio-content {
  position: relative;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #fff;
  padding: 15px 20px;
}

.sigma_portfolio.style-5 .sigma_portfolio-content h5 a {
  color: var(--thm-secondary);
}

.sigma_portfolio.style-5 a.sigma_portfolio-category {
  color: var(--thm-b-text);
}

.sigma_portfolio.style-5 .sigma_portfolio-content h5 a:hover,
.sigma_portfolio.style-5 a.sigma_portfolio-category:hover {
  color: var(--thm-base-hover);
}

.sigma_portfolio.style-5 .sigma_portfolio-link {
  position: relative;
  bottom: 0;
  right: 0;
  background-color: #c72f90;
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.sigma_portfolio.style-5 .sigma_portfolio-link:hover {
  background-color: var(--thm-base-hover);
}

/* Style 6 */
.sigma_portfolio.style-6 {
  margin-bottom: 0;
}

.sigma_portfolio.style-6 .sigma_portfolio-content {
  opacity: 0;
  visibility: hidden;
}

.sigma_portfolio.style-6:hover .sigma_portfolio-content {
  opacity: 1;
  visibility: visible;
}

/* Style 7 */
.sigma_portfolio.style-7 .sigma_portfolio-content {
  height: auto;
  padding: 12px 20px;
}

/* Isotope filter */
/* bordered filter items */
.sigma_isotope-filter-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
  padding: 0;
}

.sigma_isotope-filter-items .sigma_isotope-trigger {
  padding-bottom: 15px;
  min-width: 120px;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid var(--thm-border);
  cursor: pointer;
  transition: 0.3s;
}

.sigma_isotope-filter-items .sigma_isotope-trigger.active,
.sigma_isotope-filter-items .sigma_isotope-trigger:hover {
  color: #c72f90;
  border-color: #c72f90;
}

.sigma_isotope-filter-items .sigma_isotope-trigger+.sigma_isotope-trigger {
  margin-left: 40px;
}

/* background filter items */
.sigma_isotope-filter-items.has-background .sigma_isotope-trigger,
.sigma_isotope-filter-items.has-round-border .sigma_isotope-trigger {
  padding: 10px 20px;
  color: #fff;
  border: none;
  background-color: #c72f90;
}

.sigma_isotope-filter-items.has-background .sigma_isotope-trigger.active,
.sigma_isotope-filter-items.has-background .sigma_isotope-trigger:hover,
.sigma_isotope-filter-items.has-round-border .sigma_isotope-trigger.active,
.sigma_isotope-filter-items.has-round-border .sigma_isotope-trigger:hover {
  background-color: var(--thm-base-hover);
}

/* round border filter items */
.sigma_isotope-filter-items.has-round-border .sigma_isotope-trigger {
  border-radius: 35px;
}

/* Style 8 */

.sigma_portfolio.style-8 .sigma_portfolio-content,
.sigma_portfolio.style-9 .sigma_portfolio-content,
.sigma_portfolio.style-10 .sigma_portfolio-content{
  left: 50%;
  transform: translateX(-50%);
  width:calc(100% - 20px);
  height: auto;
  background-color: #c72f90;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
}

.sigma_portfolio.style-8:hover .sigma_portfolio-content{
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.sigma_portfolio.style-8 .sigma_portfolio-content h5,
.sigma_portfolio.style-9 .sigma_portfolio-content h5,
.sigma_portfolio.style-10 .sigma_portfolio-content h5{
  margin-bottom: 8px;
  margin-top: 0;
}

.sigma_portfolio.style-8 .sigma_portfolio-content p{
  margin-bottom: 0;
  color: #fff;
}

/* Style 9 */

.sigma_portfolio-wrapper.style-9{
  position: relative;
  margin-bottom: -250px;
}

.sigma_portfolio-slider-3 .slick-slide,
.sigma_portfolio-slider-4 .slick-slide,
.sigma_portfolio-slider-5 .slick-slide,
.sigma_portfolio-slider-6 .slick-slide{
  margin: 0 10px;
}

.sigma_portfolio-slider-3 .slick-list,
.sigma_portfolio-slider-4 .slick-list,
.sigma_portfolio-slider-5 .slick-list,
.sigma_portfolio-slider-6 .slick-list{
  margin: 0 -10px;
  overflow: visible;
}

.sigma_portfolio-wrapper.style-9 .sigma_custom-arrows i,
.sigma_portfolio-wrapper.style-13 .sigma_custom-arrows i{
  background-color: #fff;
  border-radius: 6px;
}

.sigma_portfolio-wrapper.style-9 .sigma_custom-arrows a{
  color: #fff;
  text-decoration: underline;
  margin-right: 20px;
}

.sigma_portfolio-wrapper.style-9 .sigma_custom-arrows a:hover{
  color: #c72f90;
}

.sigma_portfolio-wrapper.style-9 .sigma_custom-arrows .slick-prev:hover,
.sigma_portfolio-wrapper.style-9 .sigma_custom-arrows .slick-next:hover,
.sigma_portfolio-wrapper.style-13 .sigma_custom-arrows .slick-prev:hover,
.sigma_portfolio-wrapper.style-13 .sigma_custom-arrows .slick-next:hover{
  background-color: var(--thm-base-hover);
}

.sigma_portfolio.style-9 .sigma_portfolio-thumb,
.sigma_portfolio.style-10 .sigma_portfolio-thumb{
  overflow: visible;
}
.sigma_portfolio.style-9 .sigma_portfolio-thumb:hover img,
.sigma_portfolio.style-10 .sigma_portfolio-thumb:hover img{
  transform: none;
}

.sigma_portfolio.style-9 .sigma_portfolio-content,
.sigma_portfolio.style-10 .sigma_portfolio-content{
  background-color: #fff;
  width: calc(100% - 60px);
  border-bottom: 4px solid #c72f90;
  bottom: -60px;
}

.sigma_portfolio.style-9.slick-current .sigma_portfolio-content{
  opacity: 1;
  visibility: visible;
  bottom: -50px;
}

.sigma_portfolio.style-9 .sigma_portfolio-content h5 a,
.sigma_portfolio.style-10 .sigma_portfolio-content h5 a{
  color: var(--thm-secondary);
}

.sigma_portfolio.style-9 .sigma_portfolio-content h5 a:hover,
.sigma_portfolio.style-10 .sigma_portfolio-content h5 a:hover{
  color: var(--thm-base-hover);
}
.sigma_portfolio.style-9 .sigma_portfolio-content p,
.sigma_portfolio.style-10 .sigma_portfolio-content p{
  color: var(--thm-text);
  margin-bottom: 12px;
}

.sigma_portfolio.style-9 .sigma_portfolio-content .icon-box{
  font-size: 32px;
  color: var(--thm-secondary);
  display: block;
  margin-bottom: 20px;
}
.sigma_portfolio.style-9 .sigma_portfolio-content .btn-link{
  color: var(--thm-secondary);
}
.sigma_portfolio.style-9 .sigma_portfolio-content .btn-link:hover{
  color: var(--thm-base-hover);
}

.sigma_portfolio-slider-4 .slick-list{
  overflow: hidden;
}

/* Style 10 */

.sigma_portfolio.style-10{
  margin-bottom: 90px;
}

.sigma_portfolio.style-10 .sigma_portfolio-content p{
  margin-bottom: 0;
}

.sigma_portfolio.style-10 .sigma_portfolio-content{
  opacity: 1;
  visibility: visible;
}

/* Style 11 */

.sigma_portfolio.style-11 .sigma_portfolio-content{
  position: relative;
  background-color: transparent;
  padding: 20px 0 0;
}

.sigma_portfolio.style-11 .sigma_portfolio-thumb:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-secondary);
  opacity: 0;
  transition: 0.3s;
}

.sigma_portfolio.style-11 .sigma_portfolio-thumb:hover:before{
  opacity: 0.6;
}

.sigma_portfolio.style-11 .sigma_portfolio-thumb:hover img{
  transform: none;
}

.sigma_portfolio.style-11 .sigma_portfolio-link{
  left: 50%;
  right: auto;
  top: 52%;
  bottom: auto;
  transform: translate(-50%, -50%);
  background-color: transparent;
  color: #fff;
  font-size: 24px;
}

.sigma_portfolio.style-11 .sigma_portfolio-thumb:hover .sigma_portfolio-link{
  top: 50%;
}

.sigma_portfolio.style-11 .sigma_portfolio-content h5{
  margin-top: 0;
  margin-bottom: 8px;
}
.sigma_portfolio.style-11 .sigma_portfolio-content h5 a{
  color: var(--thm-secondary);
}

.sigma_portfolio.style-11 .sigma_portfolio-content h5 a:hover,
.sigma_portfolio.style-11 .sigma_portfolio-link:hover{
 color: var(--thm-base-hover);
}

/* Style 12 */

.sigma_portfolio.style-12{
  margin-bottom: 0;
}
.sigma_portfolio.style-12 .sigma_portfolio-content{
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--thm-secondary-rgb), 0.4);
  opacity: 0;
  visibility: hidden;
}

.sigma_portfolio.style-12:hover .sigma_portfolio-content{
  opacity: 1;
  visibility: visible;
}
.sigma_portfolio.style-12 a.sigma_portfolio-category{
  color: #fff;
  font-weight: 400;
}
.sigma_portfolio.style-12 a.sigma_portfolio-category:hover{
  color: var(--thm-base-hover);
}
