/* this coding created by web developer/ Ahmed fawzy mohamed */
/* personal email: ahmedfawzyalhegazy2020@gmail.com */
/* whatsapp: +201094848584 */
/* website: https://orion-comp.com/ */
/* formal email: info@orion-comp.com */
/* linkedin account: https://www.linkedin.com/in/ahmed-fawzy-mohamed-48a771202 */

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --blackdesign: #141414;
  --gold: #b88768;
  --orange: #ffa033;
  --txtcolor: #bbb;
  --main-color-alt: #1787e0;
  --main-transition: 0.25s;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--black);
}
::-webkit-scrollbar-thumb {
  background-color: var(--gold);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--orange);
}
html {
  scroll-behavior: smooth;
}
body {
  /* font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal; */

  font-family: "Lato", sans-serif;
  font-style: normal;
  /* background-color: var(--blackdesign); */
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.josefin-font {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.lato-font {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.goldbtn {
  background-color: var(--gold);
  color: var(--white);
  display: inline-block;
  padding: 6px 20px;
}

.whitetransbtn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
  padding: 7px 20px;
  transition: var(--main-transition);
}

.sidetitle {
}
.sidetitle h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 30px;
}
.sidetitle h6 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 0px;
}

.sidetitlegold {
}
.sidetitlegold h3 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 30px;
}
.sidetitlegold h6 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 0px;
}

.centertitle {
  text-align: center;
  margin-bottom: 30px;
}
.centertitle h3 {
  font-size: 28px;
  color: var(--black);
}
.centertitle h6 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 0px;
}
.centertitle p {
  width: 60%;
  margin: auto;
  font-size: 14px;
}

.lineimg {
  width: 30px;
}

.morebtn {
  display: inline-block;
  padding: 7px 25px;
  background-color: var(--gold);
  color: var(--white);
}

@media (max-width: 576px) {
  .whitetransbtn {
    padding: 7px 7px;
  }
  .centertitle p {
    width: 100%;
    font-size: 13px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* media query  */
@media (max-width: 320px) {
  .container {
    max-width: 300px !important;
  }
}
@media (min-width: 360px) {
  .container {
    max-width: 340px !important;
  }
}
@media (min-width: 410px) {
  .container {
    max-width: 390px !important;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
  }
}
/* End @media */

/* End Global Rules */

/* Start header */
.header {
  background-color: var(--blackdesign);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99999;
}
.header .container {
  padding: 15px 10px;
}
.header .container > .row > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: left;
  align-items: center;
}
.header .container > .row > div:nth-of-type(2) {
  justify-content: center;
}
.header .container > .row > div:last-of-type {
  justify-content: right;
}
.header .linklogo img {
  height: 60px;
}
.header .menubtn {
  border-radius: 5px;
  color: var(--white);
  width: 40px;
  height: 40px;
  font-size: 25px;
  text-align: center;
  line-height: 40px;
  position: absolute;
  right: 20px;
  cursor: pointer;
  display: none;
}
.header ul li {
  display: inline-block;
}
.header ul li a {
  margin-right: 15px;
  padding: 5px 8px;
  color: var(--white);
  font-size: 16px;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.header ul li a:hover {
  color: var(--gold);
}
.header .whitetransbtn {
  background-color: var(--white);
  color: var(--black);
  border-radius: 3px;
}
.header .whitetransbtn:hover {
  background-color: var(--gold);
}
@media (max-width: 769px) {
  .header .container > .row > div {
    justify-content: center;
  }
  .header .container > .row > div:first-of-type {
    justify-content: left;
  }
  .header .linklogo img {
    height: 50px;
  }
  .header ul li {
    display: block;
    text-align: center;
    padding: 7px;
  }
  .header ul li a {
    margin-right: 0px;
  }
  .header .container > .row > div:last-of-type {
    justify-content: center;
    text-align: center;
  }
  .header .menubtn {
    display: block;
  }
  .header ul {
    display: none;
  }
  .header .btnheader {
    display: none;
    border-top: 1px solid #ddd;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .header .linklogo img {
    height: 50px;
  }
  .header ul li a {
    margin-right: 0px;
  }
  .header .container > .row > div {
    padding: 0px;
  }
  .header ul li a {
    margin-left: 5px;
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header ul li a {
    margin-right: 10px;
  }
}
/* End header */

/* Start slideshow */
.slideshow {
  height: calc(100vb - 90px);
  margin-bottom: 120px;
}
.slideshow .upcarousel {
}
.slideshow .carousel-item {
  position: relative;
}
.slideshow .carousel-item > img {
  width: 100%;
}
.slideshow .slidetitle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.slideshow .slidetitle h1 {
  color: var(--white);
}
.slideshow .slidetitle p {
  color: var(--white);
}
.slideshow .slidetitle div {
}
.slideshow .slidetitle a {
}
.slideshow .banarsmall {
  display: none;
}
.slideshow .banarlarge {
}
.slideshow .carousel-control-next,
.slideshow .carousel-control-prev {
  display: flex;
  background-color: var(--gold);
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: var(--main-transition);
}
.slideshow .carousel-control-nexthover,
.slideshow .carousel-control-prev:hover {
  background-color: var(--orange);
}
.slideshow .carousel-control-next {
  right: 100px;
}
.slideshow .carousel-control-prev {
  left: 100px;
}
@media (max-width: 576px) {
  .slideshow .banarsmall {
    display: block;
  }
  .slideshow .banarlarge {
    display: none;
  }
  .slideshow .carousel-control-prev {
    left: 10px;
  }
  .slideshow .carousel-control-next {
    right: 10px;
  }
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem 16px;
  }
  .slideshow .carousel-control-next,
  .slideshow .carousel-control-prev {
    width: 30px;
    height: 30px;
  }
  .slideshow {
    margin-bottom: 0;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .slideshow {
    height: 100vb;
    margin-bottom: 0;
    overflow: hidden;
  }
  .slideshow .banarsmall {
    display: block;
  }
  .slideshow .banarlarge {
    display: none;
  }
  .slideshow .carousel-control-prev {
    left: 30px;
  }
  .slideshow .carousel-control-next {
    right: 30px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End slideshow */

/* Start about */
.about {
}
.about .container {
  padding: 50px 0px;
}
.about .row > div {
}
.about p {
}
.about .row > div > img {
  width: 100%;
}
.about .upsmimg {
}
.about .upsmimg img {
  width: 60%;
  display: block;
  margin-left: auto;
}
@media (max-width: 576px) {
  .about .row > div:first-of-type {
    margin-bottom: 30px;
  }
  .about .upsmimg img {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .about .row > div:first-of-type {
    margin-bottom: 30px;
  }
  .about .upsmimg img {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .about .upsmimg img {
    width: 100%;
    margin-top: 20px;
  }
  .about p {
    font-size: 11px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End about */

/* Start vision */
.vision {
}
.vision .container {
  padding: 20px 0px;
}
.vision .maincont {
  background: url("../img/vision-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: auto;
  position: relative;
  padding: 30px;
}
.vision .maincont > .row {
}
.vision .maincont > .row > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision .maincont ul li {
  display: block;
  width: 100%;
  padding: 20px 25px;
  background-color: var(--white);
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
}
.vision .maincont ul li.selected {
  background-color: var(--gold);
  color: var(--white);
}
.vision .updatachange > div:not(:first-of-type) {
  display: none;
}
.vision .updatachange .row {
}
.vision .updatachange .row > div {
  padding: 0px 25px;
}
.vision .updatachange .row > div:last-of-type {
  background-color: var(--white);
}
.vision .updatachange .row > div > img {
  width: 100%;
}
.vision .updatachange h4 {
  padding: 20px 0px 15px 0px;
  margin-bottom: 0;
}
.vision .updatachange h4 img {
  width: 30px;
  margin-right: 7px;
}
.vision .updatachange p {
  color: #797979;
  line-height: 2;
}
@media (max-width: 576px) {
  .vision .maincont ul li {
    display: inline-block;
    width: 49%;
  }
  .vision .updatachange .row > div {
    padding: 0;
  }
  .vision .maincont ul {
    margin-bottom: 30px;
  }
  .vision .updatachange .row > div:last-of-type {
    padding: 0px 20px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .vision .maincont ul li {
    display: inline-block;
    width: 49%;
  }
  .vision .updatachange .row > div {
    padding: 0;
  }
  .vision .maincont ul {
    margin-bottom: 30px;
  }
  .vision .updatachange .row > div:last-of-type {
    padding: 0px 20px;
  }
  .vision .updatachange p {
    line-height: 1.6;
    font-size: 14px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .vision .maincont ul li {
    display: inline-block;
    width: 49%;
  }
  .vision .updatachange .row > div {
    padding: 0;
  }
  .vision .maincont ul {
    margin-bottom: 30px;
    text-align: center;
  }
  .vision .updatachange .row > div:last-of-type {
    padding: 0px 20px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End vision */

/* Start services */
.services {
  background: url("../img/services-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: auto;
  position: relative;
}
.services .container {
  padding: 50px 0px;
}
.services .sidetitle h6 {
  color: var(--white);
}
.services .sidetitle h3 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.services .row > div {
  padding: 0px;
}
.services .row > div:not(:last-of-type) {
  border-right: 1px solid var(--gold);
}
.services .servbox {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.services .servbox > img {
  width: 100%;
  position: absolute;
  left: 0px;
  top: 105%;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.services .servbox .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
}
.services .servbox:hover img {
  top: 0%;
}
.services .servbox:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.services .servbox span {
  color: var(--gold);
  font-size: 40px;
  display: inline-block;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}
.services .servbox h4 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}
.services .servbox p {
  line-height: 2;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}
.services .servbox:hover span,
.services .servbox:hover h4,
.services .servbox:hover p {
  color: var(--white);
}
.services {
}
@media (max-width: 576px) {
  .services {
    background: url("../img/services-mobile-bg.png");
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
    background-repeat: round !important;
    width: 100% !important;
    height: auto;
    position: relative;
  }
  .services .row {
    width: 100%;
    margin: auto;
  }
  .services .row > div {
    padding: 3px;
    margin-bottom: 3px;
  }
  .services .row > div:not(:last-of-type) {
    border-right: none;
  }
  .services .servbox h4 {
    font-size: 18px;
  }
  .services .servbox p {
    font-size: 12px;
  }
  .services .servbox {
    height: 300px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
  .services .row > div {
    padding: 3px;
    margin-bottom: 3px;
  }
  .services .row > div:not(:last-of-type) {
    border-right: none;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .services .servbox h4 {
    font-size: 18px;
  }
  .services .servbox p {
    font-size: 12px;
    line-height: 1.6;
  }
  .services .servbox {
    height: 280px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End services */

/* Start team */
.team {
  background-color: var(--white);
}
.team .container {
  padding: 50px 0px;
}
.team .teamslider {
}
.team .upcarbox {
  padding-bottom: 80px;
}
.team .slidebox {
  position: relative;
}
.team .slidebox .upimg {
  overflow: hidden;
}
.team .slidebox img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.team .teamdata {
  background-color: #ead7cb;
  text-align: center;
  padding: 10px;
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: -72px;
  transition: all 0.5s ease-in-out;
}
.team .teamdata h4 {
  font-size: 22px;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}
.team .teamdata h5 {
  font-size: 18px;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}
.team .teamdata h6 {
  font-size: 14px;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}
.team .teamsocial {
  display: flex;
  justify-content: center;
}
.team .teamsocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  margin: 0px 5px;
  transition: all 0.5s ease-in-out;
}
.team .slidebox:hover .teamdata {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  left: 0%;
  bottom: 0px;
}
.team .slidebox:hover img {
  transform: scale(1.1);
}
.team .slidebox:hover h4,
.team .slidebox:hover h5,
.team .slidebox:hover h6 {
  color: var(--white);
}
.team .slidebox:hover .teamsocial a {
  background-color: var(--white);
  color: var(--black);
}
.owl-nav,
.owl-dots {
  display: none;
}
/* End team */

/* Start feedback */
.feedback {
  padding: 50px 0px;
  background-color: var(--white);
}
.feedback .container {
  padding: 30px;
  background-color: #f6f6f6;
}
.feedback .feedcarousel {
}
.feedback .carousel-item {
}
.feedback .carousel-item .row {
  width: 100%;
  margin: auto;
}
.feedback .carousel-item .row > div {
  background-color: var(--white);
  padding: 0px;
}
.feedback .carousel-item .row > div:nth-of-type(2) {
  padding: 30px;
}
.feedback .carousel-item img {
  width: 100%;
}
.feedback .carousel-item p {
  margin-bottom: 20px;
}
.feedback .carousel-item h5 {
  font-size: 28px;
  font-weight: bold;
}
.feedback .feedcarousel .feedname {
  position: relative;
  text-align: center;
}
.feedback .feedqoute {
  position: absolute;
  font-size: 100px;
  left: 50%;
  top: -62px;
  transform: translateX(-50%);
  color: rgba(184, 135, 104, 0.25);
}
.feedback .upstars {
  position: relative;
}
.feedback .upstars > span {
  color: #ffa033;
  font-size: 25px;
}
.carousel-indicators {
  bottom: -45px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  background-color: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-control-next,
.carousel-control-prev {
  display: none;
}
@media (max-width: 576px) {
  .feedback .container {
    padding: 50px 10px;
    background-color: #f6f6f6;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
  .feedback .carousel-item p {
    font-size: 11px;
    line-height: 1.6;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End feedback */

/* Start contact */
.contact {
  background-color: var(--gold);
}
.contact .row {
  width: 100%;
  margin: auto;
}
.contact .row > div {
  position: relative;
  padding: 0px;
}
.contact .row > div > img {
  width: 100%;
}
.contact .contact-data {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 70px 30px 30px 100px;
}
.contact .contact-data p {
  color: var(--txtcolor);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #6b6b6b;
}
.contact .contact-data .contactsocial {
  margin-top: 30px;
}
.contact .contact-data .contactsocial > div {
  color: var(--white);
  margin-bottom: 20px;
}
.contact .contact-data .contactsocial > div span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  background-color: var(--white);
  color: var(--gold);
  margin: 0px 5px;
  transition: var(--main-transition);
}
.contact .contact-form {
  padding: 70px 100px 30px 30px;
}
.contact form {
}
.contact form > div {
  margin-bottom: 20px;
}
.contact form label {
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.contact form input[type="tel"],
.contact form input[type="email"],
.contact form textarea {
  border: 1px solid var(--white);
  padding: 7px 10px;
  width: 100%;
  background-color: transparent;
}
.contact form input[type="tel"]::placeholder,
.contact form input[type="email"]::placeholder,
.contact form textarea::placeholder {
  color: var(--white);
  font-size: 14px;
}
.contact form input[type="submit"] {
  background-color: var(--white);
  border: none;
  width: 100%;
  text-align: center;
  padding: 6px;
}
.contact form {
}
.contact form {
}
@media (max-width: 576px) {
  .contact .contact-data {
    padding: 20px;
  }
  .contact .contact-data p {
    color: var(--txtcolor);
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 13px;
  }
  .contact .contact-data .contactsocial {
    margin-top: 10px;
  }
  .contact .contact-data .contactsocial > div {
    color: var(--white);
    margin-bottom: 10px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
  .contact .contact-data {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 20px;
  }
  .contact .contact-data p {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
  .contact .contact-data .contactsocial {
    margin-top: 10px;
  }
  .contact .contact-data .contactsocial > div {
    margin-bottom: 10px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End contact */

/* Start footer */
footer {
  color: var(--white);
  background-color: var(--blackdesign);
}
footer .container {
}
footer .uprow {
  padding: 20px 0px;
  border-bottom: 1px solid #6b6b6b;
}
footer .uprow > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .uprow img {
}
footer .uprow a {
}
footer .uprow a span {
  margin-right: 7px;
  font-size: 18px;
}
footer .downrow {
  padding: 30px 0px;
}
footer .downrow > div {
}
footer .downrow > div > div {
  margin-bottom: 15px;
  color: var(--txtcolor);
}
footer .downrow > div > div span {
  margin-right: 7px;
  color: var(--white);
}
footer .downrow h5 {
  margin-bottom: 15px;
}
footer .downrow .linktxt {
}
footer .downrow .linktxt a {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 14px;
  color: var(--txtcolor);
  transition: var(--main-transition);
}
footer .downrow .linktxt a:hover {
  color: var(--white);
  transform: scale(1.05);
}
footer .downrow .upfootsocial {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .downrow .upfootsocial a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--black);
  margin: 0px 5px;
  transition: var(--main-transition);
}
footer .downrow .upfootsocial a:hover {
  background-color: var(--orange);
}
footer .downrow .upfootsocial span {
}
@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
  footer .downrow .upfootsocial {
    margin-top: 30px;
  }
  footer .downrow > div > div {
    font-size: 14px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End footer */

/* Start blog */
.blog {
}
.blog .container {
  padding: 10px 0px 100px 0px;
}
.blog .container > .row > div {
  margin-bottom: 20px;
}
.blog .blogbox {
  padding: 8px;
  box-shadow: 1px 1px 1px #ddd, -1px -1px 1px #ddd;
}
.blog .blogbox .blogimg {
}
.blog .blogbox .blogimg img {
  width: 100%;
}
.blog .blogbox .blogadmin {
  margin: 10px 0px;
}
.blog .blogbox .blogadmin > div {
  padding: 0px;
}
.blog .blogbox .blogadmin span {
  display: inline-block;
  background-color: var(--gold);
  color: var(--white);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-right: 5px;
  font-size: 14px;
}
.blog .blogbox .blogtitle {
}
.blog .blogbox .blogtitle h4 {
  font-size: 22px;
}
.blog .blogbox .blogtitle p {
  font-size: 14px;
}
@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
  .blog .blogbox .blogadmin > div {
    font-size: 14px;
  }
  .blog .blogbox .blogtitle h4 {
    font-size: 20px;
  }
}
@media (min-width: 770px) and (max-width: 992px) {
  .blog .blogbox .blogadmin > div {
    font-size: 12px;
  }
  .blog .blogbox .blogtitle h4 {
    font-size: 20px;
  }
  .blog .container > .row > div {
    margin-bottom: 10px;
    padding: 0px 5px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End blog */

/* Start desbreadcrumb */
.desbreadcrumb {
}
.desbreadcrumb .container {
  padding-top: 150px;
}
@media (max-width: 576px) {
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End desbreadcrumb */

/* Start introinner */
.introinner {
  background: url("../img/introinner-bg.png");
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  background-size: contain !important;
  background-repeat: round !important;
  width: 100% !important;
  height: 400px;
  position: relative;
}
.Portfoliointro {
  background: url("../img/protfolio-intro-bg.png");
}
.introinner .container {
  height: 100%;
}
.introinner .innercont {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.introinner .innercont h1 {
  text-align: center;
  color: var(--white);
  margin-bottom: 0px;
}
.introinner .innercont p {
  color: var(--white);
}
@media (max-width: 576px) {
  .introinner {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 450px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End introinner */

/* Start portsingle */
.portsingle {
}
.portsingle .container {
  padding: 50px 0px;
}
.portsingle .singtxt {
  margin-bottom: 20px;
}
.portsingle .singtxt p {
  text-align: center;
  width: 65%;
  margin: auto;
}
.portsingle .row > div {
  padding: 0px 5px;
}
.portsingle .upsinimg {
  margin-bottom: 10px;
}
.portsingle .upsinimg img {
  width: 100%;
}
@media (max-width: 576px) {
  .portsingle .singtxt p {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End portsingle */

/* Start portfolio */
.portfolio {
}
.portfolio .container {
  padding: 50px 0px;
}
.portfolio .maincont {
  background-color: #f6f6f6;
  padding: 30px;
}
.portfolio .maincont ul {
  margin-bottom: 30px;
  text-align: center;
}
.portfolio .maincont ul li {
  display: inline-block;
  width: 135px;
  padding: 7px 25px;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--gold);
  cursor: pointer;
}
.portfolio .maincont ul li.selected {
  background-color: var(--gold);
  color: var(--white);
}
.portfolio .maindata {
}
.portfolio .maindata > div:not(:first-of-type) {
  display: none;
}
.portfolio .maindata .row {
}
.portfolio .maindata .row > div {
  margin-bottom: 10px;
  padding: 0px 5px;
}
.portfolio .portfoliospechbox {
}
.portfolio .portfoliospechbox .sidetitlegold h3 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.portfolio .maindata .numofgateg {
  color: var(--gold);
  text-align: center;
}
.portfolio .maindata .numofgateg span {
  font-size: 90px;
  display: block;
  font-weight: bold;
}
.portfolio .maindata .numofgateg strong {
  margin-top: -20px;
  display: block;
  font-size: 20px;
  letter-spacing: 18px;
}
.portfolio .maindata .portfoliobox {
  padding: 10px;
  background-color: var(--white);
}
.portfolio .maindata .portfoliobox h4 {
  font-size: 18px;
  margin-bottom: 0px;
}
.portfolio .maindata .portfoliobox p {
  color: #797979;
  font-size: 13px;
}
.portfolio .maindata .portfoliobox img {
  width: 100%;
}
@media (max-width: 576px) {
  .portfolio .maincont {
    padding: 20px;
  }
  .portfolio .maincont ul li {
    width: 110px;
    padding: 7px;
  }
}
@media (min-width: 577px) and (max-width: 769px) {
}
@media (min-width: 770px) and (max-width: 992px) {
}
@media (min-width: 993px) and (max-width: 1199px) {
}
/* End portfolio */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* Start  */
/* End  */

/* starting button-top */
#button-top {
  background-color: var(--gold);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  border: 1px solid #fff;
  color: var(--main-color);
}

/*  End button-top */

/*@media (max-width: 576px)
@media (min-width: 577px) and (max-width: 769px)
@media (min-width: 770px) and (max-width: 992px)
@media (min-width: 993px) and (max-width: 1199px)*/
