body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: #fff;
}

body a,
.newsright input[type="submit"],
button {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  text-decoration: none;
  outline: none;
  cursor: pointer !important;
}
button,
.btn {
  cursor: pointer !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "EB Garamond", serif;
}

p {
  color: #555;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  font-weight: 600;
}

ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

body a:hover {
  color: #a9c729;
  text-decoration: none;
}

body a:focus {
  color: #a9c729;
  outline: none;
  text-decoration: none;
}
/*-- header --*/

/* CSS Document */

header {
  position: absolute;
  z-index: 9;
  width: 100%;
}
.top-head {
  background: #4e8736;
}
.top-head li {
  color: #fff !important;
}
.mnu {
  margin-top: 15px;
}
.toggle,
[id^="drop"] {
  display: none;
}

/* Giving a background-color to the nav container. */

nav {
  margin: 0;
  padding: 0;
}
ul.menu {
  margin-top: 7px;
}
#logo a {
  float: left;
  display: initial;
  margin: 0;
  color: #fff;
  font-family: "EB Garamond", serif;
}

#logo a span {
  color: #fff;
}
.logo h1 a {
  font-size: 0.8em;
  letter-spacing: 1px;
  font-family: "EB Garamond", serif;
}

/* 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: left;
  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 {
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  font-size: 0.95em;
}

nav ul li ul li:hover {
  background: #f8f9fa;
}

/* Background color change on Hover */

nav a:hover {
  color: #a9c729;
}

.menu li.active a {
  color: #a9c729;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "nav a" */
  top: 30px;
  background: #fff;
  padding: 10px;
}

/* 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 {
  color: #333;
  padding: 5px 10px;
  display: block;
}

/* 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 all and (max-width: 768px) {
  #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: 4px 15px;
    font-size: 20px;
    text-decoration: none;
    border: none;
    float: left;
    background-color: #ffffff;
    color: #333;
    cursor: pointer;
  }
  .menu .toggle {
    float: none;
    text-align: center;
    margin: auto;
    width: 80%;
    padding: 5px;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .toggle:hover {
    color: #333;
    background-color: #fff;
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^="drop"]:checked + ul {
    display: block;
    background: rgba(16, 16, 16, 0.85);
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }

  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: #fff;
    font-size: 17px;
  }

  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #212121;
  }

  /* 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 ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }
  nav ul ul li a {
    color: #fff;
    font-size: 0.85em;
  }
}

@media all and (max-width: 330px) {
  nav ul li {
    display: block;
    width: 94%;
  }
}
/* header */
input.form-control.serv_bottom.text-white {
  cursor: pointer;
}
.top-head span {
  color: #ffff;
  letter-spacing: 2px;
  font-weight: 600;
}

.top-head a {
  color: #ffff;
  letter-spacing: 2px;
}

.top-content-info {
  position: relative;
  margin: 0 0 0.5em 0;
}

/* header */

header h1 {
  line-height: 0.9;
}
.callnumber li {
  display: inline-block;
  text-align: right;
  color: #000;
  letter-spacing: 1px;
}
.navbar-light {
  padding: 0.5em 1em 1em 1em;
  position: absolute;
  z-index: 999;
  width: 42%;
  left: 1em;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.navbar-light .navbar-brand {
  color: #fff;
}
a.navbar-brand {
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.7em;
  letter-spacing: 1px;
  color: #fff;
}

header h1 a span {
  color: #fff;
  display: block;
  font-size: 12px;
  letter-spacing: 5px;
  word-spacing: 5px;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #a9c729;
  background: transparent;
  border-radius: 5px;
}
.dropdown-item {
  color: #fff;
}

.dropdown-item {
  background-color: white;
  color: #000 !important;
}
.w3ls-btn {
  letter-spacing: 1px;
  font-weight: 600;
  background: #a9c729;
}
.sub-menu {
  background-color: #e9ecef;
  height: 50px;
}
/*-- //header --*/

/* banner */

.banner {
  background: url(../images/bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  min-height: 455px;
  max-height: 456px;
  position: relative;
}

@media (width: 1280px) {
  .banner {
    min-height: 455px;
    max-height: 456px;
  }
}
@media (width: 1366px) {
  .banner {
    min-height: 455px;
    max-height: 456px;
  }
}
@media (width: 1440px) {
  .banner {
    min-height: 455px;
    max-height: 456px;
  }
}
.inner-banner {
  background: url(../images/bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  min-height: 455px;
  max-height: 456px;
  position: relative;
}

li.breadcrumb-item a {
  color: #000;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.5px;
}

.breadcrumb-item.active {
  color: #a9c729;
  font-weight: bold;
  font-size: 0.9em;
  letter-spacing: 1px;
}

.banner-text {
  padding: 18vw 37vw 0vw 0vw;
  box-sizing: border-box;
}
/*-- text Slider --*/

#slider {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin: 0 auto;
}

.rslides_tabs {
  list-style: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.3), inset 0 0 5px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(0, 0, 0, 1);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(0, 0, 0, 1);
  font-size: 18px;
  list-style: none;
  margin: 0 auto 50px;
  max-width: 540px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.rslides_tabs li {
  display: inline;
  float: none;
  margin-right: 1px;
}

.rslides_tabs a {
  width: auto;
  line-height: 20px;
  padding: 9px 20px;
  height: auto;
  background: transparent;
  display: inline;
}

.rslides_tabs li:first-child {
  margin-left: 0;
}

.rslides_tabs .rslides_here a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: bold;
}

.events {
  list-style: none;
}

.callbacks_container {
  position: relative;
}

.callbacks {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.callbacks li {
  position: absolute;
  left: 0;
  top: 0;
}

.callbacks img {
  position: relative;
  z-index: 1;
  height: auto;
  border: 0;
}

.callbacks .caption {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 20px;
  text-shadow: none;
  color: #fff;
  left: 0;
  right: 0;
  padding: 10px 20px;
  margin: 0;
  max-width: none;
  top: 10%;
  text-align: center;
}

/*
.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 78%;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 34px;
	width: 34px;
	background: url("../images/left.png") no-repeat 0px 0px;
}
.callbacks_nav.prev {
	left: auto;
	background: url("../images/back.png") no-repeat 0px 0px;
	left: 18em;
}
.callbacks_nav.next {
	left: auto;
	background: url("../images/next.png") no-repeat 0px 0px;
	right: 18em;
}
.callbacks_nav:active {
	opacity: 1.0;
}
.callbacks2_nav:active {
	opacity: 1.0;
}*/

#slider-pager a {
  display: inline-block;
}

#slider-pager span {
  float: left;
}

#slider-pager span {
  width: 100px;
  height: 15px;
  background: #fff;
  display: inline-block;
  border-radius: 30em;
  opacity: 0.6;
}

#slider-pager .rslides_here a {
  background: #fff;
  border-radius: 30em;
  opacity: 1;
}

#slider-pager a {
  padding: 0;
}

#slider-pager li {
  display: inline-block;
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  left: 0%;
  top: 0;
  width: 100%;
}

.rslides li {
  position: relative;
  display: block;
  float: none;
}

.rslides img {
  height: auto;
  border: 0;
}

.callbacks_tabs li {
  display: inline-block;
}

.callbacks_tabs a {
  visibility: hidden;
  line-height: 23px;
  height: 20px;
  text-align: center;
  color: #000;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 50%;
}

.callbacks_tabs a:after {
  content: "\f111";
  font-size: 0;
  font-family: FontAwesome;
  visibility: visible;
  display: block;
  height: 15px;
  width: 15px;
  display: inline-block;
  background: #a9c729;
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.callbacks_here a:after {
  background: #000;
  border: 2px solid #ffffff;
}

p.sub-para {
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
}

.slider-info img {
  width: 100px;
  margin: 0 auto;
}

.callbacks_tabs {
  list-style: none;
  position: absolute;
  left: 0%;
  bottom: -100px;
  z-index: 2;
  border-radius: 5px;
}

.slider-top span {
  font-weight: 600;
}

.slider-info h3 {
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.3em;
  text-transform: capitalize;
}

.slider-info p {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 1em;
  color: #fff;
  letter-spacing: 2px;
}

.slider-info a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-color: #a9c729;
  background: #a9c729;
}

.slider-info a:hover {
  color: #fff;
  background: #b34fa9;
  border-color: #b34fa9;
}

/* //text slider */

/* //banner */

/*-- services --*/
.agileits-services-grids h4 {
  font-size: 1.2em;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 10px 0;
}

.agileits-services-grids h6 {
  padding: 1px;
  background: #2954a2;
  width: 33%;
  margin: 2em auto 0;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}

.agileits-services-grids:hover h6 {
  width: 55%;
  background: #2954a2;
}

/*-- Effect 1--*/

.agileits-services-grids span {
  font-size: 2em;
  color: #a9c729;
  text-align: center;
}

a.service-btn {
  background: #a9c729;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin: 18px 0 0;
  border-radius: 5px;
  letter-spacing: 1px;
}
.w3ls-titles p {
  width: 76%;
}
/*-- //services --*/
/* blog */

.card-header:first-child {
  background: #d56e9b;
}

.card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

h5.card-title a {
  color: #000;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}
.blog_w3icon span {
  color: #777;
  font-size: 13px;
  word-spacing: 3px;
}

/* //blog */

.team-block {
  margin-bottom: 20px;
}

.team-content {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.43);
  bottom: 0px;
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 50% 10%;
  top: 0;
}

.team-img {
  position: relative;
}

.team-img img {
  width: 100%;
}

.team-meta {
  color: #9da4aa;
  font-weight: 400;
  font-size: 16px;
}

.overlay {
  border-radius: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 1s ease;
  background-color: #11181f;
}

.team-img:hover .overlay {
  opacity: 0.8;
}

.team-img:hover .team-content {
  opacity: 0;
}

.text {
  color: #fff;
  position: absolute;
  top: 35%;
  left: 30%;
  transform: translate(-26%, -26%);
  -ms-transform: translate(-26%, -26%);
  right: 0;
  font-weight: 400;
  font-size: 16px;
}

/* /footer */
footer a {
  color: #fff;
}
h3.title {
  color: #000;
  font-size: 42px;
}

span.hdng {
  color: #a9c729;
}
.banner-bottom {
  background: url(../images/bg2.jpg) no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-attachment: fixed;
}

.button {
  margin-top: 1.5em;
}

h6.text-white {
  font-size: 18px;
  font-weight: 300;
}
.banner-left-bottom-w3ls h3 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 51px;
}
.banner-left-bottom-w3ls p {
  color: #dadada;
  font-size: 14px;
}
a.w3ls-button-agile {
  color: #fff;
  padding: 14px 24px;
  letter-spacing: 1px;
  font-size: 14px;
  background: transparent;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 2px 0px 5px 0px rgba(255, 255, 255, 0.22);
}
a.w3ls-button-agile:hover {
  letter-spacing: 3px;
  background: #a9c729;
  color: #fff !important;
}
/*-- stats --*/
section.stat_w3l {
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-attachment: fixed;
}
.stats_info p {
  font-size: 2.5em;
  letter-spacing: 1px;
  line-height: 2;
  color: #ffffff;
  font-weight: 800;
}
.stats_info h4 {
  color: #fff;
  font-size: 0.95em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1em;
  letter-spacing: 1px;
  font-style: italic;
}
.stats_info span {
  font-size: 2.3em;
  color: #a9c729;
  margin: 0;
}
.stats_bottom_grid_left img {
  margin: 0 auto;
}
.stats_info {
  text-align: center;
  border-top: none;
  border-bottom: none;
}

.stats_info:nth-child(3) {
  border-right: 0px;
}
.stats_info1 {
  background: rgba(220, 220, 220, 0.31);
  padding: 32px 20px;
}
.stats_info:nth-child(2) {
  border-left: 0px;
  border-right: 0px;
}
/*--//stats--*/
/*--footer--*/

.footer_w3layouts_section_1its {
  background: #151515;
}

.footer_w3layouts_section_1its h3,
.footer_w3layouts_section_1its h2 {
  font-size: 1.6em;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-text p,
.contact-info p {
  color: #808080;
  font-size: 15px;
  line-height: 1.8em;
  letter-spacing: 1px;
}

.phone {
  margin-top: 20px;
}

.contact-info h4 {
  font-style: normal;
  font-weight: 300;
  font-size: 1.3em;
  line-height: 1.71;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #fff;
}
#message fieldset {
  display: block;
  width: 100%;
}
#message .error_message {
  display: block;
  width: 100%;
  color: red;
  padding: 5px 0;
}
#message fieldset {
  background: #4c7a31;
  padding: 1em 0 0.5em 0;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
  display: block;
  width: 94%;
  margin: auto;
}
#message fieldset h1 {
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 20px;
  text-shadow: none;
}
#message fieldset p {
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
}
.copyright {
  border-top: 1px solid #808080;
  margin-left: 15px;
}
.copyright p {
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.copyright p a {
  color: #ea1d5d;
  text-decoration: underline;
}
.copyright p a:hover {
  color: #fff;
}
.footer p {
  color: #808080;
}

.footer-grid:nth-child(2) {
  border-left: 1px solid #1b1b1b;
  border-right: 1px solid #1b1b1b;
}

.footer ul li.hd {
  color: #34bf49;
}

.newsletter .email {
  background-color: #f4f4f4;
  border: none;
}

.flickr-grid {
  float: left;
  width: 32%;
  margin: 0 0.1em 0.2em;
}

.flickr-grid a img {
  width: 100%;
  padding: 0.3em;
  border: 1px solid #333333;
}

.footer-text input[type="email"] {
  outline: none;
  padding: 12px 15px;
  color: #fff;
  font-size: 13px;
  width: 85%;
  border: none;
  background: none;
  letter-spacing: 1px;
}

.newsletter {
  position: relative;
  margin-top: 2em;
}

button.btn1 {
  color: #a9c729;
  border: none;
  padding: 10px 0;
  outline: none;
  text-align: center;
  text-decoration: none;
  background: none;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
  float: right;
  width: 15%;
}
.footer-grid_section_1its_w3 form {
  border: 1px solid #fff;
  width: 100%;
  margin-top: 20px;
}
ul.social_section_1info li {
  display: inline-block;
}

ul.social_section_1info {
  margin-top: 15px;
}

ul.social_section_1info a {
  color: #808080;
  font-size: 48px;
}
ul.social_section_1info a:hover {
  color: #a9c729;
}

.phone p a {
  color: #808080;
}
.phone p a:hover {
  color: #fff;
}

ul.links li {
  list-style-type: none;
  margin: 10px 0;
}
ul.links li a {
  color: #808080;
  font-size: 15px;
  letter-spacing: 0.5px;
}
ul.links li a:hover {
  color: #fff;
}
.cpy-right {
  background: #212121;
}
.cpy-right p {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  font-weight: 400;
}
h6.text-left a,
.cpy-right p a {
  color: #a9c729;
}
/*--//footer--*/
.typo-wthree h4 {
  color: #af4eaa;
  font-size: 1.5em;
  text-transform: capitalize;
}

.bg-flex {
  background-color: rgba(184, 67, 115, 0.67);
  border: 1px solid rgb(207, 129, 161);
}
.bg-flex-item {
  background-color: #fff;
  border: 1px solid #d7d8d8;
}

.typo-wthree h5 {
  color: #333;
}

/* //typography */
/* contact */

#success-message {
  opacity: 0;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-12 {
  padding: 0 20% 0 20%;
}

.form-title {
  padding: 25px;
  font-size: 30px;
  font-weight: 300;
  font-family: "EB Garamond", serif;
}
.form-group {
  margin-bottom: 0.1rem;
}
.form-group .form-control {
  -webkit-box-shadow: none;
  border-bottom: 1px;
  border-style: none none solid none;
  border-color: #a9c729;
  background-color: #f0f0f0;
  font-size: 0.8rem;
}

.form-group .form-control:focus {
  box-shadow: none;
  border-width: 0 0 2px 0;
  border-color: #000;
}

textarea {
  resize: none;
}

.btn-mod.btn-large {
  height: auto;
  padding: 13px 52px;
  font-size: 15px;
}

.btn-mod.btn-border {
  color: #000000;
  border: 1px solid #000000;
  background: transparent;
}

.btn-mod,
a.btn-mod {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 13px;
  color: #fff;
  background: rgba(34, 34, 34, 0.9);
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.btn-mod.btn-border:hover,
.btn-mod.btn-border:active,
.btn-mod.btn-border:focus,
.btn-mod.btn-border:active:focus {
  color: #fff;
  border-color: #000;
  background: #000;
  outline: none;
}

@media only screen and (max-width: 500px) {
  .btn-mod.btn-large {
    padding: 6px 16px;
    font-size: 11px;
  }
  .form-title {
    font-size: 20px;
  }
}

form#contact-form label {
  color: #ea4335;
}

label {
  color: #000 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* //contact */

/* contact */

.map iframe {
  width: 100%;
  border: 7px solid #e4e4e4;
  min-height: 500px;
}

/* //contact */
.serv_bottom {
  background: #a9c729;
  color: #fff;
}
.serv_bottom:hover {
  background: #a9c729;
  color: #fff;
}
h5.card-title {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 1em;
  color: #a9c729;
  font-weight: 600;
}
p.card-text {
  color: #555;
  font-size: 14px;
  line-height: 1.5em;
}
.card ul {
  padding-left: 10px;
}
.card ul li {
  color: #555;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 600;
  list-style-type: disc;
}
.card-body.w3ls-card a {
  font-size: 14px;
  padding: 8px 18px;
  background: #a9c729;
  outline: none;
  border: none;
  display: inline-block;
  letter-spacing: 2px;
}
/*-- welcome --*/
.welcome-left h3 {
  color: #a9c729;
  font-size: 36px;
  letter-spacing: 1px;
}
.welcome-left h4 {
  color: #464646;
  font-size: 17px;
  line-height: 1.8;
  margin: 15px 0;
  font-weight: 700;
  letter-spacing: 1px;
}
.welcome-left p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #444;
  line-height: 1.4em;
}
/*-- about-team --*/

.thumbnail.team-agileits {
  border: none;
  text-align: center;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.team .effectd-caption {
  padding: 20px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.team h4 {
  color: #a9c729;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
}
.social-lsicon a {
  color: #000;
  padding: 0 7px;
  font-size: 16px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.social-lsicon a:hover {
  color: #a9c729;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

/*-- //about-team --*/
.fax_w3l {
  text-align: center;
}
.ema-w3l {
  text-align: left;
}
.phn_w3l {
  text-align: right;
}
/*-- popup --*/

.pop-overlay {
  position: absolute;
  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;
  z-index: 1;
}

.popup {
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  margin: 8em auto;
  padding: 3em 1em;
}

.popup p {
  font-size: 15px;
  color: #666;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.popup h2 {
  margin-top: 0;
  color: #fff;
}

.popup .close {
  position: absolute;
  top: 5px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.popup .close:hover {
  color: #30c39e;
}

/*-- //popup --*/
/*-- popup --*/

.overlay {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0ms;
  visibility: hidden;
  opacity: 0;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  background: #fff;
  border-radius: 5px;
  width: 27%;
  position: relative;
  margin: 15em auto;
  padding: 5em;
}
.popup {
  background: #fff;
  border-radius: 5px;
  width: 40%;
  position: relative;
  margin: 8em auto;
  padding: 3em 1em;
}
.popup p {
  font-size: 15px;
  color: #666;
  letter-spacing: 0.5px;
  line-height: 30px;
}
.popup .close {
  position: absolute;
  top: 25px;
  right: 25px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.popup h2 {
  margin-top: 0;
  color: #fff;
}
.popup .close {
  position: absolute;
  top: 5px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.popup .close:hover {
  color: #30c39e;
}

/*-- //popup --*/
/* -- Responsive code -- */

@media screen and (max-width: 1440px) {
  .navbar-light {
    width: 45%;
    left: 3em;
  }
}

@media screen and (max-width: 1366px) {
  h3.stat-title {
    font-size: 1.4em;
  }
  .navbar-light {
    width: 45%;
    left: 1em;
  }
}

@media screen and (max-width: 1280px) {
  .serv_abs {
    width: 75px;
    height: 75px;
  }
  .about-w3sec i {
    font-size: 2em;
    line-height: 2.3;
  }
  .types-pos {
    left: 28%;
    width: 44%;
  }
  .navbar-light {
    width: 40%;
    left: 3em;
  }
  .banner-text {
    padding: 18vw 42vw 0vw 0vw;
  }
}

@media screen and (max-width: 1080px) {
  .agileits-banner-info4 h3 {
    font-size: 28em !important;
  }
  h5.agile-title {
    font-size: 1.4em !important;
    letter-spacing: 1px;
  }

  h3.stat-title {
    font-size: 1.1em !important;
  }
  .col-lg-6.abbot-right {
    padding-left: 12em;
    padding-top: 2em;
  }
  .types-pos {
    padding: 2em;
  }
  .navbar-light {
    width: 50%;
    left: 1em;
  }
  .callnumber li {
    letter-spacing: 1px;
  }
  .banner-left-bottom-w3ls h3 {
    font-size: 39px !important;
  }
  .callbacks_tabs {
    bottom: -73px;
  }
}

@media screen and (max-width: 1050px) {
  h3.stat-title {
    letter-spacing: 2px;
  }
  .col-lg-6.abbot-right {
    padding-top: 0em;
  }
  .types-pos {
    top: 30%;
  }
}

@media screen and (max-width: 1024px) {
  .agileits-services-grids span {
    font-size: 1.5em !important;
  }
}

@media screen and (max-width: 992px) {
  .navbar-collapse {
    background: #02114c00;
  }
  .navbar-nav .dropdown-menu {
    text-align: center;
  }
  .newsright input[type="email"] {
    margin: 28px 0;
  }
  h4.agile-ser_bot {
    font-size: 2.2em !important;
    letter-spacing: 2px;
    word-spacing: 2px;
  }
  .card-body a.btn {
    left: 44%;
  }

  .col-lg-6.abbot-right {
    padding-left: 3em;
  }

  .abt-block {
    padding: 3em 1em 2em;
  }
  .types-pos {
    left: 27%;
    width: 46%;
  }
  .agileits-banner-info4 h3 {
    font-size: 22em !important;
  }
  .footer-right-info h4 {
    font-size: 2.5em !important;
  }
  .about-w3sec p {
    font-size: 1em !important;
  }
  .navbar-light {
    padding: 1em 1em;
  }
  .navbar-light .navbar-toggler {
    background: #fff;
  }
  h6.text-btm {
    font-size: 17px !important;
    letter-spacing: 1px;
  }
  .banner-left-bottom-w3ls h3 {
    font-size: 32px !important;
    line-height: 1.5em;
  }
  .banner-text {
    padding: 10vw 27vw 0vw 0vw;
  }
  section.blog_w3ls {
    margin-top: 3em;
  }
  .blog-3 {
    padding-top: 2em;
  }
  .stats_info.counter_grid1,
  .stats_info.counter_grid2 {
    margin-top: 2em;
  }
}

@media screen and (max-width: 900px) {
  .serv_bottom h5 {
    letter-spacing: 8px;
    word-spacing: 18px;
  }
  .types-pos {
    left: 22%;
    width: 56%;
    top: 28%;
  }
}

@media screen and (max-width: 800px) {
  .callbacks_tabs {
    bottom: 0px;
  }
  .footer-right-info h4 {
    font-size: 2.1em !important;
  }
  .about-w3sec i {
    font-size: 1.8em !important;
  }
  .serv_abs {
    width: 70px;
    height: 70px;
  }
  .about-w3sec p {
    margin-top: 0.8em;
  }
  h4.abt-right-text1.font-italic.text-white {
    font-size: 1.8em !important;
  }
  .types-pos {
    left: 20%;
    width: 60%;
    top: 20%;
  }
  .navbar-light {
    width: 96%;
    left: 1em;
  }
  .slider-info h3 {
    font-size: 40px !important;
  }
  .banner-text {
    padding: 17vw 27vw 0vw 0vw;
  }
  .callbacks_tabs {
    bottom: -60px;
  }
  .banner {
    height: 57vw;
  }
  .popup {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .footer-right-info h6 {
    font-size: 1.8em !important;
  }
  h4.agile-ser_bot {
    font-size: 2em !important;
  }
  .about-w3sec p {
    font-size: 1em !important;
  }
  .about-w3sec h3 {
    font-size: 1.3em !important;
  }
  .w3ls-titles p {
    width: 100%;
  }
  .banner {
    background: url(../images/bg_768.jpg) no-repeat center center;
    width: 768px !important;
    height: 768px !important;
    min-height: 768px !important;
  }
}

@media screen and (max-width: 736px) {
  .banner-text {
    padding: 15vw 25vw 0vw 0vw;
  }
  .newsright {
    width: 100%;
  }
  .serv_bottom h5 {
    word-spacing: 14px;
  }
  .serv_bottom h5 {
    word-spacing: 8px;
    letter-spacing: 5px;
  }
  .card-body a.btn {
    left: 42%;
  }
  .inner-banner {
    min-height: 240px;
  }
  .phn_w3l {
    text-align: center;
  }
  .ema-w3l {
    text-align: center;
  }
  .fax_w3l {
    margin: 10px 0;
  }
  .card-deck .card {
    flex: auto;
  }
  .card:nth-child(2) {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .button {
    margin-top: 1em;
  }
  .blog-3 {
    padding-top: 0em;
  }
  .stats_info:nth-child(2) {
    margin-top: 2em;
  }
}

@media screen and (max-width: 667px) {
  i.fas.fa-quote-left {
    font-size: 4em !important;
  }
}

@media screen and (max-width: 640px) {
  h4.agile-ser_bot {
    font-size: 1.8em !important;
  }
  .agileits-banner-info4 h3 {
    font-size: 18em !important;
  }
  .card-body a.btn {
    left: 40%;
  }
  .types-pos {
    left: 15%;
    width: 70%;
    top: 16%;
  }
  ul.menu {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
  }
  .navbar-light {
    width: 98%;
    left: 0.5em;
    background: none;
  }
  .banner {
    background: url(../images/bg_640.jpg) no-repeat center center;
    width: 640px !important;
    height: 640px !important;
    min-height: 640px !important;
  }
}

@media screen and (max-width: 600px) {
  .slider-info p {
    font-size: 1em !important;
  }
  i.fas.fa-quote-left {
    font-size: 3em !important;
  }
  .agileits-services-row {
    top: 80px;
  }
  .types-pos {
    left: 12%;
    width: 76%;
  }
  .popup {
    width: 80%;
  }
  .top-head {
    padding: 0.5em 0 !important;
  }
  .banner {
    background: url(../images/bg_600.jpg) no-repeat center center;
    width: 600px !important;
    height: 600px !important;
    min-height: 600px !important;
  }
}

@media screen and (max-width: 568px) {
  .inner-banner {
    background-position: left;
  }
  .newsright input[type="email"] {
    margin: 10px 0;
  }
  a.serv_link {
    margin-top: 1em;
    font-size: 0.85em !important;
  }
  .agileits-services-row {
    top: 65px;
  }
  h4.agile-ser_bot {
    font-size: 1.5em !important;
  }
  .serv_bottom h5 {
    word-spacing: 7px;
    font-size: 1.2em !important;
  }
  .serv_bottom h5 {
    word-spacing: 6px;
    font-size: 1.1em !important;
  }
  .footer-grid_section_1its_w3 {
    margin-bottom: 1.5em;
  }
  .slider-info h3 {
    font-size: 36px !important;
  }
}

@media screen and (max-width: 480px) {
  .banner-text {
    padding: 23vw 25vw 0vw 0vw;
  }
  .card-body a.btn {
    left: 36%;
  }
  .navbar-light {
    padding: 0.5em 1em 0.2em;
  }
  .navbar-light {
    width: 100%;
    left: 0;
  }
  .banner {
    background: url(../images/bg_480.jpg) no-repeat center center;
    width: 480px !important;
    height: 480px !important;
    min-height: 480px !important;
  }
  .logo h2 a {
    font-size: 1.1em !important;
  }
  .newsright input[type="submit"] {
    width: 33%;
  }
  .serv_bottom h5 {
    font-size: 1em !important;
  }
  .agileits-banner-info4 h3 {
    font-size: 15em !important;
  }
  .types-pos {
    left: 8%;
    width: 84%;
  }
  h5.agile-title {
    font-size: 1.3em !important;
  }
  h3.title {
    font-size: 34px !important;
  }
  .callnumber li {
    font-size: 15px !important;
  }
  .banner-left-bottom-w3ls h3 {
    font-size: 26px !important;
  }
  .slider-info h3 {
    font-size: 36px !important;
  }
}
@media screen and (max-width: 440px) {
  .slider-info h3 {
    font-size: 33px !important;
  }
  .banner {
    background: url(../images/bg_411.jpg) no-repeat center center;
    width: 411px !important;
    height: 411px !important;
    min-height: 411px !important;
  }
}
@media screen and (max-width: 414px) {
  .newsright input[type="submit"] {
    width: 40%;
  }
  h4.agile-ser_bot {
    font-size: 1.7em !important;
  }
  .serv_bottom h5 {
    letter-spacing: 3px;
  }
  .agileits-services-grids {
    padding: 0em;
  }
  .agileits-services-grids h4 {
    font-size: 1.1em !important;
  }
  h4.abt-right-text1.font-italic.text-white {
    font-size: 1.6em !important;
  }
  .col-lg-6.abbot-right {
    padding-left: 1em;
  }
  .footer-right-info h4 {
    font-size: 1.9em !important;
  }
  .callnumber li {
    font-size: 14px !important;
  }
  .map iframe {
    min-height: 260px;
  }
  .slider-info h3 {
    font-size: 30px !important;
  }
  .callbacks_tabs {
    bottom: -47px;
  }
  .banner {
    background: url(../images/bg_411.jpg) no-repeat center center;
    width: 411px !important;
    height: 411px !important;
    min-height: 411px !important;
  }
}

@media screen and (max-width: 384px) {
  .newsright input[type="submit"] {
    width: 100%;
  }
  form.d-flex {
    display: block !important;
  }
  .footer-right-info h4 {
    font-size: 2.1em !important;
  }
  h4.agile-ser_bot {
    font-size: 1.5em !important;
  }
  .serv_bottom h5 {
    font-size: 0.85em !important;
  }
  .callnumber li {
    margin: 0 !important;
  }
  .footer_w3layouts_section_1its h3,
  .footer_w3layouts_section_1its h2 {
    font-size: 1.3em !important;
  }
  .banner {
    background: url(../images/bg_375.jpg) no-repeat center center;
    width: 375px !important;
    height: 375px !important;
    min-height: 375px !important;
  }
}

@media screen and (max-width: 375px) {
  .types-pos {
    padding: 1em;
  }
  .agileits-banner-info4 h3 {
    font-size: 12em !important;
  }
  .banner {
    background: url(../images/bg_375.jpg) no-repeat center center;
    width: 375px !important;
    height: 375px !important;
    min-height: 375px !important;
  }
}
@media screen and (max-width: 360px) {
  .banner {
    background: url(../images/bg_360.jpg) no-repeat center center;
    width: 360px !important;
    height: 360px !important;
    min-height: 360px !important;
  }
}
@media screen and (max-width: 320px) {
  .banner-text {
    padding: 23vw 10vw 0vw 0vw;
  }
  .slider-info h3 {
    font-size: 26px !important;
  }
  .banner {
    background: url(../images/bg_320.jpg) no-repeat center center;
    width: 320px !important;
    height: 320px !important;
    min-height: 320px !important;
  }
  .slider-info a {
    font-size: 15px !important;
  }
  .slider-info h4,
  h4.abt-right-text {
    font-size: 1.1em !important;
  }
  .footer-right-info h4 {
    font-size: 1.8em !important;
  }
  h4.agile-ser_bot {
    font-size: 1.2em !important;
  }
  .serv_bottom h5 {
    letter-spacing: 1px;
    word-spacing: 5px;
  }
  h3.agile-title {
    font-size: 1em !important;
  }
  .card-body a.btn {
    left: 35%;
  }
  .agileits-services-grids span {
    font-size: 1.3em !important;
  }
  .col-lg-6.abbot-right {
    padding-left: 1em;
    padding-top: 1em;
  }
  h4.abt-right-text1.font-italic.text-white {
    font-size: 1.4em !important;
  }
  .types-pos {
    left: 5%;
    width: 90%;
  }
  h3.stat-title {
    letter-spacing: 1px;
    font-size: 1em !important;
  }
  .inner-banner {
    min-height: 210px;
  }
  a.navbar-brand {
    font-size: 0.6em !important;
  }
  h3.title {
    font-size: 30px !important;
  }
}

/* -- //Responsive code -- */
