*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

ul {
  list-style-type: none;
}

/* form starting stylings ------------------------------- */
.group {
  position: relative;
  margin-bottom: 30px;
}

input, textarea {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  background: none;
  color: #fff;
  border-bottom: 1px solid #888888;
}

input:focus, textarea:focus {
  outline: none;
}

/* LABEL ======================================= */
label {
  color: #888888;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
}

/* BOTTOM BARS ================================= */
.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before, .bar:after {
  content: "";
  height: 1px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after, textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
  width: 50%;
}

/* active state */
input:focus ~ .highlight, textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }
  to {
    width: 0;
    background: transparent;
  }
}
/* form style end */
/* page_heading start */
.page_heading {
  background: url(../images/slider/page.jpg);
  background-size: cover;
  background-position: center;
}
.page_heading .cover {
  background: rgba(34, 34, 34, 0.5);
}
.page_heading .cover ul {
  text-align: center;
}
.page_heading .cover ul li {
  padding-bottom: 30px;
}
.page_heading .cover ul li a {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s;
}
.page_heading .cover ul li a:hover {
  color: #c4c0be;
}
.page_heading .cover h1 {
  padding: 50px 0px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

/* page_heading end */
.contact_body {
  padding: 20px 0;
  transition: all 0.2s;
  min-height: 45px;
  height: auto;
}
.contact-nav.active {
  min-height: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
}
.contact-nav i {
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
}
.contact-nav a {
  color: #fff;
  font-size: 14px;
}
.contact-nav span {
  color: #fff;
  font-size: 14px;
}
.contact-nav .dropdown button {
  background: none;
  border: none;
}
.contact-nav .dropdown .dropdown-menu {
  z-index: 99999;
}
.contact-nav .social ul li a i {
  margin-right: 0;
  margin-left: 10px;
  font-size: 18px;
}

@media screen and (max-width: 992px) {
  .contact-nav {
    display: none;
  }
}
/* nav style start */
.nav_custom {
  background: #000;
}
.nav_custom.nav_active {
  background: #fff;
  border-bottom: 1px solid #cccccc;
}
.nav_custom.nav_active ul li a {
  color: #222;
}
.nav_custom.nav_active .nav_search {
  color: #222;
}
.nav_custom.nav_active button span {
  color: #222;
}
.nav_custom button {
  outline: 0;
}
.nav_custom button span {
  color: #fff;
  font-size: 30px;
}
.nav_custom ul li a {
  color: #fff;
  transition: all 0.7s;
  margin-right: 1rem;
}
.nav_custom ul li a:hover {
  color: #919192;
}

.nav_custom .navbar-brand img {
  width: 250px;
}

.dropdown-toggle {
  white-space: nowrap;
}

.nav_button {
  display: block;
  padding: 7px 20px;
  font-weight: 600;
  background: #1A4A9E;
  border: 0;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
}

/* responsive style */
@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block !important;
  }

  .nav-link {
    padding: 1.75rem 0;
  }
}
@media screen and (max-width: 992px) {
  .navbar-nav {
    padding: 0 1rem;
  }
  .nav_custom .navbar-brand img {
    width: 150px;
  }

  .nav_button {
    display: none;
  }

  .nav_custom .navbar-brand {
    display: inline-block;
    margin-left: 1rem;
  }

  .nav_search {
    display: none;
  }
}
@media (max-width: 797px) {
  .nav_custom .navbar-brand img {
    width: 100px;
  }
}
/* nav style end */
/* header style start */
.home {
  height: 100vh;
  position: relative;
  margin-top: -35px;
}
.home .overlay-home {
  position: absolute;
  background: rgba(180, 166, 166, 0.5);
  width: 100%;
  height: 100%;
}
.home .overlay-home .home-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.home .overlay-home .home-content .home-element {
  text-align: left;
  margin-top: 70px;
}
.home .overlay-home .home-content .home-element h1 {
  color: #1D87CF;
  font-size: 59px;
  font-weight: 600;
}
.home .overlay-home .home-content .home-element p {
  font-size: 18px;
  padding: 10px 0px;
  color: var(--text-color-dark);
}
.home .overlay-home .home-content .home-element .home-element-item {
  width: 100%;
  margin-right: 30px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.home .overlay-home .home-content .home-element .home-element-item .balanced {
  padding-left: 7px;
}
.home .overlay-home .home-content .home-element .home-element-item a {
  width: 100%;
}
.home .overlay-home .home-content .home-element .home-element-item a i {
  margin-right: 8px;
}
.home .overlay-home .home_img {
  margin-top: 100px;
}
.home .overlay-home .home_img img {
  height: 400px;
}
.home #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .home .overlay-home .home-content {
    margin-top: 0px;
  }
  .home .overlay-home .home-content .home-element {
    margin-top: 100px;
  }
  .home .overlay-home .home_img {
    margin-top: 0px;
  }
  .home .overlay-home .home_img img {
    height: 300px;
    margin-left: 80px;
  }
  .home .overlay-home .home-content .home-element h1 {
    font-size: 40px;
  }
  .home .overlay-home .home-content .home-element p {
    font-size: 18px;
  }
}
@media (max-width: 797px) {
  .pd-50 {
    padding: 20px 0px;
  }

  .manu-top {
    display: none;
  }

  .btn {
    font-weight: 400;
    padding: 10px 20px;
  }
  .home .overlay-home .home-content {
    margin-top: 0px;
    text-align: center;
  }
  .home .overlay-home .home-content .home-element h1 {
    font-size: 20px;
  }
  .home .overlay-home .home-content .home-element p {
    font-size: 16px;
  }
  .home .overlay-home .home_img img {
    height: 185px;
    margin-left: 125px;
  }

  .heading h1 {
    font-size: 25px;
  }
  .heading .icon::after {
    width: 100px;
    left: -20px;
  }
  .heading .icon::before {
    width: 100px;
    right: -20px;
  }
}
/* header style end */
/* service style start */
.heading{
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.heading::before{
  content: '';
  position: absolute;
  top:50%; left:0;
  transform: translateY(-50%);
  width: 100%;
  height:.01rem;
  background: rgba(0,0,0,.1);
  z-index: -1;
}

.heading span{
  font-size: 3rem;
  padding:.5rem 2rem;
  color: #38701f;
  background: #fff;
  border:1px solid rgba(0,0,0,.1);
}
@media (max-width: 991px) {
  .heading span{
    font-size: 2.5rem;
  }
}
@media (max-width: 797px) {
  .heading span{
    font-size: 2rem;
  }
}
.service {
  padding: 5rem 0;
}
.service h1 {
  text-align: center;
  font-weight: bold;
}
.service p {
  text-align: center;
  margin-bottom: 40px;
}
.service figure {
  margin-bottom: 1.75rem;
  border-radius: 4px;
  box-shadow: 0 10px 35px 2px rgba(34, 34, 34, 0.1);
}
.service figure .image {
  overflow: hidden;
  position: relative;
}
.service figure .image img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: all 0.5s;
}
.service figure:hover img {
  transform: scale(1.2);
}
.service figure figcaption {
  padding: 30px 20px;
}
.service figure figcaption i {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 60px;
}
.service figure figcaption h4 {
  margin-bottom: 1rem;
  font-weight: bold;
}
.service figure figcaption h6 {
  margin-bottom: 1rem;
  font-weight: bold;
}
.service figure figcaption a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.service figure figcaption p {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}
/* service style end */
/* about style start */
.about {
  margin-bottom: 30px;
  text-align: center;
}
.about h2 {
  text-transform: uppercase;
}
.about p {

}
.about .clicked {
  text-align: left;
}
.about h4 {
  color: #1A4A9E;
  font-weight: bold;
}
.about ul li {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}
.about ul li i {
  color: #e67011;
  margin-right: 5px;
}
.about a {
  background: #1A4A9E;
  border: none;
  border-radius: 0;
  outline: 0;
}
@media (max-width: 991px) {
  
}
@media (max-width: 797px) {
  .heading h1 {
    font-size: 25px;
  }
  .heading .icon::after {
    width: 100px;
    left: -20px;
  }
  .heading .icon::before {
    width: 100px;
    right: -20px;
  }
}
/* about style end */
/* counter style start */
.numbers {
  
}
.numbers .item .happy {
  color: #1A4A9E;
  font-size: 100px;
  display: block;
  margin-bottom: 30px;
}
.numbers .item span {
  color: #222;
  font-weight: bold;
  margin-bottom: 0px;
  font-size: 25px;
}
.numbers .item h5 {
  font-size: 25px;
  display: inline-block;
}
.numbers .item h6 {
  font-size: 16px;
  color: #1A4A9E;
}
@media (max-width: 991px) {
  .numbers .item .happy {
    font-size: 80px;
  }
}
@media (max-width: 797px) {
  .numbers .item .happy {
    font-size: 50px;
  }
}
/* counter style end */
/* faq style start */
:root {
  --collapsible-transition-fn: ease;
  --collapsible-transition-duration: 0.3s;
  --collapsible-padding: 0.6rem;
}
h3 {
  font-size: 30px;
}

.contents {
  margin-block: var(--padding);
  padding: 2rem;
  background-color: #fff;
}

.contents .collapsible-header {
  appearance: none;
  width: 100%;
  background-color: #e9e9e9;
  border: none;
  padding: var(--collapsible-padding);
  display: block;
  font-size: 1.2rem;
  cursor: pointer;
  text-align: initial;
  position: relative;
}

.collapsible-header::after {
  color: #8b8686;
  content: "►";
  position: absolute;
  right: 2%;
  transition: transform var(--collapsible-transition-duration)
    var(--collapsible-transition-fn);
}

.collapsible-header:has(+ .active)::after {
  transform: rotate(90deg);
}

.collapsible-header:has(+ .active) {
  font-weight: bold;
  transitiion: all var(--collapsible-transition-duration) var(--collapsible-transition-fn);
}

.collapsible-header + * {
  max-height: 0;
  margin-bottom: 0.2rem;
  background-color: #f3f1f1;
  overflow-y: hidden;
  will-change: max-height;
  transition: max-height var(--collapsible-transition-duration)
    var(--collapsible-transition-fn);
}

.collapsible-content {
  padding: var(--collapsible-padding);
}
/* faq style end */

/* faq style end */
.tradingview-widget-copyright {
  display: none;
}
/* faq style end */

/* team style start */
.team {
  padding: 5rem 0;
}
.team h6 {
  text-align: center;
  color: #1A4A9E;
}
.team .member h5 {
  text-align: left;
  font-weight: bold;
}
.team .member p {
  text-align: left;
}
.team .member figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.team .member figure img {
  height: 300px;
}
.team .member figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(26, 74, 158, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s;
}
.team .member figcaption a {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  margin: 0 5px;
  background: #fff;
  color: #1A4A9E;
  transition: all 0.3s;
}
.team .member figcaption a:hover {
  color: #fff;
  background: none;
}
.team .member:hover figcaption {
  opacity: 1;
  transform: scale(0.85);
}
.team .member article {
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

/* team style end */
/* client style start */
.client {
  padding: 2rem 0 1rem;
  background: #000;
}
.client h1 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.client .client-img {
  cursor: pointer;
}
.client .client-img img{
  width: 120px;
  height: 45px;
  margin: 15px;
}
@media (max-width: 991px) {
  .client h1 {
    font-size: 40px;
  }
}
@media (max-width: 797px) {
  .client h1 {
    font-size: 30px;
  }
}
/* client style end */
/* testimonial style start */
.testimonial {
  background: #38701f;
  padding: 6rem 0 5rem;
}
.testimonial video {
  height: 255px;
  width: 260px;
}
.testimonial .description h5 {
  color: #fff;
  font-weight: 600;
}
.testimonial .description p {
  color: #fff;
}
.testimonial .content i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 75px;
  padding-left: 30px;
}
.testimonial .content h1 {
  color: #fff;
  font-weight: 600;
}
.testimonial .testimonial_slider article {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}
.testimonial .testimonial_slider article p {
  color: #6f6f6f;
}
.testimonial .testimonial_slider article span {
  color: #38701f;
}
.testimonial .testimonial_slider .author {
  margin-top: 30px;
  display: flex;
}
.testimonial .testimonial_slider .author img {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-right: 30px;
}
.testimonial .testimonial_slider .author .description {
  color: #fff;
  margin-top: 15px;
}
.testimonial .owl-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.testimonial .owl-dots button {
  outline: 0;
  width: 20px;
}
.testimonial .owl-dots span {
  background: #fff;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 50%;
}
.testimonial .owl-dots .active span {
  border: 1px solid #38701f;
}

/* testimonial style end */
/* footer style start */
footer {
  background: #fff;
  padding: 50px 0 30px;
  color: #222;
  border-top: 1px solid #cccccc;
}
footer .desc img {
  width: 80px;
  display: inline-block;
}
footer .desc h4 {
  display: inline-block;
}
footer .servi ul li {
  font-size: 14px;
}
footer .servi {
  margin-top: 25px;
  color: #000;
}
footer .social {
  margin-top: 25px;
  color: #000;
}
footer .social ul {
  list-style-type: none;
}
footer .social ul li {
  display: inline-block;
}
footer .social ul li a {
  font-size: 28px;
  margin: 10px 15px 10px 0;
  color: #1A4A9E;
}
footer .social ul li a:hover {
  color: #3f79df;
}
footer h4 {
  font-weight: bold;
}
footer a {
  color: #222;
  transition: all 0.7s;
  margin-bottom: 15px;
  font-size: 14px;
}
footer a:hover {
  color: #1A4A9E;
}
footer p {
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 0;
}
footer input {
  color: #222;
  border-bottom: 1px solid #6f6f6f;
}
footer button {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #1A4A9E;
  background: none;
  transition: all 0.3s;
  cursor: pointer;
}
footer button:hover {
  background: #1A4A9E;
  color: #fff;
}
footer .footer_bottom {
  border-top: 1px solid #cccccc;
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
}
footer .footer_bottom p {
  margin: 0;
  font-size: 12px;
}

/* footer style end */
/* back to top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 30px;
  border: none;
  outline: none;
  background-color: #133572;
  color: #fff;
  cursor: pointer;
  padding: 0 12px;
  border-radius: 0;
  box-shadow: 0 0 4px 2px rgba(34, 34, 34, 0.1);
  transition: all 0.3s;
}
#myBtn:hover {
  background-color: #0c2146;
}

/* back to top */

/* services page start */
.services {
  padding: 30px 0px;
}
.services .service-img {
  padding: 25px 0px;
}
.services .service-img img {
  
}
.services .service-content {
  padding: 65px 0px 30px 0px;
}
.services .service-content .service-element {
  display: flex;
  align-items: center;
}
.services .service-content .service-element i {
  font-size: 80px;
  margin-right: 20px;
  color: #3f79df;
}
.services .service-content .service-element .service-ele-text h3 {
  font-size: 40px;
  font-weight: 900;
}
.services .service-content .service-element .service-ele-text h6 {
  color: #20314B;
  font-size: 18px;
  margin-left: 5px;
  font-weight: 100;
}
.services .service-content p {
  margin-top: 30px;
}
.services .service-content a {

}
.services .services-outline {
  padding: 30px 0px;
  background: #20314B;;
}
.services .services-outline .outline-img {
  width: 250px;
  height: 300px;
}
.services .services-outline .outline-img img {
  width: 100%;
  height: 100%;
}
.services .services-outline .outline-content {
  padding-top: 10px;
}
.services .services-outline .outline-content h6 {
  color: #FA960D;
  font-size: 16px;
  letter-spacing: 1.5px;
}
.services .services-outline .outline-content h2 {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1em;
}
.services .services-outline .outline-content p {
  color: #fff;
  font-size: 14px;
}
.services .services-outline .outline-content ul {
  color: #fff;
}
.services .services-outline .outline-content ul li {
  display: inline-block;
  padding-right: 10px;
}
.services .services-outline .outline-content ul li a{
  color: #fff;
}
.services .service-outlinetwo {
  background: url(../images/service/quesition.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services .service-outlinetwo .outlinetwo-overlay {
  background: rgba(0, 0, 0, 0.212);
  padding: 30px 0px;
  text-align: center;
  color: #fff;
}
.services .service-outlinetwo .outlinetwo-overlay h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}
.services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element {
  
}
.services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element i {
  font-size: 75px;
  line-height: 120px;
  height: 120px;
  width: 120px;
  background: #1D87CF;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element i:hover {
  color: rgb(158, 155, 155);
}
.services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element h4 {
  margin: 15px 0px;
}
.services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element p {
  font-style: italic;
}
.services .service-outlinetwo .outlinetwo-overlay a {
  margin: 0 auto;
}
@media (max-width: 991px) {
  .services .service-content .service-element i {
    font-size: 60px;
  }
  .services .service-content .service-element .service-ele-text h3 {
    font-size: 35px;
  }
  .services .service-content {
    padding: 50px 0px 20px 0px;
  }
  .services .service-outlinetwo .outlinetwo-overlay h1 {
    font-size: 32px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element i {
    font-size: 70px;
    line-height: 100px;
    height: 100px;
    width: 100px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element h4 {
    font-size: 20px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element p {
    font-size: 16px;
  }
}
@media (max-width: 797px) {
  .services .service-content .service-element i {
    font-size: 50px;
  }
  .services .service-content .service-element .service-ele-text h3 {
    font-size: 30px;
  }
  .services .service-content {
    padding: 0px 0px 0px 0px;
  }
  .services .service-outlinetwo .outlinetwo-overlay h1 {
    font-size: 25px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element i {
    font-size: 55px;
    line-height: 80px;
    height: 80px;
    width: 80px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element h4 {
    font-size: 18px;
  }
  .services .service-outlinetwo .outlinetwo-overlay .outlinetwo-overlay-element p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=master.css.map */
