* {

  font-family: inherit;

  box-sizing: border-box;

}

body {

  margin: 0;

  font-family: 'Poppins', sans-serif;

  background-color: #f7f8f9;

}







section {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  height: 100vh;

  overflow: hidden;

}

.hero-section video {

  position: absolute;

  top: 0;

  left: 0;

  display: block;

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

}

div.hero-text {

  z-index: 1;

  width: 45rem;

  text-align: center;

  text-shadow: 1px 1px 1px #000;

  color: #fefefe;

}

.overlay {

  position: absolute;

  z-index: 1;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0,0,0,0.5);

}



a {

  text-decoration: none;

  transition-timing-function: ease-in;

  transition: 0.5s;

}

.clear {clear:both;}

div.hero-text h1 {

  line-height: 1.125;

  margin: 20px 0;

  font-size: 50px;

  font-weight: 400;

  font-family: 'Poppins', sans-serif;

}

div.hero-text div.hero-logo {

  max-width: 240px;

  margin: 0 auto;

}

div.hero-text div.hero-logo img {

  width: 100%;

  height: auto;

  display: block;

}

div.hero-text button {

  cursor: pointer;

  padding: 0.5rem;

  border: 1px solid transparent;

  border-radius: 0.25rem;

  color: #fefefe;

  background-color: #e55;

  font-weight: 600;

  transition: 0.2s ease;

}

div.hero-text button:hover {

  background-color: #eb3838;

}



.head-wrap {

  background-color: rgba(0, 0, 0, 0.75);

  position: fixed;

  top:0;

  height: 114px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  width: 100%;

  z-index: 999;

  border-bottom: 1px solid rgba(0, 0, 0, 0.44);

}

.content-head {

  background-color: #fff !important;

}

.head-wrap div.head-logo {

  max-width: 300px;

  margin-left: 20px;

}

.head-wrap div.head-logo img {

  display: block;

  width: 100%;

  height: auto;

  min-width: 300px;

}

div.head-wrap ul.head-nav {

  list-style: none;

  margin:0;

  padding: 0;

}

ul.head-nav li {

  float: left;

  margin: 0 5px;

}

ul.head-nav li a {

  color: #fff;

  font-size: 18px;

  font-weight: 500;

  text-transform: uppercase;

  padding: 15px;

}

.content-head ul.head-nav li a {

  color: #030e37;

}

.content-head ul.head-nav li a:hover {

  color: #22b1e6;

  background-color: rgba(0, 174, 255, 0.1);

}







.content-wrapper {

  max-width: 1366px;

  margin: 30px auto 0 auto;

  padding: 20px;

}



p.give-us-a-call a {

  font-size: 30px;

  color: #000;

}





.search-wrap {

  margin: 0 0 100px 0;

}



.first-search-box {

  background-color: #FFFFFF;

  padding: 30px 30px 30px 30px;

  border-radius: 4px 4px 4px 4px;

  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);

}



.first-search-tabs {

  display: flex;

  justify-content: center;

}

.first-search-tabs a {

  background-color: rgba(0, 174, 255, 0.56);

  color: #fff;

  border-radius: 10px 10px 0 0;

  padding: 10px 21px 10px 25px;

  margin: 0px 1px 0px 1px;

}

.first-search-tabs a.tabON {

  background-color: #fff;

  color: #000;

}





#first-search {

  display: flex;

  justify-content: space-between;

  align-items: center;



}

#first-search div {

  display: flex;

  flex-direction: column;

  width: 18%;



}

#first-search div label {

  font-size: 14px;

  text-transform: uppercase;

  color: #000;

  font-weight: 700;

}

#first-search div button.search {

  background-color: #00aeff;

  border-radius: 3px;

  color: #fff;

  font-size: 15px;

  border: none;

  height: 42px;

}

.search-input {

  align-self: flex-end;

}

div select {

  background-color: white;

  border: thin solid #e5e5e5;

  border-radius: 4px;

  display: inline-block;

  font: inherit;

  line-height: 1.5em;

  padding: 0.5em 3.5em 0.5em 1em;

  width: 100%;

  /* RESET */

  margin: 0;

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

  -moz-appearance: none;

}



select.minimal {

  background-image:

          linear-gradient(45deg, transparent 50%, gray 50%),

          linear-gradient(135deg, gray 50%, transparent 50%),

          linear-gradient(to right, #ccc, #ccc);

  background-position:

          calc(100% - 20px) calc(1em + 2px),

          calc(100% - 15px) calc(1em + 2px),

          calc(100% - 2.5em) 0.5em;

  background-size:

          5px 5px,

          5px 5px,

          1px 1.5em;

  background-repeat: no-repeat;

}



select.minimal:focus {

  background-image:

          linear-gradient(45deg, green 50%, transparent 50%),

          linear-gradient(135deg, transparent 50%, green 50%),

          linear-gradient(to right, #ccc, #ccc);

  background-position:

          calc(100% - 15px) 1em,

          calc(100% - 20px) 1em,

          calc(100% - 2.5em) 0.5em;

  background-size:

          5px 5px,

          5px 5px,

          1px 1.5em;

  background-repeat: no-repeat;

  border-color: green;

  outline: 0;

}





select:-moz-focusring {

  color: transparent;

  text-shadow: 0 0 0 #000;

}



.text-block-center {

  text-align: center;

}

h3 {

  font-size: 35px;

  font-family: 'Roboto', sans-serif;

  margin-bottom: 0;

}

.flex-wrap {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.full-wrap-001 {

  padding: 10px 20px 100px 20px;

  background-image: url('_img/second-row-bg-colo.jpg');

  background-repeat: no-repeat;

  background-size: cover;

  display: flex;

}



#inquiry-form {

  padding: 50px;

  background-color: #fff;

  max-width: 980px;

  margin: -100px auto 0 auto;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

#inquiry-form p {

  margin: 5px 0;

}

#inquiry-form p strong {

  font-size: 26px;

  font-weight: 500;

}

#inquiry-form div.input-wrap {

  margin: 10px 0;

}

#inquiry-form label {

  font-weight: 700;

}

#inquiry-form input.set-height {

  height: 42px;

}

#inquiry-form input[type='text'],

#inquiry-form input[type='email'],

#inquiry-form input[type='number']

{

  background-color: white;

  border: thin solid #e5e5e5;

  border-radius: 4px;

  display: inline-block;

  font: inherit;

  line-height: 1.5em;

  padding: 0.5em 3.5em 0.5em 1em;

}

#inquiry-form input[type='email']{

  width: 100%;

}

#inquiry-form div.input-half {

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

}

#inquiry-form div.input-half input, #inquiry-form div.input-half select {

  width: 50%;

  margin:0 2px;

}



.why-work-with {

  font-family: "Roboto", Sans-serif;

  font-size: 31px;

  font-weight: 300;

  line-height: 1.6em;

  margin-bottom: 15px;

  color: #fff;

  max-width: 980px;

  margin: 0 auto;

}

.why-work-with div {

  width: 48%;

}

.why-work-with div span {

  font-size: 50px;

  display: block;

  margin: 10px 0;

}

.why-work-with div {

  font-size: 16px;

  line-height: 30px;

  margin:40px 0;

}

.why-work-with div strong {

  display: block;

  font-size: 22px;

  font-weight: 500;

  margin: 20px 0;

}

.why-work-with div p {

  font-size: 31px;

  font-weight: 500;

  line-height: 1.6em;

  margin: 0;

}

.why-work-with div.www-lines {

  position: relative;

  padding: 20px 0;

}



.why-work-with div.www-lines:before {

  content : "";

  position: absolute;

  left    : 0;

  bottom  : 0;

  height  : 1px;

  width   : 50%;  /* or 100px */

  border-bottom:1px solid white ;

}

.why-work-with div.www-lines:after {

  content : "";

  position: absolute;

  left    : 0;

  top  : 0;

  height  : 1px;

  width   : 50%;  /* or 100px */

  border-top:1px solid white ;

}







.meet-team {

  background-color: rgba(247, 248, 249, 1.00);

  margin:120px 0 60px 0;

  font-family: "Roboto", Sans-serif;

  text-align: center;

}

.meet-wrap {

  max-width: 1366px;

  margin: 0 auto;

}



.meet-wrap h2 {

  font-size: 35px;

  font-weight: 400;

  margin-bottom: 8px;

}

p.sub-title {

  margin-top: 0;

  color: #7a7a7a;

}



.container {

  display: flex;

  align-items: center;

  justify-content: center;

  margin:15px;

  /*width: 540px;*/



}


.one {
  display: flex;
}

.containerOne {
  position: relative;
  max-width: 540px;
  margin:10px;
}

.containerOne img {
  height: 540px;
  width: 425px;
  object-fit: cover;
}

/*.image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 540px;
}
*/


.overlayOne {

  position: absolute;

  bottom: 0;

  left: 100%;

  right: 0;

  background-color: rgba(247, 248, 249, .75);

  overflow: hidden;

  width: 0;

  height: 100%;

  transition: .4s ease;

}

.containerOne:hover .overlayOne {

  width: 100%;

  left: 0;

}

.text {

  color: #222;

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

  text-align: center;

  position: absolute;

  top: 43%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 320px;

}

.team-photos {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

}

.team-photos-box {



}





.footer-info {

  background-color: #004274;

  padding: 40px 20px;

  color: #fff;

  font-weight: 100;

}

div.footer-wrap {

  max-width: 1366px;

  margin:0 auto;

  display: flex;

  justify-content: space-between;



}

.footer-wrap div {

  max-width: 520px;

}

.footer-info-spacer {

  margin: 0 50px;

}

.footer-wrap div p:first-of-type {

  margin-top: 0;

}

.footer-copy {

  background-color: #00335A;

  padding: 40px 20px;

  color: #fff;

  text-align: center;

}





.listing-wrap {

  max-width: 1440px;

  padding: 0 20px;

  margin: 0 auto;

  display: flex;

  flex-wrap: wrap;

  flex-direction: row;

  justify-content: space-evenly;

}

.listing-wrap h2 {width:100%;}



.listing-box {

 width:400px;

  position: relative;

  margin:20px 0;

}

.listing-box a {

  display: block;

  width: 100%;

  height: 100%;

}

.listing-box a:hover {

  opacity: .8;

}

.listing-box img.listing-img {

  width: 100%;

  height: auto;

  display: block;

  z-index: 100;

}

.listing-box .listing-banner-01 {

  position: absolute;

  top:4px;

  left: 5px;

  z-index: 110;

  padding: 5px;

  background-color: orange;

  color: #000;



}

.listing-box .listing-banner-02 {

  position: absolute;

  top:4px;

  right: 5px;

  z-index: 110;

  padding: 5px;

  background-color: #000;

  color: #fff;

}

.listing-box .listing-info-01 {

  position: absolute;

  bottom: 0;

  width: 100%;

}

.listing-box .listing-info-sub {

  display: flex;

  justify-content: space-between;

}

.lis-01 {

  background-color: rgba(34, 177, 230, 0.65);

  color: #000;

  padding: 8px 14px;

  font-weight: 700;

  font-size: 18px;

}

.lis-02 {

  background-color: #004274;

  color: #fff;

  padding: 4px 10px;

}

.listing-loc {

  -o-text-overflow: ellipsis;

  text-overflow: ellipsis;

  white-space: nowrap;

  overflow: hidden;

  max-width: 40%;



}

.all-listings-wrap {

  max-width: 1330px;

  margin: 20px auto 40px auto;

  display: flex;

  justify-content: center;

}

a.all-listings-btn {

  padding: 10px 20px;

  display: inline-block;

  background-color: #004274;

  color: #fff;

  text-transform: uppercase;

  font-size: 22px;

  font-weight: 500;

}



h3.insta-title {

  font-size: 35px;

  font-weight: 400;

  margin-bottom: 20px;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

}

h3.insta-title img {

  margin-left: 20px;

}







.insta-row {

  display: flex;

  flex-wrap: wrap;

  width: 100%;

}

.insta-row a {

  display: block;

  width: 20%;

}

.insta-row a img {

  height: auto;

  display: block;

  width: 100%;

}









.content-header {

  margin-top:114px;

  height: 300px;

  background-repeat: no-repeat;

  background-size: cover;

  background-position:center;

  position: relative;

}

.content-header-overlay {

  width: 100%;

  height: 100%;

  display: block;

  background-color: #004274;

  opacity: 0.5;

  position: absolute;

  top:0;

  left: 0;

  z-index: 5;

}

.content-header h1 {

  font-size: 50px;

  font-weight: 700;

  color: #fff;

  opacity: 1;

  z-index: 10;

  position: absolute;

  padding: 0;

  margin:0;

  top:100px;

  left: 10%;

  font-family: "Roboto", Sans-serif;

}

.buyers-header {

  background-image: url('_img/buyers-header.jpg');

}

.sellers-header {

  background-image: url('_img/sellers-header.jpg');

}

.content-container {

  max-width: 1366px;

  margin:0 auto;

  padding: 80px 20px;

}



.buyers-wrap {

  display: flex;

  justify-content: space-between;

  width: 100%;

}

.buyers-nav {

  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),

  0 4px 6px -2px rgba(0,0,0,.05);

  padding: 40px;

  width: 400px;

}

.buyers-nav ul {

  list-style: none;

  margin: 0;

  padding: 0;

}

.buyers-nav ul li {

  padding: 5px;

}

.buyers-nav ul li a {

  color: #030e37;

  display: block;

}

.buyers-nav ul li:hover {

  background-color: rgba(0, 174, 255, 0.1);

  cursor: pointer;

}

.buyers-nav ul li.bnON {

  background-color: rgba(0, 174, 255, 0.1);

  cursor: pointer;

  font-weight: 700;

}



.buyers-nav ul li a:hover {

  color: #22b1e6;

}

.buyers-nav h4 {

  font-size: 20px;

}



.buyers-txt {

  width: 70%;

  margin-left: 80px;

}

.buyers-txt h3 {

  font-size: 34px;

  font-family: "Roboto", Sans-serif;

  position: relative;

  margin-bottom: 40px;

}

.buyers-txt h3:after {

  content : "";

  position: absolute;

  left    : 0;

  bottom  : -10px;

  height  : 1px;

  width   : 20%;  /* or 100px */

  border-bottom:1px solid #004274;

}

.buyers-txt p {

  font-size: 18px;

  line-height: 28px;

  color: #1f1f1f;

}



.mbl-header {

  display: none;

}



.www-flex {

  display: flex;

  width: 100% !important;



}



.contact-wrapper {

  display: flex;

  justify-content: space-between;

  width: 100%;

}



.contact-form-box {

  width: 65%;

  background-color: #fff;

  padding: 20px;

  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);

}

form#contact {

  display: flex;

  width: 100%;

  flex-wrap: wrap;

  justify-content: space-between;

}

form span.full {

  width: 100%;

}

form span.half {

  width: 48%;

}

form#contact span {

  margin:10px 0;

}

form#contact label {

  display: block;

  font-weight: 500;

}

form#contact input[type=text] {

  width: 100%;

  padding: 10px;

}

form#contact input[type=email] {

  width: 100%;

  padding: 10px;

}

form#contact textarea {

  width: 100%;

  padding: 10px;

  min-height: 120px;

}



form#contact input[type=submit] {

  background-color: #00aeff;

  border-radius: 5px;

  padding: 10px;

  color: #fff;

  border:none;

  width: 100%;

}



.contact-details-wrap {

  width: 34%;

}

.contact-inq {

  background-color: #fff;

  padding: 20px;

  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);

  width: 100%;

  margin-bottom: 20px;

}

.contact-hq {

  background-color: #fff;

  padding: 20px;

  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);

  width: 100%;

}



.contact-details-wrap a {

  color: #030e37;

}

.contact-details-wrap h4 {

  font-size: 20px;

}



.map-wrap {

  margin: 60px 0;

}



.about-container h1 {

  font-size: 40px;

  text-align: center;

}

.about-container h3 {

  font-size: 24px;

  text-align: center;

}



.about-row-01 {

  width: 100%;

  display: flex;

  background-color: #f5f5f5;

  justify-content: flex-end;

  padding: 40px 0 40px 20px;

}

.about-row-01 .about-row-01-tit {

  width: 35%;

  font-size: 70px;

  line-height: 70px;

  margin-right: 40px;

  justify-content: flex-end;

  display: flex;

  align-items: center;

}

.about-row-01 .about-row-01-txt {

  width: 40%;

  margin-right: 40px;

  font-size: 20px;

  font-weight: 500;

}

.about-row-01 .about-row-01-img {

  max-width:600px;

  width: 25%;

}

.about-row-01 .about-row-01-img img {

  display: block;

  width:100%;

  height: auto;

}



.listing-wrap {

  font-family: "Roboto", Sans-serif;

  padding: 20px;

  max-width: 1366px;

  margin:0 auto;

}

.list-001 {

  display: flex;

  justify-content: space-between;

  width: 100%;

}

.list-002 {



}

.list-002 a {

  color: #666;

  font-size: 16px;

  font-weight: 500;

  display: flex;

  align-items: center;

  align-self: center;

  padding-bottom: 40px;

}



.list-003 {

  display: block;

  width: 100%;

}



.list-base {

  background-color: #fff;

  max-width: 980px;

  margin: 30px auto;

  padding:40px;

}



.list-base h3 {

  color: #222;

  font-size: 24px;

  font-weight: 400;

  font-family: "Roboto", Sans-serif;

  margin-top: 0;

}

hr.list-hr {

  width: 100%;

  border:none;

  height: 1px;

  background-color: #e5e5e5;

  margin: 30px 0;

}

.list-004 .list-ov {

  display: flex;

  flex-wrap:wrap;

  justify-content: space-between;

}

.list-004 .list-ov div {

  width: 19%;

  font-weight: 400;

  color: #999;

}

.list-004 .list-ov div span {

  display: block;

  font-weight: 700;

  color: #222;

}

.list-sec-split {

  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.list-sec-split a {

  background-color: #00aeff;

  color: #fff;

  font-size: 14px;

  padding: 4px 10px;

  border-radius: 10px;

}



.list-005 .list-addr {

  display: flex;

  justify-content: space-between;

}

.list-addr div {

  width: 49%;

}

.list-addr div span {

  display: block;

  padding-bottom: 10px;

  border-bottom:1px solid #999;

  margin-top: 15px;

}

.list-addr div span:first-of-type {

  margin-top: 0;

}



.list-details {

  display: flex;

  flex-direction: column;

}

.list-details div {

  display: flex;

  justify-content: space-between;

  width: 100%;

  border-bottom:1px solid #e5e5e5;

  margin: 10px 0;

}

.list-007 ul {

  list-style: none;

  margin:0;

  padding:0;

  width: 100%;

  -webkit-columns: 3;

  -moz-columns: 3;

  columns: 3;

}

.list-007 ul li {

  padding:10px;

  font-size: 20px;



}





.list-009 form#inquiry-form {

  padding: 0 !important;

  background-color: transparent;

  max-width: 100% !important;

  margin: 0 !important;

  box-shadow: none;

}

.list-009 form#inquiry-form div {

  margin: 30px 0 !important;

}

.list-009 form#inquiry-form textarea {

  background-color: white;

  border: thin solid #e5e5e5;

  border-radius: 4px;

  display: inline-block;

  font: inherit;

  line-height: 1.5em;

  padding: 0.5em 3.5em 0.5em 1em;

  width: 100%;

  min-height: 120px;

}



.list-contact {

  display: flex;

  padding-bottom: 30px;

}

.list-contact div {

  display: flex;

  flex-direction: column;

}

.list-contact div:last-of-type {

  margin-left: 20px;

}

.list-contact div p {

  display: flex;

}



/* OWL CAROUSEL THUMBS */



#sync1 .owl-dots {

  display: none !important;

}

#sync2 .owl-nav {display: none !important;}



#sync2 {

  max-width: 980px;

  margin: 0 auto;

}



#sync1 .item {

  background: transparent;

  padding: 20px 0px;

  color: #FFF;

  -webkit-border-radius: 3px;

  -moz-border-radius: 3px;

  border-radius: 3px;

  text-align: center;

  max-width: 980px;

  margin:0 auto;

}



#sync2 .item {

  background: transparent;

  padding: 0px;

  margin: 5px;

  color: #FFF;

  -webkit-border-radius: 3px;

  -moz-border-radius: 3px;

  border-radius: 3px;

  text-align: center;

  cursor: pointer;

  opacity: 0.5;

}

#sync2 .item h1 {

  font-size: 18px;

}

#sync2 .current .item {

  background: transparent;

  opacity: 1;

}



.owl-theme .owl-nav {

  /*default owl-theme theme reset .disabled:hover links */

}

.owl-theme .owl-nav [class*=owl-] {

  transition: all 0.3s ease;

}

.owl-theme .owl-nav [class*=owl-].disabled:hover {

  background-color: #D6D6D6;

}



#sync1.owl-theme {

  position: relative;

}

#sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {

  width: 22px;

  height: 40px;

  margin-top: -20px;

  position: absolute;

  top: 50%;

}

#sync1.owl-theme .owl-prev {

  left: 10px;

}

#sync1.owl-theme .owl-next {

  right: 10px;

}

/* END OWL CAROUSEL THUMBS */



.full-listing-search {

  max-width: 1366px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

}

.full-listing-search div.input-wrap {

  display: flex;

  justify-content: space-between;

  align-content: center;

  max-width: 1366px;

  margin: 0 auto;

}

.full-listing-search div {

  margin: 10px;

}

.full-listing-search input[type="submit"] {

  padding: 10px;

align-self: center;

  width: 200px;

}



.sold-wrap {

  display: flex;

  flex-wrap: wrap;

  padding-top: 20px;

  border-top:2px solid black;

}

.avail-wrap {

  display: flex;

  flex-wrap: wrap;

  padding-bottom: 20px;

}

.avail-wrap div, .sold-wrap div {

  margin:10px;

}



.center {

  justify-content: center !important;

}





@media only screen and (max-width: 980px) {

  .listing-box {

    width: 48%;

    position: relative;

    margin:20px 0;

  }

  .about-row-01 .about-row-01-tit {

    display: none;

  }

  .about-row-01 .about-row-01-txt {

    width: 60%;

  }

  .about-row-01 .about-row-01-img {

    width:40%;

  }

}



@media only screen and (max-width: 768px) {

  .head-wrap {display: none;}

  .mbl-header {

    display: flex;

    justify-content: space-between;

    z-index: 99999;

    position: fixed;

    top:0;

    width: 100%;

    height: 85px;

    background-color: rgba(0, 0, 0, 0.75);

  }

  .mbl-header img {

    width: 100%;

    height: auto;

    display: block;

  }

  .listing-box {

    width: 100%;

    position: relative;

    margin:20px 0;

  }

  .why-work-with {

    flex-direction: column;

    display: flex;

  }

  .www-flex {

    flex-direction: column;

  }

  .why-work-with div {

    width: 100%;

    text-align: center;

    margin: 20px 0;

  }

  .why-work-with div.www-lines:before {

    border-bottom:none;

  }

  .why-work-with div.www-lines:after {

    border-top:none;

  }

  .one {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-work-with div p {text-align: center;}

  .www-001 {justify-content: center;}

  .www-002 {order: 2;}

  .www-003 {order: 3;}

  .www-004 {order: 4;}



  .team-photos {

    flex-direction: column;

    justify-content: center;

    align-items: center;

  }

  .footer-wrap {

    flex-direction: column;

    align-items: center;

  }

  .footer-wrap div {

    width: 100%;

    text-align: center;

    margin: 20px 0px;

  }

  .about-row-01 {

    flex-direction: column-reverse;

  }

  .about-row-01 .about-row-01-img {

    width:100%;

  }

  .about-row-01 .about-row-01-txt {

    width:100%;

  }



}

@media only screen and (max-width: 768px) {

  .listing-wrap {margin-top: 100px;}

  .hero-section {

    margin-top: 100px;

  }

  .container {

    width: 420px;

  }

  .mbl-nav {

    height: 100px;

    position: fixed;

    top: 0;

    z-index: 9999;

    width: 100%;

    background-color: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

  }



  .mbl-logo {

    padding-left: 20px;

    flex:1;

  }



  .mbl-menu-lnk {

    display: table-cell;

  }



  .mbl-logo img {

    width: 100%;

    max-width: 229px;

    height: auto;

  }



  .hamburger-on {display: none;}



  .mbl-menu {

    display: none;

    margin: 0;

    padding: 0;

    position: fixed;

    top:100px;

    width: 100%;

    z-index: 10000;

  }



  .mbl-menu li {

    text-align: center;

    border-bottom: 1px solid #deddda;

  }



  .mbl-menu li:first-child {

    border-top: 1px solid #deddda;

  }



  .mbl-menu li:last-child {

    border-bottom: none;

  }



  .mbl-menu li a {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 10px;

    color: #004273;

    font-size: 20px;

    font-weight: 600;

    background: #fff;

  }



  .mbl-menu li a:hover {

    /*color: #164a7c;*/

    color: #004273;

  }



  .menubtn-wrap {

    padding: 0 20px;

    background-color: #22b1e6;

    margin-left:15px;

  }



  .menubtn {

    background-color: transparent;

    border: none;

    cursor: pointer;

    display: flex;

    padding: 0;

  }



  .line {

    fill: none;

    stroke: white;

    stroke-width: 6;

    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),

    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);

  }



  .line1 {

    stroke-dasharray: 60 207;

    stroke-width: 6;

  }



  .line2 {

    stroke-dasharray: 60 60;

    stroke-width: 6;

  }



  .line3 {

    stroke-dasharray: 60 207;

    stroke-width: 6;

  }



  .opened .line1 {

    stroke-dasharray: 90 207;

    stroke-dashoffset: -134;

    stroke-width: 6;

  }



  .opened .line2 {

    stroke-dasharray: 1 60;

    stroke-dashoffset: -30;

    stroke-width: 6;

  }



  .opened .line3 {

    stroke-dasharray: 90 207;

    stroke-dashoffset: -134;

    stroke-width: 6;

  }



  .mbl-menu li a.current {

    background-color: #164a7c;

    color: #fff;

  }



  .mbl-menu li a img {

    margin-left: 10px;

  }



  .mbl-menu li ul {

    background-color: #99ca3c;

    list-style: none;

    padding: 0;

    margin: 0;

  }



  .mbl-menu li ul li {

    background-color: #99ca3c;

    text-align: left;

    font-size: 22px;

    font-weight: 400;

    color: #006f51;

    font-style: normal;

  }



  .mbl-menu li ul li.mbl-menu-sub-header {

    color: #fff;

    font-size: 28px;

    font-style: normal;

    font-weight: 700;

    text-align: center;

    padding: 5px 0 5px 0;

    list-style: none;

  }



  .mbl-menu li ul li a {

    display: block;

    padding: 5px 0 5px 45%;

    text-align: left;

    color: #fff;

    font-size: 18px;

    font-style: normal;

    font-weight: 300;

    background: #a3b8cb;

    text-transform: uppercase;

  }



  .mbl-menu li ul li a span {

    font-size: 20px;

    font-style: normal;

    font-weight: 400;

  }



  .mbl-menu li ul li a:hover {

    color: #164a7c;

  }



  div.header {display: none;}



  .mbl-header {

    height: 100px;

    display: block;

  }

  .content-container{

    padding: 20px;

  }

  .buyers-wrap {

    flex-direction: column;

  }

  .buyers-nav {

    width: 100%;

  }

  .buyers-txt{

    width: 100%;

    margin-left: 0;

  }

  .about-row-01 {

    padding: 20px;

  }

  .contact-wrapper {

    flex-direction: column;

  }

  .contact-inq {

    margin-top:20px;

  }

  .contact-form-box, .contact-inq, .contact-hq, .contact-details-wrap {

    width: 100%;

  }

}



@media only screen and (max-width:580px) {

  .list-004 .list-ov div {

    width: 120px;

    margin: 5px;

  }

  .list-007 ul {

    -webkit-columns: 1;

    -moz-columns: 1;

    columns: 1;

  }

}



@media only screen and (max-width: 450px) {

  .container {

    width: 280px;

  }

}







.btn {

  background: #3498db;

  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);

  background-image: -moz-linear-gradient(top, #3498db, #2980b9);

  background-image: -ms-linear-gradient(top, #3498db, #2980b9);

  background-image: -o-linear-gradient(top, #3498db, #2980b9);

  background-image: linear-gradient(to bottom, #3498db, #2980b9);

  -webkit-border-radius: 28;

  -moz-border-radius: 28;

  border-radius: 28px;

  font-family: Arial;

  color: #ffffff;

  font-size: 20px;

  padding: 10px 20px 10px 20px;

  text-decoration: none;

}



.btn:hover {

  background: #3cb0fd;

  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);

  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);

  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);

  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);

  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);

  text-decoration: none;

}