@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root
{
    --title-font:'Cormorant Garamond', serif;
    --body-fonts:'Poppins', sans-serif;
    --black-color:#000000;
    --white-color:#ffffff;
    --gold-color:#cc9b77;
    --gray-color:#171717;
    --space-10:100px;
    --space-8:80px;
    --space-5:50px;
    --space-3:30px;

}
html
{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body
{
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: var(--body-fonts);
    color: var(--white-color);
    background: var(--black-color);
}
a
{
  text-decoration: none;
  color: var(--white-color);
}
a:hover
{
  color: var(--gold-color);
}
ul
{
  list-style: none;
  margin: 0px;
  padding: 0;
}
h1, h2, h3, h4, h5, h6
{
  font-family: var(--title-font);
}
.champ-color
{
    color: var(--gold-color);
}
.m-b-100
{
    margin-bottom: 100px;
}
.m-b-5
{
    margin-bottom: 50px;
}
.T-B
{
    padding-top: 50px;
}
.bt-brd-w
{
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 6px 15px;
    display: inline-block;
    text-transform: uppercase;
}
.bt-brd-w:hover
{
    color: var(--white-color);
    /*background: var(--black-color);
    border: 1px solid var(--white-color);*/
}
.bt-brd-g
{
    color: var(--gold-color);
    border: 1px solid var(--gold-color);
    padding: 6px 15px;
    display: inline-block;
    text-transform: uppercase;
}
.abstract-bg
{
    content: "";
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 700px;
    /* height: 100vh;
    background-attachment: initial;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    transition: all 0.2s linear; */
}
/*** Header ***/
header
{
	padding: 10px 20px;
    width: 100%;
    transition: all 1s;
    position: absolute;
    z-index: 2;
}
header img
{
    transition: all 1s;
}
header .show-not-sticky img
{
    width: 90px;
    transition: all 1s;
}
header .show-is-sticky img
{
    width: 90px;
    transition: all 1s;
}
/*** Sticky Menu ***/
/* ==================================================
  Sticky
  ================================================== */
  .jumbotron {
    margin: 0 0 1px 0px;
    padding: 0px;
}
.sticky .show-is-sticky,
.sticky .show-not-sticky {
     /* -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;  */
    opacity: 0;
    visibility: hidden;
}
/* .sticky
{
    transition: all 1s;
} */
.sticky .show-not-sticky {
    opacity: 1;
    visibility: visible;
}
.sticky.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
	background:var(--black-color);
	padding: 10px 20px;
}
.sticky .show-is-sticky {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.sticky.is-sticky .show-is-sticky {
    opacity: 1;
    visibility: visible;
    display: block;
}
.sticky.is-sticky .show-not-sticky {
    opacity: 0;
    visibility: hidden;
    display: none;
}
/*** menu color ***/
/* .sticky.is-sticky .burger span,
.sticky.is-sticky .burger span::before,
.sticky.is-sticky .burger span::after
{
	background:var(--gold-color);
}
.sticky.is-sticky .burger.clicked span,
.sticky.is-sticky .burger.clicked span::before,
.sticky.is-sticky .burger.clicked span::after
{
	background:var(--gold-color);
} */
.sticky.is-sticky .burger.clicked span {
    background-color: transparent;
}
.sec-title
{
 color: var(--gold-color);
 font-size: 3.5rem;
 text-transform: uppercase;
}
.sec-title span
{
    color: var(--white-color);
}
.main-wrapper
{
    position: relative;
    /* padding-top: 150px; */
    background: var(--black-color);
    margin-bottom: 300px;
}
/*** fixes social***/
.social-fix {
    background:transparent;
    position: fixed;
    top: 45%;
    right: 0;
    z-index: 2;
  }

  .social-fix a {
    display: block;
    border: none;
    color:var(--gold-color);
    text-align: center;
    padding: 13px;
  }

  .social-fix a:hover {
    background-color: var(--black-color);
  }

  .social-fix i {
    font-size: 22px;
    color: var(--gold-color);
    margin: 0px;
  }
  .social-fix a:hover i {
    color: var(--gold-color);
  }

/*** about Home ***/
.about-h
{
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding:300px 0 50px;
    /* overflow: hidden; */
}
.about-slogn
{
    position: absolute;
    left: 200px;
    top: 240px;
    z-index: 1;
    font-family: var(--title-font);
    font-size: 3rem;
    line-height: 2.5rem;
}
.about-widget
{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    position: relative;
}
.about-txt
{
    width: 60%;
    background: var(--gold-color);
    padding: 50px 70px;
    position: absolute;
    bottom: -100px;
    right: 0;
    z-index: 1;
}
.about-tit
{
    /*display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    row-gap: 25px;
     border-bottom: 1px solid var(--white-color); 
    padding-bottom:20px;*/
    margin-bottom: 20px;
}
.about-tit h3
{
    text-transform: uppercase;
    font-weight: bold;
}
/*** parallex ***/
.pro-logos
{
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    column-gap: 50px;
    z-index: 1;
    position: relative;
    padding: 0 10px;
}
.pro-h-logo img
{
    width: 120px;
}
.parallax,.parallax-sec {
    position: relative;
    min-height: 700px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax-sec
{
    min-height: 600px;
}
.parallex-leed
{
    background-size: inherit !important;
    background-size: 50% 30%;
}
.parallex-leed::before
{
    background: rgba(0,0,0,0) !important;
}
.parallax::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(to top, rgba(0,0,0,1) 11%, rgba(0,0,0,0) 55%);
}
.parallax::after
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 11%, rgba(0,0,0,0) 55%);
}
.parallax-sec::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,0.7);
}
.relative
{
    position: relative;
}
.sec-abo-1
{
    padding-top: 200px;
    padding-bottom: 50px;
}
.sec-abo-1 h4
{
    color: var(--gold-color);
}
.sec-abo-1 .bt-brd-w:hover
{
    color: var(--white-color);
    background: var(--gold-color);
    border: 1px solid var(--gold-color);
}
.sec-abo-1 p
{
    margin: 25px 0px;
}
.about-column
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 150px;
}
.about-column-inner
{
    width: calc(60% - 100px);
    padding: 50px;
    background: rgba(0,0,0,0.4);
    align-self: center;
}
.about-column-inner h2
{
    text-transform: uppercase;
    margin-bottom: 25px;
}
.about-sect:nth-child(even) .about-column
{
    justify-content: flex-end;
}
.about-board
{
    padding-top: 150px;
    text-align: center;
}
.about-board h2
{
    text-transform: uppercase;
    margin-bottom: 25px;
}
.black-bg
{
    background: var(--black-color);
}
.partners
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
    padding-bottom: 50px;
}
.part-logo img
{
    display: block;
    max-width: 100%;
    width: 120px;
}
/*** home projects ***/
.projects-h
{
    background: url(../imgs/circle-shape.png) no-repeat;
    background-position: right 2%;
    background-size: 30%;
}
.projects-holder
{
    position: relative;
    /* z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: 300ms all ease; */
    margin-bottom: 100px;
}
.projects-holder .slick-list
{
     padding: 50px 0px !important;
    margin: 0 50px !important;
}
.projects-holder .slick-slide {
    z-index: -1;
    height: auto;
    transform: scale(.9);
    transition: all 0.4s ease-in-out;
  }
  .projects-holder .slick-slide.slick-center {
    z-index: 1;
    transform: scale(1.2);
    transition: all 0.4s ease-in-out;
  }
.holder-item
{
    display: flex;
    position: relative;
    overflow: hidden;
}
.holder-item.slick-active:first-child
{
    z-index: 10;
    margin-right: -50px;
    width: 28%;
}
.holder-img
{
    position: relative;
    background: var(--black-color);
}
.holder-img img
{
    transform: scale(1);
    opacity: .8;
    transition: all 0.3s ease-in-out;
}
.projects-holder .slick-center .holder-img img
{
    opacity: 1;
}
.holder-item:hover .holder-img img
{
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.text-btn
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 0;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 5%;
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 6px 15px;
    background: rgba(0,0,0,0.3);
}
.text-btn span
{
    font-size: 1rem;
    border: 1px solid var(--white-color);
    padding: 4px;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-left: 15px;
    flex-basis: 50px;
}
/* .holder-item:hover span
{
    border: 1px solid var(--gold-color);
} */
.text-btn div:first-child
{
    flex-basis: 225px;
}
.holder-item:hover .text-btn
{
  color: var(--white-color);
}



/*** Inners ***/
.sec-widget
{
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-top: 150px;
    padding-bottom: 30px;
    margin-bottom: 50px;
}
.sec-widget span
{
    color: var(--white-color);
}
.news-list
{
    margin-bottom: 50px;
}
.news-widget
{
    padding: 0px 50px;
}
.news-brief
{
    margin: 25px 0 50px;
}
.news-brief span
{
    color: var(--gold-color);
    margin-bottom: 15px;
    display: block;
}
.news-brief a
{
    color: var(--gold-color);
}
.news-brief a i
{
    margin-left: 6px;
}
/*** Pagination ***/
.pagination
{
    margin:15px auto 50px;
    padding-bottom: 50px;
}
.page-item .page-link {
    border-radius: 0;
    margin: 0px 8px;
    background-color:transparent;
    border-color:var(--gold-color);
    color: var(--white-color);
    width: 35px;
    height: 35px;
    line-height:35px;
    padding:0px;
    text-align: center;
}

.page-item .page-link:hover,
.page-item.active span {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--white-color);
}

.page-item.active span {
    line-height: 35px;
    text-align:center;
    display: block;
    position: relative;
    width: 35px;
    height: 35px;
    color: var(--white-color)r;
    margin: 0px 8px;
}

.page-item.active .page-link {
    z-index: 1;
    color:var(--white-color);
    background-color: var(--white-color);
    border-color: var(--white-color);
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item:not(:first-child) .page-link {
    margin-left: inherit;
}
.news-inner
{
    display: flex;
    justify-content: end;
    text-align: right;
    padding-top: 150px;
}
.news-inner .news-brief
{
    width: 30%;
}
.news-colum
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 40px;
    margin-bottom: 40px;
    /* overflow: hidden; */
}
.news-colum-txt
{
    flex:1;
}
.news-colum-img
{
    flex:1;
}
.leed-logo
{
    margin-bottom: 35px;
}
.leed-logo img
{
    width: 140px;
}
.value-widget
{
    padding: 80px 0 40px;
}
.value-widget h2, h5
{
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}
.value-col
{
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    flex-direction: row;
    margin-bottom: 25px;
}
.value-col p
{
    text-align: justify;
    margin-bottom: 15px;
}
.value-col span
{
    color: var(--gold-color);
}
.page-tit
{
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    flex-direction: column;
}
.page-tit h2
{
    font-size: 3.5rem;
    text-transform: uppercase;
}
.page-tit a {
    color: var(--gold-color);
}
.page-tit a i {
    margin-left: 6px;
}
/*** contact us ***/
.contact-widget
{
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    padding: 100px 0;
    justify-content: space-between;
}
.con-info h4
{
    color: var(--gold-color);
    text-transform: uppercase;
    margin-bottom: 25px;
}
.add-info
{
    padding-top: 50px;
}
.add-info div
{
    margin-bottom: 35px;
}
.add-info span
{
    display: inline-block;
    font-size: 1.5rem;
    color: var(--gold-color);
    width: 60px;
    vertical-align: top;
}
.add-info p
{
    display: inline-block;
}
.con-sm
{
    border-top: 1px solid #ffffff;
    padding-top: 40px;
    margin-top: 40px;
}
.con-sm a
{
    font-size: 1.8rem;
    margin-right: 20px;
}
.con-form
{
    width: 40%;
}
.form-row
{
    margin-bottom: 25px;
}
.con-form label
{
    display: block;
    margin-bottom: 15px;
}
.con-form span
{
    color: var(--gold-color);
}
.con-form input
{
    display: block;
}
.form-control
{
    background: rgba(255,255,255,0.12);
    border: none;
    width: 100%;
    color: var(--white-color);
}
.submit-bt
{
    color: var(--white-color);
    border: 1px solid var(--gold-color);
    padding: 10px 20px;
    margin-top: 15px;
    display: inline-block;
}
.submit-bt:hover
{
    color: var(--white-color);
    background: var(--gold-color);
}
/* .map-con-widget
{
    display: flex;
    padding-bottom: 50px;
    column-gap: 25px;
    align-items: center;
} */
.map-con-widget
{
    /* display: grid;
    grid-template-columns: 3fr auto;
    column-gap: 50px; 
    align-items: center;*/
    padding-bottom: 50px;
}
.video-bg
{
    background: #121113;
}
.map-widget
{
    display: flex;
    align-items: center;
    height: 100%;
}
video 
{
    object-fit: cover;
    width: 100vw;
    height: 100vh;
}
.gold-cont
{
    background: var(--gold-color);
    color: var(--white-color);
    padding: 50px 60px;
}
.gold-cont a:hover
{
    color: var(--black-color);
}
.gold-cont a i
{
    margin-left: 10px;
}
.projects-logo
{
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.projects-logo .pro-logos
{
    align-items: flex-start;
    align-content: flex-start;
    min-height: inherit;
}
.all-projects
{
    /* background: url('../imgs/circle-shape.png') no-repeat;
    background-position: right 2%;
    background-size: 30%; */
    position: relative;
}
.pro-widget
{
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 150px;
    padding-top: 50px;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.pro-brief
{
    background: var(--gold-color);
    padding: 50px;
    width:calc(50% - 100px);
    position: absolute;
    right: 0;
    bottom: 50px;
}
.about-pro h6
{
    color: var(--gold-color);
    text-transform: uppercase;
}
.about-pro p
{
    margin-bottom: 35px;
}
.about-pro a
{
    margin-right: 15px;
}
.about-pro-widget
{
    padding: 60px 0;
}
.pro-widget-logo
{
    text-align: center;
}
.pro-widget-logo img
{
    margin-bottom: 25px;
}
.brd-title
{
    margin-bottom: 50px;
    position: relative;
}
.brd-title::before
{
    content: '';
    position: absolute;
    display: block;
    background: var(--gold-color);
    width: 100px;
    height: 2px;
    left: 0;
    top: 50%;
}
.brd-title h3
{
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 120px;
    font-size: 2rem;
}
.widget-brd
{
    /* border-bottom: 1px solid rgba(255,255,255,0.5); */
    padding: 0px;
}
.pro-amenities
{
    margin-bottom: 50px;
}
.amenities-grid
{
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 50px;
}
.amenities-item
{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    min-height: 40px;
}
.amenities-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.units-btns
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 25px;
    row-gap: 35px;
    padding: 0px 100px;
}
.units-btns a
{
    min-width: 140px;
    text-align: center;
    padding: 10px 15px;
}
.units-btns a:hover
{
    color: var(--gold-color);
    border:1px solid var(--gold-color);
}
.pro-gallery
{
    text-align: center;
    padding: 60px 0px;
}
.pro-gallery h3
{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
}
.sec-gal
{
    margin-bottom: 50px;
}
.sec-gal .slick-slide
{
    margin: 0 30px;
    opacity: .5;
}
.sec-gal .slick-active
{
    opacity: 1;
}
/*** arrows ***/
.sec-gal .slick-arrow {
    margin: 0 auto;
    cursor: pointer;
    position: absolute;
    /* right: 46%; */
    top: 50%;
    width: 53px;
    height: 53px;
    z-index: 1;
    text-align: center;
    background: url(../imgs/r-arrow.png) no-repeat;
    transform: translate(0, 0);
    /* background: var(--gold-color); */
  }
  .sec-gal .slick-prev
  {
    transform: translatex(0px) rotate(180deg);
  }
  .sec-gal .slick-next
  {
    right: 0;
  }
  .sec-gal .slick-prev:before,.sec-gal .slick-next:before {
   content: '';
}
.pop-gal .slick-arrow,
.projects-holder .slick-arrow{
    margin: 0 auto;
    cursor: pointer;
    position: absolute;
    width: 53px;
    top: 45%;
    right:0;
    height: 53px;
    z-index: 1;
    text-align: center;
    background: url(../imgs/r-arrow.png) no-repeat;
    transform: translate(0, 0);
  }
  .pop-gal .slick-prev,
  .projects-holder .slick-prev
  {
    transform: rotate(180deg);
    left:0px;
    right: inherit;
  }

/*** Model ***/
.modal-content
{
    position: relative;
}
.modal-header
{
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    z-index: 1;
}
.modal-body
{
    display: flex;
    flex-direction: row;
    padding: 0;
}
.model-left
{
    background: var(--gold-color);
    width:calc(33% - 20px);
    padding: 50px 10px 20px;
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-content: space-between;
}
.plan-txt
{
    width: 100%;
}
.plan-txt h3
{
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.plan-item
{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.plan-item p
{
    margin: 0;
    text-transform: uppercase;
}
.plan-item span
{
    border-left: 1px solid rgba(255,255,255,0.5);
    padding-left: 10px;
    min-width: 66px;
}
.model-right
{
    width: 66%;
    margin: 0 auto;
    padding: 50px 0 0px;
}
.pop-gal {
    display:block;
    margin:0 auto;
    position: relative;
  }
.slider-nav div div
{
    margin: 9px;
}
.slider-nav img
{
    border: 1px solid var(--gold-color);
}
body:not(.no-js) .image-wrap {
  transition: 1s ease-out;
  transition-delay: 0.2s;
  position: relative;
  width: auto;
  /* height: 80vh; */
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  visibility: hidden;
}

body:not(.no-js) .image-wrap img {
  transform: scale(1.3);
  transition: 2s ease-out;
}

body:not(.no-js) .animating .image-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  visibility: visible;
  transform: skewY(0);
}

body:not(.no-js) .animating img {
  transform: scale(1);
  transition: 4s ease-out;
}

body:not(.no-js) .fadeup {
  opacity: 0;
  transition: 0.4s ease-out;
  transform: translateY(40px);
}

body:not(.no-js) .fading-up {
  opacity: 1;
  transition: 1s ease-out;
  transform: translateY(0px);
  transition-delay: 0.7s;
}
/** animation **/
.flipchar {
    animation: mirrorflip 6s linear infinite;
  }
  @keyframes mirrorflip {
	0% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		
	}
	50% {
		transform: scale(-1, 1);
		-webkit-transform: scale(-1, 1);
		-moz-transform: scale(-1, 1);
		-o-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
	}
	100% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
	}
}
.rotate {
    animation: flip-with-rotate 4s infinite linear;
    transition: all;
  }
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  @keyframes flip-with-rotate {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    50% {
        transform: perspective(400px) rotateY(90);
    }

    100% {
        transform: perspective(400px) rotateY(180deg);
    }
}
/*** Footer ***/
footer
{
    position: fixed;
    width: 100%;
    height: 300px;
    /* border-top: 1px solid var(--gold-color); */
    background:var(--gray-color);
    margin-top: 50px;
    padding: 50px 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
/* footer
{
    border-top: 1px solid var(--gold-color);
    background: var(--black-color);
    padding: 50px 0 30px;
} */
.footer-links
{
    vertical-align: top;
}
.footer-links h4
{
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 1.3rem;
    /* color: rgba(255, 255, 255, 0.7); */
    color: var(--gold-color);
    min-height: 25px;
}
.footer-links ul li
{
    margin-bottom:10px;
}
.footer-links ul a
{
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links ul a:hover
{
    color:var(--gold-color);
}
.footer-links i
{
    font-size: 6px;
    color: var(--gold-color);
    margin-right: 10px;
}
.fo-call
{
    font-size: 1.5rem;
    font-weight: bold;
}
.fo-call a
{
    color: rgba(255, 255, 255, 0.7);
}
.fo-call i
{
    color: var(--gold-color);
    transform: rotate(100deg);
    margin-right: 10px;
}
.fo-sm
{
    margin: 80px 0 0;
    display: none;
}
.fo-sm a
{
    display: inline-block;
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-right: 25px;
}
.fo-sm a:hover
{
    color: var(--white-color);
}
.project-img
{
    width: 80%;
}
.shape-circle
{
    position: absolute;
    right: 0;
    top:2%;
    overflow: hidden;
}
.shape-circle img{
    /* width: 300px; */
    animation: rotation 10s infinite linear;
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }