@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
body{
	 font-family: 'Manrope', sans-serif;
}

.banner-header{
	background-image: url(../images/header-hero.jpg);
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.menu-header{
	padding-top: 35px;
}
.menu-header .navbar-light .navbar-nav .nav-link{
	color: #fff;
	font-weight: 500;
	padding-right: 20px;
}
.menu-header .navbar-light .navbar-nav .nav-link:hover{
	color: #eb6100;
}

.banner-content{
	text-align: left;
	padding-top: 100px;
	width: 450px;
}

.banner-content h1{
	font-weight: 700;
	color: #fff;
	font-size: 48px;
}
.banner-content span{
	color: #ffffff;
    display: block;
    background-color: #eb6100;
    padding: 3px 20px;
    font-size: 37px;
    margin-top: 11px;
    font-weight: 600;
    text-transform: uppercase;
    width: max-content; 
}
.banner-content p {
    color: #fff;
    font-weight: 500;
    font-size: 19px;
    line-height: 29px;
    margin-top: 45px;
}

/*---------------------------------about section----------------------------*/


.about{
	padding-top: 70px;
	padding-bottom: 30px;
	text-align: center;
	background: #f9f9f9;
}

.about h4{
	font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6900;
    text-transform: uppercase;
}
.about h1{
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin-bottom: 90px;
}

.about .item {
    margin-bottom: 25px;
    background-color: #fff;
    padding: 60px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    flex-direction: column;
    min-height: 203px;
    margin-bottom: 80px;
}


.about .item .image {
    background-color: #ff6900;
    height: 96px;
    width: 96px;
    border-radius: 100px;
    border: 6px solid #f9f9f9;
    text-align: center;
    position: absolute;
    top: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .item .image img {
    max-width: 100%;
    width: 50px;
}
.about .item .content {
	text-align: center;
}
.about .item h6 {
    font-size: 16px;
    text-transform: uppercase;
    color: #403f3f;
    font-weight: 700;
    margin-top: 11px;
}
.about .item p {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #798795;
}


/*--------------------------------------services section------------------------*/


.services{
	padding-top: 70px;
	padding-bottom: 70px;
}

.services h4{
	font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6900;
    text-transform: uppercase;
    text-align: center;
}
.services h1{
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin-bottom: 90px;
    text-align: center;
}


.service-box{
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    padding: 50px 20px;
    background: #fff;
}
.service-box .item{
    text-align: left;
    margin-bottom: 25px;
    display: flex;
    padding-top: 30px;
}

.service-box .item .icon{
    vertical-align: middle;

}

.service-box .item .content{
   padding-left: 25px;
}

.service-box .item .content h3{
    font-size: 17px;
    font-weight: 700;
    color: #404040;
}

.service-box .item .content p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #798795;
    margin: 0px;
}


/*-----------------------------------models section--------------------------------*/

.models{
    padding-top: 70px;
    padding-bottom: 70px;
    background: #f9f9f9;
}

.models h4{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6900;
    text-transform: uppercase;
    text-align: center;
}
.models h1{
    font-size: 32px;
    font-weight: 700;
    color: #404040;
    margin-bottom: 50px;
    text-align: center;
}


.models-tabs{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #dedede;
}

.nav-pills .nav-link{
    color: #798795;
    padding: 17px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    border-radius: 0px;
    font-weight: 500;
}

.nav-pills .nav-link.active{
    color: #ff6900;
    background-color: inherit;
    border-bottom: 2px solid;
} 
.nav-pills .nav-link.active :before{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ff6900;
    left: 0;
    bottom: -2px;
}

.models-list {
    margin-top: 35px;
}

.models-list li {
    list-style-type: disclosure-closed;
    color: #676767;
    padding-bottom: 7px;
}




/*---------------------------------------showcase section------------------------------------*/


.showcase{
    padding-top: 70px;
    padding-bottom: 70px;
}

.showcase h4{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6900;
    text-transform: uppercase;
    text-align: center;
}
.showcase h1{
    font-size: 32px;
    font-weight: 700;
    color: #404040;
    margin-bottom: 50px;
    text-align: center;
}

.showcase .item {
    margin-bottom: 25px;
}

.showcase .item img {
    max-width: 100%;
}


/*------------------------------contact us section-------------------------------*/

.contact{
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact h4{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6900;
    text-transform: uppercase;
    text-align: center;
}
.contact h1{
    font-size: 32px;
    font-weight: 700;
    color: #404040;
    margin-bottom: 50px;
    text-align: center;
}

.contact .item{
    text-align: left;
    margin-bottom: 25px;
    display: flex;
    padding-top: 30px;
}

.contact .item .icon{
    vertical-align: middle;

}

.contact .item .icon i{
    color: #fff;
    font-size: 26px;
    background-color: #ff6900;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.contact .item .content{
   padding-left: 13px;
}

.contact .item .content h3{
    font-size: 17px;
    font-weight: 700;
    color: #404040;
}

.contact .item .content p{
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    color: #798795;
    margin: 0px;
}

.contact-form{
    margin-top: 40px;
}

.contact-form h2{
    font-size: 32px;
    font-weight: 700;
    color: #404040;
    margin-bottom: 30px;
}
.contact-form span{
    color: #ff6900;
    padding-right: 20px;
}

.contact-form .form-control.small{
    height: 52px;
    border-radius: 0px;
}

.contact-submit{
    background-color: #ff6900;
    padding: 13px 32px;
    border:0px;
}
.contact-submit:hover{
     background-color: #e86306;
     cursor: pointer;
}
.contact a{
    color: #798795;
}

/*-------------------------------footer section-----------------------*/


.footer{
    padding-top: 70px;
    padding-bottom: 10px;
    background-image: url(../images/footer-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer .item{
    margin-top: 10px;
    text-align: left;
}

.footer .item img{
    max-width: 100%;
    margin-bottom: 30px;
}

.footer .item p{
    font-weight: 400;
    line-height: 24px;
    color: #798795;
    font-size: 15px;
}
.footer .item h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    color: #222;
}

.footer .item ul{
    margin-top: 30px;
    padding-left: 0px;
}
.footer .item .second{
    margin-top:59px;
}

.footer .item ul li{
    list-style-type: none;
    font-size: 17px;
    color: #798795;
    padding-bottom: 18px;
}
.footer .item .social {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
}

.footer .item .social i {
    color: #afafaf;
    padding: 10px;
    font-size: 23px;
    margin-right: 13px;
}

.footer .item a{
    color: #798795;
}

.copy-right{
    padding-top: 30px;
    border-top:1px solid #ececec;
    font-size: 16px;
    color: #afafaf;
    margin-top: 23px;
    display: block;

}
.copy-right .copy {
    text-align: center !important;
}
.thanks-bg {
    background: url(..//images/001.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thanks-center {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 30%;
    padding-bottom: 95px;
}
.thanks-center h4 {
    color: #0f2c41;
    font-size: 30px;
    margin-top: 45px;
    font-weight: bold;
}
.thanks-center p {
    color: #0f2c41;
    font-size: 17px;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 45px;
}
.thanks-center a {
    background-color: #ff6900;
    border-color: #ff6900;
    padding: 13px 25px;
    color: #fff;
    text-decoration: none;
}
.thanks-center a:hover {
    background-color: #333;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6900;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 35px;
    display: none;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    transition: all 0.3s ease;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover{
    color:#fff;
}

.my-float{
	margin-top:16px;
}

/***************************************Responsive Styles******************************************/
/**************iPad Landscape***************/
@media only screen and ( max-width: 1024px ) and (min-width: 986px){


.banner-header{
    height: 100%;   
}
.banner-content{
    width: 65%;
    padding-bottom: 60px;
}
.about .item {
    min-height: 244px;
}
  .thanks-center {
    width: 60%;
}

}


/********************************************//**************iPad Portrait***************/
@media only screen and (max-width: 985px) and (min-width: 768px){

.banner-header{
    height: 100%;   
}
.banner-content{
    width: 65%;
    padding-bottom: 60px;
}

.navbar-light .navbar-toggler {
    background-color: #ffff;
}

.thanks-center {
    width: 60%;
}

}
/**********************************//***************iPhone Landscape*************/
@media only screen and (max-width: 767px) and (min-width: 480px){


.banner-header{
    height: 100%;   
}
.banner-content{
    width: 100%;
    padding-bottom: 60px;
}

.navbar-light .navbar-toggler {
    background-color: #ffff;
}
.thanks-center {
    width: 75%;
}

}
/*******************************************/
/***************iPhone Portrait**************/
@media only screen and (max-width: 479px) and (min-width: 320px){

.banner-header{
    height: 100%;   
}
.banner-content{
    width: 100%;
    padding-bottom: 60px;
}

.menu-header img{
    width: 152px;
}
.navbar-light .navbar-toggler {
    background-color: #ffff;
}
.banner-content h1 {
    font-size: 40px;
}
.banner-content span {
    font-size: 26px;
}
.banner-content p {
    font-size: 15px;
    line-height: 24px;
}
.about{
    padding-bottom: 0px;
}
.services h1 {
    font-size: 28px;
}
.showcase h1{
 font-size: 28px;
}
.thanks-center {
    width: 100%;
}
.footer .item .second{
    margin-top: 0px;
}
}
