/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
/* Reset Code */
body {
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: "Dosis", sans-serif;
}

body button,
.btn,
body a {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.btn:hover,
body button:hover {
  opacity: 0.8;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

body a:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Lora", serif;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #999;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

/* //Reset Code */

/* colors code */
.text-bl {
  color: #343a40;
}

.text-wh {
  color: #fff;
}

.text-li {
  color: #f8f9fa;
}

.bg-li {
  background: #f8f9fa;
}

.bg-wh {
  background: #fff;
}

.let {
  letter-spacing: 1px;
}

/* //colors code */

/* bottom-to-top */
a.move-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 0;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
}

a.move-top span {
  color: #000;
  font-size: 26px;
  line-height: 30px;
}

/* //bottom-to-top */

/* header */
header {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  position: fixed;
  width: 100%;
  z-index: 999;
}

/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^="drop"] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav {
  margin: 0;
  padding: 0;
}

#logo a {
  float: left;
  display: initial;
  font-weight: 600;
  font-size: 35px;
  color: #719cfe;
  text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
  content: "";
  display: table;
  clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  /* float: right; */
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
}

/* Styling the links */
nav a {
  color: #000;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  margin: 0 12px;
  letter-spacing: 2px;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

/* Background color change on Hover */
nav a:hover {
  color: #000;
  opacity: 0.8;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
  display: none;
  position: absolute;
  top: 26px;
  background: #ffffff;
  padding: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  z-index: 9;
  /* has to be the same number as the "line-height" of "nav a" */
  -webkit-box-shadow: 0px -1px 5px 0px rgba(143, 143, 143, 0.72);
  -moz-box-shadow: 0px -1px 5px 0px rgba(143, 143, 143, 0.72);
  box-shadow: 0px -1px 5px 0px rgba(143, 143, 143, 0.72);
}

nav ul ul li a:hover {
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul li a {
  display: block;
  font-size: 14px;
  margin: 10px 0;
  letter-spacing: 1px;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
  content: "";
}

/* Media Queries
--------------------------------------------- */
@media (max-width: 1280px) {
  nav a {
    font-size: 14px;
  }
}

@media all and (max-width: 991px) {
  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  nav {
    margin: 0;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    padding: 7px 12px;
    font-size: 15px;
    text-decoration: none;
    border: none;
    float: right;
    background-color: #eee;
    color: #000;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }

  .menu .toggle {
    float: none;
    text-align: center;
    margin: auto;
    max-width: 115px;
    padding: 5px;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 2px;
    background: transparent;
    color: #000;
  }

  .toggle:hover {
    opacity: 0.8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^="drop"]:checked + ul {
    display: block;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }

  nav ul {
    float: right;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }

  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }

  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }

  nav ul ul li a {
    letter-spacing: 2px;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }

  .menu li.active a,
  .menu li a:hover {
    opacity: 0.8;
  }

  nav a {
    font-size: 14px;
    display: block;
    margin: 8px 0;
  }

  a.reqe-button {
    padding: 12px 20px;
    font-size: 13px;
    margin: 0 8px;
  }
}

@media all and (max-width: 330px) {
  nav ul li {
    display: block;
    width: 94%;
  }
}

/* dropdown */
#demo {
  margin: 10px 0 0px 0;
}

#demo .wrapper {
  display: inline-block;
  position: relative;
}

#demo .parent {
  height: 100%;
  width: 100%;
  display: block;
  cursor: pointer;
  line-height: 30px;
  height: 30px;
  color: #fff;
  z-index: 2;
  position: relative;
  -webkit-transition: border-radius 0.1s linear, background 0.1s linear,
    z-index 0s linear;
  -webkit-transition-delay: 0.8s;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding-left: 0;
  padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover ~ .parent {
  -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover ~ .parent {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 0;
}

#demo .content {
  position: absolute;
  top: 0;
  display: block;
  z-index: 1;
  height: 0;
  width: 150px;
  padding-top: 30px;
  -webkit-transition: height 0.5s ease;
  -webkit-transition-delay: 0.4s;
}

#demo .wrapper:active .content {
  height: 150px;
  z-index: 3;
  -webkit-transition-delay: 0s;
}

#demo .content:hover {
  height: 150px;
  z-index: 3;
  -webkit-transition-delay: 0s;
}

#demo .content ul {
  background: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#demo .content ul a {
  text-decoration: none;
  padding: 0;
}

#demo .content li {
  list-style: none;
  text-align: left;
  color: #999;
  font-size: 16px;
  line-height: 30px;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */
/* //header */

/* banner */
.mian-content-wthree {
  background: url(../images/1.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 50vw;
  position: relative;
  z-index: 1;
}

/* banner text */
.style-banner {
  padding-top: 18em;
  max-width: 800px;
}

.style-banner h3 {
  font-size: 52px;
  letter-spacing: 1px;
}

.style-banner h3 span {
  color: #ff7f62;
}

.style-banner p {
  font-size: 18px;
  letter-spacing: 4px;
}

/* //banner text */
/* form */
.home-form-w3ls .form-control {
  font-size: 15px;
  border: none;
  -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.28);
  outline: none;
  letter-spacing: 1px;
  color: #000;
  box-sizing: border-box;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
  padding: 12px;
}

.home-form-w3ls textarea.form-control {
  height: 46px;
}

.home-form-w3ls button {
  background: #ff7f62;
  color: #fff;
  padding: 13px 40px;
  margin-top: 2em;
  border: none;
  outline: none;
  letter-spacing: 1px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  -moz-border-radius: 0;
}

/* //form */
/* //banner */

/* bannner bottom */
h3.title-w3 {
  font-size: 42px;
  color: #719cfe;
}

.services h3.title-w3,
.clients h3.title-w3,
.contact h3.title-w3 {
  color: #fff;
}

h3.title-sub {
  font-size: 27px;
  line-height: 1.5;
  letter-spacing: 1px;
}

h3.title-sub span {
  display: block;
}

/* //bannner bottom */

/* what */
.services {
  background: url(../images/bg3.png) center no-repeat fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.services h3.title-w3 span {
  color: #ff7f62;
}

.w3pvtits-services-grids h4 {
  font-size: 23px;
  font-weight: 600;
  color: #000 !important;
  letter-spacing: 0.5px;
}

.w3pvtits-services-grids span.ser-icon {
  font-size: 2em;
  color: #ff7f62;
  width: 70px;
  height: 70px;
  line-height: 2.2;
  text-align: center;
  box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 7px 4px 5px rgba(0, 0, 0, 0.37);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
}

.w3pvtits-services-grids {
  background: #fff;
  padding: 3em;
}

a.service-btn {
  color: #fff;
  font-size: 15px;
  display: inline-block;
  letter-spacing: 1px;
  background: #ff7f62;
  padding: 10px 16px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
}

a.service-btn:hover,
.home-form-w3ls button:hover {
  letter-spacing: 2px;
}

/* //what */

/* courses */
.place-w3 {
  padding: 0 0.5em;
}

.team-img {
  min-height: 330px;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.team-img-1 {
  background: url(../images/p1.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.team-img-2 {
  background: url(../images/p2.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.team-img-3 {
  background: url(../images/p3.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.team-img-4 {
  background: url(../images/p4.png) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.team-content {
  padding: 3em 2em 0;
}

.team-meta {
  color: #eee;
  font-size: 14px;
  margin-top: 2px;
}

.team-content h4 {
  font-size: 24px;
  font-weight: 600;
}

/* //courses */

/* testimonials */
.clients {
  background: url(../images/bg2.jpg) no-repeat center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
}

.feedback-info p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #e4e4e4;
}

.feedback-info img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
}

/* //testimonials */

/* events */
.card {
  background-color: #eee;
  border: none;
  -webkit-box-shadow: 5px 6px 8px 0 rgba(56, 56, 56, 0.21);
  -moz-box-shadow: 5px 6px 8px 0 rgba(56, 56, 56, 0.21);
  box-shadow: 5px 6px 8px 0 rgba(56, 56, 56, 0.21);
}

h5.card-title a {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  background: #719cfe;
  padding: 1em;
  display: block;
}

.blog_w3icon span {
  color: #333;
  font-size: 14px;
  word-spacing: 3px;
  letter-spacing: 1px;
}

.card-body p {
  color: #333;
  font-size: 15px;
}

.card-footer {
  background-color: #dee2e6;
}

/* //events */

/* stats */
.middlesection-w3pvt {
  position: relative;
  background: #719cfe;
  margin-top: 8em !important;
}

.counter {
  color: #fff;
  font-size: 4.5em;
  font-weight: 600;
  margin-bottom: 6px;
}

h3.title-w3-2 {
  font-size: 34px;
  letter-spacing: 1px;
  color: #212020;
}

.agents-w3 {
  position: absolute;
  left: 7%;
  bottom: 0;
}

/* //stats */

/* gallery */
.gal-img img {
  padding: 10px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.gal-img:hover.gal-img img {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

/* popup */
.pop-overlay {
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0ms;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}

.pop-overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  background: #719cfe;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  max-width: 520px;
  position: relative;
  margin: 8em auto;
  padding: 3em 2em 2em;
}

.popup img {
  box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
  -webkit-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
  -moz-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
}

.popup p {
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 1px;
}

.popup .close {
  position: absolute;
  top: 5px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  opacity: 1;
}

.popup .close:hover {
  color: #f14f5e;
}

/* //popup */
/* //gallery */

/* apps */
.apps_w3w3pvt {
  position: relative;
}

ul.apps-lists li {
  display: inline-block;
}

ul.apps-lists li a {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
}

ul.apps-lists li a span {
  color: #ff7f62;
  font-size: 24px;
  vertical-align: middle;
}

ul.apps-lists li a.active {
  background: #ff7f62;
  color: #fff;
}

ul.apps-lists li a.active span {
  color: #fff;
}

.img-podi-w3ls {
  position: absolute;
  top: 30%;
  right: 6%;
  transform: rotate(40deg);
}

.img-podi-w3ls span {
  font-size: 8em;
  color: #ff7f62;
}

/* //apps */

/* contact */
.contact {
  background: url(../images/bg1.jpg) no-repeat 0px 0px;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.contact_grid_right input[type="text"],
.contact_grid_right input[type="email"],
.contact_grid_right textarea {
  outline: none;
  padding: 15px 15px;
  font-size: 14px;
  color: #000;
  background: #fff;
  letter-spacing: 1px;
  border: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
}

.contact_grid_right textarea {
  min-height: 110px;
  resize: none;
  width: 100%;
}

.contact_grid_right button {
  outline: none;
  padding: 15px 0;
  font-size: 14px;
  color: #fff;
  background: #719cfe;
  border: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  font-weight: 600;
  cursor: pointer;
}

/* //contact */

/* inner banner */
.inner-banner-w3ls {
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 1;
}

/* login */
.modal-body {
  max-width: 600px;
  margin: 0 auto;
}

label.col-form-label {
  color: #fff;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 5px;
}

.modal-body .form-control {
  background: #fff;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  -moz-border-radius: 0px;
  border: none;
  padding: 10px 15px;
}

button.button-style-w3 {
  outline: none;
  padding: 12px 20px;
  font-size: 14px;
  color: #fff;
  background: #ff7f62;
  border: none;
  border-radius: 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  font-weight: 600;
  width: 100%;
  margin-top: 1em;
}

.text-style-w3ls {
  letter-spacing: 1px;
  font-size: 15px;
}

p.dont-do a:hover,
.text-style-w3ls:hover {
  color: #fff;
}

/* //login */

/* footer */
footer {
  background: #ff7f62;
}

.footer-grid h3 {
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-grid ul li a,
.footer-grid ul li {
  color: #eee;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin: 10px 0;
  font-weight: 400;
}

/* logo */
a.logo.text-wh {
  font-size: 44px;
}
a.logo:hover {
  color: #fff;
}
.copyright-w3ls {
  background: #191919;
}

/* //logo */

/* copyright */
p.copy-right-grids {
  font-size: 14px;
  letter-spacing: 2px;
}

p.copy-right-grids a {
  color: #ff7f62;
}

p.copy-right-grids a:hover {
  color: #fff;
}

/* //copyright */
/* social-icons */
.w3social-icons ul li {
  display: inline-block;
}

.w3social-icons ul li a {
  color: #fff;
  font-size: 15px;
  display: block;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
  -moz-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
  box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.59);
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 2.6;
}

.w3social-icons ul li a:hover {
  -webkit-box-shadow: 0px 0px 13px 2px #ff7f62;
  -moz-box-shadow: 0px 0px 13px 2px #ff7f62;
  box-shadow: 0px 0px 13px 2px #ff7f62;
}

/* //social-icons */
/* //footer */

/* responsive */
@media (max-width: 1680px) {
  .style-banner {
    padding-top: 16em;
  }
}

@media (max-width: 1600px) {
  .style-banner {
    padding-top: 14em;
  }
}

@media (max-width: 1440px) {
  .style-banner {
    padding-top: 12em;
  }

  .mian-content-wthree {
    min-height: 52vw;
  }

  .counter {
    font-size: 4em;
  }
}

@media (max-width: 1366px) {
  h3.title-w3 {
    font-size: 40px;
  }

  .style-banner h3 {
    font-size: 48px;
  }

  .style-banner p {
    font-size: 16px;
  }

  .mian-content-wthree {
    min-height: 54vw;
  }
}

@media (max-width: 1280px) {
  .w3pvtits-services-grids {
    padding: 2em;
  }

  .style-banner {
    padding-top: 11em;
  }

  h3.w3pvt-title {
    font-size: 23px;
  }
}

@media (max-width: 1080px) {
  a.logo.text-wh {
    font-size: 40px;
  }

  .demo > li {
    max-width: 295px;
  }

  p {
    font-size: 15px;
  }

  ul.apps-lists li a {
    padding: 14px 25px;
    font-size: 15px;
  }

  ul.apps-lists li a span {
    font-size: 22px;
  }

  .img-podi-w3ls span {
    font-size: 7em;
  }

  .serv-w3mk {
    padding: 0 0.5em;
  }

  .team-img {
    min-height: 280px;
  }

  .mian-content-wthree {
    min-height: 720px;
  }

  p.counter {
    font-size: 2.6em;
  }

  .footer-grid h3 {
    font-size: 20px;
  }

  .counter {
    font-size: 3.5em;
  }

  h3.title-w3 {
    font-size: 34px;
  }

  .agents-w3 {
    width: 22%;
  }

  h3.title-sub {
    font-size: 25px;
  }

  .style-banner h3 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .contact_grid_right input[type="text"],
  .contact_grid_right input[type="email"],
  .contact_grid_right textarea {
    padding: 14px 15px;
    font-size: 13px;
  }

  .contact_grid_right textarea {
    min-height: 160px;
  }

  .demo > li {
    max-width: 215px;
  }

  .serv-w3mk {
    padding: 0 1em;
  }

  .w3pvtits-services-grids {
    padding: 3em;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-img {
    min-height: 330px;
  }

  .style-banner p {
    font-size: 15px;
  }

  .mian-content-wthree {
    min-height: 750px;
  }

  .agents-w3 {
    width: 17%;
  }

  .footer-grid h3 {
    font-size: 22px;
  }

  h3.w3pvt-title {
    font-size: 24px;
  }

  .counter {
    font-size: 3em;
  }

  .middlesection-w3pvt {
    margin-top: 3em !important;
  }

  #logo a {
    font-size: 30px;
  }

  .style-banner {
    padding-top: 9em;
  }
}

@media (max-width: 900px) {
  .agents-w3 {
    left: 4%;
  }

  .img-podi-w3ls span {
    font-size: 5em;
  }
}

@media (max-width: 800px) {
  .agents-w3 {
    width: 22%;
    left: 2%;
  }
}

@media (max-width: 736px) {
  .w3social-icons ul li a {
    font-size: 14px;
    width: 35px;
    height: 35px;
  }

  .demo > li {
    max-width: 240px;
  }

  ul.apps-lists li a {
    padding: 14px 17px;
    font-size: 14px;
  }

  h3.title-w3 {
    font-size: 32px;
  }

  .team-img {
    min-height: 290px;
  }

  .style-banner h3 {
    font-size: 42px;
  }

  .style-banner p {
    font-size: 14px;
  }

  .style-banner {
    padding-top: 8em;
  }

  .mian-content-wthree {
    min-height: 700px;
  }

  p.counter {
    font-size: 2.2em;
  }

  .counter {
    font-size: 2.8em;
  }

  h3.title-sub {
    font-size: 23px;
  }

  .style-banner h3 {
    font-size: 38px;
  }
}

@media (max-width: 667px) {
  ul.apps-lists li a {
    padding: 13px 11px;
  }

  ul.apps-lists li a span {
    font-size: 20px;
  }

  a.logo.text-wh {
    font-size: 36px;
  }

  .agents-w3 {
    width: 25%;
  }
}

@media (max-width: 640px) {
  h3.title-w3 {
    font-size: 32px;
  }

  .property-paper {
    text-align: center;
    margin-top: 1em;
  }

  .counter {
    font-size: 2.5em;
  }
}

@media (max-width: 600px) {
  ul.apps-lists li a {
    padding: 13px 9px;
    font-size: 13px;
  }

  ul.apps-lists li a i {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  ul.apps-lists li {
    display: block;
  }

  ul.apps-lists li a {
    padding: 15px 15px;
  }

  .place-w3 {
    padding: 0 1em;
  }

  .team-img {
    min-height: 340px;
  }

  .home-form-w3ls select.form-control {
    font-size: 14px;
  }

  .home-form-w3ls button {
    font-size: 15px;
  }

  .w3layouts_stats_left {
    padding: 0 1em;
  }

  .agents-w3 {
    width: 30%;
  }

  .img-podi-w3ls {
    top: 48%;
  }

  .popup {
    margin: 5em 1em;
  }

  .agents-w3 {
    width: 30%;
    position: static;
  }
}

@media (max-width: 480px) {
  .demo > li {
    max-width: 202px;
  }

  .style-banner h3 {
    font-size: 32px;
  }

  .style-banner p {
    font-size: 12px;
  }

  .mian-content-wthree {
    min-height: 700px;
  }

  .agents-w3 {
    width: 50%;
  }

  .img-podi-w3ls span {
    font-size: 4em;
  }
}

@media (max-width: 440px) {
  .contact_grid_right textarea {
    min-height: 140px;
  }

  .demo > li {
    max-width: 100%;
  }

  h3.w3pvt-title {
    font-size: 23px;
  }

  h3.title-sub {
    font-size: 21px;
  }
}

@media (max-width: 414px) {
  .style-banner h3 {
    font-size: 30px;
  }

  .style-banner {
    padding-top: 8em;
  }

  .mian-content-wthree {
    min-height: 680px;
  }

  h5.card-title a {
    font-size: 15px;
  }
}

@media (max-width: 384px) {
  .contact_grid_right button {
    padding: 14px 0;
    font-size: 13px;
  }

  .img-podi-w3ls span {
    font-size: 3em;
  }

  .popup p {
    font-size: 15px;
  }

  .w3layouts_stats_left {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }

  h3.title-w3 {
    font-size: 28px;
  }

  .style-banner h3 {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  h3.title-w3 {
    font-size: 30px;
  }

  .w3pvtits-services-grids {
    padding: 2em;
  }

  .style-banner {
    padding-top: 7em;
  }

  .home-form-w3ls select.form-control {
    font-size: 13px;
  }

  .home-form-w3ls button {
    font-size: 14px;
    padding: 13px 30px;
  }

  .mian-content-wthree {
    min-height: 620px;
  }

  h3.title-w3 {
    font-size: 26px;
  }

  .footer-grid {
    flex: 0 0 100%;
    max-width: 100%;
  }

  p {
    font-size: 14px;
  }

  a.service-btn {
    font-size: 14px;
    padding: 9px 14px;
  }

  #logo a {
    font-size: 28px;
  }
}

@media (max-width: 320px) {
  p.copy-right-grids {
    letter-spacing: 1px;
  }

  .footer-grid ul li a,
  .footer-grid ul li {
    font-size: 15px;
  }

  .contact_grid_right textarea {
    min-height: 120px;
  }

  h3.title-w3 {
    font-size: 26px;
  }

  .team-img {
    min-height: 300px;
  }

  .style-banner h3 {
    font-size: 23px;
  }

  .style-banner p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .style-banner {
    padding-top: 6.5em;
  }

  .mian-content-wthree {
    min-height: 600px;
  }

  .agents-w3 {
    width: 60%;
  }

  .footer-grid:nth-child(2),
  .footer-grid:nth-child(4) {
    margin-top: 1em;
  }

  .img-podi-w3ls span {
    font-size: 2.5em;
  }

  a.logo.text-wh {
    font-size: 32px;
  }

  .popup {
    padding: 2.5em 1em 1em;
  }

  h5.card-title a {
    font-size: 13px;
  }

  .card-body p {
    font-size: 14px;
  }

  .w3pvtits-services-grids h4 {
    font-size: 22px;
  }

  .home-form-w3ls {
    margin-top: 2em !important;
  }

  .modal-body {
    padding: 0;
  }
}

/* //responsive */
