/*--------------------------------------------------------------------
	                    TABLE OF STYLES
--------------------------------------------------------------------*/

/* 01. COMMON CSS */

/* 02. NAVBAR AND TOP-BAR */

/* 03. HOME */

/* 04. MENUS */

/* 05. RECIPES */

/* 06. EXPLAIN */

/* 07. VIDEO */

/* 08. TESTIMONIALS */

/* 09. CHIEFS */

/* 10. BLOG-GRID */

/* 11. CONTACT */

/* 12. SUBSCRIBE */

/* 13. FOOTER-SOCIAL AND COPYRIGHT */

/* 14. PRELOADER */

/*--------------------------------------------------------------------
	                   01. START COMMON CSS
--------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 110%;
  line-height: 1.8;
  background-color:  #2a4c43;
  color: white;
  text-align: center;
}

a {
  color: #555555;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  color: #555555;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #555555;
}

h1,
h2 {
  font-size: 263%;
  line-height: 1.3;
  font-weight: 300;
  margin: 0 0 20px;
}

h3 {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: 27px;
  color: #13153e;
}

h5 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 25px;
  color: #13153e;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
}

strong {
  color: #13153e;
}

section {
  overflow: hidden;
}

input,
textarea {
  border: 0;
}

.overlay {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.c-bold {
  color: #13153e;
}

.c-white {
  color: #ffffff;
}

.space100 {
  padding: 100px 0;
}

.angle .container {
  position: relative;
}

/* .angle .container:before,
.angle .container:after {
  position: absolute;
  content: "";
  top: -100px;
  width: 50%;
  height: 100px;
  background: #ffffff;
}

.angle .container:before {
  left: -50%;
}

.angle .container:after {
  right: -50%;
} */

.title {
  padding: 100px 0 63px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.underline {
  background: #13153e;
  margin: 0 auto;
  width: 163px;
  height: 1px;
}

.sub-title {
  padding-top: 5px;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
    .hide-phone{
        display:none;
    }
    .pad-o{
        padding:0;
    }
  .space100 {
    padding: 80px 0;
  }
  .angle .container:before,
  .angle .container:after {
    height: 0;
  }
  .title {
    padding: 30px 0 20px;
  }
}

.app-btn {
  border: 1px solid #13153e;
  padding: 13px 30px;
  text-transform: capitalize;
  display: inline-table;
}

.app-btn:hover {
  background: #13153e;
  color: #ffffff;
}

.app-btn i {
  padding-right: 7px;
}

.app-btn-extra,
.app-btn-extra:focus {
  background: #13153e;
  color: #ffffff;
}

.hover-effect {
  position: relative;
  overflow: hidden;
}

.hover-effect::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hover-effect:hover::before {
  -webkit-animation: circle 0.73s;
  animation: circle 0.73s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.app-1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .app-1 {
    max-width: 70%;
  }
}

/*--------------------------------------------------------------------
	                   01. END COMMON CSS
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                  02. START NAVBAR AND TOP-BAR CSS
--------------------------------------------------------------------*/

.fixed-top {
  top: 29px;
}

.color-set.fixed-top {
  top: 0px;
}

.navbar {
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.set-color,
.navbar-nav .nav-item,
.navbar-brand img,
.navbar .navbar-nav .nav-link,
.show {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar-nav .nav-item {
  padding: 25px 8px;
}

.color-set.navbar-expand-lg {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-link {
  color: #2a4c43;
  border-radius: 50px;
  padding: 1px 11px;
  font-size: 18px;
  text-align: center;
  text-transform: capitalize;
}

.color-set {
  background:  white;
}

.color-set .navbar-nav .nav-item {
  padding: 8px;
}

.color-set .navbar-nav .nav-item .nav-link {
  color: #2a4c43;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
  color: #2a4c43;
  background: #13153e;
}

.color-set .show {
  margin-top: 0;
}

.navbar .navbar-nav .nav-link:focus {
  outline: none;
}

.color-set.navbar .navbar-nav .nav-link.active,
.color-set.navbar .navbar-nav .nav-link:hover {
  color: #2a4c43;
  background: #2a4c43;
}

.ml-auto,
.mx-auto {
  margin: 12px 0;
}

.color-set .ml-auto,
.color-set .mx-auto {
  margin: 0;
}

.navbar-toggler {
  /*background: #13153e;*/
  background:#2a4c43;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url(../images/hamburger-menu-icon.png);
  margin: 6px 0;
  height: 20px;
}

.navbar-toggler:focus {
  outline: none;
}

.topbar-color {
  background: #2a4c43;
  margin-bottom: 27px;
}

.info-outer {
  padding: 7px 0;
  text-align: center;
}

.info-outer li {
  display: inline-block;
  margin-right: 30px;
}

.info-outer li img {
  margin-right: 7px;
}

.info-outer li a,
.info-outer li span {
  color: #ffffff;
}

.show {
  background: #2a4c43;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .fixed-top {
    top: 59px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fixed-top {
    top: 83px;
  }
}

@media (max-width: 991px) {
  .navbar-nav .nav-item {
    padding: 11px 8px;
  }
}

/*--------------------------------------------------------------------
	                   02. END NAVBAR AND TOP-BAR CSS
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                   03. START HOME
--------------------------------------------------------------------*/

#home {
  position: relative;
  background-color:  #2a4c43 no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
  text-align: left;
}

#home .title {
  padding-top: 0;
}

.home-img {
  text-align: right;
}

.home-content a img {
  margin-right: 7px;
}



.home-description p {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .home-description {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 991px) {
  .home-description {
    margin-top: 0;
  }

  .home-description p {
    margin-top: -11px !important;
  }

  #home {
    margin-bottom: -11px;
  }
}

@media (max-width: 767px) {
  .home-description {
    margin-top: 14px;
  }

  img.home-img.wow.fadeInRight {
    margin-top: 40px;
  }

  .navbar {
    margin-top: 53px;
  }

  .navbar.color-set {
    margin-top: 0px;
  }
}

/*--------------------------------------------------------------------
	                   03. END HOME
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                   04. START menus
--------------------------------------------------------------------*/

.menus-content {
  position: relative;
  background: url(../images/menu-bg.jpg) no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.menus-content img {
  margin-top: 7px;
}

.add-btn {
  border: 1px solid #13153e;
  padding: 7px 30px;
  text-transform: capitalize;
  display: inline-table;
  background: transparent;
  color: #13153e !important;
  margin-top: 6px;
  margin-bottom: 5px;
}

.add-btn:hover {
  color: #fff !important;
}

.image-fea {
  margin-left: 35px;
}

.fea-text {
  margin: 11px 0 13px 0px;
}

.right-fea-img img {
  margin-left: -67px;
}

.right-menus {
  text-align: left;
}

.left-menus {
  text-align: right;
}

.left-menus .menus-icon {
  float: right;
}

.left-menus .menus-icon,
.right-menus .menus-icon {
  width: 63px;
  display: table;
  text-align: center;
}

.left-menus .menus-icon i,
.right-menus .menus-icon i {
  display: table-cell;
  vertical-align: middle;
}

.right-menus .menus-icon {
  float: left;
}

.menus-icon i {
  color: #dddddd;
  font-size: 34px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.left-menus .menus-item,
.right-menus .menus-item {
  background: #ffffff;
  margin-bottom: 30px;
}

.menus-content.space100.angle {
  margin-bottom: -30px;
}

.left-menus .menus-item {
  padding: 15px 50px 17px 30px;
}

.right-menus .menus-item {
  padding: 15px 30px 17px 85px;
}

.menus-item:hover .menus-icon i {
  color: #13153e;
}

.menus-des h5 {
  margin-top: 0;
  margin-bottom: 5px;
}

.menus-des {
  overflow: hidden;
}

.menus-image {
  display: inline-block;
  position: relative;
}

@media (max-width: 991px) {
  .right-menus .menus-icon,
  .left-menus .menus-icon {
    width: 100%;
    float: none;
  }
  .menus-des h5 {
    margin: 5px 0;
  }
  .left-menus .menus-item,
  .right-menus .menus-item {
    padding: 27px;
    margin-bottom: 40px !important;
  }
}

@media (max-width: 991px) {
  section#menus {
    margin-bottom: -30px;
  }

  .menus-item {
    text-align: center;
  }

  .menus-icon,
  .right-fea-img img {
    margin: 0 auto 10px;
  }
}

/*--------------------------------------------------------------------
	                   04. END FEATURES
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                   05. START Recipes
--------------------------------------------------------------------*/

.Recipes-content {
  position: relative;
  background:  #2a4c43 no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.Recipes-des {
  background: #fff;
  padding: 20px 10px;
}

.Recipes-text {
  margin: 10px 0;
}

.hot-rating {
  width: 82px !important;
  margin: 7px auto 0;
}

.item,
.item-overlay,
.item-details,
.item img,
.icon-links,
.icon-links i {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.item {
  position: relative;
  overflow: hidden;
  border-top: 4px solid #13153e;
}

.item img {
  width: 100%;
}

.item:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.item-overlay {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  -webkit-opacity: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  /*background: #13153e;*/
}

.item:hover .item-overlay {
  opacity: 1;
  visibility: visible;
}

.item-details {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.icon-links {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

.icon-links i {
  font-size: 23px;
  height: 50px;
  width: 50px;
  color: #ffffff;
  line-height: 49px;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

.icon-links i:hover {
  background: #ffffff;
  color: #13153e;
}

.item:hover .item-details {
  -webkit-opacity: 1;
  opacity: 1;
  visibility: visible;
}

.item:hover .icon-links {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/*--------------------------------------------------------------------
	                      05. END Recipes
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                  06. START EXPLAIN
--------------------------------------------------------------------*/

.explain-content {
  position: relative;
  background:  #2a4c43 no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
  text-align: left;
}

.explain-description {
  background: #ffffff;
  padding: 27px;
  border-top: 4px solid #13153e;
}

.explain-description h3 {
  margin: 5px 0 10px;
}

.ex-paragraphs {
  margin-bottom: 20px;
}

.explain-with-icons li {
  margin-bottom: 20px;
}

.explain-with-icons img {
  width: auto;
  float: left;
  color: #13153e;
  font-size: 20px;
  text-align: center;
  margin-top: 4px;
  margin-right: 11px;
}

.explain-with-icons p {
  overflow: hidden;
}

.service-img {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .explain-description {
    margin-bottom: 40px;
  }
  .explain-with-icons i {
    width: 100%;
    float: none;
  }
  .explain-with-icons li {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------------
	                  06. END EXPLAIN
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                   07. START VIDEO
--------------------------------------------------------------------*/

.video-content {
  position: relative;
  background:  #2a4c43 no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

iframe {
  border-top: 4px solid #13153e;
}

/*--------------------------------------------------------------------
	                   07. END VIDEO
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                  08. START TESTIMONIALS
--------------------------------------------------------------------*/

.testimonials-content {
  position: relative;
  background: #2a4c43 no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

#testimonial-slider .single-tes-item {
  background: #ffffff;
  padding: 27px 20px;
  border-top: 4px solid #13153e;
}

.single-tes-item h5 {
  margin-top: 0;
  color: #777777;
}

.client-img {
  width: 150px;
  margin: 25px auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(160, 160, 160, 0.2);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.single-tes-item:hover .client-img {
  background: #13153e;
  -webkit-animation: img-pointing 0.5s ease 0.2s;
  animation: img-pointing 0.5s ease 0.2s;
}

@-webkit-keyframes img-pointing {
  0% {
    box-shadow: 0 0 0 0px rgba(160, 160, 160, 0.5);
  }
  45% {
    box-shadow: 0 0 0 20px rgba(160, 160, 160, 0.05);
  }
  50% {
    box-shadow: 0 0 0 0px rgba(160, 160, 160, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(160, 160, 160, 0.2);
  }
}

@keyframes img-pointing {
  0% {
    box-shadow: 0 0 0 0px rgba(160, 160, 160, 0.5);
  }
  45% {
    box-shadow: 0 0 0 20px rgba(160, 160, 160, 0.05);
  }
  50% {
    box-shadow: 0 0 0 0px rgba(160, 160, 160, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(160, 160, 160, 0.2);
  }
}

.client-info {
  line-height: 1.5;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------------
	                  08. END TESTIMONIALS
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                   09. START CHIEFS
--------------------------------------------------------------------*/

.team-1-content {
  position: relative;
  background: url(../images/team-bg.jpg) no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.wt-media {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  background-color: #13153e;
}

.team-social-center {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 100%;
  width: 180px;
  height: 50px;
  background-color: #fff;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transition: translateX(-50%);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  border-radius: 10px;
}

.team-social-center ul {
  position: relative;
  top: 4px;
  margin-bottom: 0px;
}

.team-social-center ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.team-social-center ul li a {
  padding-top: 3px;
  display: inline-block;
}

.wt-info {
  position: relative;
  margin: 0px 11px -30px;
  top: -30px;
  padding: 30px 11px 11px 11px;
  border-radius: 10px;
  background-color: #fff;
}

.team-detail {
  text-align: center;
  color: #777777;
}

.wt-team-1:hover .team-social-center {
  bottom: 8px;
}

.team-name {
  font-size: 23px;
}

.team-ex-btn {
  margin-top: 43px;
}

.team-ex-btn img {
  margin-top: -5px;
  margin-right: 7px;
}

.team-1-content .col-lg-3 {
  width: 270px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  #team-1 .col-lg-3 {
    width: 50%;
  }

  .wt-team-3,
  .wt-team-4 {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .wt-team-3,
  .wt-team-4 {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------------
	                   09. END CHIEFS
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	                    10. START BLOG-GRID
--------------------------------------------------------------------*/

.blog-grid-content {
  position: relative;
  background: url(../images/blog-bg.jpg) no-repeat center bottom fixed;
  background-size: cover;
  -webkit-background-size: cover;
  text-align: left;
}

.blog-grid-description {
  background: #ffffff;
  margin: -20px 15px 0;
  position: relative;
  padding: 12px 17px 27px 30px;
}

.continue {
  margin-bottom: 0;
}

.continue a {
  color: #13153e;
}

.post-details span {
  line-height: 1;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.post-details h3 {
  margin-top: 12px;
  margin-bottom: 11px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.post-details h3:hover {
  color: #13153e;
}

.post-details span.date {
  background: #13153e;
  color: #ffffff;
}

.post-details span.post-comments {
  background: #f2f2f2;
}

.post-details i {
  margin-right: 5px;
}

.reading {
  margin-bottom: 12px;
}

.blog-grid-btn {
  width: 100%;
}

.blog-grid-btn img {
  margin-right: 7px;
}

.blog-grid-btn a {
  margin-top: 45px;
}

@media (max-width: 991px) {
  .blog-grid-description {
    padding: 12px 15px 27px 15px;
  }
}

@media (max-width: 767px) {
  .col-md-4.middle-grid-blog {
    margin: 30px 0;
  }
}

/*--------------------------------------------------------------------
	                   10. END BLOG-GRID
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
				      11. START CONTACT FORM CSS
--------------------------------------------------------------------*/

/*.contact-content {*/
/*  position: relative;*/
/*  background:  #2a4c43 no-repeat center bottom fixed;*/
/*  background-size: cover;*/
/*  -webkit-background-size: cover;*/
/*}*/

.contact-input,
.contact-textarea {
  width: 100%;
  border-top: 4px solid #13153e;
  padding: 10px 15px;
  color: #222222;
  outline: 0;
}

.contact-input {
  margin-bottom: 16px;
  height: 55px;
}

.contact-textarea {
  margin-bottom: 11px;
  height: 126px;
  color:#000000;
}

.contact-btn {
  width: 100%;
  border: 0;
  height: 53px;
  background: #13153e;
  color: #ffffff;
  margin-bottom: 16px;
  outline: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.contact-btn i {
  padding-right: 7px;
}

.alert {
  color: #777777;
  background-color: #ffffff;
  border-color: #ffffff;
  margin-bottom: 0;
  border-radius: 0;
}

/*--------------------------------------------------------------------
				        11.	END CONTACT FORM CSS
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
				        12. START SUBSCRIBE
--------------------------------------------------------------------*/

.subscribe-content {
  margin-top: 50px;
}

.subscribe-content p {
  color: #ffffff;
  margin-bottom: 27px;
}

.subscribe-form input,
.subscribe-form .subscribe-btn {
  border: 0;
}

.subscribe-form input:focus,
.subscribe-form .subscribe-btn:focus {
  outline: 0;
  box-shadow: none;
}

.subscribe-form {
  max-width: 555px;
  margin: 0 auto;
}

.subscribe-form input {
  height: 51px;
  padding: 0 15px;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
}

.subscribe-btn {
  height: 51px;
  background: #13153e;
  font-size: 16px;
  color: #fff;
  padding: 0 33px;
}

.subscribe-btn i {
  padding-right: 7px;
}

label {
  font-weight: 400;
  color: #ffffff;
  margin-top: 5px;
}

/*--------------------------------------------------------------------
				         12. END SUBSCRIBE
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
	         13. START FOOTER-SOCIAL AND COPYRIGHT CSS
--------------------------------------------------------------------*/

.copy-ri {
  color: #2a4c43;
  margin-top: 5px;
  margin-bottom: -11px;
}

.copyright li,
.footer-social li {
  display: inline-block;
}

.copyright li {
  margin-right: 7px;
  color: #2a4c43;
}

.copyright li:after {
  content: "|";
  margin-left: 11px;
}

.copyright li:last-child:after {
  content: "";
  margin-left: 0;
}

.copyright li:last-child {
  margin-right: 0;
}

.copyright li a {
  color#2a4c43;
}

.copyright li a:hover {
  color: #f0655e;
}

.footer-social {
  margin: 40px 0;
}

.footer-social li {
  margin: 5px;
}

.footer-social li a {
  display: inline-table;
  width: 40px;
  height: 40px;
  /*background: #ffffff;*/
  padding-top: 3px;
}

.footer-social li a i {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 480px) {
    .navbar {
    /*margin-top: 53px;*/
    background-color:#2a4c43;
    margin-top:0;
  }
  a.navbar-brand img{
      max-width:60px;
  }
  .fixed-top{
      top:0!important;
  }
  .footer-social {
    margin: 27px 0;
  }
}

/*--------------------------------------------------------------------
	         13. END FOOTER-SOCIAL AND COPYRIGHT CSS
--------------------------------------------------------------------*


/*--------------------------------------------------------------------
                       14. START PRELOADER
--------------------------------------------------------------------*/

.loader-overlay {
  background-color: rgba(255, 255, 255, 1);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.preloader {
  background: #13153e;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
}

.preloader-inner-area {
  height: 100%;
  position: relative;
  width: 100%;
}

.l-preloader {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-preloader {
  width: 60px;
  height: 60px;
  position: relative;
}

.c-preloader::before {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #13153e;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  animation-name: preloading;
  animation-duration: 1.2s;
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.c-preloader::after {
  content: "";
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #13153e;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  animation-name: preloading;
  animation-duration: 1.2s;
  animation-delay: -0.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes preloading {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/*--------------------------------------------------------------------
                       14. END PRELOADER
--------------------------------------------------------------------*/
@media (max-width: 448px) {
  /*.navbar {*/
  /*  margin-top: 86px !important;*/
  /*}*/
  .navbar.color-set {
    margin-top: 0px !important;
  }
}

@media (max-width: 448px) {
  .wt-team-2 {
    margin-top: 30px !important;
  }
}
a.navbar-brand img {
  width: 90px;
}

.custom-color {
  background-color: transparent;
  padding: 40px 0 60px 0;
}
.custom-color h2 {
  color: #fff;
}

.color-set.fixed-top img{
    width: 55px;
}
.float {
    position: sticky;
    right: 2%;
    bottom: 45%;
    z-index: 34;
    float: right;
    /*background:#fff;*/
    border-radius:50%;
    box-shadow:2px 2px 3px #999;
}
.float img{
    width:65px;
}
section#footer{
    background:#000;
}