@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  background-color: #44C6DC;
  color: #111;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: #44C6DC;
}
a:focus, a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  color: #000;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background: #44C6DC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 2px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(68, 198, 220, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(68, 198, 220, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
}

.lds-ellipsis {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #44C6DC;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}
/*--------------------------------------------------------------
  ## btn-video
--------------------------------------------------------------*/
.btn-video {
  display: inline-block;
  text-decoration: none;
  background-color: #d0f4f8;
  border: 1px solid #44C6DC;
  color: #f77e7e;
  padding: 8px 25px;
  font-family: 15px;
  font-weight: 700;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-video {
    margin-top: 15px;
  }
}
.btn-video:hover {
  background-color: #44C6DC;
  color: #111;
}

.btn-help {
  display: inline-block;
  text-decoration: none;
  background-color: #d2f5fd;
  border: 1px solid #44C6DC;
  color: #111;
  padding: 8px 25px;
  font-family: 15px;
  font-weight: 700;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 45px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-help {
    margin-bottom: 30px;
  }
}
.btn-help:hover {
  background-color: #44C6DC;
  color: #111;
}

/*--------------------------------------------------------------
  ## btn-yello
--------------------------------------------------------------*/
.btn-yello {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #111;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  background-color: #f6f166;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-yello img {
  height: 20px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .btn-yello img {
    height: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-yello {
    font-size: 16px;
  }
}
.btn-yello:hover {
  background-color: #d3ce3c;
  color: #111;
}

.btn-submit {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 14px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  background-color: #44C6DC;
  color: #FFFFFF;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-submit:hover {
  background-color: #1d8a9d;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
  ## page-banner
--------------------------------------------------------------*/
.page-container {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .page-container {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .page-container {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .page-container {
    padding-top: 40px;
  }
}
.page-container::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: #FFFFFF;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .page-container::after {
    height: 25%;
  }
}

.page-single {
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.page-single .page-body {
  padding: 30px 30px;
}
@media only screen and (max-width: 767px) {
  .page-single .page-body {
    padding: 20px 20px;
  }
}
.page-single .page-body h1 {
  font-size: 29px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .page-single .page-body h1 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.page-single .page-body p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .page-single .page-body p {
    margin-bottom: 21px;
  }
}
.page-single .page-body p a {
  text-decoration: none;
  color: #111;
}

.page-single-footer {
  background-color: #F5F4F7;
  border-top: 1px solid #d5d5d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
}
@media only screen and (max-width: 767px) {
  .page-single-footer {
    padding: 20px 20px;
  }
}
.page-single-footer p {
  font-size: 13px;
  font-weight: 500;
}
.page-single-footer p a {
  text-decoration: underline;
  color: #111;
}
.page-single-footer img {
  height: 25px;
}

/*--------------------------------------------------------------
  ## form-conts
--------------------------------------------------------------*/
.form-sec-t {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .form-sec-t {
    padding-top: 0;
    margin-bottom: 22px;
  }
}
.form-sec-t h2 {
  font-size: 30px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .form-sec-t h2 {
    font-size: 23px;
  }
}
.form-sec-t p {
  font-size: 16px;
}

.form-conts {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  padding: 30px 30px;
}
@media only screen and (max-width: 767px) {
  .form-conts {
    padding: 20px 20px;
  }
}
.form-conts h5 {
  font-size: 18px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.form-conts .row-fill {
  background-color: #f5f4f7;
  border-radius: 10px;
  overflow: hidden;
}
.form-conts .input-val {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  text-align: center;
  width: 100%;
  background-color: #f5f4f7;
  border: 1px solid #f5f4f7;
  padding: 10px 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 8px;
}
.form-conts .input-val:focus, .form-conts .input-val:hover {
  background-color: #d2f5fd;
  border: 1px solid #44C6DC;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.form-conts .form-prices {
  padding-top: 30px;
}
.form-conts .other {
  position: relative;
}
.form-conts .other .input-feeld {
  display: block;
  width: 100%;
  background-color: #f5f4f7;
  border: 1px solid #f5f4f7;
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 700;
}
.form-conts .other span {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 600;
  font-size: 16px;
  color: #5c5c5c;
}
.form-conts .secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
.form-conts .secure img {
  height: 23px;
}
.form-conts .secure p {
  font-size: 18px;
  font-weight: 700;
}
.form-conts .secure p span {
  font-size: 15px;
  font-weight: 500;
  margin-right: 8px;
}

/*--------------------------------------------------------------
  ## feed-sec
--------------------------------------------------------------*/
.feed-sec {
  background-color: #FFFFFF;
  padding: 10px;
}
.feed-sec .feed-single {
  padding: 15px 15px;
  background-color: #FFFFFF;
  border: 3px solid #44C6DC;
}
.feed-sec .feed-single:not(:last-child) {
  margin-bottom: 14px;
}
.feed-sec .feed-single P {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/*--------------------------------------------------------------
  ## footer-d
--------------------------------------------------------------*/
.footer-d {
  background-color: #FFFFFF;
  padding: 25px 0;
}
@media only screen and (max-width: 767px) {
  .footer-d {
    padding: 20px 0;
  }
}
.footer-d .footer-social {
  text-align: end;
}
.footer-d .footer-social a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-d .footer-social a:not(:last-child) {
  margin-right: 12px;
}
.footer-d .footer-social a img {
  height: 35px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-d .footer-social a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/*# sourceMappingURL=main.css.map */