@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*Default-style
======================================================*/
:root {
  --bodyFont: "Jost", sans-serif;
  --headingColor: #121212;
  --paragraphColor: #757575;
  --whiteColor: #ffffff;
  --redColor: #f54337;
  --fontSize: 14px;
  --transition: all ease .5s;
}

body {
  color: var(--paragraphColor);
  font-family: var(--bodyFont);
  font-size: var(--fontSize);
  font-weight: 400;
  background-color: var(--whiteColor);
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-family: var(--bodyFont);
  font-weight: 400;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
  font-size: var(--fontSize);
  color: var(--paragraphColor);
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.owl-nav {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 0 !important;
}

.form-control {
  height: 52px;
  border: 1px solid #e5e0e6;
  padding-left: 15px;
  background-color: transparent;
  border-radius: 0;
}
.form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
  font-size: 14px;
}
.form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
  font-size: 14px;
}
.form-control:focus {
  border: 1px solid var(--headingColor);
  box-shadow: none;
}
.form-control:focus::-moz-placeholder {
  opacity: 0;
}
.form-control:focus::placeholder {
  opacity: 0;
}

textarea {
  height: auto !important;
}

.bg-f3f9fd {
  background-color: #f3f9fd;
}

.container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

/*Default-btn
======================================================*/
.default-btn {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 35px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: inline-block;
  border: 1px solid var(--headingColor);
  background-color: var(--headingColor);
  font-family: var(--headingFont);
  z-index: 1;
}
.default-btn i {
  font-size: 14px;
  padding-left: 5px;
  position: relative;
  top: 1px;
}
.default-btn img {
  filter: invert(1);
}
.default-btn .loader-icon {
  animation: rotate 7s linear infinite;
  transition: var(--transition);
  position: relative;
  padding-left: 3px;
  top: -1px;
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--redColor);
  border-color: var(--redColor);
}
.default-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.default-btn:hover .loader-icon {
  filter: invert(1);
}
.default-btn:focus {
  box-shadow: none;
}
.default-btn.style2 {
  background-color: transparent;
  color: var(--headingColor);
}
.default-btn.style2 img {
  filter: unset;
}
.default-btn.style2:hover {
  background-color: var(--headingColor);
  color: var(--whiteColor);
  border-color: var(--headingColor);
}

.section-title {
  max-width: 650px;
  margin: auto auto 45px auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 500;
}
.section-title h3 {
  font-size: 24px;
}

.fww-pagination {
  text-align: center;
  margin-top: 10px;
}
.fww-pagination ul {
  padding-left: 0;
  margin-bottom: 0;
}
.fww-pagination ul li {
  display: inline-block;
  padding-right: 7px;
}
.fww-pagination ul li:last-child {
  margin-right: 0;
}
.fww-pagination ul li a {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 38px;
  background-color: #f6f6f8;
  display: inline-block;
  transition: var(--transition);
  border: 1px solid #f6f6f8;
  color: var(--paragraphColor);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.fww-pagination ul li a i {
  position: relative;
  transition: var(--transition);
  color: var(--headingColor);
  font-size: 16px;
  position: relative;
  font-weight: 600;
  left: 1px;
  top: 1px;
}
.fww-pagination ul li a:hover, .fww-pagination ul li a.active {
  color: var(--headingColor);
  border-color: var(--headingColor);
}
.fww-pagination ul li a.arrow-btn {
  position: relative;
  top: 4px;
}
.fww-pagination.align-start {
  text-align: start;
}

@keyframes animate {
  0% {
    color: var(--headingColor);
    transform: translateY(0);
    margin-left: 0;
  }
  25% {
    color: var(--headingColor);
    transform: translateY(-20px);
    margin-left: 5px;
    text-shadow: 0 40px 5px rgba(239, 109, 88, 0.2);
  }
  100% {
    color: var(--headingColor);
    transform: translateY(0);
    margin-left: 0;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*
Go To Top Style
======================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background: var(--headingColor);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 50px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--whiteColor);
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--headingColor);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.go-top:hover {
  color: #ffffff;
  background: var(--whiteColor);
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i {
  color: var(--whiteColor);
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
}/*# sourceMappingURL=style.css.map */