@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('http://fonts.cdnfonts.com/css/arial');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('http://fonts.cdnfonts.com/css/bebas-neue');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&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');
/* @import url('./fonts.css') !important; */
:root {
	--border-none: none;
	--heading-weight: #fff;
	--main-heading-color: #033560;
	--text-color: #000;
    --span-heaing-color:#DEA83E;
	--sec-heading-color: #005995;
	--bg-dark: #fff;
	--btn-color: #005995;
    
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1400px) { 
	.container, .container-lg, .container-md, .container-sm, .container-xl{
max-width:1180px;
	}
}

*,
html {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth !important;
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

section {
	position: relative;
}

*,
:before,
:after {
	box-sizing: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

ul {
	list-style: none;
	padding-left: 0;
}

a {
	text-decoration: none;
}

ul {
	margin: 0px;
	padding: 0px;
}

html {
	overflow-x: hidden;
}

p,
a,
ul,
li,
span,
button,
pre {
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Prata', serif;
	margin-bottom: 0;
	position: relative;
	letter-spacing: 0.7px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a {
	text-decoration: none;
	cursor: pointer;
}

::-webkit-scrollbar {
	width: 0.3rem;
}

/* Track */

::-webkit-scrollbar-track {
	background-color: #fff;
}

/* Handle */

::-webkit-scrollbar-thumb {
	background-color: #FFF;
	border-radius: 0.2rem;
	opacity: 0.6;
}

/* ::selection {
    background-color: #FFE84C;
    color: #fff;
} */

.dropdown-toggle::after {
	vertical-align: 1px;
}

section {
	padding: 100px 0;
}

.main-contnet h4 {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 4.4px;
    color: var(--sec-heading-color);
}

.main-contnet h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 66px;
    line-height: 80px;
    text-align: center;
    color: var(--sec-heading-color);
    padding: 30px 0px;
}

.main-contnet h2 span{
    color:var(--main-heading-color);
}

.main-line {
    background: linear-gradient(270deg, rgba(0, 89, 149, 0.0001) 0%, #005995 51.72%, rgba(0, 89, 149, 0.0001) 100%);
    width: 100%;
    height: 1px;
    margin: 20px 0px;
}

.main-contnet  h3 {
     font-style: normal;
    font-weight: 400;
    font-size: 33px;
    line-height: 40px;
    text-align: center;
    color:var(--main-heading-color);
}
.top-angeline-img:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0001) 0%, #FFFFFF 100%);
    width: 100%;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 0px;
    content: "";
}
  .wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
  .wrapper .circle {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #DEA83E;
    margin: auto;
    transform: scale(1, 1);
  }
  .wrapper .circle.pulse {
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
    background-color: #FBCD73;
  }
  .wrapper svg {
    fill: #fff;
    stroke: #fff;
    stroke-linejoin: round;
    stroke-width: 5;
    transition: all 0.3s;
  }
  .wrapper svg:hover {
    cursor: pointer;
    fill: #fff;
    stroke: #fff;
    transform: scale(1.2, 1.2);
  }
  
  @-webkit-keyframes pulse {
    0% {
      transform: scale(1, 1);
    }
    25% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1, 1);
    }
    25% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
    }
    100% {
      transform: scale(1, 1);
    }
  }


  #video-popup-container {
    display: none;
    position: fixed;
    z-index: 996;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 20%;
    background-color: #fff;
}



#video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    background-color: #000;
    line-height: 25px;
    color: #fff;
}

#video-popup-close  .fade:not(.show) {
    opacity: 1 !important;
}

#video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border: 2px solid #000;
    border-radius: 2px;
    background-color: #000;
}

#video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
}

#video-popup-overlay {
    display: none;
    position: fixed;
    z-index: 995;
    top: 0;
    background-color: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    left: 0;
}

#video-popup-close:hover {
    color: #DE0023;
}


.top-btn-sec {
    display: flex;
    width: 90%;
    margin: 0 auto;
    gap: 30px;
    margin-top: 70px;
    align-items: center;
}

.top-btn-sec h5 {
    font-weight: 400;
    font-size: 27px;
    line-height: 40px;
    color: #033560;
    text-align: left;
    width: 40%;
}

.main-btn {
    background: #005995;
    box-shadow: 0px 2px 61px #005995;
    border-radius: 10px;
    font-family: 'Arial';
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #F1EEE5;
    padding: 15px 30px;
	font-weight: 600;
}

.logo-outer-sec {
    background: #002B50;
    border-radius: 8px;
    z-index: 5;
    position: relative;
    display: flex;
    padding: 40px 40px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: -55px;
}

.logo-outer-sec h6 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
}

/********************************form-book-sec****************************/

#book-form-sec {
    background: var(--main-heading-color);
    padding:0px 0px;
}

.form-book-content {
    padding: 50px 0px 20px 0px;
}

.form-book-content h4 {
    color: #FFFFFF;
     font-size: 21px;
   letter-spacing: 4.01739px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.form-book-content .main-line {
    background: linear-gradient(270deg, rgba(0, 89, 149, 0.0001) 0%, #ffffff 51.72%, rgba(0, 89, 149, 0.0001) 100%);
}

.form-book-content  h2 {
    padding: 5px 0px;
    font-weight: 400;
    font-size: 55px;
    line-height: 79px;
    text-align: center;
    color: var(--span-heaing-color);
}

.form-book-content h2 span {
    color:var(--heading-weight);
}

.book-outer-part {
     margin-top: -57px;
    margin-bottom: -58px;
}

#financial-sec {
   padding: 100px 0px 0px 0px;
}
.financial-sec-content h4 {
     font-size: 30px;
    line-height: 34px;
    text-align: center;
    letter-spacing: 5.73913px;
    text-transform: uppercase;
    color: #DEA83E;
}

.financial-sec-content h2 {
    padding: 0px 0px;
    font-weight: 400;
    font-size: 79px;
    line-height: 72px;
    text-align: center;
    color: #001625;
}

.financial-sec-content h2 span {
   
    color: var(--sec-heading-color);
}

.financial-sec-content .main-btn {
    box-shadow: none;
    text-align:center;
    margin-top:20px;
    
}

.financial-sec-content {

    text-align:center;
}

.logo-sec-img {
    position: relative;
    margin-top: -48%;
}

.logo-sec-img img {
    position: absolute;
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
}

.loptop-logo-sec img {
    width: 100%;
}

.loptop-logo-sec {
    margin-top: -12%;
}

.how-help {
    position: absolute;
    right: -30px;
    top: 0px;
    z-index: 0;
}

.how-help  img {
    clip-path: polygon(49% 0, 100% 0%, 100% 100%, 0% 100%);
}
/**********************************how can help **********************************/
#how-can-help {
    background-color: var(--main-heading-color);
    padding-bottom: 100px;
    overflow: hidden;
}

.how-can-sec-content h4 {
     font-size: 17px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 4px;
    color: #FFFFFF;
}

.how-can-sec-content h2 {
    padding: 10px 0px;
    font-weight: 400;
    font-size: 108px;
    line-height: 108px;
    text-align: center;
    color:var(--span-heaing-color);
}

.how-can-sec-content h2 span {
    color:var(--heading-weight)
}

.how-can-sec-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    width: 65%;
    margin: 0 auto;
    padding: 20px 0px 40px 0px;
    font-family: 'Lato';
    font-style: normal;
}

.how-can-inner-btn {
    text-align: center;
}

.how-can-inner-btn .main-btn {
    box-shadow: none;
    background: #FFFFFF;
    border-radius: 8px;
    color: #005995;
}

.main-btn svg {
     margin-left:10px;
}

.how-can-inner-btn .main-btn path {
    stroke: #084298;
}
.main-btn:hover{
     color:#033560;
    background-color:#dea83e;

}

.how-can-sec-content .main-line {
    background: linear-gradient(270deg, rgba(0, 89, 149, 0.0001) 0%, #ffffff 51.72%, rgba(0, 89, 149, 0.0001) 100%);
}

.full-circle-sec-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 4.70588px;
    color: #000000;
}
.full-circle-sec-content p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    width: 70%;
    margin: 0 auto;
    padding-top: 20px;
}

.full-circle-sec-content h2 sapn {
    color: #000;
}

.full-circle-sec-content h2 {
    padding: 10px 0px;
}

.full-circle-inner-btn {
    text-align: center;
    margin-top: 30px;
}
.full-circle-inner-btn .main-btn {
    box-shadow: none;
}


/********************new slider**********************/


.swiper-container {
    position: relative;
    width: 100vw;
    height: 600px;
    margin-top:80px;
  }
  
  .swiper-container > .swiper-slide__content {
    position: absolute;
    top: 0;
  }
  
.swiper-slide {
    transition: all 200ms linear;
    transform: scale(1);
}
  /*.swiper-slide.swiper-slide-active {
    transform: scale(1);
    background: #fc0;
  }*/

  

  .swiper-slide:nth-child(even) {
    margin-top:5%;
  }
  
  .swiper-slide__content {
    height: 300px;
  }

  .testimonials-box-outer {
    position: relative;
}

.testimonals-text-box {
    background-color: #DEA83E;
    padding: 15px 20px;
    position: absolute;
    bottom: 19px;
}

.testimonals-text-box  p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin: 0px;
}

.testimonials-box-outer img {
    filter: drop-shadow(0px 21px 30px rgba(0, 0, 0, 0.226836));
    border-radius: 19px;
}

#boradcost-sec {
    background: #F6F6F6;
    padding-top: 450px;
    margin-top: -427px;
}

#come-full-circle {
    padding-bottom: 0px;
}

.boradcost-sec-content h4 {
    font-weight: 500;
    text-align: left;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 4.70588px;
    text-transform: uppercase;
    color: #DEA83E;
}

.boradcost-sec-content h2 {
     padding: 30px 0px;
    font-weight: 400;
    font-size: 64px;
    line-height: 89px;
    color: #005995;
    text-align: left;
}

.boradcost-sec-content h2 span {
    color: #DEA83E;
}

.boradcost-outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boradcost-inner-btn .main-btn {
    box-shadow: none;
 }


 .borad-slider .owl-dots {
    text-align: left;
    padding-top: 15px;
  }
  .borad-slider .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
    border: 1px solid #979797;
  }
  .borad-slider .owl-dots button.owl-dot.active {
    background: #005995;
  }
  .borad-slider .owl-dots button.owl-dot:focus {
    outline: none;
  }
  .borad-slider .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.38) !important;
  }
  
  .borad-slider .owl-nav button:focus {
      outline: none;
  }

  .borad-slider .owl-nav {
    display: none;
}

.boradcost-box {
    background: #FFFFFF;
    border-radius: 19px;
    padding: 25px 30px;
}

.boradcost-btn-main {
    position: absolute;
    top: 50%;
    left: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.boradcost-img-box {
    position: relative;
}

.boradcost-img-box  .wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.boradcost-img-box   .wrapper .circle {
    width: 50px;
    height: 50px;
 
}

.boradcost-img-box .wrapper .circle {
   
    background-color: #005995;
   
}

.boradcost-img-box  .wrapper .circle.pulse {
    background-color:rgba(0, 89, 149,0.5)
}

.boradcost-content-box h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
    padding: 25px 0px;
	min-height:140px;
}

#freedom-sec {
    background-color: var(--main-heading-color);
    padding-bottom: 0px;
    overflow: hidden;
}

.freedom-outer {
    position: relative;
}

.freedom-img {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
}

.foundation-content p {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #001625;
    padding: 20px 0px 20px 0px;
    width: 74%;
    margin: 0 auto;
}

.foundation-content{
    text-align:center;
}

.freedom-inner-btn .main-btn {
    box-shadow:none;
}

.top-banner-content {
    margin-top: 40px;
}

.top-banner-content h2 {
    padding: 10px 0px;
}

.top-banner-content  h3 {
    margin-bottom: 30px;
}

.top-banner-content   p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #dea83e;
    margin-top: 11px;
}


/*************************form outer***********************/

.book-form-outer div.wpforms-container-full .wpforms-form .wpforms-field-label {
    display: none;
}

.book-form-outer div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    clear: unset;
}

.book-form-outer  div.wpforms-container-full .wpforms-form input.wpforms-field-medium {
    max-width: 100%;
}

.book-form-outer div.wpforms-container-full .wpforms-form input[type=text] {
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    width: 100%;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    background-color: transparent;
    line-height: 21px;
     color: #F1EEE5;
    padding: 15px 15px;
     height: 50px !important;
    color: rgba(241, 238, 229,0.5) !important;
}

button#wpforms-submit-185 {
    max-width: 31%;
    margin-left: 1%;
}

.book-form-outer  div.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: #eee;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1em;
    padding: 15px 30px;
    background: #389BD9;
    box-shadow: 0px 2px 61px #005995;
    border-radius: 8px;
    margin-left: 4%;
    border: none;
     font-family: 'Arial';
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #F1EEE5;
}

.book-form-outer div.wpforms-container-full .wpforms-form input[type=email]{
	  border: 1px solid #FFFFFF;
    border-radius: 8px;
    width: 100%;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    background-color: transparent;
    line-height: 21px;
     color: #F1EEE5;
    padding: 15px 15px;
    height: 50px !important;
    color: rgba(241, 238, 229,0.5) !important;
}

.book-form-outer  div.wpforms-container-full .wpforms-form button[type=submit]:hover{
	box-shadow: 0px 2px 61px #005995;
    color: #033560;
    background-color: #dea83e;
	border:none;
}

.book-form-outer  div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  position: unset;
}

.book-form-outer input::-webkit-input-placeholder { /* Edge */
  color: rgba(241, 238, 229,0.5) !important;
	 font-size: 18px;
}

.newsletter-outer-form div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium {
    max-width: 100%;
}

.newsletter-outer-form div.wpforms-container-full .wpforms-form select.wpforms-field-medium {
    max-width: 100%;
}

.newsletter-outer-form div.wpforms-container-full .wpforms-form .wpforms-field-label {
    display: none;
}

.newsletter-outer-form  div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=email] {
	border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: transparent;
    height: 50px;
    margin: 0px;
}

.newsletter-outer-form div.wpforms-container-full .wpforms-form input[type=email] {
	border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: transparent;
    height: 50px;
    margin: 0px;
}

.newsletter-outer-form input::-webkit-input-placeholder { /* Edge */
  font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	color: #FFFFFF;

}

.newsletter-outer-form  div.wpforms-container-full .wpforms-form input[type=tel] {
	border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: transparent;
    height: 50px;
    margin: 0px;
}

.newsletter-outer-form  div.wpforms-container-full .wpforms-form select {
	border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: transparent;
    height: 50px;
    margin: 0px;
	color: #fff;
}

.newsletter-outer-form  div.wpforms-container-full .wpforms-form button[type=submit] {
     padding: 14px 30px;
    background: #005995;
    box-shadow: 0px 2px 25px rgb(0 89 149 / 42%);
    border-radius: 10px;
    border: none;
    color: #fff;
}
.newsletter-outer-form  div.wpforms-container-full .wpforms-form button[type=submit]:hover {
    box-shadow: 0px 2px 61px #005995;
    color: #033560;
    background-color: #dea83e;
    border: none;
}

.newsletter-outer-form  div.wpforms-container-full .wpforms-form .wpforms-submit-container {
   
    text-align: center;
}

.main-header-btn .main-btn {
    box-shadow: none;
    padding: 12px 30px;
    background: #005995;
    border-radius: 10px;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 900;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	text-transform: uppercase;
     color: #fff;
}

.main-header-btn .main-btn  path {
    fill: #fff;
}

#main-top-banner {
    padding-top: 20px;
}



.main-header-nav .nav-link {
     padding-right: 0.8rem;
    padding-left: 0.8rem;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #033560;
}

 .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
}

.footer-nav {
	
}

.footer-nav li.menu-item {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}


.footer-nav a {
    color: #fff;
}

.footer-content {
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer .footerBottom p {
    font-family: "Lato",sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    color: #FFFFFF;
    opacity: 0.6;
}

.footer  ul.footerNav {
    padding-top: 38px;
}

.footer  .fa {
    padding-left: 0px;
}

.footerSocial li a {
    text-align: center;
}  

.footer .main-header-btn {
    margin-top: 25px;
    
}
.main-header-btn .main-btn:hover {
   color: #033560;
    background-color: #dea83e;
}



.main-header-btn .main-btn:hover  path {
    fill:#005995;
}
.main-btn:hover  path {
	stroke:#005995;
}

.form-book-content p {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #F1EEE5;
	clear:both;
}

.form-book-content a {
    color: #fff;
}
#freedom-sec {
     padding-bottom: 60px;
}

.newsletter-outer-form option {
    color: #000 !important;
}

.main-contnet h2 span {
    font-family: "Prata",serif;
}

.book-form-outer div.wpforms-container-full .wpforms-form .wpforms-one-third{
	margin-left:1%;
}

.book-form-outer div.wpforms-container-full .wpforms-form .wpforms-one-third {
    width: 32.666667%;
}

.book-form-outer  div.wpforms-container-full .wpforms-form button[type=submit] {
    width: 31%;
    margin-left: 1% !important;
}
.how-help {
   top: -4px;
 }

.newsletter-outer-form div.wpforms-container-full .wpforms-form .wpforms-one-half {
    width: 49%;
    margin-left: 2%;
}

.newsletter-outer-form div.wpforms-container-full .wpforms-form button[type="submit"] {
    padding: 14px 45px;
    text-transform: uppercase;
    font-weight: 600;
}

div.wpforms-container-full .wpforms-form label.wpforms-error {
   color: #ffffff !important;
}

.footerSocial i.fa.fa-facebook {
    padding-left: 0px;
}

.form-book-content a {
     text-decoration: underline;
}

.full-circle-sec-content h2 {
    color: #389BD9;
}

.foundation-logo-img h6 {
   font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #369CD8;
}

.foundation-logo-img h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 260;
    font-size: 101px;
    line-height: 98px;
    text-align: center;
    text-transform: uppercase;
    color: #DEA83E;
}

.foundation-logo-img h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 79px;
    line-height: 54px;
    text-align: center;
    text-transform: uppercase;
    color: #DEA83E;
}

.foundation-logo-img h5 {
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 41px;
    text-align: center;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #369CD8;
}

.loptop-img-outer {
    position: absolute;
}

/***********************btn *************************/
.newsletter-outer-form #wpforms-form-134 {
    background: transparent;
    padding: 0px;
    /* border-radius: 6px; */
}

.newsletter-outer-form  #wpforms-form-134 input {
    border: 1px solid #fff !important;
    
}

.newsletter-outer-form #wpforms-form-134 select {
    border: 1px solid #ffff !important;
   
}

