@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap'); */
* {
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /* font-family: 'Montserrat', sans-serif; */
  /* font-family: 'Lato', sans-serif; */
  background-color: #fff;
}

a, a:hover {
  text-decoration: none;
  font-weight: 400;
}

ul li {
  list-style: none;
}

h1,h2,h3,h4{
  
}

/* TopMenu Css */
.top-menu{
  padding: 10px 0;
  background-color: #65227f;
}
.top-contact ul{
  padding-left: 0px;
  margin-bottom: 5px;
}
.top-contact ul li{
  list-style: none;
  padding: 0px 10px;
  display: inline-block;
  font-size: 13px;
  border-right: 1px solid #ffffff;
  color: #ffffff;
}
.top-contact ul li:last-child{
  border-right: none;
}
.top-contact ul li i{
  color: orange;
}
.top-contact ul li a{
  text-decoration: none;
  color: #ffffff;
}
.top-social-icons ul{
  padding-left: 0px;
  margin-bottom: 5px;
}
.top-social-icons ul li{
  list-style: none;
  margin-right: 20px;
  display: inline-block;
  font-size: 13px;
}
.top-social-icons ul li a{
  text-decoration: none;
  color: #ffffff;
}
.top-social-icons{
  text-align: right;
}


/* Carousel Css Start */
.carousel-inner img {
  width: 100%;
  height: 100%;
}
#banner_slider .carousel-indicators {
  left: auto;
  right: 20px;
  top: 0;
  margin: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#banner_slider .carousel-indicators li{
  line-height: normal;
  background-color: cornsilk;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-bottom: 0px;
  padding: 0;
  border: 5px solid transparent;
}
#banner_slider .carousel-control-next,
#banner_slider .carousel-control-prev{
  display: none !important;
}
#banner_slider .carousel-caption{
  width: 60%;
  top: 0%;
  left: 0%;
  right: auto;
  text-align: left;
  color: inherit;
  height: 100%;  
  display: flex;
  justify-content: center;
  flex-direction: column;  
  padding-left: 50px;
  color: #fff;
}
#banner_slider .carousel-caption h3{
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
#banner_slider .carousel-caption p{
  margin-bottom: 2rem;
}
#banner_slider .carousel-caption a{
  text-transform: capitalize;
  display: -webkit-inline-box;
  background-color: #fe6400;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  width: fit-content;
}
.overlay{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
 /*  z-index: -1; */
}


/* fast_easy css */
.feature_area{
  position: relative;
  z-index: 9;
}
.feature_area .feature_item{
  margin-top: -50px;
  transform: translateY(0);
  transition: .5s;
  background-color: #fff;
  box-shadow: 0px 15px 30px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px -2px #6b7d6f;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 167px;
}
.feature_area .feature_item:hover {
  transform: translateY(-20px);
}
.feat_icon{
  height: 100%;
  width: 80%;
  display: block;
  text-align: center;
}
.feat_content{
  border-left: 1px solid #ddd;
  padding: 25px 15px;
}
.feat_content p{
  color: #898a9c;
  margin-bottom: 0px;
  font-size: .9rem;
}


/* about_sec css */
.about_sec{
  padding: 100px 0px;
}
.content-box .section-title:before{
  display: inline-block;
}
#image_block_1 .image-box {
  position: relative;
  margin-right: 70px;
}
#image_block_1 .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
}
#image_block_1 .image-box .image:before {
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 46, 64, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(22, 46, 64, 0) 0%, rgba(22, 46, 64, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
#image_block_1 .image-box .image img {
  width: 100%;
}
#image_block_1 .image-box .box {
  position: absolute;
  bottom: -70px;
  width: calc(100% - 160px);
  left: 80px;
  background: #fff;
  padding: 10px;
  z-index: 1;
}
#image_block_1 .image-box .box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  background: #fff;
  border: 8px solid #65227f;
  padding: 38px 40px;
  z-index: 9;
}
#image_block_1 .image-box .box .inner span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 24px;
}
#image_block_1 .image-box .box .inner .icon-box .icon {
  position: absolute;
  width: 171px;
  height: 171px;
  background: #fe6400;
  border-radius: 50%;
  z-index: -1;
  opacity: .3;
}
#image_block_1 .image-box .box .inner .icon-box .icon-1 {
  left: -20px;
  bottom: -20px;
}
#image_block_1 .image-box .box .inner .icon-box .icon-2 {
  right: -90px;
  top: -135px;
}
#image_block_1 .image-box .box .inner h1 {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 0px;
}
#image_block_1 .image-box .box .inner p {
  font-size: 15px;
  font-weight: 400;
  color: #222;
}
#image_block_1 .image-box:hover .image:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
 @-webkit-keyframes shine {
   100% {
   left: 125%;
  }
}
@keyframes shine {
  100% {
  left: 125%;
  }
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 24px;
  margin-top:-20px;
}
.section-title::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  bottom: 0px;
  background: #fe6400;
  display: none;
}
.section-title h6 {
  color: #0099F7;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title h2 {
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
}
.bttn1 {
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  align-items: center;
  color: #65227f;
  border: 1px solid #f0f0f0;
  height: 40px;
  transition: 0.3s;
  padding: 0 15px;
  margin-top: 10px;
  cursor: pointer;
}
.bttn1:hover {
  background: #65227f;
  color: #fff;
  font-weight: 500;
  border: 1px solid #65227f;
}
.bttn1 i{
  margin: 0 0 0 15px;
}
.bx-fade-left {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}
@-webkit-keyframes fade-left{
  0%{-webkit-transform:translateX(0)
    ;transform:translateX(0);opacity:1
  }
  75%{-webkit-transform:translateX(-20px);
    transform:translateX(-20px);opacity:0
  }
}


/* service_sec css */
.service_sec{
  margin: 50px auto 0px;
  padding: 50px 0px;
  background-image: url('../images/service-sec.jpg'); 
  background-size: cover;   
  position: relative;
  z-index: 1;
}
.service_sec .section-title:before{
  display: none;
}
.overlay2 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(101 34 127 / 50%);
  top: 0;
  left: 0;
}
.srv_box{
  text-align: center;
  height: 320px;
  padding: 40px;
  background: rgb(101 34 127 / 80%);
  position: relative;
  z-index: 1;
  color: #fff;
  box-shadow: 0 0 9px 0 rgb(29 33 67 / 10%);
  margin: 30px auto;
}
.srv_box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-out;
  background-size: cover;
  background-position: center;
}
.srv_box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #65227f;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-out;
}
.srv_box:before {
  background-image: url('../images/ser-1.jpg');
}
.srv-2:before {
  background-image: url('../images/ser-2.jpg');
}
.srv-3:before {
  background-image: url('../images/ser-3.jpg');
}
.srv-4:before {
  background-image: url('../images/ser-4.jpg');
}
.srv-5:before {
  background-image: url('../images/ser-5.jpg');
}
.srv-6:before {
  background-image: url('../images/ser-6.jpg');
}
.srv_box:hover::before {
  visibility: visible;
  opacity: .5;
}
.srv_box:hover:hover::after {
  visibility: visible;
  opacity: .9;
}
.srv_icon{

}
.srv_icon img{

}
.srv_box h5{
  margin: 20px;
  text-align: center;
}
.srv_box p{
  font-weight: 300;
}
.srv_box a{
  color: #fe6400;
  text-transform: uppercase;
  font-weight: 500;
}


/* advantage_sec css */
.advantage_sec{
  margin: 80px auto 200px;
}
.advantage_sec .section-title:before{
  display: none;
}
.adv_box{
  background: #fafafa;
  border-bottom: 2px solid #fafafa;
  text-align: center;
  box-shadow: 2px 1px 25px 5px rgb(166 166 166 / 20%);
  padding: 30px;
  margin: 40px 0 0;
  transition: 0.3s;
  min-height: 272px;
}
.adv_box:hover {
  border-bottom: 2px solid #fe6400;
  -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
  box-shadow: 2px 1px 25px 5px rgb(166 166 166 / 20%);
}
.adv_icon{
  width: 90px;
  height: 90px;
  background: #fe6400;
  margin: 0 auto 20px;
  border-radius: 50%;
  line-height: 85px;
}
.adv_box h5{
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: #000000;
  margin: 15px 0;
}
.adv_box p{
  font-size: 14px;
  margin: 0px;
}


/* footer */
footer{
  background-image: linear-gradient(0deg, #65227f, #65227f);
  position: relative;
  z-index: 2;
}
.ftr_top{
  transform: translateY(-100px);
  margin-bottom: -70px;
}
.ftr_top_content{
  background-color: whitesmoke;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  box-shadow: 5px 5px 20px rgba(0,0,0,.2);
  margin-top:50px;
}
.ftr_top_content h3{
  font-size: 2rem;
  font-weight: 700;
  width: 75%;
  line-height: 45px;
  margin: 0px;
  color: #65227f;
}
.ftr_top_content a{  
  color: #fff;  
  background: #fe6400;  
  display: block;  
  padding: 10px 20px;  
  border-radius: 30px;  
  box-shadow: 1px 1px 10px  rgba(0,0,0,.2);
}
.ftr_menu{
  margin: 10px auto;
}
.ftr_menu a{
  display: inline-block;
  padding: 0px 10px;
  color: rgb(255 255 255 / 80%);
  font-size: .9rem;
  border-right: 1px solid rgb(255 255 255 / 90%);
}
.ftr_menu a:hover{
  color: #fff;
}
.ftr_menu a:last-child{
  border: none;
}
.ftr_social{
  text-align: right;
}
.ftr_social a{
  margin: 10px;
  text-align: center;
}
.ftr_social a i{
  font-size: 1.5rem;
  line-height: 40px;
  color: #fff;
}
.copyright p, .powered_by p{
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  font-weight: 300;
}
.powered_by p{
  text-align: right;
}
.powered_by p a{
  color: inherit;
}


/* back_top css */
.back_top{
  position: fixed;
  width: 45px;
  height: 45px;
  right: 20px;
  bottom: 20px;
  background-color: #fe6400;
  text-align: center;
  z-index: 3;
  cursor: pointer;
}
.back_top i{
  color: purple;
  line-height: 45px;
  font-size: 1.5rem;
}

/* About Page Css */
.common_banner{
  position: relative;
  background: url('../images/common-banner.jpg') no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
}
.bnr_cont{

}
.bnr_cont h2{
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  padding-left: 25px;
  border-left: 5px solid #f56622;
  margin-bottom: 2rem;
}
.bnr_cont h6{
  color: rgba(255, 255, 255, .5);
}
.bnr_cont h6 a{
  color: #fff;
}
.extra_fetr_wrapper{
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.extra_fetr{

}
.extra_fetr h5{
  margin: 15px 0px;
}
.wcu_sec{
  margin: 50px auto 0px;
  padding: 50px 0px;
  background-image: url('../images/why-choose.jpg');
  background-size: cover;
  position: relative;
  z-index: 1;
  height: 400px;
}
.wcu_box{
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid #ddd;
}
.wcu_icon{
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  z-index: 1;
  text-align: center;
}
.wcu_icon:before{
  position: absolute;
  content: '';
  left: -10%;
  bottom: 0;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: orange;
  transition: 0.2s ease;
  z-index: -1;
  opacity: .3;
}
.wcu_box:hover .wcu_icon:before{
  width: 120%;
  height: 120%;
  opacity: .5;
}
.wcu_icon img{

}
.wcu_box h5{
  margin: 25px auto;
} 
.wcu_box p{
  margin: 0;
  font-size: .9rem;
  color: rgba(0, 0, 0, .8);
}
.spacer{
  background-color: #ECF0F9;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.orange_btn{
  color: #fff;
  background-color: #fe6400;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 1.1rem;
}
.orange_btn:hover{
  color: #fff;
}
.spacer a{
  margin-top: 150px;
}


/* Service Page Css */
.service_details{
  margin: 80px auto 150px;
}
.service_list {
  background: #F6F6F6;
  padding: 30px;
  margin-bottom: 30px;
}
.service_list h5 {
  margin: 0px 0px 30px;
}

.service_list .nav.nav-tabs {
  /* float: left; */
  display: block;
  /* margin-right: 20px; */
  border-bottom:0;
  /* border-right: 1px solid #ddd; */
  /* padding-right: 15px; */
}
/* .nav.nav-tabs {
  float: left;
  display: block;
  margin-right: 20px;
  border-bottom: 0;
  border-right: 1px solid transparent;
  padding-right: 15px;
} */
.service_list .nav-tabs .nav-link {
  display: block;
  color: #333;
  padding: 10px;
  margin-bottom: 20px;
  background: #fff;
}
.service_list .nav-tabs .nav-link span{
  float: right;
}

.service_list .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #65227f !important;
  border-color: transparent !important;
}
.service_list .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0rem!important;
  border-top-right-radius: 0rem!important;
}
.service_content{
  background: #F6F6F6;
}
.service_content .tab-content>.active {
  display: block;
  background: #f6f6f6;
  min-height: 200px;
  padding: 30px;
  padding-top: 0px;
}
.service_content h2 {
  margin: 30px 0;
  color: #65227f;
  font-weight: 600;
}
.service_content p {
  font-size: 16px;
  line-height: 28px;
  color: #898a9c;
  font-weight: 300;
}
.tracking_box{
  background: #F6F6F6;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.tracking_box h5{

}
.track_input{
}
.track_input input{
  height: 50px;
  padding: 0px 15px;
  margin: 20px auto;
  border: 1px solid lightgray;
  outline: none;
}
.track_input a{  
  padding: 10px 20px;  
  color: #fff;  
  background-color: #fe6400;  
  display: inline-block;  
  border-radius: 50px;  
  text-transform: capitalize;
}


/* Contact Page Css */
.contact_area,
.get_quote_wrapper {
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  height: 500px;
  position: relative;
  z-index: 1;
  padding: 70px 0px;
}

.contact-us-wrapper {
  background: #fff;
  margin-top: 50px;
  position: relative;
}

.contact-us-inner {
  text-align: center;
  padding: 32px 30px;
  border-right: 1px solid #eee;
}

.contact-us-inner:nth-last-child(4) {
  border-right: none;
}

.contact-us-inner h5 {
  margin: 40px 0 20px;
}

.contact-us-inner a {
  text-transform: uppercase;
  color: #0099F7;
  font-size: 17px;
  font-weight: 500;
  margin: 20px 0 10px;
}

.contact-us-inner .info-i {
  position: relative;
  z-index: 1;
}

.contact-us-inner .info-i i:before {
  font-size: 50px;
  color: #f56622;
}


.contact-section {
  background-image: url('../images/contact-bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  padding: 150px 0;
  position: relative;
}

.contact-section .section-title h2 {
  color: #fff;
}

.contact-form{
  background: rgba(255, 255, 255, 1);
  padding: 50px;
}
input, textarea, select {
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  -webkit-transition: .3s;
  transition: .3s;
  margin-bottom: 20px;
  text-decoration: none;
  outline: none;
  outline-width: 0 !important;
}
/* .contact-form input,
.contact-form textarea,
.contact-form select{
  color: #fff;
} */
.contact-form .main-btn {
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  margin: 40px 0;
  color: #fff;
  background-color: #fe6400;
}
.contact-form .main-btn:hover{
  background-color: #65227f;
}

.contact-form .main-btn1 {
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  margin: 40px 0;
  color: #fff;
  background-color: #00aefe;
}
.contact-form .main-btn1:hover{
  background-color: #65227f;
}

/* Get Quote Page Css */
.get_quote_wrapper{
  height: auto;
  padding-bottom: 180px;
}
.quote-form{
  background-color: #fff;
  padding: 50px;
}
.quote-form input,
.quote-form textarea,
.quote-form select{
  color: inherit;
}
.quote-form .item_row{
  padding: 20px 15px;
  box-shadow: 1px 1px 5px  rgba(0, 0, 0, .1);
}


/* Privacy Page Css */
.privacy_wrapper{
  margin: 80px 0px 180px;
}
.privacy ul li {
  margin-bottom: 15px;
  list-style-type: decimal;
  font-size: 1.2rem;
  font-weight: 600;
}
#rmovStyle li {
  list-style-type: none;
  font-size: 14px;
  font-weight: normal;
  color: #f56622;
}
.list-unstyled li i {
  color: #f56622;
  font-size: 15px;
}


/* Terms Page Css */
.terms ul li {
  margin-bottom: 15px;
  list-style-type: decimal;
  font-weight: 300;
  text-align: justify;
}

/* Thank you Page Css */
.thank_you{
  display: flex;
  min-height: 80vh;
  align-items: center;
  justify-content: center;
  background-color: #fbffff;
}
.thank_msg{
  text-align: center;
  margin-bottom: 100px;
}
.msg_sign i{
  font-size: 5rem;
  color: #65227f;
}
.thank_msg h2{  
  font-size: 4rem;  
  margin: 30px auto;
}
.thank_msg p{
  
}
.error_page .thank_msg{
  margin-bottom: 150px;
}





/* Responsive Code */
@media screen and (max-width: 991px){
  #banner_slider .carousel-caption {
    width: 100%;
  }
  #banner_slider .carousel-caption h3{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  #banner_slider .carousel-caption p{
    margin-bottom: 1.5rem;
  }
  .feature_area .feature_item {
    margin-top: 50px;
    transform: translateY(0);
  }
  .feat_icon,.feat_content{
    flex: 1;
  }
  #image_block_1 .image-box{
    margin-bottom: 150px;
    margin-right: 0px;
  }
  .ftr_top_content h3{
    font-size: 1.5rem;
  }
  .contact-us-inner {
    border-bottom: 1px solid #eee;
  }
  .contact-form-wrapper {
    margin-top: 350px;
  }
  .about-image{
    margin-top: 50px;
  }
  .wcu_box{
    border-bottom: 1px solid #ddd;
  }
  .spacer{
    height: 650px;
  }
  .spacer a{
    display: none;
  }
  .tracking_box{
    display: none;
  }
}
@media screen and (max-width: 767px){
  .top-contact,
  .top-social-icons{
    text-align: center;
  }
  nav .content{
    justify-content: center !important;
  }
  #image_block_1 .image-box .box {
    width: calc(100% - 50px);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -100px;
  }
  .service_sec{
    margin: 0 auto;
  }
  .section-title h2{
    font-size: 2rem;
    line-height: normal;
  }
  .advantage_sec {
    margin: 80px auto 150px;
  }
  .quotation_sec {
    padding: 100px 0px 100px;
  }
  .quotation-dtl p{
    text-align: center;
  }
  .ftr_top_content{
    padding: 15px 25px;
  }
  .ftr_top_content h3{
    font-size: 1rem;
    line-height: normal;
  }
  .ftr_top_content a{
    padding: 7px;
  }
  .ftr_menu, .ftr_social,
  .copyright, .powered_by p{
    text-align: center;
  }
  .ftr_top {
    transform: translateY(-40px);
    margin-bottom: -20px;
  }
  #myCarousel.carousel .carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #65227f;
    text-shadow: none;
    top: auto;
    bottom: -25px;
  }
  #myCarousel.carousel{
    width: 500px;
  }
  #myCarousel .carousel-control.left {
    left: calc(50% - 50px);
  }
  #myCarousel .carousel-control.right {
    right: calc(50% - 50px);
  }
  .contact-us-inner{
    padding: 20px 15px;
  }
  .contact-us-inner p{
    margin: 0px;
  }
  .contact-section{
    padding: 150px 0px 100px;
  }
  .contact-form-wrapper {
    margin-top: 200px;
  }
  .top-menu{
    display: none;
  }
  .banner_wrapper,.common_banner{
    margin-top: 84px !important;
  }
  .spacer {
    height: 550px;
  }
  .privacy ul, .terms ul{
    margin-left: 20px;
  }
  .privacy_wrapper{
    margin: 80px 0px 100px;
  }
  .thank_you{
    min-height: 85vh;
  }
  .thank_msg {    
    margin-bottom: 0px;
  }
  .error_page .thank_msg{
    margin-bottom: 0px;
    padding: 100px 0px 150px;
  }
}
@media screen and (max-width: 575px){
  #banner_slider .carousel-caption{
    padding-left: 15px;
  }
  #banner_slider .carousel-caption h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
  }
  #banner_slider .carousel-caption p {
    margin-bottom: .5rem;
    font-size: .6rem;
  }
  #banner_slider .carousel-caption a {
    padding: 6px 10px;
    font-size: .6rem;
  }
  #banner_slider .carousel-caption p br{
    display: none;
  }
  .about_sec{
    padding: 100px 0px 50px;
  }
  #image_block_1 .image-box .box .inner{
    padding: 15px;
  }
  #image_block_1 .image-box .box .inner h1 {    
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 0px;
  }
  .content-box p{
    text-align: justify;
  }
  .quotation-dtl p{
    font-size: .8rem;
  }
  .ftr_top {
    transform: translateY(-90px);
    margin-bottom: -60px;
  }
  .ftr_top_content {
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
  }
  .ftr_top_content h3{
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  .ftr_top_content a {
    padding: 10px 15px;
  }
  .quotation_sec {
    padding: 100px 0px 150px;
  }
  #myCarousel.carousel{
    width: 100%;
  }
  .spacer {
    height: 1100px;
  }
  .contact-section {
    padding: 150px 0px 150px;
  }
  .contact-form-wrapper {
    margin-top: 650px;
  }
  .privacy_wrapper{
    margin: 80px 0px 150px;
  }
}

.red-clr{
	color: #f44336;
}
.alert-msg{
	width: 100%;
	padding: 5px;
	border: 1px solid #f44336;
	border-left-width: 5px;
	font-weight: 500;
}
.green-clr{
	color: #5cb85c;
}
.alert-msg_success{
	width: 100%;
	padding: 5px;
	border: 1px solid #5cb85c;
	border-left-width: 5px;
	font-weight: 500;
}

fieldset {
  padding: 15px;
  margin: 0 2px;
  margin-bottom: 20px;
  border: 1px solid silver;
  border-radius: 5px;
  background: #f7f7f7;
}
.txtarea{
    background-color:white;
}


