@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 50px 0;
}

.layout_padding-s1 {
  padding: 90px 0;
}	

.layout_margin-a-main {
  border-radius: 0 350px  ;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #7335b7;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}


.heading_container-s1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px;
}

.heading_container-s1 .row .box i {
  padding: 15px;
}

.heading_container-s1 h2 {
  position: relative;
  font-weight: bold;
}

.heading_container-s1 h2 span {
  color: #7335b7;
}

.heading_container-s1 .heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.heading_container-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  ;
}

a:hover,
a:focus {
  color: #DAA520;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}




/*header section*/
.hero_area {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #A7C7E7;
  padding: 100px 0;
}

.hero_area-index {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #A7C7E7;
  padding: 100px 0;
  border-radius: 0 0 350px 0;
}

.sub_page .hero_area {
  min-height: auto;
  padding: 100px 0 0 0;
  border-radius: 0 0 300px;
}

.header_section {
  width: 100%;
  background-color: #A7C7E7;
  border-radius: 0px 0px 80px;
  z-index: 1;
}

.header_section .hero_area {
  border-radius: 0 0 80px;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
  background-color: #A7C7E7;
  border-radius: 0px 0px 80px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

.logo img {
  max-width: 250px; /* Adjust as needed for logo size */
}

.navbar-brand span {
  font-weight: bold;
  color: #000000;
  font-size: 24px;
}

.navbar-collapse {
  align-items: center; /* Center align items */
}

.custom_nav-container .navbar-nav {
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space out nav items */
  width: 100%; /* Full width for nav items */
}

.custom_nav-container .navbar-nav .nav-item {
  flex: 1; /* Each item takes equal space */
  text-align: center; /* Center text within each nav item */
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  border-radius: 15px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item .nav-link a {
  padding: 10px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #000000;
  background-color: #DAA520;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px; /* Width of each bar */
  height: 4px; /* Height of each bar */
  background-color: #000000; /* Color of the bars */
  margin: 7px 0; /* Space between the bars */
  border-radius: 5px; /* Round edges */
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
}

.quote_btn-container {
  display: flex;
  align-items: center;
}

.social_btn-container a {
  color: #000000;
  text-transform: uppercase;
  padding: 5px;
}

.social_btn-container a span {
  margin-left: 5px;
}

.social_btn-container a:hover {
  color: #f8842b;
}

.social_btn-container .social_btn {
  display: inline-block;
  padding: 5px 25px;
  color: #000000;
  border-radius: 5px;
  transition: all 0.3s;
}

.social_btn-container .social_btn:hover {
  color: #000000;
  transform: translateY(-3px);
}

/* End header section */






/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 60px 0 0;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #000000;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 15px;
  background-color: #DAA520;
  color: #000000;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DAA520;
}

.slider_section .detail-box .btn-box .btn1:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}
/*
.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #f8842b;
}*/

.service_section {
  text-align: center;
  padding: 100px 0;
}

.service_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  height: 320px;
}

.service_section-s1 {
  text-align: center;
}

.service_section-s1 .heading_container-s1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}

.service_section-s1 .heading_container-s1 h4 {
  font-weight: bold;
}

.heading_container-s1 .row{
flex-wrap: nowrap;
}

.heading_container-s1 p {
  margin-top: 16px;
}

.service_section-s1 .row .box {
  margin: 25px;
  padding: 15px;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}


.service_section-s1 .row .box:hover{
  background-color: #1A4D8F;
}


.service_section-s1 .row .box:hover h4,
.service_section-s1 .row .box:hover i,
.service_section-s1 .row .box:hover p{
  -webkit-filter: invert(1);
  filter: invert(1);
}

.partner_section {
  text-align: center;
}

.partner_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner_section .box {
  margin-top: 25px;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*
.row-center {
  justify-content: center;
}

.container-padding {
  padding: 15px;
}
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}*/

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  z-index: 1;
  width: max-content;
  text-align: left;
}

.dropdown-content a {
  color: #000000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #DAA520;
  border-radius: 15px;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 15px;
}


.service_section ::before {
  content: "";
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #DAA520;
  z-index: -100;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box .detail-box {
  margin-top: 15px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.service_section .box .detail-box a {
  color: inherit;
}

.service_section .box:hover{
  background-color: #DAA520;
}

.service_section .box:hover::before {
  -webkit-transform: scale(5);
  transform: scale(5);
  background-color: #DAA520;
}

.service_section .box:hover img,
.service_section .box:hover h5,
.service_section .box:hover p {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #DAA520;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DAA520;
}

.service_section .btn-box a:hover {
  color: #DAA520;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/*.partner_section ::before {
  content: "";
  width: 275px;
  height: 275px;
  position: absolute;
  right: -137.5px;
  bottom: -137.5px;
  background-color: #faf8fd;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
*/
.partner_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 125px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.partner_section .box .img-box img {
  width: 75px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.partner_section .box .detail-box {
  margin-top: 15px;
}

.partner_section .box .detail-box h5 {
  font-weight: bold;
  position: relative;
}

.partner_section .box .detail-box a {
  color: inherit;
}

/*.partner_section .box:hover {
  color: #ffffff;
}

.partner_section .box:hover::before {
  -webkit-transform: scale(5);
          transform: scale(5);
  background-color: #7335b7;
}

.partner_section .box:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.partner_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.partner_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #7335b7;
}

.partner_section .btn-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
*/
.about_section {
  background-color: #1A4D8F;
  color: #fff;
  border-radius: 0 300px 0 300px;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #DAA520;
  color: #000000;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid DAA520;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.about_section-main {
  background-color: #A7C7E7;
  color: #000000;
  border-radius: 0 0 0 350px;
}

.about_section-main .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section-main .img-box {
  position: relative;
}

.about_section-main .img-box img {
  width: 100%;
}

.about_section-main .detail-box h1 {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.about_section-main .detail-box p {
  text-align: center;
  color: #000000;
}

.about_section-main .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #DAA520;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid DAA520;
  margin-top: 15px;
}

.about_section-main .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}






.a1_section {
  background-color: #1A4D8F;
  color: #ffffff;
  border-radius: 150px 0 0;
  padding: 50px 0;
  margin: 90px 0 0;
}

.a1_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.a1_section .img-box {
  position: relative;
}

.a1_section .img-box img {
  width: 100%;
}

.a1_section .detail-box p {
  margin-top: 15px;
  text-align: center;
  padding: 15px;
}

.a1_section .detail-box h2{
  text-align: center;
}

.a1_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1A4D8F;
  color: #0000;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid DAA520;
  margin-top: 15px;
}

.a1_section .detail-box a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.a2_section {
  background-color: #A7C7E7;
  color: #000000;
  padding: 50px 0;
}

.a2_section .detail-box h2{
  text-align: center;
}

.a3_section {
  background-color: #1A4D8F;
  color: #ffffff;
  border-radius: 0 0 150px;
  margin: 0 0 90px;
  padding: 50px 0;
}

.a3_section .detail-box h2{
  text-align: center;
}

.case_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.case_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}

.case_section .box .img-box {
  position: relative;
}

.case_section .box .img-box img {
  width: 100%;
}

.case_section .box .detail-box {
  padding: 25px;
}

.case_section .box .detail-box h5 {
  font-weight: bold;
}

.case_section .box .detail-box p {
  font-size: 15px;
}

.case_section .box .detail-box a {
  color: #7335b7;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  background-color: #7335b7;
  color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #7335b7;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}
/*
.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #f8842b;
}*/

.contact_section {
  position: relative;
  padding: 100px 0;

}

.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: transparent;
  outline: none;
  color: #000000;
  border: 1px solid #a5a5a5;
}

.contact_section input::-webkit-input-placeholder {
  color: #1c1b1b;
}

.contact_section input:-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::-ms-input-placeholder {
  color: #1c1b1b;
}

.contact_section input::placeholder {
  color: #1c1b1b;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 65px;
  background-color: #DAA520;
  color: #ffffff;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DAA520;
  color: #000;
  margin-top: 10px;
}

.contact_section button:hover {
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.contact_section .map_container {
  height: 100%;
  min-height: 325px;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map {
  height: 100%;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.footer_container {
  background-color: #A7C7E7;
  color: #000000;
  border-radius: 350px 0 0 0;
  padding-top: 4%;
}

.map_container img{
  height: auto;
  width: 546px;
}

/* info section */
.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

/*.footer-logo img{
  max-width : 200%;
padding-top: 40px;
}*/

.footer-logo {
  text-align: center;
  padding-top: 40px;
}
.footer-logo img {
  max-width: 100%; /* Make the logo responsive */
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #000000;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #DAA520;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  color: #000000;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #DAA520;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #000000;
}

.info_section .info_links a:hover {
  color: #DAA520;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #000000;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #000000;
}

.info_section form input:-ms-input-placeholder {
  color: #000000;
}

.info_section form input::-ms-input-placeholder {
  color: #000000;
}

.info_section form input::placeholder {
  color: #000000;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #DAA520;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #DAA520;
  margin-top: 15px;
}

.info_section form button:hover {
  color: #000000;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */