/* 
  Comon Css Star
*/

*,
p {
  direction: rtl;
  padding: 0px;
  margin: 0px;
  outline: 0px;
}

body {
  font-family: 'Almarai',
    sans-serif;
  font-size: 18px;
  font-weight: 400;

}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

.mainButton {
  padding: 20px 34px;
  background: #D2A76B;
  font-weight: 700;
  color: #fff;
  border-radius: 35px;
}

/* Navbar CSS Start Here */

.topbar {
  width: 100%;
  display: flex;
  padding: 20px 0px;
  flex-wrap: wrap;
  align-items: center;
  background: #0E1D3A;
  justify-content: space-between;
}

.toptext {
  text-align: left;
  color: #fff;
}

.contact-info {
  display: flex;
}

.contact-info p {
  padding-left: 40px;
  color: #fff;
  font-size: 14px;
}

.contact-info p i {
  padding-left: 10px;
  font-size: 16px;
}

.navbar {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
}

.navbar .navbar-nav .nav-item {
  padding-right: 60px;
  padding-left: 0px;
}

.navbar .navbar-nav .nav-link {
  padding-right: 0px;
  padding-left: 0px;
  position: relative;
  color: #fff;
  transition: all linear .3s;
}

.navbar-nav .nav-link:hover {
  color: #D2A76B;
}

.navbar .navbar-nav .nav-link::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D2A76B;
  top: 15px;
  right: -30px;
}

.navbar .navbar-nav .nav-item:first-child .nav-link::after {
  display: none;
}

/* Banner CSS Start Here */

#banner {
  background: url('../images/banner_bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 295px;
  padding-bottom: 185px;
}

.banner_containt {
  padding-right: 140px;
}

.banner_containt p {
  font-weight: 700;
  color: #D2A76B;
  position: relative;
  padding-right: 17px;
  margin-bottom: 28px;
}

.banner_containt p::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 45px;
  background: #D2A76B;
  top: -12px;
  right: 0;
}


.banner_containt h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 2.3;
  position: relative;
  margin-bottom: 75px;
}

.banner_containt h1::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 3px;
  background: #fff;
  bottom: -12px;
  right: 0;
}

.banner_containt h1::before {
  position: absolute;
  content: '';
  width: 216px;
  height: 3px;
  background: hsla(0, 0%, 87%, 0.2);
  bottom: -12px;
  right: 112px;
}

.mainButton:hover {
  color: #fff;
}

.banner_img img {
  width: 45%;
  position: absolute;
  top: 250px;
  left: 0px;
}

/* .banner_img img::after {
  position: absolute;
  content: '';
  width: 131px;
  height: 273px;
  background: rgba(209, 167, 107, 0.1);
  top: -10px;
  right: -10px;
  border-top-right-radius: 10px;
} */

/* About CSS Start Here */

#about {
  padding: 100px 0px;
}

.about_head p {
  font-weight: 700;
  color: #D2A76B;
  padding-right: 15px;
}

.about_head h3 {
  font-size: 30px;
  font-weight: 800;
  color: #162542;
  position: relative;
}

.about_head h3::after {
  position: absolute;
  content: '';
  width: 68px;
  height: 8px;
  background: #DFDFDF;
  right: 0px;
  bottom: -32px;
}

.abut_space {
  margin-top: 90px;
}

.about_head h3 span {
  color: #D2A76B;
}

.about_content {
  background: #F3F3F3;
  padding: 20px 15px 40px 50px;
  border-radius: 10px;
  position: relative;
  transition: all linear .3s;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  position: relative;
  z-index: 9;
}

.icon::after {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background: #D2A76B;
  left: 0;
  bottom: -5px;
  border-radius: 5px;
  z-index: -1;
}

.icon .icon_inn {
  position: absolute;
  content: '';
  width: 100%;
  background: #fff;
  height: 100%;
  border-radius: 5px;
  transition: all linear .3s;
}


.icon_inn i {
  position: absolute;
  font-size: 30px;
  color: #D2A76B;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_content .sub_heading {
  font-weight: 700;
  color: #162542;
  padding: 18px 0px;
  position: relative;
}

.about_content .sub_heading::after {
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  background: #162542;
  right: 0px;
  bottom: 0px;
}

.about_content .ab_summary {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  padding-top: 15px;
  line-height: 1.5;
}

.hoverIcon {
  position: absolute;
  font-size: 80px;
  top: 20px;
  left: 20px;
  color: #ffffff84;
  opacity: 0;
  transition: all linear .3s;
}


.about_content:hover .hoverIcon {
  opacity: .2;
}

.about_content:hover {
  background: #162542;
}

.about_content:hover .icon .icon_inn {
  background: hsla(0, 0%, 100%, 0.1);
}

.about_content:hover .icon::after {
  opacity: 0;
}

.about_content:hover .icon_inn i {
  color: #fff;
}

.about_content:hover .sub_heading {
  color: #fff;
}

.about_content:hover .sub_heading::after {
  background: #fff;
}

.about_content:hover .ab_summary {
  color: #fff;
}

/* Feature CSS Start Here */

#feature {
  margin-bottom: 100px;
  padding: 0px 50px;
}

.feature_bg {
  background: url('../images/feature_bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0px;
  border-radius: 50px;
}

.section_head {
  margin-bottom: 47px;
}

.section_head p {
  font-weight: 700;
  color: #D2A76B;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 33px;
  display: inline-block;
  position: relative;
}

.section_head p::after {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  background: #D2A76B;
  top: 0px;
  left: 0px;
}

.section_head p::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  background: #D2A76B;
  top: 0px;
  right: 0px;
}

.section_head h3 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  padding-top: 6px;
}

.feature_content {
  padding: 30px 20px 20px 0px;
  border: 2px dashed #D2A76B;
  border-radius: 25px;
  position: relative;
  margin-bottom: 28px;
}

.feature_content .sl_number {
  position: absolute;
  top: 0px;
  left: 13px;
  font-size: 53px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.feature_content h3 {
  font-weight: 700;
  color: #fff;
  padding: 17px 0px;
  position: relative;
}

.feature_content h3::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 2px;
  background: #fff;
  right: 0px;
  bottom: 0px;

}

.feature_content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #DFDFDF;
}

/* Contact Part CSS Start Here */

#contact {
  background: url('../images/contact_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact_container {
  background: #162542;
  margin: 100px 0px;
  padding: 100px 40px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}

.overly_img {
  position: absolute;
  top: 20px;
  right: 0px;
}



.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  padding-right: 55px;
  border-radius: 10px;
  background: #1F2C47;
  border: none;
}

.input-group-text {
  background: transparent;
  border: none;
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 9999;
  font-size: 30px;
  color: #808080;
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  background: #1F2C47;
  border: none;
  border-radius: 10px;
}

textarea.form-control {
  background: #1F2C47;
  border: none;
  border-radius: 10px;
  color: #808080;
}

.contact_form .mainButton {
  border: none;
  border-radius: 30px;
  padding: 14px 50px;
}

/* Brand CSS Start Here */

#brand {
  background: #F9F9F9;
  padding: 55px 0px;
}

/* Footer CSS Start Here */

#footer {
  padding-top: 105px;
  padding-bottom: 25px;
  background: url('../images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_content h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer_content p {
  color: #DFDFDF;
  font-size: 14px;
  line-height: 1.8;
}

.footer_text p {
  color: #DFDFDF;
  font-size: 14px;
  line-height: 1.8;
}

.social_link ul {
  display: flex;
}

.social_link ul li {
  padding-left: 50px;
  position: relative;
}

.social_link ul li::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 2px;
  background: #D2A76B;
  left: 25px;
  top: 0px;
}

.social_link ul li a i {
  font-size: 20px;
  color: #fff;
}

.social_link ul li:hover a i {
  color: #D2A76B;
}

.last_one::after {
  display: none;
}

.footer_bottom {
  padding-top: 30px;
  position: relative;
}

.copyright_text p {
  color: #fff;
}

.footer_bottom::after {
  position: absolute;
  content: '';
  background: #808080;
  width: 100%;
  height: 2px;
  left: 0px;
  top: 16px;
}

.copyright_text p {
  color: #808080;
}

.copyright_text span {
  color: #D2A76B;
}



/* Navbar CSS Start Here */
/* Navbar CSS Start Here */
/* Navbar CSS Start Here */