@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-size: 16px;
  color: #585754;
  line-height: 28px;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: 'Poppins', sans-serif;
  /*font-family: 'Montserrat', sans-serif;*/
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1 {
  font-size: 28px;
  color: #0F4D7E;
}

h2 {
  font-size: 24px;
  color: #0F4D7E;
}

h3 {
  font-size: 20px;
  color: #0F4D7E;
}

h4 {
  font-size: 18px;
  color: #0F4D7E;
}

h5 {
  font-size: 16px;
  color: #0F4D7E;
}

h6 {
  font-size: 14px;
  color: #0F4D7E;
}

p, .text {
  font-size: 14px;
  line-height: 30px;
  color: #585754;
  font-weight: 400;
}

.image_box img{
  width: 100%;
  margin-bottom: 5%;
}

.section_heading{
  position: relative;
  margin-bottom: 3%;
}

.section_heading h2 {
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #0F4D7E;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.section_heading p{
  text-align: center;
  font-size: 14px;
  color: #0F4D7E;
  font-weight: 600;
}

.cust_btn{
  color: #0F4D7E;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  border: 2px solid #0F4D7E;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 10px 30px;
  -webkit-transition: linear .3s;
  -moz-transition: linear .3s;
  transition: linear .3s;
}

.cust_btn:hover{
  text-decoration: none;
  background: #0F4D7E;
  color: #fff;
  text-align: center !important;
}

.cust_btn_inverse{
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 10px 30px;
  -webkit-transition: linear .3s;
  -moz-transition: linear .3s;
  transition: linear .3s;
}

.cust_btn_inverse:hover{
  text-decoration: none;
  background: #fff;
  color: #0F4D7E;
  text-align: center !important;
}

.content_box{
  padding: 5% 0%;
}


/* Top Header CSS Starts */

.top_header{
  background: #0F4D7E;
  color: #fff;
  padding: 5px 0px;
}

.top_header .top_social_media{
  float: left;
  padding-top: 5px;
}

.top_header .top_social_media ul{
  margin: 0;
  padding: 0;
}

.top_header .top_social_media ul li{
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

.top_header .top_social_media ul li a{
  color: #fff;
  display: block;
  transition: linear 0.2s;
}

.top_header .top_social_media ul li a:hover{
  text-decoration: none;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.top_header .top_call{
  float: right;
}

.top_header .top_call ul{
  margin: 0;
  padding: 0;
}

.top_header .top_call ul li{
  list-style: none;
  display: inline-block;
  background-color: #F2CC29;
  padding: 5px 10px;
  border-radius: 30px;
}

.top_header .top_call ul li, .top_header .top_call ul li a{
  color: #3F54A5;
  font-weight: 500;
  margin: 0;
}

/* Top Header CSS Ends */


/* Header CSS Starts */

.header{
  background-color: rgba(255,255,255,0.8);
  position: absolute;
  z-index: 999;
  width: 100%;
}

.header .navbar{
  padding: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
   color: #0F4D7E;
}

.header .navbar-brand{
  padding: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #0F4D7E;
  background-color: #e9ecef;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #0F4D7E;
}

/* Header CSS Ends */


/* Breadcrumb CSS Starts */

.breadcrumb-background-image{
  color: #ffffff;
  background-image: url(../images/breadcrumb-bg.jpg);
  min-height:400px;
  height:100%;
  position: relative;
  background-position: center center;
  background-size: cover;
  padding-top: 125px;
}

.breadcrumb-background-image:before{
  position:absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color:rgb(15 77 126 / 47%);
  top:0;
  left: 0;
  z-index: 1;
}

.breadcrumb_caption{
  padding: 5% 0%;
}

.breadcrumb_caption h5{
  color: #0F4D7E;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5%;
}

.breadcrumb_caption h2{
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  margin:0px 0px 12px;
  color: #fff;
  margin-bottom: 5%;
  text-align: center;
}

.breadcrumb_caption p{
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
  margin-top: 0;
  color: #fff;
}

/*.breadcrumb-background-image {
  background-image: url(../images/breadcrumb-bg.jpg);
  background-size: cover;
  background-position: center;   
  background-repeat: no-repeat;
  position: relative;
}

.breadcrumb-background-image:before{
  position:absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color:rgb(0 0 0 / 80%);
  top:0;
  left: 0;
  z-index: 1;
}

.breadcrumb-background-image .overlay {
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 100%);
}

.breadcrumb-background-image h2{
  text-align: center;
  font-size: 32px;
  color: #fff;
  padding-top: 15%;
  position: relative;
  z-index: 999;
}

.breadcrumb-background-image h4{
  color: #fff;
  padding: 3% 0% 3% 0%;
}

.breadcrumb {
  border-radius: 0;
  background-color: transparent;
  padding: 5% 0 5% 0;

}*/
.breadcrumb li, .breadcrumb li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  padding-left: .5rem;
  color: #fff;
  content: "/";
}

/* Breadcrumb CSS Ends */


/* Our Features CSS Starts */

.feature_box {
  background-color: #17819c;
  padding: 5%;
  text-align: center;
  display: inline-block;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgb(0 0 0 / 0%);
  margin-bottom: 5%;
}

.feature_box:before {
  content: "";
  position: absolute;
  border: #17819c solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-property: top right bottom left;
}

.feature_box:hover:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

.feature_box  .feature_info h4{
  color: #fff;
  margin-top: 10%;
  margin-bottom: 5%;
}

.feature_box  .feature_info p{
  color: #fff;
  font-size: 14px;
}

.feature_info a{
  position: relative;
}

/* Our Features CSS Ends */

/* Our Services CSS Starts */

.our_services{
  background-color: #F3F7FB;
}

.service_wrap{
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  margin: -0.135em;
  width: 100%;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
  margin-bottom: 5%;
}

.service_wrap img{
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.service_wrap .service_info{
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service_wrap .service_info::before,
.service_wrap .service_info::after {
  pointer-events: none;
}

.service_wrap .service_info{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service_wrap a {
  /*position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;*/
}

.service_wrap a {
  /*z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;*/
  opacity: 1;
}

.service_wrap h2 {
  word-spacing: -0.15em;
  font-weight: 600;
}

.service_wrap h2 span {
  font-weight: 800;
}

.service_wrap h2,
.service_wrap p {
  margin: 0;
  color: #fff;
}

.service_wrap p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

.service_wrap:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.service_wrap h2 {
  margin-top: 20%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,20px,0);
  transform: translate3d(0,20px,0);
}

.service_wrap p {
  margin: 1em 0 0;
  padding: 1em 3em;
  border: 1px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,20px,0) scale(1.1);
  transform: translate3d(0,20px,0) scale(1.1);
  position: relative;
  z-index: 999999;
} 

.service_wrap:hover h2 {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.service_wrap:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0) scale(1);
  transform: translate3d(0,0,0) scale(1);
}

/* Our Services CSS Ends */


/* Why Choose Us CSS Starts */

.why_us{
  background:url('../images/why_us_bg.jpg') no-repeat;
  background-size: cover!important;
  background-attachment: fixed!important;
  position: relative;
}

.why_us:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0,176,207,.9);
}

.why_us_box{
  padding: 25% 10%;
  position: relative;
  z-index: 2;
}

.why_us_box p{
  margin-top: 5%;
}

.why_us_info{
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 10% 3%;
}

.why_us_info ul{
  margin: 0;
  padding: 0;
}

.why_us_info ul li{
  list-style: none;
  font-size: 18px;
  margin-bottom: 10%;
  font-weight: 600;
  color: #0F4D7E;
}

.why_us_info ul li:last-child{
  margin-bottom: 0;
}

.hovicon {
  display: inline-block;
  font-size: 30px;
  line-height: 50px;
  cursor: pointer;
  margin-right: 5px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #0F4D7E;
}

.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content:'';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.hovicon:before {
  speak: none;
  font-size: 48px;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.hovicon.effect-4 {
  width: 45px;
  height: 45px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
}

.hovicon.effect-4:before {
  line-height: 92px;
}

.hovicon.effect-4:after {
  top: -4px;
  left: -4px;
  padding: 0;
  z-index: 10;
  border: 4px dashed #0F4D7E;
}

.hovicon.effect-4:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  color: #0F4D7E;
}

.hovicon.effect-4:hover i {
  color: #0F4D7E;
}

.hovicon.effect-4.sub-b:hover {
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}

.why_us_info li:hover{
  cursor: pointer;
}

.why_us_info li:hover .hovicon.effect-4.sub-b:after {
  -webkit-animation: spinAround 9s linear infinite;
  -moz-animation: spinAround 9s linear infinite;
  animation: spinAround 9s linear infinite;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg)
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}

/* Why Choose Us CSS Ends */

/* Explore Hotels CSS Starts */

.explore_hotels_wrap{
  margin-bottom: 5%;
}

.explore_hotels_image{
  overflow: hidden;
}

.explore_hotels_image img{
  width: 100%;
  height: 200px;
  -webkit-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}

.explore_hotels_wrap:hover img{
  transform: scale(1.1);
  opacity: .5;
}

.explore_hotels_info{
  border: 1px solid #e6e6e6;
  border-top: 1px solid transparent;
  background: #fff;
  padding: 5% 2%;
  text-align: center;
}

.explore_hotels_info h5{
  text-align: center;
}

.explore_hotels_info h5 a{
  color: #0F4D7E;
}

/* Explore Hotels CSS Ends */


/* Testimonial CSS Starts */

.testimonial{
  background-color: #F3F7FB;
}

.testimonial .item{
  padding: 5%;
}

.testimonial_slide{
  background-color: #F3F7FB;
  padding: 40px 20px;
  border-radius: 10px;
}

.testimonial_image{
  float: left;
  padding: 10px;
}

.testimonial_image img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial_slide p{
  margin-top: 3%;
  text-align: left;
}

.testimonial_info {
  text-align: center;
  padding: 0px 10px;
}

.testimonial_info h5{
  font-size: 18px;
  margin-bottom: 0;
  color: #333;
  text-align: right;
}

.single-testimonial {
  background-color: #f3f7fb;
  border: 7px solid #0f4d7e;
  text-align: center;
  border-radius: 45px;
  position: relative;
  z-index: 2;
}
.single-testimonial p {
  color: #333;
  font-size: 15px;
  line-height: 24px;
  padding: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}
.single-testimonial::before {
  content: "";
  position: absolute;
  left: -35px;
  top: -35px;
  background: url(../images/quote.png) no-repeat #f3f7fb;
  background-size: 60%;
  width: 126px;
  height: 100px;
  transform: rotate(180deg);
  background-position: 34px 15px;
}
.single-testimonial::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -34px;
  background: url(../images/quote.png) no-repeat #f3f7fb;
  background-size: 60%;
  width: 126px;
  height: 100px;
  background-position: 34px 19px;
}
.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.round-1::before {
  content: "";
  position: absolute;
  left: 88px;
  top: -7px;
  width: 50px;
  height: 7px;
  background: #0f4d7e;
  border-radius: 30px;
}
.round-1::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 62px;
  width: 7px;
  height: 50px;
  background: #0f4d7e;
  border-radius: 30px;
}
.round-2::before {
  content: "";
  position: absolute;
  right: 87px;
  bottom: -7px;
  width: 50px;
  height: 7px;
  background: #0f4d7e;
  border-radius: 30px;
  z-index: 1;
}
.round-2::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 62px;
  width: 7px;
  height: 50px;
  background: #0f4d7e;
  border-radius: 30px;
  z-index: 1;
}
.client-video {
  padding-right: 15px;
}
.client-info {
  position: relative;
  z-index: 3;
}
.client-info a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  font-size: 22px;
}
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 50px;
}

.client-info .client_image img{
  padding-right: 15px;
}

.client-info h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
}
.client-info span {
  display: inline-block;
  color: #333;
  font-size: 12px;
}

/* Testimonial CSS Ends */



/*---------- Contact Us Css Starts -----------*/

.contact_us_form{
  padding: 0% 5%;
}

.contact_info_box{
  background-color: #227ABF40;
  padding: 20px;
  margin-bottom: 5%;
}

.contact_info h5, .contact_info p{
  color: #0F4D7E;
}

.contact_info_box .contact_icon{
  float: left;
  margin-right: 30px;
  color: #0F4D7E;
  font-size: 40px;
}

ul.topic_list{
  margin: 0;
  padding: 0;
  margin-bottom: 5%;
}

.topic_list li{
  list-style: none;
  padding: 1% 0%;
}

.topic_list li i{
  font-size: 16px;
  color: #0F4D7E;
  margin-right: 1%;
}

.join_us h2{
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 3%;
}

.join_btn{
  padding-top: 3%;
}

.join_btn a{
  font-size: 22px;
  font-weight: 600;
}

/*---------- Contact Us Css Ends -----------*/


/* Trading CSS Starts */

.trading ul{
  margin: 0;
  padding: 0;
}

.trading ul li{
  list-style: none;
  font-weight: 600;
  padding: 5px;
}

.trading ul li i{
  color: #0F4D7E;
  margin-right: 5px;
}

.our_module{
  background:url('../images/module_bg.jpg') no-repeat;
  background-size: cover!important;
  background-attachment: fixed!important;
  position: relative;
}

.our_module:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0,176,207,.9);
}

.module_box{
  position: relative;
  z-index: 2;
  padding: 10%;
  text-align: center;
  border: 2px solid #eee;
  background-color: #00000059;
}

.module_box h2{
  color: #fff;
  margin-bottom: 5%;
}

.module_box p{
  color: #fff;
}

/* Trading CSS Ends */


/*---------- Footer Css Starts -----------*/

.footer{
  background-color: #002c42;
  padding: 5% 0%;
}

.footer_box h4.footer_heading{
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer_box h4, .footer_box img{
  margin-bottom: 5%;
}


.footer_box h4::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #f2cc29;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  margin-left: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 0;

}

.footer_box p{
  color: #fff;
  margin-bottom: 3%;
}

.footer_box ul{
  margin: 0;
  padding: 0;
}

.footer_box ul li{
  list-style: none;
  padding: 5px 0px;
  color: #fff;
}

.footer_box ul li i{
  color: #fff;
  font-size: 18px;
  padding-right: 5px;
}

.footer_box ul li a{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  /*text-transform: uppercase;*/
}

.footer_box ul li a:hover{
  color: #f2cc29;
}

.footer_box ul.contact li a{
  text-transform: unset;
}

.footer_social ul li a:hover i{
  color: #f2cc29;
}

/*---------- Footer Css Ends -----------*/


/*---------- Copyright Css Starts -----------*/

.copyright{
  padding: 5px 0px;
  background-color: #00121b;
  text-align: center;
}

.copyright p{
  color: #fff;
  margin: 0;
}

.copyright_social{
  float: right;
}

.copyright_social ul{
  margin: 0;
  padding: 0;
}

.copyright_social ul li{
  display: inline-block;
  list-style: none;
  padding: 0px 5px;
}

.copyright_social ul li i{
  color: #0F4D7E;
  padding: 7px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: #fff;
  font-size: 12px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.copyright_social ul li i:hover{
  background-color: #0F4D7E;
  color: #fff;
}

/*---------- Copyright Css Ends -----------*/



/*---------- Back to Top Css Starts -----------*/

#button {
  position: fixed;
  bottom: 40px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button{
  text-align: center;
  height: 40px;
  font-size: 24px;
  width: 42px;
  border-radius: 50%;
  color: #fff;
  line-height: 36px;
  transition: all 0.3s ease 0s;
  background: #333  ;
  margin-left: 2px;
  box-shadow: 0 0 2px #54595f;
}

#button i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

#button:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

#button:hover i:last-child {
  opacity: 1;
  top: 50%;
  visibility: visible;
}

#button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

#button:hover {
  cursor: pointer;
  background-color: #f2cc29;
}

#button:active {
  background-color: #f2cc29;
}

#button.show {
  opacity: 1;
  visibility: visible;
}


/*---------- Back to Top Css Ends -----------*/



/*------------ Whatsapp Css Starts-----------------------
-----------------------------------------------------------*/

.whatsapp{
  position: fixed;
  bottom: 1%;
  left: 1%;
  z-index: 999;
  background: #18c139;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding: 7px 1px 1px 1px;
}

.whatsapp .wapp i {
  color: #fff;
  background: #18c139;
  font-size: 35px;
  /* padding: 15%;
  border-radius: 50%; */
}

/*------------ Whatsapp Css Ends-----------------------
-----------------------------------------------------------*/
