body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  background-color: #fff;
  overflow-x: hidden;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

/*h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
   
}

h5 {
    font-size: 20px;
    line-height: 1.2;
   
}*/

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #000;
  transition: all ease-in-out 0.3s;
}

img {
  max-width: 100%;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  float: none;
  clear: both;
  border: 7px solid #fff;
  border-radius: 7px;
  box-shadow: 0 14px 30px rgb(0 0 0 / 15%);
}
.aligncenter img {
  width: 100%;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}
#scroll:hover {
  background: #88a725;
}
#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.bg-light {
  background-color: #fff !important;
}
.navbar-expand-lg {
  background: #fff !important;
}
.navbar-light {
  background: transparent !important;
}

.navbar-nav {
  align-items: center;
}
.navbar-nav li a {
  font-size: 18px;
  color: #464749;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav li:hover {
  color: #fff;
}
/*.navbar-nav li+li{
    margin-left: 8px;
}*/
.navbar-nav li:hover a {
  color: red;
}
/*.navbar-nav li.current-menu-item a{
color: #D7853A;
}*/
/*.navbar-nav li:hover a:after{
   width: 100%;
  transition: all ease-in-out 0.3s;
}
.navbar-nav li a.active:after{
  width: 100%;
  transition: all ease-in-out 0.3s;
  color:#fff; 
}*/
.navbar-light .navbar-nav li.active,
.navbar-light .navbar-nav .show > li {
  color: #fff !important;
}
.navbar-light .navbar-nav li:focus,
.navbar-light .navbar-nav li:hover {
  color: #000 !important;
}
.navbar-light .navbar-nav li {
  color: #fff;
}
.navbar-expand-lg .navbar-nav li {
  padding: 0 18px;
  position: relative;
}
.navbar-expand-lg .navbar-nav li:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: #c9cacb;
  top: 4px;
  right: 0;
}
.navbar-expand-lg .navbar-nav li:last-child:after {
  display: none;
}
.navbar-expand-lg .navbar-nav li:last-child {
  padding-right: 0 !important;
}
/*.navbar-nav li a{
    position: relative;
    padding: 0 12px;
}*/

/*.navbar-nav li+li{
  margin-left:52px; 
}*/
.navbar-nav > li .sub-menu ul {
  list-style: none;
}
.navbar ul li ul li + li {
  margin-left: 0;
}
.navbar-nav > li .sub-menu ul {
  list-style: none;
  border: 0;
  background: #fff;
}
.navbar-nav > li .sub-menu ul li a {
  font-size: 16px;
  color: #000;
  width: 100%;
  padding: 5px 10px;
  display: block;
}
.navbar-nav li.menu-item-has-children {
  display: flex;
}
.navbar {
  display: flex;
  width: 100%;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

.navbar-nav > li {
  position: relative;
}
.navbar-nav > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  z-index: 999;
  width: 180px;
  background: #fff;
  /* border: 1px solid #ccc;*/
}
/*.navbar-nav > li .sub-menu > li{
    padding: 5px 24px; 
}*/
.navbar-nav > li .sub-menu > li > a {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 5px 24px;

  text-decoration: none;
  color: #303030;
}
.navbar-nav li .sub-menu li:hover a {
  background: #9a9a9a;
  color: #fff;
  z-index: 9999;
}
.navbar-nav > li .sub-menu > li {
  padding: 0;
  margin: 0 !important;
}
.navbar-nav > li:last-child .sub-menu {
  left: inherit;
  right: 0;
}

@media (min-width: 1025px) {
  .navbar-nav > li:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1024px) {
  ul.navbar-nav li .clickD.toggled + .sub-menu {
    display: block;
  }
}
/*wordpress menu end*/

.navbar {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 !important;
}

/**********************************/
.main-header {
  padding: 49px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  border-top: 4px solid #344a9f;
}
.main-header.other-header {
  border-color: #7bbd38;
  z-index: 9;
  padding: 40px 0 0 0;
}
.contact-banner {
  margin-top: 8px;
  background-repeat: no-repeat;
  background-size: cover !important;
  padding-top: 130px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.other-banner {
  /* background-position: 0 50%; */
  position: relative;
}
.contact-left h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.each-form input[type="text"] {
  border: 0;
  outline: none;
  border-bottom: 2px solid #000;
  height: 48px;
  font-size: 16px;
  background: transparent;
  width: 100%;
}
.each-form textarea {
  border: 0;
  outline: none;
  border-bottom: 2px solid #000;
  height: 69px;
  font-size: 16px;
  background: transparent;
  width: 100%;
  padding: 13px 0;
}
.each-form input[type="text"]::placeholder,
.each-form textarea::placeholder {
  color: #000;
}
.each-form {
  margin-bottom: 13px;
}
.each-form img {
  display: block;
  margin: 0 auto;
}
.each-form-one input[type="submit"] {
  border: 0;
  outline: none;
  font-size: 16px;
  background: transparent;
  width: 100%;
  max-width: 132px;
  font-weight: 600;
  text-transform: uppercase;
  background-image: url(images/a1.png);
  background-repeat: no-repeat;
  background-size: 22%;
  background-position: 100% 50%;
  transition: all ease-in-out 0.3s;
}
.each-form-one {
  text-align: center;
}
.each-form-one input[type="submit"]:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}
.contact-right p {
  margin: 0;
  font-size: 18px;
  color: #31448e;
  max-width: 310px;
  margin-left: auto;
}
.contact-right p a {
  color: #31448e;
  font-weight: 700;
}
.contact-right p a:hover {
  color: #000;
}
.main-footer {
  background: url("images/footer1.png") no-repeat center center;
  background-size: cover !important;
  padding: 42px 0;
}
.copyright {
  padding: 20px 0;
  border-top: 1px solid #465caf;
  border-bottom: 1px solid #465caf;
}
.copyright p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.copyright p a {
  color: #fff;
}
.copyright p a:hover {
  color: #000;
}

.main-footer.other-footer {
  background: url("images/footer.png") no-repeat center right;
  background-size: cover !important;
}
.main-footer.other-footer .copyright {
  border-top: 1px solid #86c546;
  border-bottom: 1px solid #86c546;
}
.logo.aww-logo img {
  width: 281px;
}
/* 28-02-2022 */
.contact-banner.other-banner .bg-img {
  width: 100%;
}
/* .contact-banner.other-banner .contact-left {
    max-width: 450px;
} */
/* .contact-banner.other-banner .container{
    position: absolute;
    padding-top: 150px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
} */
.tree-img {
  position: absolute;
  right: 11vw;
  bottom: 0.3vw;
  width: 46.4vw;
}

/* responsive-start */

@media (max-width: 1680px) {
  .other-banner {
    background-position: 63% 40%;
  }
  @media only screen and (max-width: 1366px) {
    .tree-img {
      width: 37vw;
    }
  }
}
@media (min-width: 1200px) {
  .contact-left h3 {
    font-size: 1.3vw;
    margin-bottom: 1vw;
  }
  .each-form input[type="text"],
  .each-form textarea,
  .copyright p {
    font-size: 0.84vw !important;
  }
  .contact-right p,
  .each-form-one input[type="submit"] {
    font-size: 1.15vw;
  }
  .each-form {
    margin-bottom: 1.2vw;
  }
  .main-header .container,
  .contact-banner .container,
  .main-footer .container {
    max-width: 76.5vw;
  }
  /* .contact-banner .row .col-md-5{
        width: 29.7vw;
    }
    .contact-banner .row .col-md-5{
        width: calc(100% - 29.7vw);
    } */
  .contact-right p {
    max-width: 19vw;
  }
  .main-footer {
    padding: 3.1vw 0;
  }
  .copyright {
    padding: 1.5vw 0;
  }
  .main-header.other-header .logo img {
    max-width: 26.5vw;
  }
}
@media (max-width: 1199px) {
  .main-header {
    padding: 19px 0;
  }
  .contact-banner {
    padding: 149px 0 78px;
  }
  .logo img {
    width: 246px;
  }
  .logo.aww-logo img {
    width: 246px;
  }
  .tree-img {
    width: 50vw;
    right: 5vw;
  }
}
@media (max-width: 991px) {
  .main-footer {
    padding: 21px 0;
  }
  .copyright p {
    font-size: 15px;
  }
  .copyright {
    padding: 9px 0;
  }
  .contact-banner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 250px;
  }
  .tree-img {
    width: auto;
    right: 0;
    position: relative;
    margin: 40px auto 0 auto;
    display: block;
  }
  .contact-right {
    text-align: center;
    margin-top: 40px;
  }
  .contact-right p {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .contact-right p {
    margin-left: 0;
    text-align: center;
    margin: 23px auto 0;
  }
  .contact-left h3 {
    font-size: 21px;
    margin: 0 0 5px;
  }
  .logo img {
    width: 167px;
  }
  .logo.aww-logo img {
    width: 161px;
  }
  .contact-banner {
    padding: 114px 0 58px;
  }
  .other-banner {
    background-position: 96% 40%;
  }
  .contact-right p {
    padding-top: 0px;
  }
  .contact-banner.other-banner .contact-left {
    padding: 30px 0px;
    /* background: rgba(255,255,255,0.5); */
  }
}
@media (max-width: 575px) {
  .contact-right p {
    font-size: 15px;
  }
  .other-banner {
    background-position: 85% 40%;
  }
}
@media (max-width: 479px) {
}
@media (max-width: 380px) {
}
