* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
}

/* header css start */
.main_header {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
}

.main_header .navbar-brand {
    text-align: center;
}

.main_header .navbar-brand img {
    height: 70px;
}

.main_header .navbar-brand h5 {
    font-size: 14px;
    color: black;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.main_header .navbar-brand h5:hover {
    color: #ff6900;
}

.main_header .navbar-collapse {
    justify-content: end;
}

.navbar-nav {
    align-items: center;
}

.main_header .navbar-collapse .navbar-nav li a {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.main_header .navbar-collapse .navbar-nav li a:hover {
    color: #ff6900;
}

.main_header .navbar-collapse .navbar-nav li a button {
    background-color: #ff6900;
    transition: all 0.5s ease-in-out;
}

.main_header .navbar-collapse .navbar-nav li .contact_us{
    background-color: #40404a;
    color: white;
    padding: 16px 30px;
    border-radius: 4px;
}

.main_header .navbar-collapse .navbar-nav li .contact_us:hover{
    background-color: #ff6900;
    color: #fff;
}

/* header css end */

/* contact us css start */

.contact_bg_color{
    background-color: #eaeaeb;
}
.contact_map iframe{
    width: 100% !important;
}

.contact_box{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 5px;
    padding: 55px;
}

.your_name{
    margin-bottom: 20px;
}

.your_name input{
    width: 100%;
    padding: 12px;
}

.your_name select{
    width: 100%;
    padding: 12px;
}

.submit input{
    width: 48%;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background-color: #40404a;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.submit input:hover{
    background-color: #ff6900;
}

/* home css start */
.section_back {
    position: relative;
}

.carousel-item img {
    height: 700px;
    object-fit: cover;
    position: relative;
}

.carousel-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: 100;
}

.home-heading {
    position: absolute;
    top: 35%;
    left: 28%;
    right: 26%;
    z-index: 100;
    background-color: black;
    padding: 30px;
    border-radius: 10px;
    opacity: 0.8;
}

.home-heading h1 {
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 40px;
}

.home-heading h1::before {
    content: "";
    position: absolute;
    top: 38%;
    width: 10%;
    border: 2px solid #ff6900;
    margin-top: 4px;
}

.home-heading p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    line-height: 30px;
}

.carousel-indicators {
    bottom: 0%;
    z-index: 200;
}

.carousel-indicators [data-bs-target] {
    background-color: white;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 100;
}

/* .carousel-control-prev {
    left: -5%;
}
.carousel-control-next {
    right: -5%;
} */
.arrow-color {
    background-color: #ff6900;
    padding: 8px 12px;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.arrow-color:hover {
    background-color: #40404a;
}

.carousel-control-prev-icon {
    margin: 6px 4px 0px 0px;
    height: 40px;
    width: 40px;
}

.carousel-control-next-icon {
    margin: 6px 4px 0px 0px;
    height: 40px;
    width: 40px;
}

/* home css End */

/* about us css start */
.bg-color{
    background-color: #eaeaea;
}

.movers-text {
    text-align: center;
    color: #000;
    margin-top: 40px;
}

.movers-text h1 {
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.movers-text h2 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.movers-text h2 strong {
    color: #ff6900;
}

.movers-text p {
    font-size: 14px;
    color: #787171;
}

.about-image {
    margin-top: 80px;
    margin-right: 20px;
}

.about-image figure img {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.about-image figure:hover img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transition: 1s ease-in-out;
}

.about-text {
    margin-top: 40px;
    margin-left: 20px;
}

.about-text h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    letter-spacing: 2px;
    line-height: 40px;
    margin-bottom: 20px;
}

.about-text h2::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 18%;
    border: 2px solid #40404a;
    margin-top: 8px;
}

.about-text p {
    font-size: 16px;
    font-weight: 500;
    color: #787171;
    letter-spacing: 2px;
    line-height: 30px;
    text-align: justify;
}

.button {
    text-align: center;
}

.button a{
    color: black;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 10px;
    border-radius: 5px;
    transition: 1s ease-in-out;
}

.button a:hover{
    background-color: #ff6900;
    color: #fff;
    border: none;
}

.about-second-text{
    margin-top: 76px;
    margin-right: 20px;
}

.about-second-text h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    letter-spacing: 2px;
    line-height: 40px;
    margin-bottom: 20px;
}

.about-second-text h2::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 18%;
    border: 2px solid #40404a;
    margin-top: 8px;
}

.about-second-text p {
    font-size: 16px;
    font-weight: 500;
    color: #787171;
    letter-spacing: 2px;
    line-height: 30px;
    text-align: justify;
}

.about-second-image {
    margin-top: 80px;
    margin-left: 20px;
}

.about-second-image figure img {
    width: 100%;
    border-radius: 10px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.about-second-image figure:hover img {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transition: 1s ease-in-out;
}

/* about us background image start*/
.about_bg{
    background-image: url(../images/about/about_bg.jpg);
    background-size: cover;
    background-position: center;

}

.about_bg .margin_top {
    margin-top: 150px;
}

.about_text{
    padding: 118px;
    text-align: center;
}

.about_home{
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 30px 85px;
}

.about_home h2{
    font-size: 30px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_home p{
    font-size: 15px;
    font-weight: 600;
    color: white
}

.about_home p a{
    font: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}
/* about us background image end*/
/* about us css End */

/* service css start */

/* .margin-top{
    background-image: linear-gradient(225deg, #ff6900 17%, #182937 17%);
} */

.box-service{
    overflow: hidden;
}

.services-heading{
    text-align: center;
    margin-top: 40px;
}

.services-heading h1{
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-heading h4{
    font-size: 40px;
    color: #000;
    letter-spacing: 2px;
}

.our-service-icon{
    text-align: center;
    margin-bottom: 20px;
}

.our-service-icon img{
    width: 100%;
}

.box-service img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.box-service .our-service-icon img {
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.box-service{   
    transition: all 0.5s ease-in-out;
}

.box-service{
    height: 526px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom: 5px solid #ff6900;
    border-radius: 5px;
}

.service-content {
    color: #fff;
    padding: 25px;
    margin-top: -25px;
}

.service-content h4{
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    color: #ff6900;
    letter-spacing: 2px;
}

.service-content p{
    font-size: 13px;
    text-align: justify;
    color: #787171;
    letter-spacing: 2px;
    margin-top: 18px;
}

/* service background image start */

.service_bg{
    background-image: url(../images/service/service-bg.jpg);
    background-size: cover;
}

.service_bg .margin_top {
    margin-top: 150px;
}

.box-sizes{
    height: 580px;
}

.service_text{
    padding: 118px;
    text-align: center;
}

.service_home{
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 30px 85px;
}

.service_home h2{
    font-size: 30px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.service_home p{
    font-size: 15px;
    font-weight: 600;
    color: white
}

.service_home p a{
    font: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}
/* service background image end */
/* service css end */

/* choos us css start */

.choos-bg {
    /* position: relative; */
    background-image: url(../images/choose-us\ bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0px;
    margin-top: 40px;
}

.position{
    position: relative;
    z-index: 100;
}

.choos-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.8;
}

.why-choose-us{
    /* background-color: #ff6900; */
    position: relative;
}

.head h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.why-choose-us .choos-up {
   display: flex;
   align-items: center;
}

.choos-up .choos-icon{
    margin-right: 30px;
}

.choos-icon i{
    font-size: 20px;
    color: white;
    border: 2px solid white;
    padding: 10px 12px;
    border-radius: 10px;
}

.choos-content{
    margin-top: 30px;
}

.choos-content h3{
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}

.choos-content p{
    width: 78%;
    font-size: 16px;
    color: white;
}
/* choos us css end */

/* gallery css start */

.gallery{
    margin-bottom: 30px;
}

.gallery h1{
    font-size: 30px;
    font-weight: 700;
    color: #ff6900;
    text-align: center;
    letter-spacing: 2px;
}

.gallery-images{
    overflow: hidden;
}

.gallery-images img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.gallery-images img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

/* privacy policy css start */
.privacy_policy_bg{
    background-image: url(../images/privacy_bg.jpg);
    background-size: cover;
    background-position: center;
}

.privacy_policy_bg .margin_top {
    margin-top: 70px;
}

.privacy_text{
    padding: 118px;
    text-align: center;
}

.privacy_home{
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 30px 85px;
}

.privacy_home h2{
    font-size: 30px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy_home p{
    font-size: 15px;
    font-weight: 600;
    color: white
}

.privacy_home p a{
    font: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.privacy_2 h1{
    font-size: 40px;
    font-weight: 700;
    color: #ff6900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.privacy_2 h4{
    font-size: 20px;
    font-weight: 600;
    color: #6e7889;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
/* privacy policy css end */


/* footer css start */

.footer_bg{
    background: #f9f9f9;
    border-top: 1px solid rgba(35,35,35,0.06);
}

.footer_logo img {
    height: 45px;
}

.footer_logo h5 {
    font-size: 14px;
    color: #ff6900;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.footer_logo{
    margin-top: 26px;
}

.footer_text {
    margin: 20px 0px;
}

.footer_text p{
    color: #787171;
    text-align: justify;
    letter-spacing: 2px;
}

.footer_icon ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: -40px;
}

.footer_icon ul a{
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    text-align: center;
    line-height: 35px;
    color: #000;
    margin-top: 8px;
    margin-right: 6px;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.footer_icon ul a li{
    list-style: none;
}

.footer_icon ul a:hover{
    background-color: #ff6900;
    color: #fff;
    border: none;
}

.footer_text_2{
    margin-top: 40px;
    margin-left: 30px;
}

.footer_text_2 h2{
    font-size: 20px;
    color: #ff6900;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer_text_2 ul a{
    color: #000;
    text-decoration: none;
}

.footer_text_2 ul a:hover{
    color: #ff6900;
}


.footer_text_2 ul a li{
    list-style: none;
    margin-bottom: 10px;
}

.google_map{
    margin-top: 40px;
}

.google_map iframe{
    height: 230px;
    width: 300px;
}

.footer_adress{
    margin-top: 40px;
}

.footer_adress h2{
    font-size: 20px;
    color: #ff6900;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer_adress p a{
    color: #000;
    text-decoration: none;
}
/* footer css end */

.desktop_icon{
    position: fixed;
    bottom: 0%;
    right: 2%;
    top: 60%;
    z-index: 200;
}


.whatsapp_icon a{
    font-size: 40px;
    color: white;
    background-color: #25d366;
    padding: 10px 14px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
.phone_icon{
    margin-top: 35px;
}
.phone_icon a{
    font-size: 40px;
    color: white;
    background-color: #25d366;
    padding: 10px 14px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
