@import url('https://fonts.cdnfonts.com/css/maharlika');

@font-face {
  font-family: myFirstFont;
  src: url(../fonts/Maharlika-Regular.ttf);
}


*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-warm: #fff6ee;
  --color-light: #f5f5fa;
  --color-primary: #216974;
  --color-primary-hard: #0a4049;
  --color-secondary: #e29453;
  --color-light-blue: #e1fbff;
  --color-warm-hard: #fcecde;
  --font-primary: "Poppins", sans-serif;
  --font-secondary:"Maharlika";
                                                
}
html {
  font-family: var(--font-primary);
}

body {
  margin: 0;
  font-size: 18px;
  --radius-150: 150px;
  --container-width: 1500px;
  /* --container-width: 1300px; */
  overflow-x: hidden;
}

html{
  scroll-behavior: smooth;
}

.style-font{
  font-family: myFirstFont;
}

.py-60{
  padding-top:60px;
  padding-bottom: 60px;
}

.pt-60{
  padding-top:60px;
}

.pb-60{
  padding-bottom:60px;
}

.mt-60{
  margin-top:60px;
}

.mb-60{
  margin-bottom:60px;
}

.my-60{
  margin-top:60px;
  margin-bottom: 60px;
}

a {
  color: inherit;
  text-decoration: none;
  -moz-transition: all var(--transition-time) ease;
  -o-transition: all var(--transition-time) ease;
  -webkit-transition: all var(--transition-time) ease;
  -ms-transition: all var(--transition-time) ease;
  transition: all var(--transition-time) ease;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 15px;
  line-height: 27px;
  font-weight: 300;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}
button,
[role="button"] {
  cursor: pointer;
}
/* span {
  display: inline-block;
} */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.ml-auto {
  margin-left: auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-width);
}

.main {
  min-height: 60vh;
}

/* Genarel style end */

.grow-business {
  padding: 0 0 60px 0;
}

.grow-business-content {
  padding: 70px 20px 60px 20px;
  color: #ffffff;
  background: var(--color-primary);
  text-align: center;
  border-radius: 45px;
  position: relative;
}

.grow-business-content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5.5%;
  width: 288px;
  height: 311px;
  background: url(../images/dim-logo.png) no-repeat;
  background-size: cover;
  transform: scale(0.9);
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.grow-business-content h2 {
  font-size: 55px;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.grow-business-content .site-button {
  margin-top: 25px;
}

.social {
  display: flex;
  flex-wrap: wrap;
}

.social li:not(:first-child) {
  margin-left: 11px;
}

.social a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: var(--color-secondary);
  border-radius: 50%;
}

.client-said {
  margin: 100px 0;
}

.client-said-container {
  max-width: 1200px;
}

.client-said-title {
  text-align: center;
  margin-bottom: 58px;
}

.client-said-title h2 {
  font-size: 50px;
  font-weight: 200;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.client-said-title h2 :last-child {
  color: var(--color-secondary);
}

.client-said-title p {
  color: var(--color-primary);
  font-weight: 300;
}

.client-said-title :last-child {
  margin: 0;
}

.client-said-container .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: var(--color-secondary);
  transition: all 1s ease-in-out;
  border-radius: 10px !important;
  height: 412px;
}

.client-said-container .owl-item:not(.center) {
  border-radius: 10px !important;
  background: var(--color-warm);
}

.client-said-container .center .client-said-pic-dis,
.client-said-container .center .client-said-pic-title {
  color: #ffffff;
}

.client-said-container .center .client-said-pic-dis {
  display: block;
}

.client_said_carousel .owl-item::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 21px;
  height: 21px;
}

.client_said_carousel .center::after {
  left: 10px;
  /*background: url(../images/white-top-arrow.png);*/
}

.client_said_carousel .owl-item:not(.center)::after {
  right: 10px;
  /*background: url(../images/yellow-top-arrow.png);*/
}

.client-said-pic {
  margin: 0 auto 15px auto;
  text-align: center;
  width: 87px;
  height: 87px;
  border: 3px solid #ffffff;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
}

.client-said-container .owl-item:not(.center) .client-said-pic {
  width: 160px;
  height: 160px;
  border: 9px solid #ffffff;
}

.client-said-pic img {
  margin: auto;
}

.client-said-pic-title {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--color-secondary);
}

.client-said-pic-dis {
  display: none;
}

.owl-nav {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav :last-child {
  margin-left: 30px;
}

.owl-next,
.owl-prev {
  width: 65px;
  height: 65px;
  background-size: cover !important;
}

.owl-next {
  background-image: url(../images/owl-arw-next.png) !important;
}

.owl-prev {
  background-image: url(../images/owl-arw-prev.png) !important;
}

/* ------------------------------------------ */

.counter-block {
  margin-top: 70px;
}

.counter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px;
}

.counter-item {
  display: flex;
  align-items: center;
  padding: 60px;
  justify-content: center;
  color: #ffffff;
}

.counter-item-inside {
  /* width:430px; */
  padding-left: 140px;
}

.counter-item:first-child .counter-item-inside {
  background: url(../images/hand.png) no-repeat;
}

.counter-item:last-child .counter-item-inside {
  background: url(../images/calander.png) no-repeat;
}

.counter-item-title {
  display: block;
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1;
}

.counter-text {
  font-size: 62px;
  line-height: 1;
}

.counter-item:first-child {
  color: var(--color-warm);
  background: var(--color-secondary);
  border-radius: var(--radius-150) 0 var(--radius-150) 0;
}

.counter-item:last-child {
  color: var(--color-light-blue);
  background: var(--color-primary);
  border-radius: 0 var(--radius-150) 0 var(--radius-150);
}

/* ------------------------------------------ */

.footer {
  padding: 75px 0 33px 0;
  background: #216974;
}

.footer-container {
  max-width: 1400px;
}

.footer_top {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  align-items: flex-start;
}



.footer_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e29453;
  display: block;
}

.footer_list li:not(:first-child) {
  margin-top: 12px;
}

.footer_list a {
  display: block;
  color: #e29453;
}

.footer_list a:hover {
  color: #e29453
}

.footer_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap:15px;
  justify-content: space-between;
  margin-top: 30px;
}

.footer_bottom p {
  margin: 0;
  line-height: 1;
  color:#e29453;
}
.card-list-image img {
   border-radius: 0 var(--radius-150);
}
/* ----------------------------------------------- */

.firstblock-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 40px;
  min-height: 800px;
  justify-content: space-between;
}

.firstblock-left {
  width: 50%;
  padding-right: 32px;
  margin-top: -100px;
}

.firstblock-left .title {
  color: #0a4049;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.firstblock-left h1 {
  font-size: 58px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.3;
  color: var(--color-primary);
}

.firstblock-left h1 :only-child {
  display: contents;
  color: var(--color-secondary);
}

.firstblock-buttons {
  display: flex;
  align-items: center;
}

.firstblock-buttons :not(img):last-child {
  margin-left: 28px;
}

.firstblock-right {
  width: 45%;
  position: relative;
}

.firstblock-right:hover .firstblock-box1::after {
  transform: scale(0.9);
}

.firstblock-box1::after {
  background: var(--color-primary);
}

.firstblock-box2::after {
  background: var(--color-warm);
}

.firstblock-box1::after,
.firstblock-box2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: red; */
  transition: all 0.35s ease-in-out;
  z-index: -1;
}

.firstblock-box2,
.firstblock-box1::after {
  border-radius: var(--radius-150) 0 var(--radius-150) 0;
}

.firstblock-box1,
.firstblock-box2 {
  padding: 90px 50px;
  width: 488px;
  margin-left: auto;
  float: right;
  height: 535px;
  /* transition: padding .35s ease-in-out; */
  overflow: hidden;
  z-index: 0;
}

.firstblock-box2:hover .firstblock-box1 {
  transform: scale(0.8);
}

.firstblock-box1 {
  color: #ffffff;
  transform: translate(-140px, -70px);
  position: relative;
  z-index: 1;
}

.firstblock-box2 {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-warm);
  transition: height 0.35s ease-in-out, width 0.35s ease-in-out;
}

.firstblock-right:hover .firstblock-box2 {
  z-index: 9 !important;
  transition: 0.35s ease-in-out;
}

.firstblock-box1 img {
  margin-bottom: 15px;
}

.upleft-arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  transition: transform 0.35s ease-in-out;
}

.firstblock-right:hover .firstblock-box1 .upleft-arrow {
  transform: rotate(90deg);
  top: 40px;
  right: 40px;
}

.firstblock-right:hover .upleft-arrow {
  transform: rotate(-180deg);
}

.firstblock-box2:hover {
  height: calc(100% + 40px);
  width: calc(488px + 40px);
}

/* ----------------------------------------------- */

.video-block {
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}

.video-block .icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 147px;
  height: 147px;
  background: rgba(255, 255, 255, 0.17);
  cursor: pointer;
  /* border: 3px solid #ffffff;
  border-radius: 50%; */
  z-index: 1;
}

/* ----------------------------------------------- */

.commited-image-inside {
  --space:70px;
  position: relative;
  z-index: 0;
  padding:var(--space);
  height: fit-content;
}

/* .set_height{
  height: 900px;
  align-items: center;
} */

/* .set_height .commited-image-inside {
  margin-top:150px;
} */

/* .commited-image-inside:hover .shape-top-left {
  left: -70px;
  top: -40px;
}

.commited-image-inside:hover .shape-bottom-left {
  bottom: -70px;
}

.commited-image-inside:hover .shape-bottom-right {
  right: 14px;
  bottom: -80px;
}

.commited-image-inside:hover .shape-top-right {
  right: 100px;
}

.commited-image-inside:hover .warm-circle-text {
  transform: rotate(360deg);
}

.commited-image-inside:hover .deal-image {
  transform: scale(0.9);
}

.commited-image-inside:hover .primary-logo {
  top: 45%;
} */

.shape-top-left,
.shape-top-right,
.shape-bottom-left,
.shape-bottom-right {
  position: absolute;
  width: 220px;
  height: 250px;
  transition: all 0.35s ease-in-out !important;
  z-index: -1;
}

.shape-top-left {
  top:0;
  left:0;
  transform: translate(0, 0);
  border-radius: var(--radius-150) var(--radius-150) 0 0;
}

.shape-top-right {
  top: 0;
  right:0;
  transform: translate(0, 0);
  border-radius: var(--radius-150) var(--radius-150) 0 0;
}

.shape-bottom-left {
  left:0;
  bottom:0;
  transform: translate(0, 0);
  border-radius: 0 0 var(--radius-150) var(--radius-150);
}

.shape-bottom-right {
  right:0;
  bottom:0;
  transform: translate(0, 0);
  border-radius: 0 0 var(--radius-150) var(--radius-150);
}

.warm-circle-text {
  position: absolute;
  top: 80px;
  left: -100px;
  /* -webkit-animation: rotate 5s normal linear infinite;
  animation: rotate 5s normal linear infinite; */
}

.white-circle-text {
  position: absolute;
  top: 85px;
  right: 10px;
}

.primary-logo {
  position: absolute;
  top: 50%;
  left:-85px;
  /* transform: translateX(-55%); */
  margin-top: -60px;
  z-index: 2;
}

/* .deal-image,
.primary-logo,
.warm-circle-text {
  transition: all 0.35s ease-in-out;
} */

/* ----------------------------------------------- */

.commited-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap:40px;
  /* min-height: 100vh; */
  justify-content: space-between;
}

.commited-image {
  display: flex;
  justify-content: center;
}

.commited-image{
  width:42%;
}
.commited-content {
  width: 48%;
}

.commited-content .site-button-primary,
.commited-content .site-button-secondary {
  margin-top: 30px;
}

.commited-content span{
  color: var(--color-secondary);
}

.commited-content h2 {
  font-size: 50px;
  /* color: var(--color-primary); */
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.2;
  font-family: var(--font-secondary);
}

.commited-content h2 :last-child {
  color: var(--color-secondary);
}

.commited-content p {
  /* color: var(--color-primary); */
  line-height: 1.7;
}

.commited-content p:not(:first-child){
  margin-top:30px;
}
.first-section {
  margin: 60px 0;

}

.first-section .bg-warm{
  padding: 60px 0;
}

.primary-logo {
  transform: scale(0.8);
}

/* .shape-top-left,
.shape-bottom-left {
  transform: translateX(-50px);
}

.shape-top-right,
.shape-bottom-right {
  transform: translateX(50px);
} */

.video-poster-img{
  scale:1.5;
}

.firstblock-box1-active::after{
  background: goldenrod;
}




.real-estate .commited-container:last-child {
  margin-top:50px;
}



.card-wrap{
  /* height: 600px; */
  overflow: hidden;
}


.card{
  width:100%;
  height: 520px;
  /* display: flex;
  align-items: center; */
}

.commited{
  padding: 60px 0;
}



.news-detail-section {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.news-detail-content {
  text-align: center;
  max-width: 1360px;
  margin: 0 auto;
}

.news-detail-content h1 {
  margin-bottom: 30px;
}

.news-detail-content h1 span {
  font-weight: 400;
  color: var(--color-primary);
}

.news-detail-content .title {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
}

.news-detail-content img {
  width:100%;
  margin: 30px auto 30px auto;
}

.news-detail-content p:not(:last-child) {
  margin-bottom: 20px;
}

.related-section {
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-section h2 {
  margin-bottom: 40px;
}


.slider__images .swiper-container{
  height: 480px;
}