@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lobster&family=Oswald:wght@200;300;400;500;600;700&family=Rubik+Mono+One&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lobster&family=Oswald:wght@200;300;400;500;600;700&family=Rubik+Mono+One&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================
# BASIC STYLE
============================= */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  cursor: default;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 5.8rem;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 3.5rem;
}

h5 {
  font-size: 2.5rem;
}

h6 {
  font-size: 1.9rem;
}

p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  text-transform: capitalize;
}
.container{
    max-width: 960px;
    width: 96%;
    margin: auto;
}
.displayFlex{
  display: flex;
}
.justifyContent{
  justify-content: space-between;
}

/* ============================
angle_arrow_area
============================= */
.angle_arrow_area a{
  width: 4rem;
  height: 4rem;
  padding-bottom: 0.2rem;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  background: #222;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 0.1rem 0.5rem rgba(68, 73, 83, 0.2);
  position: fixed;
  bottom: 10%;
  right: 2%;
  display: none;
  padding-top: 9px;
}
.angle_arrow_area a:hover{
  background: #fb5200;
  transition: all 0.3s;
}


/* ============================
HEADER TOP CSS
============================= */

#top_header{
    background: #f5f5f5;
}
.top_wrapper {
    overflow: hidden;
}
.top_phone {
    width: 270px;
    float: left;
    border-right: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    padding: 9px 10px;
    color: #000;
    font-family: "Work Sans", sans-serif;
    font-size: 17px;
}
.top_phone i {
    color: #ff5200;
    padding-right: 10px;
}
.top_email i {
    color: #ff5200;
    padding-right: 10px;
}
.top_email {
    width: 573px;
    padding: 9px 10px;
    float: left;
    font-size: 17px;
    font-family: "Work Sans", sans-serif;
}
.top_social_icons {
    float: right;
    display: flex;
}

.social_box_one i {
    font-size: 19px;
    border-right: 1px solid #d3d3d3;
    padding: 9px 10px;
    transition: 0.3s;
    cursor: pointer;
}
.social_box_one i:hover {
    color: #ff5200;
}
.fa-square-facebook{
    border-left: 1px solid #d3d3d3;
}
.mobile_navbar i{
  display: none;
}
/* ============================
MENU HEADER CSS
============================= */
#menu_header {
	height: 80px;
	position: sticky;
	top: 0;
	z-index: 999999;
	background: #fff;
}
.logo img{
  width: 120px;
  float: left;
  margin: 20px 0px;
  cursor: pointer;
}
.menu_items menu{
  float: right;
}
.menu_items menu ul{
  list-style: none;
  margin-right: 0px;
}
.menu_items menu ul li{
  display: inline-block;
  padding: 30px 9px 20px 12px;
  position: relative;
  cursor: pointer;
}
.menu_items menu ul li:hover a{
  color: #fb5200;
}
.menu_items menu ul li a{
  text-decoration: none;
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: 15px;font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.menu_items menu ul li a:hover{
  color: #ff5200;
}
.menu_items menu ul li a i{
  margin-left: 5px;
  font-size: 13px;
}
.menu_items menu ul li a .fa-magnifying-glass{
  font-size: 20px;
  margin-right: 0px;
}
.menu_items menu ul li a.active{
  color: #ff5200;
}
.menu_items{
  position: relative;
}
.mobile_navbar{
  position: absolute;
  top: 18px;
  right: 0;

}
/* ============================
  HEADER SUB MENU CSS
============================= */

ul.sub_menu{
  width: 30rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 80px;
  border-top: 1px solid #e5e5e5;
  z-index: 1;
  padding: 15px 0px 15px 40px;
  transform-origin: top;
  transition: all 0.5s;
  transform: scaleY(0);
  
}
ul.sub_menu li{
  display: block !important;
  margin: 0% !important;
  line-height: 1.9 !important;
  transition: .4s;


  padding: 0px !important;
}
ul.sub_menu li a{
  font-family: "Work Sans", sans-serif !important;
  font-weight: 600 !important;
  color: #000 !important;
  letter-spacing: 0.08em !important;
  font-size: 1.5rem !important;
  text-transform: capitalize !important;
  transition: .4s;
  
}
ul.sub_menu li:hover a{
  color: #fb5200 !important;
}
ul.sub_menu li a:before {
	content: "";
	width: 0%;
	height: 1px;
	background: #fb5200;
	position: absolute;
	bottom: 0;
	left: 0;
  transition: .4s;
}

ul.sub_menu li:hover :before{
  width: 85% !important;
}

.menu_items menu ul li:hover ul.sub_menu{
  transform: scaleY(1);
}
.menu_items menu ul li:hover ul.mega_menu{
  transform: scaleY(1);
}

ul.sub_menu li a:hover{
  color: #fb5200 !important;
}


/*==========================
  Mega menu css
==============================*/

ul.mega_menu{
  width: 62rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 80px;
  border-top: 1px solid #e5e5e5;
  z-index: 1;
  padding: 40px 30px;
  transform-origin: top;
  transition: all 0.5s;
  transform: scaleY(0);
}
ul.mega_menu li{
  display: block !important;
  margin: 0% !important;
  line-height: 1.9 !important;
  padding: 0px !important;
}
ul.mega_menu li a{
  font-family: "Work Sans", sans-serif !important;
  font-weight: 600 !important;
  color: #000 !important;
  letter-spacing: 0.08em !important;
  font-size: 1.5rem !important;
  text-transform: capitalize !important;
}
ul.mega_menu li a:hover{
  color: #fb5200 !important;
}

.mega_one{
  width: 50%;
  
  padding-right: 45px;
  border-right: 1px solid #fb5200;
}


.mega_tow{
  width: 50%;
  padding: 20px 45px;
}

.mega_tow i{
  font-weight: 700 !important;
}


.fa-solid.fa-b{
  color: #fb5200;
}




/* ============================
SLIDER SECTION CSS
============================== */

#slider_section{
  width: 100%;
  height: auto;
}

.sliderbg{
  
  background-size: cover;
  background-position: center center;
  background-image: url('../image/slide-1.jpg');
}

.sliderbg2{
  background-size: cover;
  background-position: center center;
  background-image: url('../image/slide-2.jpg');
}
.slider_all_contents{padding-top: 100px;}
.slider_all_contents h1{color: #FFF;width: 640px;font-weight: 500;letter-spacing: 0.06em;text-transform: uppercase;font-size: 5.5rem;margin-bottom: 50px;}
.slider_all_contents p{color: #fff;width: 57%;line-height: 1.9;font-weight: 500;font-size: 1.8rem;margin-bottom: 25px;}
.slider_all_contents button{
  padding: 1.5rem 3.5rem;
  margin-bottom: 80px;
  margin-top: 25px;
  color: #fff;
  background: #ff5200;
  font-size: 1.8rem;
  font-weight: 500;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0.3rem;
  letter-spacing: 0.08em;
  font-family: "Oswald", sans-serif;
  transition: all 0.3s;
}
.slider_all_contents button:hover{
  background: #252525;
}


/* ============================
SERVICE BOX CSS
============================= */
#praimery_service {
	background-color: #f5f6f6;
	padding-top: 50px;
}
.praimery_wrapper{
  overflow: hidden;
}
.praimery_service_box {
	width: 31%;
	background-color: #fff;
	text-align: center;
	float: left;
	margin: 0% 3.5% 5% 0%;
	border: 0.1rem solid rgb(219 219 219 / 66%);
}
.praimery_service_box:nth-child(3) {
	margin: 0% 0% 5% 0%;
}
.praimery_service_box:nth-child(6) {
	margin: 0% 0% 5% 0%;
}
.box_icons i{color: #fb5200;font-size: 4.8rem;margin-top: 30px;}
.box_icons h5{}
.box_icons p{}
.box_icons a{}

.box_title h5 {
  text-transform: uppercase;
  color: #333333;
  font-size: 1.9rem;
  cursor: pointer;
  margin: auto;
  width: 180px;
  margin-top: 20px;
}
.box_paragraph p {
  color: #656565;
  width: 180px;
  margin: auto;
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin-top: 20px;
}
.box_links a {
  color: #fb5200;
  font-size: 1.7rem;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
}
.box_links {
  margin-top: 20px;
  margin-bottom: 20px;
}
.box_links i {
  margin-left: 5px;
  font-size: 1.7rem;
}
.praimery_service_box:last-child{
  margin-right: 0px;
}
.praimery_service_box:first-child{
  margin-left: 0px;
}
.praimery_service_box:nth-child(2){
  background: #fb5200;
}
.praimery_service_box:nth-child(2) i{
  color: #fff;
}
.praimery_service_box:nth-child(2) h5{
  color: #fff;
}
.praimery_service_box:nth-child(2) p{
  color: #fff;
}
.praimery_service_box:nth-child(2) a{
  color: #fff;
}
.praimery_service_box:hover{
  background: #fb5200;
}
.praimery_service_box:hover i{
  color: #fff;
  transition: 0.4s;
}
.praimery_service_box:hover h5{
  color: #fff;
  transition: 0.4s;
}
.praimery_service_box:hover p{
  color: #fff;
  transition: 0.4s;
}
.praimery_service_box:hover a{
  color: #fff;
  transition: 0.4s;
}
/* ============================
WORK WITH OUR TEAMS AREA CSS
============================= */

#work_with_our_teams_area{
  width: 100%;
  height: 590px;
  clear: both;
  padding: 5% 0%;
}
.work_with_our_team_image_area{
  width: 50%;
  float: left;
  overflow: hidden;
}
.work_with_our_team_image_area img{
  max-width: 100%;
  transition: .3s;
}
.work_with_our_team_image_area:hover img{
  transition: .3s;
  transform: scale(1.12);
}
.work_with_right_all_content_area{
  width: 50%;
  float: right;
  padding-left: 5%;
}
.heading_and_paragraph_area h3{
  color: #000;
  letter-spacing: 0.1rem;
  font-size: 3.6rem;
  font-weight: 500;
  margin: 2% 0;
}
.heading_and_paragraph_area p{
  text-transform: capitalize;
  margin: 3% 0 5% 0;
  color: #656565;
}
.ul_left_area{
  width: 50%;
  float: left;
}
.ul_left_area ul{
  width: 80.5%;
  list-style: none;
  margin-bottom: 6%;
}
.ul_left_area ul li{
  text-transform: capitalize;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 4.2rem;
  color: #333333;
  cursor: pointer;
}
.ul_left_area ul li a{
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  padding-left: 4%;
}
.ul_right_area{
  width: 50%;
  float: right;
}
.ul_right_area ul{
  width: 96.5%;
  list-style: none;
  margin-bottom: 6%;
}
.ul_right_area ul li{
  text-transform: capitalize;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 4.2rem;
  color: #333333;
  cursor: pointer;
}
.ul_right_area ul li a{
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  padding-left: 4%;
}
.ul_right_area ul li a i{
  cursor: pointer;
  margin: 0 4% 0 0;
}
.ul_left_area ul li a i{
  cursor: pointer;
  margin: 0 4% 0 0;
}
.ul_right_area ul li a:hover{
  color: #fb5200;
}
.ul_left_area ul li a:hover{
  color: #fb5200;
}
.work_with_our_team_button_area button{
  color: #fff;
  background: #ff5200;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 3.5rem;
  outline: none;
  border: none;
  border-radius: 0.3rem;
  text-transform: uppercase;
  cursor: pointer;
  margin: 2% 0;
  display: block;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  font-family: "Oswald", sans-serif;
}
.work_with_our_team_button_area button:hover{
  background: #252525;
}

/* ============================
BLOG SECTION CSS
============================= */

#Blog_section{
  width: 100%;
  height: auto;
  background: linear-gradient(rgb(0 0 0 / 55%), rgb(0 0 0 / 55%)), url(../image/customerNum.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
#Blog_section:after{
  content: '';
  display: block;
  clear: both;
}
.Box_Section_mini_box_area{
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: default;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  width: 23.8%;
  float: left;
  margin: 1% 0 1% 1.2%;
}
.Box_Section_mini_box_area i{
  font-size: 4rem;
  margin-top: 100px;
}
.Box_Section_mini_box_area h4{
  font-size: 6rem;
  font-family: "Work Sans", sans-serif;
text-align: center;
line-height: 1.4;
  margin: 6% 0%;
}
.Box_Section_mini_box_area h5{
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 70px;
}

/* ============================
MISSION SECTION CSS
============================= */

#Mission_section{
  width: 100%;
  height: 640px;
  background: #f5f6f6;
}




.Title_and_Paragraph_area{
  text-align: center;
  padding-top: 7%;
}
.Title_and_Paragraph_area h2{
  color: #000;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 0% 0 2% 0;
  padding-bottom: 1%;
  position: relative;
}
.Title_and_Paragraph_area h2:after{
  content: '';
  width: 6rem;
  position: absolute;
  height: 0.3rem;
  left: 49%;
  background: #ff5200;
  top: 105%;
  transform: translate(-49%, -105%);
  border-radius: 10rem;
}
.Title_and_Paragraph_area p{
  width: 47%;
  font-family: "Work Sans", sans-serif !important;
  margin: auto;
  color: #333333;
  margin-top: 0;
  margin-bottom: 4%;
}
.Mission_section_area_box_wrapper{
  content: '';
  display: block;
  clear: both;
}
.mission_section_area_box{
  width: 23.8%;
  float: left;
  display: block;
  margin: 1% 0 1% 1.6%;
}
.mission_section_area_box img{
  max-width: 100%;
  
}
.mission_section_area_box:nth-child(1){
  margin-left: 0px;
  
}
.mission_section_area_box h5 {
	margin: 4% 0;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.02rem;
	font-weight: 500;
}
.mission_section_area_box p{
  color: #333;
  font-family: "Work Sans", sans-serif !important;
  line-height: 2.5rem;
}

/* ============================
PRICING SECTION CSS
============================= */

#pricing_section_area{
  width: 100%;
  height: 855px;
}

.pricing_box{
  width: 32.26%;
  float: left;
  overflow: hidden;
  border: 0.1rem solid #eee;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0 40px 3px rgba(0,0,0,0.05);
  padding: 3rem;
  margin: 1% 0 1% 1.6%;
}
.pricing_box:nth-child(1){
  margin-left: 0px;
}
.pricing_box h3{
  text-transform: uppercase;
  font-weight: 500;
  font-size: 2.6rem;
  margin: 4% 0;
}
.pricing_box b{
  color: #000;
  font-size: 5rem;
  font-weight: bold;
}
.pricing_box span{
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
}
.pricing_box ul{
  list-style: none;
  margin-bottom: 10%;
}
.pricing_box ul li{
  color: #57647c;
  font-size: 1.6rem;
  margin: 5% 0;
}
.pricing_box ul li i{
  color: #ff5200;
  font-size: 1rem;
  margin: 0 2% 0 0;
}
.pricing_box .pricing_btn{
  color: #fff;
  background: #ff5200;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 3.5rem;
  outline: none;
  border: none;
  border-radius: 0.3rem;
  text-transform: uppercase;
  cursor: pointer;
  margin: 2% 0;
  display: block;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  font-family: "Oswald", sans-serif;
}
.pricing_box .pricing_btn:hover{
  background: #252525;

}

/* ============================
PRICING SECTION CSS
============================= */

#ides_section_area{
  width: 100%;
  height: auto;
  padding-bottom: 0;
  margin-bottom: 5%;
  position: relative;
  overflow: hidden !important;
  padding-top: 5%;
}
.idea_section_left{
  width: 50%;
  height: 487px;
  float: left;
  position: relative;
}
.idea_section_left:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222222;
  top: 0;
  left: 0;
  opacity: .5;
}
.idea_section_left img{
  max-width: 100%;
  height: 100%;
}
.idea_section_right_left_wrapperL:after{
  content: '';
  display: block;
  clear: both;
}
.idea_section_right{
  width: 50%;
  background: #222222;
  float: right;
  color: #fff;
  height: 487px;
}
.idea_section_right_wrapper{
  margin: 5% 0% 5% 7%;
  width: 100%;
  height: auto;
}
.idea_right_title h3{
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 5.4rem;
  letter-spacing: 0.02rem;


}
.idea_right_title P{

  width: 90%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 2.7rem;
  word-spacing: 0.3rem;
  margin: 3rem 0;

}
.idea_title_right_mini_box_wrapper:after{
  content: '';
  display: block;
  clear: both;
}
.mini_box{
  width: 49.2%;
  float: left;
  margin: 1% 0 1% 1.6%;
  margin-left: 0px;
}
.mini_box i{
  float: left;
  font-size: 5rem;
  color: #ff5200;
  margin: 1rem 4rem 5rem 0;
}
.mini_box h5{
  line-height: 1.8;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02rem;
  transition: all 0.3s;
  cursor: pointer;
}
.mini_box h5:hover{
  color: #ff5200;
}
.mini_box p{
  width: 65%;
  color: #ddd;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-transform: capitalize;
}

/* ============================
MEET OUR TEAM
============================= */

#MEET_OUR_TEAM {
	width: 100%;
	height: auto;
	background: #fff;
}




.Title_and_Paragraph_area{
  text-align: center;
  padding-top: 7%;
}
.Title_and_Paragraph_area h2{
  color: #000;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 0% 0 2% 0;
  padding-bottom: 1%;
  position: relative;
}
.Title_and_Paragraph_area h2:after{
  content: '';
  width: 6rem;
  position: absolute;
  height: 0.3rem;
  left: 49%;
  background: #ff5200;
  top: 105%;
  transform: translate(-49%, -105%);
  border-radius: 10rem;
}
.Title_and_Paragraph_area p{
  width: 47%;
  font-family: "Work Sans", sans-serif !important;
  margin: auto;
  color: #333333;
  margin-top: 0;
  margin-bottom: 4%;
}
.MEET_OUR_TEAM_section_area_box_wrapper{
  content: '';
  display: block;
  clear: both;
}
.MEET_OUR_TEAM_section_area_box{
  width: 23.8%;
  float: left;
  display: block;
  margin: 1% 0 1% 1.6%;
}
.MEET_OUR_TEAM_section_area_box img{
  max-width: 100%;
  
}
.MEET_OUR_TEAM_section_area_box:nth-child(1){
  margin-left: 0px;
  
}
.MEET_OUR_TEAM_section_area_box h5 {
	margin: 4% 0;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.02rem;
	font-weight: 500;
}
.MEET_OUR_TEAM_section_area_box p{
  color: #333;
  font-family: "Work Sans", sans-serif !important;
  line-height: 2.5rem;
}
.MEET_OUR_TEAM_btn {
	color: #fff;
	background: #252525;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 2rem 3.5rem;
	outline: none;
	border: none;
	border-radius: 0.3rem;
	text-transform: uppercase;
	cursor: pointer;
	margin: 2% 0;
	transition: all 0.3s;
	letter-spacing: 0.08em;
  display: block;
	font-family: "Oswald", sans-serif;
  margin: 0px auto;
	
}
.MEET_OUR_TEAM_btn:hover{
  background: #ff5200;
}
.MEET_OUR_TEAM_section_area_box{
  text-align: center;
  margin-bottom: 60px;
}
.MEET_OUR_TEAM_section_area_box span{
  font-size: 1.6rem;
  text-transform: capitalize;
  font-family: "Work Sans", sans-serif;
  color: #656565;
}
.MEET_OUR_TEAM_section_area_box img{
  position: relative;
  overflow: hidden;
  
}
.meet_our_teem_social_icons i{
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
}





/*==============================
  Our Projects area css
==============================*/


.Our_Project{
	width: 100% !important;
	height: auto;
  padding: 5% 0;
	background: #f5f6f6 !important;
  display: block;
}

.ourTitle{
  text-align: center;
 
}
.ourTitle h2{
  color: #000;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 0% 0 2% 0;
  padding-bottom: 1%;
  position: relative;
}

.ourTitle h2:after{
  content: '';
  width: 6rem;
  position: absolute;
  height: 0.3rem;
  left: 49%;
  background: #ff5200;
  top: 105%;
  transform: translate(-49%, -105%);
  border-radius: 10rem;
}
.ourTitle p{
  width: 47%;
  font-family: "Work Sans", sans-serif !important;
  margin: auto;
  color: #333333;
  margin-top: 0;
  margin-bottom: 4%;
}


.ImageBox{
  width: 30.26%;
  position: relative;
  margin: 1% 0 2% 2.6%;
  overflow: hidden;
}

.ImageBox img{
  width: 100%;
  

}

.ImageboxContent{
  text-align: left;
color: #fff;
position: absolute;
top: 88.5%;
left: 0%;
width: 100%;
height: 50%;
transform: translate(-0%, -81.5%);
background: linear-gradient(to top, #000, transparent);
transition: all 0.3s;
}
.ImageboxContent a{
  color: #fff;
text-decoration: underline;
text-transform: capitalize;
font-weight: 700;
font-size: 1.4rem;
margin-left: 4%;
font-family: "Work Sans", sans-serif;
transition: all 0.3s;
padding-bottom: 5%;
}

.ImageboxContent h5{
  font-size: 2rem;
line-height: 1.4;
text-transform: uppercase;
font-weight: 500;
margin-left: 4%;
letter-spacing: 0.02em;
transition: all 0.3s;
padding-bottom: 5%;
color: #fff;
}
.ImageboxContent span{
  font-size: 1.5rem;
font-weight: 500;
margin-left: -30%;
text-transform: capitalize;
opacity: 0;
cursor: pointer;
}

.ImageBox:hover .ImageboxContent span{
  opacity: 1;
  margin-left: 4%;
    transition: all 0.3s cubic-bezier(0.29, 1.36, 0.58, 1);
  transition-delay: 0s;
transition-delay: 0.3s;
}

.ImageBox:hover .ImageboxContent{
  height: 60%;
top: 86.6%;
}


/*====================================
  OUR NEWS AREA CSS 
=====================================*/


#Our_News{
  width: 100%;
  height: auto;
  padding: 5% 0;
  background: #fff;
}

.ourNewsTitle{
  text-align: center;
 
}

.ourNewsTitle h2{
  color: #000;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin: 0% 0 2% 0;
  padding-bottom: 1%;
  position: relative;
}

.ourNewsTitle h2:after{
  content: '';
  width: 6rem;
  position: absolute;
  height: 0.3rem;
  left: 49%;
  background: #ff5200;
  top: 105%;
  transform: translate(-49%, -105%);
  border-radius: 10rem;
}

.ourNewsTitle p{
  width: 47%;
  font-family: "Work Sans", sans-serif !important;
  margin: auto;
  color: #333333;
  margin-top: 0;
  margin-bottom: 4%;
}


.ournewsbox{
  width: 32.26%;
  overflow: hidden;
}

.newsImage img{
  width: 100%;
  transition: .3s;
}
.newsImage img:hover{
  transform: scale(1.05);
}

.ournewsbox{
  border: 0.1rem solid #e5e5e5;
border-radius: 0.3rem;
}

.newsFooter{

}
.newsFooter ul{
  list-style: none;
  margin-top: 5%;
}
.newsFooter ul li{
  display: inline-block;
  margin: 0 8%;
  font-size: 1.5rem;
  text-transform: capitalize;
  font-family: "Work Sans", sans-serif;
  position: relative;
  color: #777;
}

.newsFooter ul li:last-child::before {
	content: "";
	width: 2rem;
	height: 0.2rem;
	display: inline-block;
	background: #ff5200;
	border-radius: 10rem;
	position: absolute;
	top: 50%;
	left: -35%;
}

.newsFooter h3{
  text-transform: uppercase;
font-size: 2rem;
color: #333333;
cursor: pointer;
font-weight: 500;
line-height: 1.4;
letter-spacing: 0.02em;
margin: 5% 8%;
transition: all 0.3s;
}
.newsFooter h3:hover{
  color: #fb5200;
}
.newsFooter p{
  color: #727272;
font-size: 1.6rem;
line-height: 1.5;
font-weight: 400;
margin: 5% 8%;
}
.newsFooter span{
  font-size: 1.5rem;
font-weight: 500;
text-transform: capitalize;
color: #ff5200;
font-family: "Work Sans", sans-serif;
margin: 5% 8% 8%;
display: block;
cursor: pointer;
}

.ourNewsImgWrape{
  margin-top: 1%;
}

/*============================
  SUBSCRIBE AREA CSS
==============================*/
#SubscribeArea{
  width: 100%;
  height: auto;
  position: absolute;

  top: -16%;
  left: 0;
  z-index: 2;
}

.sub_bg_box{
  padding-left: 4rem;
  padding-bottom: 2rem;
  border-radius: 0.4rem;
  background: #fb5200;
  width: 100%;
  height: auto;
}

.sub_box{
  width: 32.26%;
  color: #fff;
}
.sub_box h4{
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin: 5% 0;
}
.sub_box p{
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  text-transform: capitalize;
}

.SubInput{
  color: #656565;
font-size: 1.6rem;
font-family: "Work Sans", sans-serif;
line-height: 1.5;
font-weight: 400;
position: relative;
border-radius: 1rem;
}
.SubInput input{
  padding: 1.8rem 6rem 1.8rem 2rem;
  width: 90%;
  border: none;
  outline: none;
  font-size: 1.2rem;
  border-radius: 10rem;
  position: relative;
}
.SubInput button{
  padding: 0 2.8rem;
  height: 5rem;
  padding: 0 3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  background: #000;
  text-transform: capitalize;
  color: #fff;
  min-width: 5rem;
  border: none;
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: "Work Sans", sans-serif;
line-height: 1.5;
}

ul.sub_social_icons{
  list-style-type: none;
margin-top: 10%;
}
ul.sub_social_icons li{
  display: inline-block;
  padding: 0 1%;
}
ul.sub_social_icons li a{
  color: #fff;
  text-decoration: none;
}
ul.sub_social_icons li a i{
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  text-align: center;
  background: transparent;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  padding-top: 25%;
  transition: all 0.3s;
  padding-right: 4%;
}
ul.sub_social_icons li:hover a i{
  background: #fff;
color: #252525;
}







/*============================
  FOOTER AREA CSS
==============================*/

#Main_Footer{
  width: 100%;
  height: auto;
  text-align: left;
  background: #1a1a1a;
  color: #fff;
  padding-top: 15rem;
  position: relative;
  margin-top: 11%;
  position: relative;
  display: table;
}

.footer_box{
  width: 23.8%;
  overflow: hidden;
}

.footer_box h4{
  color: rgba(255, 255, 255, 0.9);
font-size: 2rem;
line-height: 3.1rem;
font-weight: 500;
letter-spacing: 0.02em;
text-transform: uppercase;
margin: 10% 0;
}
.footer_box .f_p{
  margin-bottom: 5%;
  width: 95%;
  color: #ababab;
font-size: 1.5rem;
line-height: 1.5;
text-transform: inherit;
}

ul.footerIcon{
  list-style-type: none;
margin-bottom: 10%;
margin-left: -6%;
}
ul.footerIcon li{
  display: inline-block;
  padding: 0 4%;
}
ul.footerIcon li a{
  color: #fff;
  text-decoration: none;
}
ul.footerIcon li a i{
  color: #ababab;
  font-size: 1.7rem;
  transition: all 0.3s;
}
ul.footerIcon li:hover a i{
  color: #fb5200;
}

.footerHome i{
  width: 13%;
  float: left;
  color: #ff5200;
  font-size: 2rem;
}
.footerCall i{
  width: 13%;
  float: left;
  color: #ff5200;
  font-size: 2rem;
}
.footerAddress i{
  width: 13%;
  float: left;
  color: #ff5200;
  font-size: 2rem;
}

.footerHome p{
  width: 100%;
  margin-left: 13%;
  margin-bottom: 8%;
}
.footerCall p{
  width: 100%;
  margin-left: 13%;
  margin-bottom: 8%;
}
.footerAddress p{
  width: 100%;
  margin-left: 13%;
  margin-bottom: 8%;
}


ul.usefulLinks{
  list-style-type: none;
}
ul.usefulLinks li{
  padding: 3% 0;
  border-bottom: 0.1rem dashed rgba(74, 74, 74, 0.5);
}
ul.usefulLinks li a{
  color: #ababab;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Work Sans", sans-serif;
  transition: all 0.3s;
}
ul.usefulLinks li a i{
  margin-right: 3%;
}
ul.usefulLinks li:hover a{
  color: #fb5200;
}

ul.usefulLinks li:last-child{
  border-bottom: none;
}

.leftPost{
  background: rgba(255, 255, 255, 0.1);
width: 23%;
margin-right: 5%;
border-radius: 0.4rem;
padding: 1% 1% 1% 1%;
text-align: center;
float: left;
}
.leftPost strong{
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  text-align: center;
}
.leftPost .postMonth{
  font-size: 1.4rem;
  margin: 0 auto;
  font-weight: 600
}
.leftPost .postYear{
  font-size: 1.2rem;
  margin: 0 auto;
  font-weight: 600;
}

.rightPost{
  width: 70%;
  float: left;
}
.rightPost h6{
  color: #ababab;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.rightPost h6:hover{
  color: #fb5200;
}

.rightpostlist{
  list-style-type: none;
  margin-top: 5%;
  margin-bottom: 25%;
}
.rightpostlist li{
  display: inline;
  color: #7b7b7b;
  font-size: 1.3rem;
  text-transform: capitalize;
}
.rightpostlist li i{
  margin-right: 2%;
  color: #ababab;
}


/*
  COPY RIGHT AREA
*/

#CopyRightArea{
  width: 100%;
  height: auto;
  background: #1a1a1a;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding: 1% 0;
}

.CopyRight{
  width: 50%;
}

.CopyLeft{
  width: 50%;
}

.CopyLeft span{
  color: #ababab;
  font-size: 1.5rem;
}

.CopyLeft a{
  color: #ff5200;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}
.CopyLeft a:hover{
  text-decoration: underline;
}
.CopyRight ul{
  width: 60%;
  list-style-type: none;
  float: right;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.CopyRight ul li{
  display: inline-block;
}
.CopyRight ul li a{
  color: #ababab;
font-size: 1.5rem;
text-decoration: none;
text-transform: capitalize;
font-family: "Work Sans", sans-serif;
}