
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&family=Lobster&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}
a {
  text-decoration: none !important;
}
li{
  list-style: none;
}
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
}
p{
  font-family: 'Poppins', sans-serif;
}
.no-gutters .col-lg-6 {
  padding-right: 0;
  padding-left: 0;
}
html, body{
  overflow-x: hidden;
}
:root {  
  --tlight: #1DC9FF;
  --tbac: #6490fe2b;
  --twhite: #ffffff;
  --tblack: #000000;
  --tdark: #003B9E;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--tdark);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  transition: all 0.4s;

}

.back-to-top i {
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--tdark);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* background: var(--torg); */
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-top: 30px;
}
#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 30px;
}

.scrolled-offset {
  /*margin-top: 70px;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 15px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/* HEADER END */
.btn_blue {
  background-color: var(--tdark);
  font-size: 16px;
  padding: 13px 30px !important;
  text-align: center;
  color: var(--twhite);
  border-radius: 0px;
  text-transform: capitalize;
  font-weight: 500 !important;
  transition: 0.2s ease-in-out;
  border: 1px solid var(--tdark);
}
.btn_blue:hover{
  background-color: var(--tlight);
  color: var(--tblack) !important;
  transform: scale(1.1);
}
.btn_trans {
  background-color: transparent;
  font-size: 16px;
  padding: 13px 30px !important;
  text-align: center;
  color: var(--twhite);
  border-radius: 0px;
  text-transform: capitalize;
  transition: 0.2s ease-in-out;
  margin-left: 5px;
  border: 1px solid var(--twhite);
}
.btn_trans:hover{
  background-color: var(--tlight);
  color: var(--tblack) !important;
  transform: scale(1.1);
}
.btn_blck {
  background-color: transparent;
  font-size: 16px;
  padding: 13px 30px !important;
  text-align: center;
  color: var(--tblack);
  border-radius: 0px;
  text-transform: capitalize;
  transition: 0.2s ease-in-out;
  margin-left: 5px;
  border: 1px solid var(--tblack);
}
.btn_blck:hover{
  background-color: var(--tlight);
  color: var(--tblack) !important;
  transform: scale(1.1);
  border-color: var(--tlight);
}
.sec_btn{
  margin-top: 30px;
}
/* .header_btn {
  margin-left: 80px;
} */
.header_btn .btn_blue{
  text-transform: uppercase;
}
/* BUTTON SECTION END */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero{
  background-image: url(../images/13.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}
.mhr{
  align-items: center;
  margin-top: 50px;
}
.herocl1 h1{
  color: var(--twhite);
  font-size: 53px;
  line-height: 60px;
  font-weight: 600;
  text-transform: capitalize;
}
.herocl1 h1 span{
  color: var(--tlight);
}
.herocl1 p{
  font-size: 16px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.hercl2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* HERO SECTION END */

/* FOOTER AND COPYRIGHT SECTION START */
.footer {
  padding-top: 75px;
  padding-bottom: 50px;
}

.footre_rw {
  align-items: flex-start;
  display: flex;
}

.fcol1 img {
  width: 65%;
  margin-right: auto;
  display: block;
}

.fcol1 p {
  font-size: 15px;
  color: var(--tblack);
  line-height: 30px;
  font-weight: 400;
  margin-top: 20px;
  font-family: Poppins;
}

.fcol2 h3 {
  color: var(--tblack);
  font-family: Poppins;
  font-size: 25px;
  font-weight: 600;
}

.fcol3 h3 {
  color: var(--tblack);
  font-family: Poppins;
  font-size: 25px;
  font-weight: 600;
}

.fcol2 ul {
  padding-left: 10px;
  margin-top: 20px;
}

.fcol3 ul {
  padding-left: 10px;
  margin-top: 20px;
}

.fcol2 ul li {
  margin-top: 12px;
  list-style-type: disclosure-closed;
  color: var(--tblack);
}

.fcol3 ul li {
  margin-top: 15px;
  color: var(--tblack);
}
.fcol3 ul li i{
  margin-right: 10px;
  font-size: 18px;
}
.fcol2 ul li:hover {
  color: #339dc2;
}

.fcol3 ul li:hover {
  color: var(--tdark);
}

.fcol2 ul li a {
  color: var(--tblack);
}

.fcol2 ul li a:hover {
  color: #339dc2;
}

.fcol3 ul li a {
  color: var(--tblack);
}

.fcol3 ul li a:hover {
  color: #339dc2;
}

.fcol4 img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transform: scale(1.2);
}

.fcol1 img {
  width: 50%;
}

.copy {
  background: #0B0A1E;
  text-align: center;
}

.copyright {
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.copr1 p {
  font-size: 15px;
  color: var(--twhite);
}

.copr1 p span {
  color: var(--tdark);
}

.copr2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}

.copr2 ul li {
  padding-left: 10px;
}

.copr2 ul li a {
  color: var(--twhite);
  font-size: 16px;
  font-weight: 400;
}

.copr2 ul li a:hover {
  color: var(--tdark);
}
/* FOOTER AND COPYRIGHT SECTION END */

/* SCROLL */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--tdark);
  border-color: var(--tdark);
  border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tdark);
}
/* EBOOK SECTION 2 START */
.ebooksec2{
  background-color: var(--tbac);
  padding-top: 30px;
  padding-bottom: 70px;
}
.ebs2cl1{
  text-align: center;
}
.ebs2cl1 img{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.ebs2cl1 h2{
  font-weight: 700;
  color: var(--tblack);
  font-size: 35px;
  text-transform: capitalize;
  margin-top: -20px;
}
.ebs2cl1 h3{
  font-size: 21px;
  text-transform: capitalize;
  font-weight: 400;
}
/* EBOOK SECTION 2 END */

/* EBOOK SECTION 3 START */
.ebr3rw{
  align-items: center;
}
.ebr3cl2 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.ebr3cl1 h2{
  color: var(--tblack);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.ebr3cl1 h3 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
}
.ebr3cl1 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.ebook3sec{
  margin-top: 50px;
}
/* EBOOK SECTION 3 END */

/* MID BANNER SECTION START */
.midbannersec{
        padding: 50px 0;
  background-image: url(../images/3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 50px;
}
.midbnrw{
  align-items: center;
}
.midbnrw h2 {
  font-weight: 500;
  color: var(--twhite);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
}
.midbnrw p {
  font-size: 17px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.midbnrw img{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: -50px;
  margin-bottom: -50px;
}
/* MID BANNER SECTION END */

/* EBOOK SECTION 4 START */
.ebooks4{
  padding-top: 100px;
  padding-bottom: 30px;
}
.ebsec4rw{
  align-items: center;
}
.ebs4cl1 h2{
  color: var(--tblack);
  font-size: 20px;
  font-weight: 500;
  align-items: center;
  margin-bottom: 30px;
}
.ebs4cl1 h3 {
    font-weight: 700;
    color: var(--tblack);
    font-size: 39px;
    text-transform: capitalize;
    margin-top: -20px;
    line-height: 50px;
}
.ebs4cl1 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 26px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.main_dflex{
  display: flex;
  align-items: start;
  margin-top: 15px;
}
.ebs4df {
    display: flex;
    align-items: baseline;
    width: 100%;
}
.ebdf1 i{
  color: var(--tdark);
  font-size: 25px;
  margin-right: 15px;
}
.ebdf1 h3{
  color: var(--tblack);
  font-size: 18px;
  line-height: 27px;

}
.ebdf1 h3 span{
  font-weight: 500;
}
.ere h3 span{
  color: var(--tdark);
}
.eb4_box{
  display: flex;
  align-items: center;
  background-color: #F6F6F6;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 2px solid #F6F6F6;
  transition: 0.5s ease-in-out;
}
.eb4_box:hover{
  border: 2px solid var(--tdark);
  transform: scale(1.1);
}
.eb4_box img{
  width: 115px;
  padding-right: 16px;
}
.eb4_box h3{
  color: var(--tblack);
  font-size: 18px;
}
.eb4_box h4{
  color: var(--tblack);
  font-size: 25px;
  margin-top: -7px;
  font-weight: 700;
}
.eb4_box p{
  font-size: 16px;
  line-height: 30px;
}
/* EBOOK SECTION 4 END */
.ebook5sec{
  background-color: var(--tbac);
  padding-top: 60px;
  padding-bottom: 50px;
  margin-top: 30px;
}

/* SERVICES SECTION START */
.servicesec{
  text-align: center;
  background-color: var(--tbac);
  padding-top: 50px;
  padding-bottom: 80px;
}
.sercrw{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 50px;
}
.sercrw h2 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
}
.sercrw p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 26px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.sbox{
  background-color: var(--twhite);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #003b9e52;
}
.sbox h3{
  font-weight: 700;
  font-size: 25px;
}
.sbox p{
  font-size: 16px;
  line-height: 28px;
}
.cta img{
  width: 70px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* SERVICES SECTION END */

/* AUTHOUR SECTION START */
.authoursec{
  background-image: url(../images/14.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
}
.authrw img{
  width: 15%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 40px;
}
.authrw{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 50px;
}
.authrw h2 {
  font-weight: 700;
  color: var(--twhite);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
}
.cha .authrw h2 {
  text-transform: capitalize;
}
.authrw p {
  font-size: 16px;
  font-weight: 400;
  color: var(--twhite);
  line-height: 33px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
/* AUTHOUR SECTION END */

/* EBOOK SECTION 6 START */
.ebooksec6{
  padding-top: 70px;
  padding-bottom: 30px;
}
.eb6cl1 h2 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
}
.eb6cl1 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 26px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
}
.ebooksec6 .btn_trans{
  color: var(--tblack) !important;
  border-color: var(--tblack) !important;
}
.ebooksec6 .sec_btn{
  margin-bottom: 40px;
}
.eb6rw{
  align-items: flex-end;
}
.main_serv_box{
  background-color: var(--twhite);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0px 4px 8px 2px #9d9d9d4f;
  transition: 0.2s ease-in-out;
  border: 1px solid var(--twhite);
  margin-bottom: 20px;
}
.main_serv_box:hover{
  border-color: var(--tlight);
}
.main_serv_box h3 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 23px;
  text-transform: uppercase;
}
.main_serv_box p{
  line-height: 30px;
}
.main_serv_box a{
  color: var(--tdark);
  font-size: 17px;
  font-weight: 600;
}
.eb6cl12 .main_serv_box{
  margin-bottom: 25px;
}
/* EBOOK SECTION 6 END */

/* EBOOK SECTION 7 START */
.ebooksec7{
  padding-top: 50px;
  padding-bottom: 30px;
}
.eb7cls1 h2{
  color: var(--tblack);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.eb7df{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.eb7df img{
  width: 12%;
  margin-right: 20px;
}
.eb7cls1 h3 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 42px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.eb7cls1 p {
    font-size: 16px;
    font-weight: 400;
    color: var(--tblack);
    line-height: 30px;
    font-family: poppins;
    margin-bottom: 20px;
    width: 100%;
}
.eb7cls2 img{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
/* EBOOK SECTION 7 END */

/* FAQS SECTION START */
.faqs_sec{
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 20px;
  padding-bottom: 50px;
  background-color: #648ffe36;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 25px;
}
.faq_rw{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-top: 50px;
  padding-bottom: 30px;
}
.faq_rw h2 {
  font-weight: 700;
  color: var(--tblack);
  font-size: 45px;
  text-transform: capitalize;
  margin-top: -20px;
  text-align: center;
}
.faq_rw p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 26px;
  font-family: poppins;
  margin-bottom: 20px;
  padding-right: 34px;
  text-align: center;
}
.btn-link::before {
  content: "+ ";
  float: right;
  text-align: right;
  position: absolute;
  right: 27px;
  color: #000;
  font-size: 25px;
  top: 8px;
  border: 1px dashed #000;
  padding: 0px 11px;
}
.card{
  background: var(--twhite) !important;
  margin-bottom: 15px;
  border: none !important;
  /* height: 65px; */
}
.card-header {
  border: none !important;
}
.btn-link{
  color: var(--tblack);
  font-size: 19px;
  font-weight: 500;
  padding-top: 10px;
  text-decoration: none;
}
/* FAQS SECTION END */

/* CONTACT FORM SECTION START */
.contactformsec{
  background-image: url(../images/sec.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 30px;
}
.cntrw{
  align-items: center;
}
.cntcl1 h2{
  color: var(--tdark);
  font-size: 40px;
  font-weight: 700;
}
.cntcl1 p{
  font-size: 16px;
  color: var(--tblack);
  margin-bottom: 30px;
}
.cns2 img{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.field input{
  height: 50px;
  background-color: var(--twhite);
  border-radius: 0px;
  width: 100%;
  border: 1px solid #808080;
  padding-left: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.field input:focus{
  border: 1px solid var(--tlight);
  box-shadow: none;
  outline: none;
}
.field label{
  color: var(--tdark);
  font-weight: 600;
  font-family: 'Poppins';
}
.contactformsec button{
  background-color: var(--tdark);
  font-size: 16px;
  padding: 13px 30px !important;
  text-align: center;
  color: var(--twhite);
  border-radius: 0px;
  text-transform: capitalize;
  transition: 0.2s ease-in-out;
  border: 1px solid var(--tdark);
  width: 30%;
  /* margin-left: 10px; */
}
.contactformsec button:hover{
  background-color: var(--tlight);
}
/* CONTACT FORM SECTION END */

/* ANIMATION */

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-16px);
  }

  100% {
      transform: translateY(0);
  }
}

/* INNERPAGES */
.gh2sec{
  background-color: var(--tbac);
}
.midbannersec2{
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/mid2.png);
}
.midbannersec2 .midbnrw img {
  width: 100%;
  transform: scale(1.3);
  margin-top: -120px;
  margin-bottom: -170px;
}
.ebdf1 h4{
  color: var(--tblack);
  font-weight: 800;
  font-size: 28px;
  margin-right: 20px;
}
.inp2cls2 h2{
  font-weight: 700;
  color: var(--tblack);
  font-size: 45px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.inp2cls2 p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tblack);
  line-height: 30px;
  font-family: poppins;
  margin-bottom: 20px;
}
.inp2cl1 img{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.inpagerw{
  align-items: center;
}
.df_list{
  margin-top: 20px;
}
.dflst{
  display: flex;
  align-items: flex-start;
}
.dflst img{
  margin-right: 10px;
}
.dflst p{
  line-height: 28px;
}
.in_sbox{
  display: flex;
  align-items: flex-start;
}
.in_sbox img{
  width: 70px;
  margin-right: 10px;
  display: block;
}
.in_sbox h3{
  font-weight: 700;
  color: var(--tblack);
  font-size: 22px;
}
.in_sbox p{
  padding-right: 0px;
  font-size: 14px;
}
.in_sbox{
  background-color: #EEECEC;
  padding: 20px 15px;
  padding-bottom: 0px;
}
.inpgesec2{
  margin-top: 30px;
  margin-bottom: 50px;
}
.innerpagesec3{
  padding-top: 50px;
  padding-bottom: 30px;
}
.ebooks5a {
  padding-top: 0px;
}
/* TESTIMONIALS SECTION START */
.testimonials_sec{
  background-color: var(--tbac);
  padding-top: 80px;
  padding-bottom: 50px;
}
.testirw h2{
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
.maintesti_boxes{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.df_item{
  display: flex;
  align-items: center;
}
.df_item img{
  width: 80%;
  margin-right: 15px;
  display: block;
}
.df_item h3{
  color: #072655;
  font-size: 20px;
  font-weight: 700;
}
.df_item h4{
  color: var(--tdark);
  font-size: 15px;
  font-weight: 500;
}
.item p{
  font-size: 16px;
  line-height: 28ccpx;
  margin-top: 20px;
}

.item{
  background-color: var(--twhite);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px 2px #9d9d9d4f;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.fgh img{
    width: 100% !important;
    transform: scale(1.1) !important;
    margin-top: -149px !important;
    margin-bottom: -170px !important;
}
/* TESTIMONIALS SECTION START */

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.8);
    transition: all 0.7s ease-in-out;

  }
}

/* INNER PAGE FORM START */
.inner_page_form{
  background: linear-gradient(73deg, #1dc9ff 37%, #003b9e 82%);
  padding: 30px 40px;
  margin-left: 20px;
  margin-right: 20px;
}
.inner_page_form h3{
  color: var(--twhite);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  font-family: poppins !important;
  margin-bottom: 20px;
}
.inner_page_form input{
  width: 100%;
  margin-top: 20px;
  border: 1px solid #fff;
  border-radius: 0px;
  height: 50px;
  font-size: 16px;
  font-family: poppins;
  color: var(--tblack);
  padding-left: 20px;
  background: #ffffff;
  margin-top: 2 0px;
}
.inner_page_form input::placeholder{
  color: var(--tblack);
}
.inner_page_form input:focus{
  background-color: var(--twhite);
  border-color: var(--tblu);
  box-shadow: none;
  color: var(--tblack);
}
.inner_page_form img{
    position: absolute;
    width: 200px;
    top: -112px;
    left: -33px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.modal-header {
    border: none;
    padding: 0;
    padding-top: 20px;
}
.modal-content {
    background-color: transparent;
    border: none;
}
.modal-header .close {
    margin: 0;
    margin-top: -20px;
    color: var(--tpurple) !important;
    background-color: #fff;
    opacity: 1;
    border-radius: 100%;
    width: 8%;
    height: 39px;
}
.modal-open{
    padding-right:0 !important;
}
.success-message {
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  background: green;
  color: white;
}

