@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
   font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'APOLLO';
  src: url(../fonts/APOLLO.otf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'APOLLO';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'APOLLO';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'APOLLO';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'APOLLO';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'APOLLO';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
 font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 30px 0;
}
a.btn-1 {
    background-color: #162e5d;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
    padding: 10px 25px;
    border-radius: 100px;
}

.menuSec .row {
    align-items: center;
}
.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #112b58;
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #000;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
    top: 0;
}
/*banner css start */
.bann-txt {
    text-align: center;
}

.bann-txt h1 {
    font-size: 62px;
    line-height: 79px;
    color: #112b58;
    font-weight: 600;
    letter-spacing: 2px;
}

.bann-txt h1 span {
    display: block;
}


section.banner {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px;
    position: relative;
}

.bann-txt p {
    font-size: 21px;
    color: #112b58;
    width: 50%;
    margin: 0px auto;
    font-weight: 500;
}

.bann-txt ul {
    margin: 40px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/*banner end*/

/*packages start*/
.main-bx-packages {
    text-align: center;
    padding: 35px;
    background-image: url(../images/packges-main-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(22, 46, 93);
    box-shadow: -11.153px 12.83px 29.44px 2.56px rgba(0, 0, 0, 0.14);
    margin-top: -90px;
    position: relative;
}
.main-bx-pack-sm {
    background-color: #fff;
    padding: 30px;
    height: 290px;
    margin-top: 30px;
    background-color: rgb(251, 251, 251);
    box-shadow: -2.575px 4.286px 14.72px 1.28px rgba(0, 0, 0, 0.17);
}

.main-bx-pack-sm p {
    font-size: 18px;
    color: #112b58;
    line-height: 28px;
    width: 100% !important;
}

.main-bx-pack-sm img {
    width: 100px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}
.main-bx-packages h2 {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 20px;
    color: #112b58;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-bx-packages p {
    font-size: 18px;
    color: #112b58;
    width: 68%;
    margin: 0 auto;
    font-weight: 600;
}

.main-bx-packages h2::before {
    position: absolute;
    top: 21px;
    left: 40px;
    content: '';
    background-color: #cdd1dd;
    width: 300px;
    height: 3px;
}
.main-bx-packages h2::after {
    position: absolute;
    top: 21px;
    right: 31px;
    content: '';
    background-color: #cdd1dd;
    width: 309px;
    height: 3px;
}
/*packages end*/


/*success-stories start*/

section.success-stories {
    padding: 100px 0px;
}

.success-top {
    text-align: center;
}

.success-top h2 {
    font-size: 43px;
    color: #112b58;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}
.stories-main-bx {
    display: flex;
    align-items: end;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/stories-bg.jpg);
    position: relative;
    height: 221px;
    background-color: rgb(22, 46, 93);
    box-shadow: -11.153px 12.83px 29.44px 2.56px rgba(0, 0, 0, 0.14);
}

.stories-txt-sm {
    text-align: center;
    margin-bottom: 30px;
}

.stories-txt-sm h4 {
    font-size: 27px;
    line-height: 1;
    color: #112b58;
    margin-bottom: 10px;
}

.stories-txt-sm p {
    font-size: 14px;
    color: #112b58;
    width: 80%;
    margin: 0 auto;
    margin-bottom: unset;
    line-height: 22px;
    font-weight: 600;
}

.stories-img img {
    height: 231px;
    width: 635px;
    object-fit: contain;
}
.success-top h2::before {
  position: absolute;
  top: 27px;
  left: 130px;
  content: '';
  background-color: #cdd1dd;
  width: 330px;
  height: 3px;
}

.success-top h2::after {
    position: absolute;
    top: 29px;
    right: 60px;
    content: '';
    background-color: #cdd1dd;
    width: 410px;
    height: 3px;
}
.insight-txt {
    text-align: center;
    padding-bottom: 30px;
}

.insight-txt ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.insight-txt h2 {
    font-size: 43px;
    color: #112b58;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}
.insight-txt h2::before{
    position: absolute;
    top: 27px;
    left: -10px;
    content: '';
    background-color: #cdd1dd;
    width: 280px;
    height: 3px;
  }
.insight-txt h2::after{
      position: absolute;
      top: 29px;
      right: -15px;
      content: '';
      background-color: #cdd1dd;
      width: 280px;
      height: 4px;
}


.insight-txt p {
    font-size: 18px;
    color: #112b58;
    width: 71%;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 600;
}
.packages-success {
    position: relative;
}
.packages-success::before {
    position: absolute;
    bottom: -80px;
    left: 0;
    content: '';
    height: 1250px;
    background-image: url(../images/sucess-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    z-index: -1;
}
/*conversation start*/
section.conversation {
    padding: 120px 0px;
}
.top-txt-con {
    text-align: center;
}

.top-txt-con h2 {
    font-size: 43px;
    line-height: 1;
    color: #112b58;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
}
.top-txt-con h2::before{
    position: absolute;
    top: 22px;
    left: 10px;
    content: '';
    background-color: #cdd1dd;
    width: 390px;
    height: 3px;
  }
  .top-txt-con h2::after{
    position: absolute;
    top: 21px;
    right: 10px;
    content: '';
    background-color: #cdd1dd;
    width: 390px;
    height: 3px;
  }
.main-con {
    padding: 50px 80px;
    background-color: rgb(251, 251, 251);
    box-shadow: -2.575px 4.286px 14.72px 1.28px rgba(0, 0, 0, 0.17);
}
.txt-con h3 {
    font-size: 27px;
    line-height: 1;
    color: #112b58;
    font-weight: 600;
    margin-bottom: 10px;
}

.txt-con p {
    font-size: 18px;
    color: #112b58;
    width: 80%;
    line-height: 32px;
    font-weight: 600;
    text-align: justify;
    margin-bottom: 30px;
}

.txt-con ul {
    display: flex;
    align-items: center;
    gap: 17px;
}

.txt-con h5 {
    font-size: 20px;
    color: #112b58;
    margin-bottom: 0px;
    line-height: 19px;
}

.txt-con ul li a {
    font-size: 12px;
    color: #112b58;
    line-height: 20px;
    font-weight: 500;
}

.txt-con ul li i {
    font-size: 30px;
    color: #112b58;
}

.cont-form {
    padding: 14px;
    background-color: rgb(255, 255, 255);
    box-shadow: -2.575px 4.286px 14.72px 1.28px rgba(0, 0, 0, 0.17);
}
.cont-form form input{
  width: 100%;
  padding:10px;
  border-radius: 10px;
  background-color: #d9d8e1;
  outline: none;
  border:none;
  margin-bottom: 20px;
}
.cont-form form textarea{
   width: 100%;
   padding:10px;
   border-radius: 10px;
   background-color: #d9d8e1;
   height: 120px;
   resize: none;
   margin-bottom: 20px;
}
.main-con .row {
    align-items: center;
}
  .cont-form form button{
    background-color: #162e5d;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    font-family: 'Montserrat';
    padding: 10px 15px;
    border-radius: 100px;
    border: unset;
  }
  /*footer start*/
  footer .container-fluid {
    padding: 0 4%;
}
.quik-links.te {
    margin-left: 21%;
}

.ft-logo p {
    font-size: 16px;
    color: #112b58;
    margin: 20px 0px;
    width: 74%;
    font-weight: 600;
}

.quik-links h4 {
    font-size: 19px;
    color: #112b58;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-bottom: 25px;
}

.quik-links ul li a {
    font-size: 15px;
    font-family: 'Montserrat';
    color: #112b58;
    line-height: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.quik-links ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 22px;
}

.quik-links ul li p {
    font-size: 16px;
    color: #112b58;
    margin: unset;
    width: 36%;
    font-weight: 600;
}

.quik-links ul li i {
    color: #112b58;
    font-size: 25px;
}

ul.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: unset;
}

ul.social-icon a i {
    font-size: 20px;
    background-color: #112b58;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ft-top {
    padding-bottom: 15px;
}

.ft-bot-txt {
    text-align: end;
}

.ft-bot {
    padding: 20px 0px;
    border-top: 1px solid #cfd4e4;
}

.ft-bot-txt p {
    font-size: 14px;
    color: #162b59;
    margin: unset;
}

.ft-con {
    position: relative;
}

.ft-con::before {
  position: absolute;
  bottom: 0;
  content: '';
  z-index: -1;
  left: 0;
  height: 900px;
  background-image: url(../images/ft-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
a.btn-1:hover {
    background-color: unset;
    border: 1px solid #1b2e5e;
    color: #1b2e5e;
}