* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1f1f1f;
  background: #fff;
    min-width:1300px;
    
}
.site-wrapper {
  overflow: hidden;
}
ul {
  list-style: none;
  margin: 0;
}

img {
  max-width: 100%;
}

p {
  font-size: 15px;
}

p.lg {
  font-size: 16px;
}

p.sm {
  font-size: 12px;
}


  p {
    font-size: 17px;
  }

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a:hover{color:#0056b3;text-decoration:underline}
.container-fluid{width:100%; min-width:1300px;padding-right:0px;padding-left:0px;margin-right:auto;margin-left:auto}
.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}


.pt--60 {
  padding-top: 60px !important;
}


.pb--40 {
  padding-bottom: 40px !important;
}

.brand-logo {
  margin-top: -2px;
}
.brand-logo a{
    color: #fff;
	font-size: 28px;
}
.brand-logo a:hover {
  color: #50e3c2;
}




.btn {
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-transition: .4s;
  transition: .4s;
}

.btn--primary {
  color: #0f3d33;
  background: #50e3c2;
}

.btn-primary--opacity {
  -webkit-transition: .5s ease-in;
  transition: .5s ease-in;
  background-color: rgba(80, 227, 194, 0.14);
  color: #0f3d33;
}

.btn-primary--opacity.hvr-bounce-to-right:before {
  background: #50e3c2;
}

.btn--transparent {
  background-color: transparent;
  color: #fff;
}

.btn--transparent:hover {
  color: #50e3c2;
}

.hvr-shine {
  position: relative;
  overflow: hidden;
}

.hvr-shine:before {
  content: '';
  position: absolute;
  height: 400px;
  width: 20px;
  background: white;
  top: -80px;
  left: -20px;
  display: block;
  opacity: 0.5;
  -webkit-box-shadow: 0px 0px 20px 10px white;
  box-shadow: 0px 0px 20px 10px white;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hvr-shine:hover:before {
  left: 200%;
}



 .main-menu {
    display: -webkit-box;
/*    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
*/
  }



  .main-menu > li > a {
    color: #dbe4f1;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 14px 18px;
  }

.main-menu > li > a:hover {
  color: #50e3c2;
}


  .main-menu .has-dropdown {
    position: relative;
    z-index: 99;
  }


  .main-menu .has-dropdown:hover .menu-dropdown {
    top: 100%;
    opacity: 1;
    pointer-events: visible;
  }


.main-menu .has-dropdown:hover .menu-dropdown p {
  margin-bottom: 0;
}


  .main-menu .menu-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 110%;
    position: absolute;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 530px;
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 30px 30px 0px;
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity .4s,top .4s;
    transition: opacity .4s,top .4s;
    pointer-events: none;
  }



  .main-menu .menu-dropdown .single-item {
    -webkit-box-flex: calc(50% - 20px);
        -ms-flex: calc(50% - 20px);
            flex: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 25px;
  }



  .main-menu .menu-dropdown .single-item:hover a h3 {
    color: #50e3c2;
  }

.main-menu .menu-dropdown .single-item a h3 {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 0;
  padding-bottom: 5px;
}

.main-menu .menu-dropdown .single-item a p {
  margin-bottom: 0;
}

.main-menu .menu-dropdown .single-item p {
  color: #878b90;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
}


  .main-menu .menu-dropdown .single-item:nth-child(odd) {
    margin-right: 40px;
  }



  .pl-lg--35 {
    padding-left: 35px;
  }
    .pr-lg--35 {
    padding-right: 35px;
  }

.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-btns .btn--transparent {
  font-weight: 400;
}


.site-header {
  background-color: transparent;
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
  .site-header {
    padding-top: 25px;
    height: 100px;
  }



.hero-content {
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content .title {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 46px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.hero-content h2 {
  color: #dbe4f1;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 30px;
  font-size: 30px;
}
.hero-content p {
  color: #dbe4f1;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 30px;
  font-size: 17px;
}

.hero-about {
  background: url("../image/hero-bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 160px 0 100px;
  position: relative;
    margin-bottom: 0px;
}




.wrap {
    width: 1200px;
    margin: 0 auto;
}
.clear {
    clear: both;
}
.clear30 {
    clear: both;
    height: 30px;
}
.clear50 {
    clear: both;
    height: 50px;
}
.clear100 {
    clear: both;
    height: 100px;
}
.hero-about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(-45deg, #152649 0%, #4f525c 100%);
  opacity: .9;
}
.about-section {
    background: #EBEBEB;
  margin-top: 0px;
  padding: 0px;
    clear: both;
}

.about_content {
        clear: both;
	width: 100%;
	min-height: 100px;
	margin: 0px auto 100px;
	word-wrap: break-word;
	clear: both;
	padding: 30px;
	background: #FFFFFF;
	border-radius: 3px;
}
.about_content p{
	line-height:2;
	text-indent:2em;
	padding:10px 0;
}
.about_content img{

	text-indent: 0em; display: block; margin: 0px auto; max-width: 100%; height: auto;
}  




.section-padding-top {
  padding-top: 50px;
}

.shape-holder {
  position: relative;
  z-index: 1;
}

.footer-shapes {
  position: absolute;
  top: 0;
  width: 100%;
}

.footer-shapes .shape-1 {
  position: absolute;
  width: 100%;
  top: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -2;
}

.footer-shapes .shape-1 svg {
  width: 100%;
  height: 55px;
}

.footer-bg {
  position: relative;
  z-index: 1;
}

.footer-bg:before {
  content: '';
  background-image: linear-gradient(-45deg, #152649 0%, #4f525c 100%);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.shape-holder {

}

.shape-holder img {
  width: 100%;
  max-width: initial;
}
.shape-holder .footer-list img {
  width: 100%;
  max-width: initial;
  max-width: 200px;
}
/* Flex */
.flex-all-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.footer-list {
  margin-top: -10px;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #f8fbfe;
  font-size: 16px;
  line-height: 34px;
  -webkit-transition: .4s;
  transition: .4s;
  padding-left: 0;
}

.footer-list li a:hover {
  color: #50e3c2;
  padding-left: 5px;
}

.footer-list.list-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-list.list-inline li {
  margin-bottom: 0;
  margin-right: 15px;
}

.copyright-area p {
  color: #dbe4f1;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.post-content ul {
    list-style: revert;
}
#toTop {
	background: url("gotop.png") no-repeat; width: 30px; height: 30px; right: 1%; bottom: 2%; display: none; position: fixed; opacity: 0.6; _position: absolute;
	background-size: 100% auto;
	z-index: 99;
}
#toTop:hover {
	opacity: 1;
}