/*
Template Name: Fowler
Author: Anstar Productions Group
Email: anstarproductions@gmail.com
File: scss
*/
/*Theme Colors*/
/*bootstrap Color*/
/*Light colors*/
/*Normal Color*/
/*Extra Variable*/
/*Gradiant*/
/*============================================================== 
 This scss/css we made it from our predefine componenet 
 we just copy that css and paste here you can also do that
 ============================================================== */
/** Variables **/

:root {
  --color-background: #cbd5e1;
  --color-background-alt: #8ec6ff;
  --color-border-active: #173db6;
  --color-border-default: #94a3b8;
  --color-highlight: #8ec6ff;
  --color-primary: #144be1;
  --color-primary-active: #19388f;
  --color-text-default: #0f172a;
  --color-text-muted: #475569;

  --font-family-body: "Open Sans", sans-serif;
  --font-family-display: "Nunito Sans", sans-serif;
}

/** Base **/

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

* {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 3px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 2.5rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.125rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-text-default);
  height: 1rem;
  width: 1rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 1.5rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.75rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/** Utilities **/

.col-span-full {
  grid-column: 1 / -1;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

.slider-label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.25rem;
}

.slider-label-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}
/*******************
This is for Header
*******************/
/*******************
Header 15
*******************/
.h15-topbar {
  border-bottom: 1px solid rgba(120, 130, 140, 0.13); }
  .h15-topbar .navbar-brand {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    padding: 15px 0; }
  .h15-topbar .navbar {
	  background-color: navy;
    padding: 0; }
    .h15-topbar .navbar .search-box {
      padding: 15px;
      width: 240px; }
    .h15-topbar .navbar .nav-item .nav-link {
      color: #ffffff;
      padding: 15px 20px; }
      .h15-topbar .navbar .nav-item .nav-link:first-child {
        padding-left: 0px; }
    .h15-topbar .navbar .nav-item:hover .nav-link {
      color: #06a7fd; }
    .h15-topbar .navbar .search .dropdown-menu {
      padding: 20px;
      min-width: 300px; }

.h15-navbar .navbar {
	color: white;
	background-color: navy;
  padding: 0; }
  .h15-navbar .navbar .hidden-lg-up {
    padding: 15px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase; }
  .h15-navbar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 1px solid transparent; }
  .h15-navbar .navbar .navbar-nav .nav-item:hover .nav-link, .h15-navbar .navbar .navbar-nav .nav-item.active .nav-link {
    color: #06a7fd;
    border-bottom: 1px solid #06a7fd; }
  .h15-navbar .navbar .navbar-nav .search .nav-link {
    padding: 18px 23px;
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    background: #06a7fd;
    color: #ffffff; }
  .h15-navbar .navbar .navbar-nav .search:hover .nav-link {
    color: #ffffff;
    border-bottom: 1px solid transparent;
    background: #263238; }
  .h15-navbar .navbar .navbar-nav .search .dropdown-menu {
    padding: 20px;
    min-width: 300px; }
  .h15-navbar .navbar .dropdown-menu {
    border-radius: 0 0 4px 4px;
    margin-top: 0px; }
    .h15-navbar .navbar .dropdown-menu .dropdown-item.active, .h15-navbar .navbar .dropdown-menu .dropdown-item:active, .h15-navbar .navbar .dropdown-menu .dropdown-item:hover {
      background: rgba(120, 130, 140, 0.13); }

.h15-info-bar {
  padding: 15px 0px; }
  .h15-info-bar .donate-btn a {
    font-size: 13px;
    font-weight: 500;
    padding: 13px 25px;
    margin-left: 15px; }
  .h15-info-bar .nav-item .nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 25px; }

/*-------------------*/
/*Slider7 Style Start*/
/*-------------------*/
@-webkit-keyframes imagescale {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);}
  100% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
	transform: scale(1.1);} }
@keyframes imagescale {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
	transform: scale(1);}
  100% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
	transform: scale(1.1);} }

.slider7 .bs-slider, .slider7 .carousel-item {
	background-color: navy;
  max-height: 700px; }

.slider7 .slide-image {
	background-color: navy;
  animation: imagescale 15s ease-in-out infinite alternate;
  -webkit-animation: imagescale 15s ease-in-out infinite alternate;
  -moz-animation: imagescale 15s ease-in-out infinite alternate;
  -o-webkit-animation: imagescale 15s ease-in-out infinite alternate; }

.slider7 h2 {
  font-size: 32px; }

.slider7 .slide-content {
  padding: 80px 25px;
  position: relative;
  border-radius: 100%;
  max-width: 400px;
  min-height: 400px; }

.slider7 label {
  line-height: 31px;
  min-width: 110px; }

.slider7 a {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  position: absolute;
  font-size: 28px;
  right: 70px;
  bottom: 0; }
  .slider7 a i {
    line-height: 60px; }
  .slider7 a:hover {
    background: #2c73cb !important; }

.slider7 .carousel-indicators {
  bottom: 0; }
  .slider7 .carousel-indicators li {
    background-color: rgba(0, 0, 0, 0.3); }
    .slider7 .carousel-indicators li.active {
      background-color: #263238; }

/*******************
Feature 6
*******************/
.feature6 {
	background: #000B88;
	padding: 10px;
}
.wrap-feature6-box {
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in; }
  .wrap-feature6-box .card-body {
    padding: 30px; }
    .wrap-feature6-box .card-body .linking {
      color: #ffffff; }
      .wrap-feature6-box .card-body .linking:hover {
        color: #263238; }
    .wrap-feature6-box .card-body p {
      opacity: 0.8; }
  .wrap-feature6-box:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .wrap-feature6-box .bg-success-light {
    background: #2cdd9b; }

/*******************
Feature 9
*******************/
.wrap-feature9-box .card-body {
  padding: 40px 40px 0px; }
  .wrap-feature9-box .card-body .icon-space {
    padding: 0px 40px 20px 0px; }

/*******************
Feature 18
*******************/
.wrap-feature-18 {
  margin-top: 60px; }
  .wrap-feature-18 [class*=col-lg-6] .card {
    overflow: hidden; }
  .wrap-feature-18 .icon-position {
    position: relative;
    background-size: cover;
    background-position: center center;
    min-height: 200px; }
    .wrap-feature-18 .icon-position .icon-round {
      position: absolute;
      right: -38px;
      top: 20px; }

/*******************
Feature 41
*******************/
.wrap-feature41-box .f41-tab {
  display: block; }
  .wrap-feature41-box .f41-tab li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    padding: 25px; }
    .wrap-feature41-box .f41-tab li a .t-icon {
      margin-right: 25px;
      color: #8d97ad; }
    .wrap-feature41-box .f41-tab li a h5 {
      font-weight: 500; }
    .wrap-feature41-box .f41-tab li a h6 {
      font-size: 14px;
      margin-bottom: 0px; }
    .wrap-feature41-box .f41-tab li a.active, .wrap-feature41-box .f41-tab li a:hover {
      background: #ffffff;
      -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
      box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1); }
      .wrap-feature41-box .f41-tab li a.active .t-icon, .wrap-feature41-box .f41-tab li a:hover .t-icon {
        background: #1dc8cd;
        background: -webkit-linear-gradient(legacy-direction(to right), #1dc8cd 0%, #1dc8cd 100%);
        background: -webkit-gradient(linear, left top, right top, from(#1dc8cd), to(#1dc8cd));
        background: -webkit-linear-gradient(left, #1dc8cd 0%, #1dc8cd 100%);
        background: -o-linear-gradient(left, #1dc8cd 0%, #1dc8cd 100%);
        background: linear-gradient(to right, #1dc8cd 0%, #1dc8cd 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent; }

/*******************
Testimonial 2
*******************/
.testimonial2 .testi2 .image-thumb {
  background: url(../images/grbg.jpg) no-repeat center center;
  text-align: center;
  padding: 70px 0; }
  .testimonial2 .testi2 .image-thumb img {
    width: 400px; }

.testimonial2 .testi2 .owl-dots {
  display: inline-block;
  position: relative;
  top: -100px; }
  .testimonial2 .testi2 .owl-dots .owl-dot {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    background-size: cover;
    margin-right: 10px;
    opacity: 0.4;
    cursor: pointer; }
    .testimonial2 .testi2 .owl-dots .owl-dot span {
      display: none; }
    .testimonial2 .testi2 .owl-dots .owl-dot.active, .testimonial2 .testi2 .owl-dots .owl-dot:hover {
      opacity: 1; }

/*******************
Feature 45
*******************/
.wrap-feature45-box {
  margin-top: 60px; }
  .wrap-feature45-box .f45-tab {
    display: table;
    width: 100%; }
    .wrap-feature45-box .f45-tab > a {
      display: table-cell;
      border: 1px solid rgba(120, 130, 140, 0.13);
      text-align: center;
      padding: 15px 10px;
      background: #f4f8fa;
      color: #263238; }
      .wrap-feature45-box .f45-tab > a.active {
        border-bottom-color: transparent;
        background: #ffffff;
        font-weight: 400; }
  .wrap-feature45-box .tab-pane {
    padding: 60px 0; }
/*******************
Blog homepage 1
*******************/
.blog-home1 [class*=col-] {
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in; }
  .blog-home1 [class*=col-]:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }

/*******************
Footer 2
*******************/
.footer2 {
  padding: 60px 0; }
  .footer2 .f2-middle {
    padding-top: 40px; }
  .footer2 .link {
    color: #8d97ad;
    padding: 10px 15px 10px 0; }
  .footer2 .general-listing li a i {
    font-size: 9px;
    margin-right: 10px; }
  .footer2 .info-box .d-flex {
    padding: 15px 0;
    border-bottom: 1px solid rgba(120, 130, 140, 0.13); }
  .footer2 .subscribe-box {
    background: rgba(120, 130, 140, 0.13);
    padding: 25px; }
    .footer2 .subscribe-box .form-control {
      background: transparent;
      padding: 10px 0;
      border: 0px;
      border-bottom: 1px solid rgba(120, 130, 140, 0.13);
      color: #ffffff;
      border-radius: 0px; }
      .footer2 .subscribe-box .form-control:focus {
        border-bottom: 1px solid #ffffff; }

.appointment-form button {
  cursor: pointer;
  border-radius: 0; }
  .appointment-form button.active, .appointment-form button:active {
    background: #ff4d7e;
    background: -webkit-linear-gradient(legacy-direction(to right), #ff4d7e 0%, #ff6a5b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ff4d7e), to(#ff6a5b));
    background: -webkit-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
    background: -o-linear-gradient(left, #ff4d7e 0%, #ff6a5b 100%);
    background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%); }
