/*================================================================
  01. Variables
==================================================================*/

:root {
  --white-color: #fff;
  --black-color: #000;
  --primary-color: #1D1D1D;
  --accent-color: #00CC61;
  --secondary-color: #434343;
  --border-color: #D1D1D1;
  --gray-color: #E2E2E2;
  --gray2-color: #F9F4F1;
  --gray3-color: #FAFAFA;
  --gray4-color: #FFFAF6;
  --danger-color: #FF0000;
  --primary-font: "Bodoni Moda", serif;
  --secondary-font: "Lato", sans-serif;
  --ternary-font: "Lato", sans-serif;
}



.mc_dark {
  --white-color: #1d1d1d;
  --primary-color: #fff;
  --secondary-color: #E2E2E2;
  --border-color: #434343;
  --gray-color: #262626;
  --gray2-color: #434343;
}

/*===============================================================
 02. Typography
=================================================================*/
body,
html {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 400;
  overflow-x: clip;
  background-color: var(--web-wash);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* scroll-behavior: smooth; */
  /* scrollbar-width: none; */
  -ms-overflow-style: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--danger-color);
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, .2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, .2) 50%,
      rgba(255, 255, 255, .2) 75%,
      transparent 75%,
      transparent)
}

/* body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
} */
/* 
body {
  height: auto;
  overflow: auto;
  overflow-x: hidden;
} */

/* body.scroll_off {
  height: 100vh;
  overflow: hidden;
} */

body.mc_dark {
  background-color: #0a1119;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2em;
  font-family: var(--primary-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  border-radius: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: var(--secondary);
}

table td,
table th {
  border-top: 1px solid var(--border);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 16px;
  font-weight: 400;
}

pre {
  color: var(--secondary);
  border: 1px solid var(--border);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--secondary);
  border-radius: 5px;
}

input,
textarea {
  color: var(--primary);
  transition: all 0.4s ease;
}

label {
  margin-bottom: 8px;
}

/*============================================================
  03. Spacing
==============================================================*/
@media screen and (min-width: 992px) {
  .mc_height_1 {
    height: 1px;
  }

  .mc_height_2 {
    height: 2px;
  }

  .mc_height_3 {
    height: 3px;
  }

  .mc_height_4 {
    height: 4px;
  }

  .mc_height_5 {
    height: 5px;
  }

  .mc_height_6 {
    height: 6px;
  }

  .mc_height_7 {
    height: 7px;
  }

  .mc_height_8 {
    height: 8px;
  }

  .mc_height_9 {
    height: 9px;
  }

  .mc_height_10 {
    height: 10px;
  }

  .mc_height_11 {
    height: 11px;
  }

  .mc_height_12 {
    height: 12px;
  }

  .mc_height_13 {
    height: 13px;
  }

  .mc_height_14 {
    height: 14px;
  }

  .mc_height_15 {
    height: 15px;
  }

  .mc_height_16 {
    height: 16px;
  }

  .mc_height_17 {
    height: 17px;
  }

  .mc_height_18 {
    height: 18px;
  }

  .mc_height_19 {
    height: 19px;
  }

  .mc_height_20 {
    height: 20px;
  }

  .mc_height_21 {
    height: 21px;
  }

  .mc_height_22 {
    height: 22px;
  }

  .mc_height_23 {
    height: 23px;
  }

  .mc_height_24 {
    height: 24px;
  }

  .mc_height_25 {
    height: 25px;
  }

  .mc_height_26 {
    height: 26px;
  }

  .mc_height_27 {
    height: 27px;
  }

  .mc_height_28 {
    height: 28px;
  }

  .mc_height_29 {
    height: 29px;
  }

  .mc_height_30 {
    height: 30px;
  }

  .mc_height_31 {
    height: 31px;
  }

  .mc_height_32 {
    height: 32px;
  }

  .mc_height_33 {
    height: 33px;
  }

  .mc_height_34 {
    height: 34px;
  }

  .mc_height_35 {
    height: 35px;
  }

  .mc_height_36 {
    height: 36px;
  }

  .mc_height_37 {
    height: 37px;
  }

  .mc_height_38 {
    height: 38px;
  }

  .mc_height_39 {
    height: 39px;
  }

  .mc_height_40 {
    height: 40px;
  }

  .mc_height_41 {
    height: 41px;
  }

  .mc_height_42 {
    height: 42px;
  }

  .mc_height_43 {
    height: 43px;
  }

  .mc_height_44 {
    height: 44px;
  }

  .mc_height_45 {
    height: 45px;
  }

  .mc_height_46 {
    height: 46px;
  }

  .mc_height_47 {
    height: 47px;
  }

  .mc_height_48 {
    height: 48px;
  }

  .mc_height_49 {
    height: 49px;
  }

  .mc_height_50 {
    height: 50px;
  }

  .mc_height_51 {
    height: 51px;
  }

  .mc_height_52 {
    height: 52px;
  }

  .mc_height_53 {
    height: 53px;
  }

  .mc_height_54 {
    height: 54px;
  }

  .mc_height_55 {
    height: 55px;
  }

  .mc_height_56 {
    height: 56px;
  }

  .mc_height_57 {
    height: 57px;
  }

  .mc_height_58 {
    height: 58px;
  }

  .mc_height_59 {
    height: 59px;
  }

  .mc_height_60 {
    height: 60px;
  }

  .mc_height_61 {
    height: 61px;
  }

  .mc_height_62 {
    height: 62px;
  }

  .mc_height_63 {
    height: 63px;
  }

  .mc_height_64 {
    height: 64px;
  }

  .mc_height_65 {
    height: 65px;
  }

  .mc_height_66 {
    height: 66px;
  }

  .mc_height_67 {
    height: 67px;
  }

  .mc_height_68 {
    height: 68px;
  }

  .mc_height_69 {
    height: 69px;
  }

  .mc_height_70 {
    height: 70px;
  }

  .mc_height_71 {
    height: 71px;
  }

  .mc_height_72 {
    height: 72px;
  }

  .mc_height_73 {
    height: 73px;
  }

  .mc_height_74 {
    height: 74px;
  }

  .mc_height_75 {
    height: 75px;
  }

  .mc_height_76 {
    height: 76px;
  }

  .mc_height_77 {
    height: 77px;
  }

  .mc_height_78 {
    height: 78px;
  }

  .mc_height_79 {
    height: 79px;
  }

  .mc_height_80 {
    height: 80px;
  }

  .mc_height_81 {
    height: 81px;
  }

  .mc_height_82 {
    height: 82px;
  }

  .mc_height_83 {
    height: 83px;
  }

  .mc_height_84 {
    height: 84px;
  }

  .mc_height_85 {
    height: 85px;
  }

  .mc_height_86 {
    height: 86px;
  }

  .mc_height_87 {
    height: 87px;
  }

  .mc_height_88 {
    height: 88px;
  }

  .mc_height_89 {
    height: 89px;
  }

  .mc_height_90 {
    height: 90px;
  }

  .mc_height_91 {
    height: 91px;
  }

  .mc_height_92 {
    height: 92px;
  }

  .mc_height_93 {
    height: 93px;
  }

  .mc_height_94 {
    height: 94px;
  }

  .mc_height_95 {
    height: 95px;
  }

  .mc_height_96 {
    height: 96px;
  }

  .mc_height_97 {
    height: 97px;
  }

  .mc_height_98 {
    height: 98px;
  }

  .mc_height_99 {
    height: 99px;
  }

  .mc_height_100 {
    height: 100px;
  }

  .mc_height_101 {
    height: 101px;
  }

  .mc_height_102 {
    height: 102px;
  }

  .mc_height_103 {
    height: 103px;
  }

  .mc_height_104 {
    height: 104px;
  }

  .mc_height_105 {
    height: 105px;
  }

  .mc_height_106 {
    height: 106px;
  }

  .mc_height_107 {
    height: 107px;
  }

  .mc_height_108 {
    height: 108px;
  }

  .mc_height_109 {
    height: 109px;
  }

  .mc_height_110 {
    height: 110px;
  }

  .mc_height_111 {
    height: 111px;
  }

  .mc_height_112 {
    height: 112px;
  }

  .mc_height_113 {
    height: 113px;
  }

  .mc_height_114 {
    height: 114px;
  }

  .mc_height_115 {
    height: 115px;
  }

  .mc_height_116 {
    height: 116px;
  }

  .mc_height_117 {
    height: 117px;
  }

  .mc_height_118 {
    height: 118px;
  }

  .mc_height_119 {
    height: 119px;
  }

  .mc_height_120 {
    height: 120px;
  }

  .mc_height_121 {
    height: 121px;
  }

  .mc_height_122 {
    height: 122px;
  }

  .mc_height_123 {
    height: 123px;
  }

  .mc_height_124 {
    height: 124px;
  }

  .mc_height_125 {
    height: 125px;
  }

  .mc_height_126 {
    height: 126px;
  }

  .mc_height_127 {
    height: 127px;
  }

  .mc_height_128 {
    height: 128px;
  }

  .mc_height_129 {
    height: 129px;
  }

  .mc_height_130 {
    height: 130px;
  }

  .mc_height_131 {
    height: 131px;
  }

  .mc_height_132 {
    height: 132px;
  }

  .mc_height_133 {
    height: 133px;
  }

  .mc_height_134 {
    height: 134px;
  }

  .mc_height_135 {
    height: 135px;
  }

  .mc_height_136 {
    height: 136px;
  }

  .mc_height_137 {
    height: 137px;
  }

  .mc_height_138 {
    height: 138px;
  }

  .mc_height_139 {
    height: 139px;
  }

  .mc_height_140 {
    height: 140px;
  }

  .mc_height_141 {
    height: 141px;
  }

  .mc_height_142 {
    height: 142px;
  }

  .mc_height_143 {
    height: 143px;
  }

  .mc_height_144 {
    height: 144px;
  }

  .mc_height_145 {
    height: 145px;
  }

  .mc_height_146 {
    height: 146px;
  }

  .mc_height_147 {
    height: 147px;
  }

  .mc_height_148 {
    height: 148px;
  }

  .mc_height_149 {
    height: 149px;
  }

  .mc_height_150 {
    height: 150px;
  }
}

@media screen and (max-width: 991px) {
  .mc_height_lg_1 {
    height: 1px;
  }

  .mc_height_lg_2 {
    height: 2px;
  }

  .mc_height_lg_3 {
    height: 3px;
  }

  .mc_height_lg_4 {
    height: 4px;
  }

  .mc_height_lg_5 {
    height: 5px;
  }

  .mc_height_lg_6 {
    height: 6px;
  }

  .mc_height_lg_7 {
    height: 7px;
  }

  .mc_height_lg_8 {
    height: 8px;
  }

  .mc_height_lg_9 {
    height: 9px;
  }

  .mc_height_lg_10 {
    height: 10px;
  }

  .mc_height_lg_11 {
    height: 11px;
  }

  .mc_height_lg_12 {
    height: 12px;
  }

  .mc_height_lg_13 {
    height: 13px;
  }

  .mc_height_lg_14 {
    height: 14px;
  }

  .mc_height_lg_15 {
    height: 15px;
  }

  .mc_height_lg_16 {
    height: 16px;
  }

  .mc_height_lg_17 {
    height: 17px;
  }

  .mc_height_lg_18 {
    height: 18px;
  }

  .mc_height_lg_19 {
    height: 19px;
  }

  .mc_height_lg_20 {
    height: 20px;
  }

  .mc_height_lg_21 {
    height: 21px;
  }

  .mc_height_lg_22 {
    height: 22px;
  }

  .mc_height_lg_23 {
    height: 23px;
  }

  .mc_height_lg_24 {
    height: 24px;
  }

  .mc_height_lg_25 {
    height: 25px;
  }

  .mc_height_lg_26 {
    height: 26px;
  }

  .mc_height_lg_27 {
    height: 27px;
  }

  .mc_height_lg_28 {
    height: 28px;
  }

  .mc_height_lg_29 {
    height: 29px;
  }

  .mc_height_lg_30 {
    height: 30px;
  }

  .mc_height_lg_31 {
    height: 31px;
  }

  .mc_height_lg_32 {
    height: 32px;
  }

  .mc_height_lg_33 {
    height: 33px;
  }

  .mc_height_lg_34 {
    height: 34px;
  }

  .mc_height_lg_35 {
    height: 35px;
  }

  .mc_height_lg_36 {
    height: 36px;
  }

  .mc_height_lg_37 {
    height: 37px;
  }

  .mc_height_lg_38 {
    height: 38px;
  }

  .mc_height_lg_39 {
    height: 39px;
  }

  .mc_height_lg_40 {
    height: 40px;
  }

  .mc_height_lg_41 {
    height: 41px;
  }

  .mc_height_lg_42 {
    height: 42px;
  }

  .mc_height_lg_43 {
    height: 43px;
  }

  .mc_height_lg_44 {
    height: 44px;
  }

  .mc_height_lg_45 {
    height: 45px;
  }

  .mc_height_lg_46 {
    height: 46px;
  }

  .mc_height_lg_47 {
    height: 47px;
  }

  .mc_height_lg_48 {
    height: 48px;
  }

  .mc_height_lg_49 {
    height: 49px;
  }

  .mc_height_lg_50 {
    height: 50px;
  }

  .mc_height_lg_51 {
    height: 51px;
  }

  .mc_height_lg_52 {
    height: 52px;
  }

  .mc_height_lg_53 {
    height: 53px;
  }

  .mc_height_lg_54 {
    height: 54px;
  }

  .mc_height_lg_55 {
    height: 55px;
  }

  .mc_height_lg_56 {
    height: 56px;
  }

  .mc_height_lg_57 {
    height: 57px;
  }

  .mc_height_lg_58 {
    height: 58px;
  }

  .mc_height_lg_59 {
    height: 59px;
  }

  .mc_height_lg_60 {
    height: 60px;
  }

  .mc_height_lg_61 {
    height: 61px;
  }

  .mc_height_lg_62 {
    height: 62px;
  }

  .mc_height_lg_63 {
    height: 63px;
  }

  .mc_height_lg_64 {
    height: 64px;
  }

  .mc_height_lg_65 {
    height: 65px;
  }

  .mc_height_lg_66 {
    height: 66px;
  }

  .mc_height_lg_67 {
    height: 67px;
  }

  .mc_height_lg_68 {
    height: 68px;
  }

  .mc_height_lg_69 {
    height: 69px;
  }

  .mc_height_lg_70 {
    height: 70px;
  }

  .mc_height_lg_71 {
    height: 71px;
  }

  .mc_height_lg_72 {
    height: 72px;
  }

  .mc_height_lg_73 {
    height: 73px;
  }

  .mc_height_lg_74 {
    height: 74px;
  }

  .mc_height_lg_75 {
    height: 75px;
  }

  .mc_height_lg_76 {
    height: 76px;
  }

  .mc_height_lg_77 {
    height: 77px;
  }

  .mc_height_lg_78 {
    height: 78px;
  }

  .mc_height_lg_79 {
    height: 79px;
  }

  .mc_height_lg_80 {
    height: 80px;
  }

  .mc_height_lg_81 {
    height: 81px;
  }

  .mc_height_lg_82 {
    height: 82px;
  }

  .mc_height_lg_83 {
    height: 83px;
  }

  .mc_height_lg_84 {
    height: 84px;
  }

  .mc_height_lg_85 {
    height: 85px;
  }

  .mc_height_lg_86 {
    height: 86px;
  }

  .mc_height_lg_87 {
    height: 87px;
  }

  .mc_height_lg_88 {
    height: 88px;
  }

  .mc_height_lg_89 {
    height: 89px;
  }

  .mc_height_lg_90 {
    height: 90px;
  }

  .mc_height_lg_91 {
    height: 91px;
  }

  .mc_height_lg_92 {
    height: 92px;
  }

  .mc_height_lg_93 {
    height: 93px;
  }

  .mc_height_lg_94 {
    height: 94px;
  }

  .mc_height_lg_95 {
    height: 95px;
  }

  .mc_height_lg_96 {
    height: 96px;
  }

  .mc_height_lg_97 {
    height: 97px;
  }

  .mc_height_lg_98 {
    height: 98px;
  }

  .mc_height_lg_99 {
    height: 99px;
  }

  .mc_height_lg_100 {
    height: 100px;
  }
}

/*==========================================
 Margin Bottom Spacing
===========================================*/
.mc_mb_1 {
  margin-bottom: 1px;
}

.mc_mb_2 {
  margin-bottom: 2px;
}

.mc_mb_3 {
  margin-bottom: 3px;
}

.mc_mb_4 {
  margin-bottom: 4px;
}

.mc_mb_5 {
  margin-bottom: 5px;
}

.mc_mb_6 {
  margin-bottom: 6px;
}

.mc_mb_7 {
  margin-bottom: 7px;
}

.mc_mb_8 {
  margin-bottom: 8px;
}

.mc_mb_9 {
  margin-bottom: 9px;
}

.mc_mb_10 {
  margin-bottom: 10px;
}

.mc_mb_11 {
  margin-bottom: 11px;
}

.mc_mb_12 {
  margin-bottom: 12px;
}

.mc_mb_13 {
  margin-bottom: 13px;
}

.mc_mb_14 {
  margin-bottom: 14px;
}

.mc_mb_15 {
  margin-bottom: 15px;
}

.mc_mb_16 {
  margin-bottom: 16px;
}

.mc_mb_17 {
  margin-bottom: 17px;
}

.mc_mb_18 {
  margin-bottom: 18px;
}

.mc_mb_19 {
  margin-bottom: 19px;
}

.mc_mb_20 {
  margin-bottom: 20px;
}

.mc_mb_21 {
  margin-bottom: 21px;
}

.mc_mb_22 {
  margin-bottom: 22px;
}

.mc_mb_23 {
  margin-bottom: 23px;
}

.mc_mb_24 {
  margin-bottom: 24px;
}

.mc_mb_25 {
  margin-bottom: 25px;
}

.mc_mb_26 {
  margin-bottom: 26px;
}

.mc_mb_27 {
  margin-bottom: 27px;
}

.mc_mb_28 {
  margin-bottom: 28px;
}

.mc_mb_29 {
  margin-bottom: 29px;
}

.mc_mb_30 {
  margin-bottom: 30px;
}

.mc_mb_31 {
  margin-bottom: 31px;
}

.mc_mb_32 {
  margin-bottom: 32px;
}

.mc_mb_33 {
  margin-bottom: 33px;
}

.mc_mb_34 {
  margin-bottom: 34px;
}

.mc_mb_35 {
  margin-bottom: 35px;
}

.mc_mb_36 {
  margin-bottom: 36px;
}

.mc_mb_37 {
  margin-bottom: 37px;
}

.mc_mb_38 {
  margin-bottom: 38px;
}

.mc_mb_39 {
  margin-bottom: 39px;
}

.mc_mb_40 {
  margin-bottom: 40px;
}

.mc_mb_41 {
  margin-bottom: 41px;
}

.mc_mb_42 {
  margin-bottom: 42px;
}

.mc_mb_43 {
  margin-bottom: 43px;
}

.mc_mb_44 {
  margin-bottom: 44px;
}

.mc_mb_45 {
  margin-bottom: 45px;
}

.mc_mb_46 {
  margin-bottom: 46px;
}

.mc_mb_47 {
  margin-bottom: 47px;
}

.mc_mb_48 {
  margin-bottom: 48px;
}

.mc_mb_49 {
  margin-bottom: 49px;
}

.mc_mb_50 {
  margin-bottom: 50px;
}

.mc_mb_51 {
  margin-bottom: 51px;
}

.mc_mb_52 {
  margin-bottom: 52px;
}

.mc_mb_53 {
  margin-bottom: 53px;
}

.mc_mb_54 {
  margin-bottom: 54px;
}

.mc_mb_55 {
  margin-bottom: 55px;
}

.mc_mb_56 {
  margin-bottom: 56px;
}

.mc_mb_57 {
  margin-bottom: 57px;
}

.mc_mb_58 {
  margin-bottom: 58px;
}

.mc_mb_59 {
  margin-bottom: 59px;
}

.mc_mb_60 {
  margin-bottom: 60px;
}

.mc_mb_61 {
  margin-bottom: 61px;
}

.mc_mb_62 {
  margin-bottom: 62px;
}

.mc_mb_63 {
  margin-bottom: 63px;
}

.mc_mb_64 {
  margin-bottom: 64px;
}

.mc_mb_65 {
  margin-bottom: 65px;
}

.mc_mb_66 {
  margin-bottom: 66px;
}

.mc_mb_67 {
  margin-bottom: 67px;
}

.mc_mb_68 {
  margin-bottom: 68px;
}

.mc_mb_69 {
  margin-bottom: 69px;
}

.mc_mb_70 {
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .mc_mb_lg_1 {
    margin-bottom: 1px;
  }

  .mc_mb_lg_2 {
    margin-bottom: 2px;
  }

  .mc_mb_lg_3 {
    margin-bottom: 3px;
  }

  .mc_mb_lg_4 {
    margin-bottom: 4px;
  }

  .mc_mb_lg_5 {
    margin-bottom: 5px;
  }

  .mc_mb_lg_6 {
    margin-bottom: 6px;
  }

  .mc_mb_lg_7 {
    margin-bottom: 7px;
  }

  .mc_mb_lg_8 {
    margin-bottom: 8px;
  }

  .mc_mb_lg_9 {
    margin-bottom: 9px;
  }

  .mc_mb_lg_10 {
    margin-bottom: 10px;
  }

  .mc_mb_lg_11 {
    margin-bottom: 11px;
  }

  .mc_mb_lg_12 {
    margin-bottom: 12px;
  }

  .mc_mb_lg_13 {
    margin-bottom: 13px;
  }

  .mc_mb_lg_14 {
    margin-bottom: 14px;
  }

  .mc_mb_lg_15 {
    margin-bottom: 15px;
  }

  .mc_mb_lg_16 {
    margin-bottom: 16px;
  }

  .mc_mb_lg_17 {
    margin-bottom: 17px;
  }

  .mc_mb_lg_18 {
    margin-bottom: 18px;
  }

  .mc_mb_lg_19 {
    margin-bottom: 19px;
  }

  .mc_mb_lg_20 {
    margin-bottom: 20px;
  }

  .mc_mb_lg_21 {
    margin-bottom: 21px;
  }

  .mc_mb_lg_22 {
    margin-bottom: 22px;
  }

  .mc_mb_lg_23 {
    margin-bottom: 23px;
  }

  .mc_mb_lg_24 {
    margin-bottom: 24px;
  }

  .mc_mb_lg_25 {
    margin-bottom: 25px;
  }

  .mc_mb_lg_26 {
    margin-bottom: 26px;
  }

  .mc_mb_lg_27 {
    margin-bottom: 27px;
  }

  .mc_mb_lg_28 {
    margin-bottom: 28px;
  }

  .mc_mb_lg_29 {
    margin-bottom: 29px;
  }

  .mc_mb_lg_30 {
    margin-bottom: 30px;
  }

  .mc_mb_lg_31 {
    margin-bottom: 31px;
  }

  .mc_mb_lg_32 {
    margin-bottom: 32px;
  }

  .mc_mb_lg_33 {
    margin-bottom: 33px;
  }

  .mc_mb_lg_34 {
    margin-bottom: 34px;
  }

  .mc_mb_lg_35 {
    margin-bottom: 35px;
  }

  .mc_mb_lg_36 {
    margin-bottom: 36px;
  }

  .mc_mb_lg_37 {
    margin-bottom: 37px;
  }

  .mc_mb_lg_38 {
    margin-bottom: 38px;
  }

  .mc_mb_lg_39 {
    margin-bottom: 39px;
  }

  .mc_mb_lg_40 {
    margin-bottom: 40px;
  }

  .mc_mb_lg_41 {
    margin-bottom: 41px;
  }

  .mc_mb_lg_42 {
    margin-bottom: 42px;
  }

  .mc_mb_lg_43 {
    margin-bottom: 43px;
  }

  .mc_mb_lg_44 {
    margin-bottom: 44px;
  }

  .mc_mb_lg_45 {
    margin-bottom: 45px;
  }

  .mc_mb_lg_46 {
    margin-bottom: 46px;
  }

  .mc_mb_lg_47 {
    margin-bottom: 47px;
  }

  .mc_mb_lg_48 {
    margin-bottom: 48px;
  }

  .mc_mb_lg_49 {
    margin-bottom: 49px;
  }

  .mc_mb_lg_50 {
    margin-bottom: 50px;
  }
}

/*=================================================================
  04. General
===================================================================*/
/*=====================================  
  Classess for Fonts Size  
=======================================*/
.mc_fs_14 {
  font-size: 14px;
  line-height: 1.786em;
}

.mc_fs_16 {
  font-size: 16px;
  line-height: 1.563em;
}

.mc_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}

.mc_fs_20 {
  font-size: 20px;
  line-height: 1.25em;
}

.mc_fs_25 {
  font-size: 25px;
  line-height: 1.4em;
}

@media (max-width: 1399px) {
  .mc_fs_25 {
    font-size: 22px;
  }
}

.mc_fs_31 {
  font-size: 31px;
  line-height: 1.291em;
}

@media (max-width: 1199px) {
  .mc_fs_31 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .mc_fs_31 {
    font-size: 25px;
  }
}

.mc_fs_39 {
  font-size: 39px;
  line-height: 1.28em;
}

@media (max-width: 1199px) {
  .mc_fs_39 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .mc_fs_39 {
    font-size: 30px;
  }
}

.mc_fs_49 {
  font-size: 49px;
  line-height: 1.327em;
}

@media (max-width: 1199px) {
  .mc_fs_49 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .mc_fs_49 {
    font-size: 39px;
  }
}

.mc_fs_61 {
  font-size: 61px;
  line-height: 1.23em;
}

@media (max-width: 991px) {
  .mc_fs_61 {
    font-size: 56px;
  }
}

@media (max-width: 575px) {
  .mc_fs_61 {
    font-size: 49px;
  }
}

.mc_fs_90 {
  font-size: 90px;
  line-height: 1.11em;
}

@media (max-width: 575px) {
  .mc_fs_90 {
    font-size: 75px;
  }
}

.mc_fs_110 {
  font-size: 110px;
  line-height: 1.364em;
}

@media (max-width: 1399px) {
  .mc_fs_110 {
    font-size: 90px;
  }
}

@media (max-width: 1199px) {
  .mc_fs_110 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .mc_fs_110 {
    font-size: 54px;
  }
}

/*=====================================  
  Classess for Fonts Weight
=======================================*/
.mc_light {
  font-weight: 300;
}

.mc_normal {
  font-weight: 400;
}

.mc_medium {
  font-weight: 500;
}

.mc_semibold {
  font-weight: 600;
}

.mc_bold {
  font-weight: 700;
}

.mc_extrabold {
  font-weight: 800;
}

.mc_black {
  font-weight: 900;
}

/*=====================================  
  Classess for Fonts Color
=======================================*/
.mc_accent_color {
  color: var(--accent-color);
}

.mc_primary_color {
  color: var(--primary-color);
}

.mc_body_color {
  color: var(--secondary-color);
}

.mc_white_color {
  color: #fff;
}

.mc_gray_color {
  color: var(--gray-color);
}

.mc_black_color {
  color: var(--black-color);
}

.mc_danger_color {
  color: var(--danger-color);
}

/*=====================================  
  Classess for Fonts Family 
=======================================*/
.mc_primary_font {
  font-family: var(--secondary-font);
}

.mc_secondary_font {
  font-family: var(--secondary-font);
}

.mc_ternary_font {
  font-family: var(--ternary-font);
}

/*=============================================  
  Classess for Background Size & Colors
===============================================*/
.mc_accent_bg {
  background-color: var(--accent-color);
}

.mc_primary_bg {
  background-color: var(--primary-color);
}

.mc_body_bg {
  background-color: var(--secondary-color);
}

.mc_white_bg {
  background-color: var(--white-color);
}

.mc_gray_bg {
  background-color: var(--gray-color);
}

.mc_gray2_bg {
  background-color: var(--gray2-color);
}

.mc_gray3_bg {
  background-color: var(--gray3-color);
}

.mc_gray4_bg {
  background-color: var(--gray4-color);
}

.mc_black_bg {
  background-color: var(--black-color);
}

.mc_bg_filed {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mc_bg_filed_cus {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* .mc_bg_filed_cus::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #00000091;
} */


.mc_hero_thumbnail.mc_bg_filed_cus {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
  border-bottom: 3mm ridge #000;
}

.mc_hero_thumbnail.mc_bg_filed_cus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 35%);
  z-index: 1;
}











.mc_bg_fixed {
  background-attachment: fixed;
  background-position: center;
}

.mc_bg_shape_1 {
  width: 100%;
  height: 30%;
  min-height: 344px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mc_gradient_text {
  background: linear-gradient(180deg, #1D1D1D 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*=============================================  
  Classess for Border Radius
===============================================*/
.mc_radius_5 {
  border-radius: 5px;
}

.mc_radius_7 {
  border-radius: 7px;
}

.mc_radius_8 {
  border-radius: 8px;
}

.mc_radius_10 {
  border-radius: 10px;
}

.mc_radius_15 {
  border-radius: 15px;
}

.mc_radius_20 {
  border-radius: 20px;
}

.mc_radius_50 {
  border-radius: 50px;
}

.mc_radius_100 {
  border-radius: 50%;
}

/*=============================================  
  Classes for Utility Components
===============================================*/
.mc_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc_center_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mc_hyphen {
  width: 6px;
  height: 1px;
}

.mc_width_left_50_vw {
  height: 100%;
  width: 50vw;
  margin-left: calc(101.8% - 50vw);
}

@media (max-width: 991px) {
  .mc_width_left_50_vw {
    width: 100%;
    margin-left: 0;
  }
}

.mc_width_right_50_vw {
  width: calc(50vw - 1.8%);
}

@media (max-width: 991px) {
  .mc_width_right_50_vw {
    width: 100%;
  }
}

/*=============================================  
  Bootstrap Classess 
===============================================*/
@media (min-width: 1400px) {
  .container {
    max-width: 1416px;
  }
}

.mc_gap_y_50 {
  gap: 50px 0;
}

@media (max-width: 991px) {
  .mc_gap_y_50 {
    gap: 30px 0;
  }
}

.mc_gap_y_45 {
  gap: 45px 0;
}

@media (max-width: 991px) {
  .mc_gap_y_45 {
    gap: 30px 0;
  }
}

.mc_gap_y_40 {
  gap: 40px 0;
}

@media (max-width: 991px) {
  .mc_gap_y_40 {
    gap: 30px 0;
  }
}

.mc_gap_y_30 {
  gap: 30px 0;
}

.mc_gap_y_24 {
  gap: 24px 0;
}

.mc_gap_y_60 {
  gap: 60px 0;
}

@media (max-width: 991px) {
  .mc_gap_y_60 {
    gap: 30px 0;
  }
}

/*===========================================================  
  Responsive For Common Component & Hide Elements
=============================================================*/
@media (max-width: 991px) {

  br,
  .mc_counter_shape_1,
  .mc_vector_1,
  .mc_vector_2,
  .mc_counter_shape_2 {
    display: none;
  }
}

/*===================================================================
  05. Header Sections
=====================================================================*/
.mc_site_header.mc_style_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  /* background-color: #ffffffc2; */
  /* =============== Language Switcher Styling ================ */
}

.mc_site_header.mc_style_1.mc_sticky_active {
  color: var(--primary-color);
  background-color: var(--white-color);
  box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
}

.mc_site_header.mc_style_1.mc_sticky_active .mc_main_header_in {
  /* height: 80px; */
  padding: 3px 0px;
}

.mc_site_header.mc_style_1.mc_sticky_active.mc_type_4 {
  border-color: transparent;
}

.mc_site_header.mc_style_1 .mc_main_header_in {
  /* height: 100px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  padding: 10px 0px;
}

.mc_site_header.mc_style_1 .mc_main_header_left {
  height: 100%;
  display: flex;
  align-items: center;
}

.mc_site_header.mc_style_1 .mc_main_header_left .mc_site_brand img {
  width: 220px;
  /* filter: brightness(0) invert(1); */
}

.mc_site_header.mc_style_1 .mc_main_header_left .mc_site_brand+.mc_main_header_center {
  margin-left: 50px;
}

.mc_site_header.mc_style_1 .mc_make_call {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_site_header.mc_style_1 .mc_make_call span {
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex: none;
}

.mc_site_header.mc_style_1 .mc_make_call a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_site_header.mc_style_1 .mc_make_call a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_site_header.mc_style_1 .mc_main_header_center,
.mc_site_header.mc_style_1 .mc_nav_links_wrap {
  height: inherit;
}

.mc_site_header.mc_style_1 .mc_nav {
  height: inherit;
}

.mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap {
  height: inherit;
}

.mc_site_header.mc_style_1 .mc_nav_list>li {
  margin-right: 30px;
}

.mc_site_header.mc_style_1 .mc_right_nav_list {
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.mc_site_header.mc_style_1 .mc_right_nav_list li {
  color: #fff;
}

.mc_site_header.mc_style_1 .mc_right_nav_list .mc_login:hover {
  opacity: 0.75;
}

.mc_site_header.mc_style_1.mc_type_1 {
  box-shadow: 0px 0px 5px 0px rgba(29, 29, 29, 0.2);
}

.mc_site_header.mc_style_1.mc_type_4 {
  border-bottom: 1px solid var(--gray-color);
}

.mc_site_header.mc_style_1 .mc_language_select {
  cursor: pointer;
  position: relative;
}

.mc_site_header.mc_style_1 .mc_language_switcher {
  width: 40px;
  height: inherit;
  padding: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.mc_site_header.mc_style_1 .mc_language_switcher::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  color: currentColor;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mc_site_header.mc_style_1 .flag-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  flex: none;
  background-size: cover;
  border: none;
}

.mc_site_header.mc_style_1 .mc_language_dropdown {
  display: none;
  width: 100px;
  padding: 15px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 16px 1px rgba(2, 0, 181, 0.1);
  color: var(--primary-color);
  position: absolute;
  top: 100%;
  left: 0;
}

.mc_site_header.mc_style_1 .mc_language_dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}

.mc_site_header.mc_style_1 .mc_language_dropdown button:last-child {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .mc_site_header.mc_style_1 .container {
    max-width: 1416px;
  }

  .mc_site_header.mc_style_1 .container-fluid {
    max-width: 1820px;
  }

  .mc_site_header.mc_style_1 .mc_nav_list>li {
    margin-right: 40px;
  }
}

@media (min-width: 1200px) {
  .mc_site_header.mc_style_1 .mc_nav_list {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
  }

  .mc_site_header.mc_style_1 .mc_nav_list>li {
    height: inherit;
    position: relative;
  }

  .mc_site_header.mc_style_1 .mc_nav_list>li:last-child {
    margin-right: 0;
  }

  .mc_site_header.mc_style_1 .mc_nav_list>li>a {
    display: inline-flex;
    position: relative;
    height: inherit;
    align-items: center;
    font-weight: 700;
    color: #fff;
  }

  .mc_site_header.mc_style_1 .mc_nav_list>li>a:hover {
    opacity: 0.75;
  }

  .mc_site_header.mc_style_1 .mc_dropdown_list {
    width: 220px;
    background-color: var(--white-color);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(-10px);
    border-top: 2px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
  }

  .mc_site_header.mc_style_1 .mc_dropdown_list a {
    display: block;
    line-height: inherit;
    padding: 6px 20px;
  }

  .mc_site_header.mc_style_1 .mc_dropdown_list a:hover {
    opacity: 0.75;
  }

  .mc_site_header.mc_style_1 .mc_close_nav {
    display: none;
  }

  .mc_site_header.mc_style_1 .mc_dropdown_list a {
    color: var(--primary-color);
  }

  .mc_site_header.mc_style_1.mc_type_2 {
    margin-top: 40px;
  }

  .mc_site_header.mc_style_1.mc_type_2 .mc_main_header_in {
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
    background: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(25px);
  }

  .mc_site_header.mc_style_1.mc_type_3 {
    background-color: rgba(29, 29, 29, 0.9);
  }

  .mc_site_header.mc_style_1.mc_type_3 .mc_btn.mc_style_1::before {
    background-color: var(--white-color);
  }

  .mc_site_header.mc_style_1.mc_type_3 .mc_btn.mc_style_1:hover {
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_site_brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_main_header_center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_links_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_list {
    width: 50%;
    flex: none;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_list:first-child {
    padding-right: 143px;
    justify-content: flex-end;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_list:last-child {
    padding-left: 143px;
    justify-content: flex-start;
  }

  .mc_site_header.mc_style_1.mc_sticky_active.mc_type_2 {
    background-color: transparent;
    box-shadow: none;
    color: var(--white-color);
  }

  .mc_site_header.mc_style_1.mc_sticky_active.mc_type_3 {
    background-color: #1d1d1d;
    color: #fff;
  }
}

@media (max-width: 1399px) {
  .mc_site_header.mc_style_1 .container {
    max-width: 100%;
  }
}

.mc_site_header.mc_style_1 .menu-item-has-children>a {
  position: relative;
  padding-right: 16px;
}

.mc_site_header.mc_style_1 .menu-item-has-children>a::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mc_site_header.mc_style_1 .menu-item-has-children:hover .mc_dropdown_list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .mc_site_header.mc_style_1.mc_sticky_active.mc_type_3 .mc_btn.mc_style_1 {
    border-color: var(--primary-color) !important;
    color: var(--primary-color);
  }

  .mc_site_header.mc_style_1.mc_sticky_active.mc_type_3 .mc_btn.mc_style_1:hover {
    color: var(--white-color);
  }

  /* .mc_site_header.mc_style_1 .mc_main_header_in {
    height: 80px;
  } */
  .mc_site_header.mc_style_1 .mc_main_header_left .mc_site_brand img {
    width: 100px;
  }

  .mc_site_header.mc_style_1 .mc_make_call {
    display: none;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_links_wrap {
    overflow-y: auto;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav_links_wrap::-webkit-scrollbar {
    display: none;
  }

  .mc_site_header.mc_style_1.mc_type_4 .mc_nav .mc_nav_list {
    height: auto;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap {
    width: 100%;
    max-width: min(100%, 400px);
    height: 100vh;
    padding: 80px 7px 40px 0;
    background-color: var(--white-color);
    color: var(--primary-color);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    transform: translateX(410px);
    transition: all 0.6s ease;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav {
    position: fixed;
    top: 30px;
    left: 30px;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav::before,
  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav::after {
    content: "";
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap .mc_close_nav.active {
    transform: scale(1);
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap.active {
    transform: translateX(0);
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list {
    height: 100%;
    line-height: 1.6em;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list::-webkit-scrollbar {
    display: none;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list>li {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #ccc;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list ul {
    padding-left: 15px;
    display: none;
    list-style: none;
  }

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list a {
    display: block;
    padding: 12px 15px;
    line-height: 16px;
        color: #000;
  }

  .mc_site_header.mc_style_1 .mc_nav .menu-item-has-children {
    position: relative;
  }

  .mc_site_header.mc_style_1 .mc_nav .menu-item-has-children a:before {
    display: none;
  }

  .mc_site_header.mc_style_1 .mc_main_header_right {
    padding-right: 60px;
  }

  .mc_site_header.mc_style_1 .mc_right_nav_list {
    max-width: fit-content;
  }

  .mc_site_header.mc_style_1 .mc_menu_toggle {
    display: inline-block;
  }

  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }

  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }

  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle span:before,
  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    transition: all 0.3s ease;
  }

  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle span:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mc_site_header.mc_style_1 .mc_menu_dropdown_toggle.active span:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media (max-width: 575px) {
  .mc_site_header.mc_style_1 .mc_main_header_right {
    display: none;
  }
}

/*====================================================
   Mobile Menu Styling
  ======================================================*/
.mc_menu_toggle {
  width: 30px;
  height: 27px;
  cursor: pointer;
  position: absolute;
  top: 27px;
  right: 15px;
  z-index: 999;
}

.mc_menu_toggle span,
.mc_menu_toggle span:before,
.mc_menu_toggle span:after {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  display: block;
}

.mc_menu_toggle span {
  margin: 0 auto;
  position: relative;
  top: 12px;
  transition-duration: 0s;
  transition-delay: 0.2s;
}

.mc_menu_toggle span:before {
  content: "";
  position: absolute;
  margin-top: -9px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}

.mc_menu_toggle span:after {
  content: "";
  position: absolute;
  margin-top: 9px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}

.mc_menu_toggle.active {
  color: inherit;
}

.mc_menu_toggle.active span {
  background-color: transparent;
  transition-delay: 0.2s;
}

.mc_menu_toggle.active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}

.mc_menu_toggle.active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.mc_menu_toggle,
.mc_menu_dropdown_toggle {
  display: none;
}

/*=======================================================================
 06. Footer Section
=========================================================================*/
.mc_footer.mc_style_1 .mc_footer_main {
  padding: 137px 0 100px;
}

.mc_footer.mc_style_1 .mc_text_widget {
  max-width: 336px;
}

.mc_footer.mc_style_1 .mc_logo {
  margin-bottom: 20px;
}

.mc_footer.mc_style_1 .mc_logo img {
  width: 200px;
  /* filter: brightness(0) invert(1); */
}

.mc_footer.mc_style_1 .mc_footer_menu li:not(:last-child) {
  margin-bottom: 8px;
}

.mc_footer.mc_style_1 .mc_footer_menu a {
  padding-left: 20px;
  position: relative;
}

.mc_footer.mc_style_1 .mc_footer_menu a::before {
  content: "\f054";
  font-size: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: currentColor;
  position: absolute;
  left: 0;
}

.mc_footer.mc_style_1 .mc_footer_menu a:hover {
  color: var(--white-color);
}

.mc_footer.mc_style_1 .mc_contact_widget {
  padding-left: 40px;
}

.mc_footer.mc_style_1 .mc_contact_list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_footer.mc_style_1 .mc_contact_list li:not(:last-child) {
  margin-bottom: 25px;
}

.mc_footer.mc_style_1 .mc_contact_list a:hover {
  color: var(--white-color);
}

.mc_footer.mc_style_1 .mc_contact_list .mc_contact_icon {
  width: 35px;
  height: 35px;
  flex: none;
  border: 1px solid currentColor;
}

.mc_footer.mc_style_1 .mc_footer_bottom {
  padding: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.mc_footer.mc_style_1 .mc_footer_bottom .mc_footer_bottom_menu {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.mc_footer.mc_style_1 .mc_footer_bottom .mc_currency {
  padding-right: 30px;
  position: relative;
}

.mc_footer.mc_style_1 .mc_footer_bottom .mc_currency::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.mc_footer.mc_style_1 .mc_footer_bottom .mc_social_links {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.mc_footer.mc_style_1 .mc_footer_bottom .mc_social_links a:hover {
  color: var(--white-color);
}

.mc_footer.mc_style_1.mc_type_1 .mc_logo {
  margin-bottom: 30px;
}

.mc_footer.mc_style_1.mc_type_1 a:hover {
  color: var(--primary-color);
}

.mc_footer.mc_style_1.mc_type_1 .mc_footer_bottom {
  padding: 42px 0;
}

.mc_footer.mc_style_1.mc_type_1 .mc_footer_bottom a:hover {
  color: var(--primary-color);
}

.mc_footer.mc_style_1.mc_type_1 .mc_newsletter_form input {
  border: 1px solid var(--gray-color);
}

.mc_footer.mc_style_1.mc_type_1 .mc_newsletter_form .mc_btn.mc_style_1 {
  border-color: var(--gray-color);
}

.mc_footer.mc_style_1.mc_type_2 {
  border-radius: 30px 30px 0 0;
}

.mc_footer.mc_style_1.mc_type_3 .mc_logo {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .mc_footer.mc_style_1 .mc_contact_widget {
    padding-left: 0;
  }

  .mc_footer.mc_style_1.mc_type_1 .mc_footer_bottom {
    padding: 22px 0;
  }
}

@media (max-width: 991px) {
  .mc_footer.mc_style_1 .mc_footer_main {
    padding: 80px 0 60px;
  }

  .mc_footer.mc_style_1 .mc_logo {
    margin-bottom: 40px;
  }

  .mc_footer.mc_style_1 .mc_text_widget {
    max-width: 100%;
  }

  .mc_footer.mc_style_1 .mc_contact_list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .mc_footer.mc_style_1 .mc_footer_bottom {
    padding: 0 0 22px;
  }
}

@media (max-width: 575px) {
  .mc_footer.mc_style_1 .mc_footer_bottom .mc_currency {
    padding-right: 0;
  }

  .mc_footer.mc_style_1 .mc_footer_bottom .mc_currency::after {
    display: none;
  }
}

.mc_footer.mc_style_2 {
  padding: 127px 0 0;
}

.mc_home-worth.mc_footer.mc_style_2 {
  padding: 50px 0 0;
}

.mc_footer.mc_style_2 .mc_footer_top {
  padding: 0 0 50px;
  border-bottom: 1px solid var(--gray-color);
}

.mc_footer.mc_style_2 .mc_newsletter_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc_footer.mc_style_2 .mc_newsletter_heading,
.mc_footer.mc_style_2 .mc_newsletter_form {
  width: min(570px, 50%);
}

.mc_footer.mc_style_2 .mc_footer_main {
  padding: 70px 0;
  border-bottom: 1px solid var(--gray-color);
}

.mc_footer.mc_style_2 .mc_footer_menu li:not(:last-child),
.mc_footer.mc_style_2 .mc_contact_list li:not(:last-child) {
  margin-bottom: 12px;
}

.mc_footer.mc_style_2 .mc_footer_menu p,
.mc_footer.mc_style_2 .mc_contact_list p {
  font-size: 18px;
}

.mc_footer.mc_style_2 .mc_footer_menu a,
.mc_footer.mc_style_2 .mc_contact_list a {
  font-size: 18px;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_footer.mc_style_2 .mc_footer_menu a:hover,
.mc_footer.mc_style_2 .mc_contact_list a:hover {
  color: var(--primary-color);
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_footer.mc_style_2 .mc_social_btns.mc_style_1 a {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
}

.mc_footer.mc_style_2 .mc_social_btns.mc_style_1 a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.mc_footer.mc_style_2 .mc_footer_bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.mc_footer.mc_style_2 .mc_footer_bottom_menu {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}

.mc_footer.mc_style_2 .mc_footer_bottom_menu a {
  padding-left: 27px;
  position: relative;
}

.mc_footer.mc_style_2 .mc_footer_bottom_menu a::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 5px;
}

.mc_footer.mc_style_2 .mc_footer_bottom_menu a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_footer.mc_style_2.mc_type_1 .mc_footer_top,
.mc_footer.mc_style_2.mc_type_1 .mc_footer_main {
  border-color: var(--secondary-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_newsletter_form input {
  background-color: transparent;
  color: var(--gray-color);
  border-color: var(--gray-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_newsletter_form input::placeholder {
  color: var(--gray-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_newsletter_form input:focus {
  border-color: var(--white-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_newsletter_form .mc_btn.mc_style_1:hover {
  border-color: var(--gray-color);
  color: var(--gray-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_social_btns a {
  background-color: var(--secondary-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_social_btns a:hover {
  background-color: var(--white-color);
}

.mc_footer.mc_style_2.mc_type_1 .mc_contact_list a:hover,
.mc_footer.mc_style_2.mc_type_1 .mc_footer_menu a:hover {
  color: var(--white-color);
}

.mc_footer.mc_style_2.mc_type_2 .mc_footer_main {
  border-bottom: 0;
  padding-top: 0;
}

.mc_footer.mc_style_2.mc_type_2 .mc_footer_bottom {
  border-top: 1px solid var(--border-color);
}

.mc_footer.mc_style_2.mc_primary_bg h1,
.mc_footer.mc_style_2.mc_primary_bg h2,
.mc_footer.mc_style_2.mc_primary_bg h3,
.mc_footer.mc_style_2.mc_primary_bg h4,
.mc_footer.mc_style_2.mc_primary_bg h5,
.mc_footer.mc_style_2.mc_primary_bg h6 {
  color: #fff;
}

.mc_footer.mc_style_2.mc_primary_bg .mc_footer_menu a:hover,
.mc_footer.mc_style_2.mc_primary_bg .mc_contact_list a:hover {
  color: #fff;
}

.mc_footer.mc_style_2.mc_primary_bg .mc_social_btns.mc_style_1 a {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.mc_footer.mc_style_2.mc_primary_bg .mc_social_btns.mc_style_1 a:hover {
  background-color: transparent;
}

@media (max-width: 991px) {
  .mc_footer.mc_style_2 {
    padding: 80px 0 0;
  }

  .mc_footer.mc_style_2 .mc_newsletter_wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .mc_footer.mc_style_2 .mc_newsletter_heading,
  .mc_footer.mc_style_2 .mc_newsletter_form {
    min-width: 100%;
  }

  .mc_footer.mc_style_2 .mc_footer_main {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .mc_footer.mc_style_2 .mc_footer_bottom_menu {
    gap: 10px 15px;
  }

  .mc_footer.mc_style_2 .mc_footer_bottom_menu a {
    padding-left: 0;
  }

  .mc_footer.mc_style_2 .mc_footer_bottom_menu a::before {
    display: none;
  }

  .mc_footer.mc_style_2 .mc_newsletter_form input {
    padding: 12px 20px 13px;
    border-radius: 15px;
  }

  .mc_footer.mc_style_2 .mc_newsletter_form .mc_btn.mc_style_1 {
    position: relative;
    right: inherit;
    top: initial;
  }
}

/*=======================================================
 Newsletter Form
=========================================================*/
.mc_newsletter_form.mc_style_1::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gray-color);
  opacity: 0.3;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mc_newsletter_form.mc_style_1 input {
  width: 100%;
  padding: 0 0 15px;
  border: 0;
  outline: 0;
  color: var(--gray-color);
  background-color: transparent;
}

.mc_newsletter_form.mc_style_1 input::placeholder {
  color: var(--gray-color);
}

.mc_newsletter_form.mc_style_1 .mc_send_icon {
  top: 0;
  right: 0;
  transition: all 0.3s ease;
}

.mc_newsletter_form.mc_style_1 .mc_send_icon:hover {
  transform: rotate(45deg);
}

.mc_newsletter_form.mc_style_2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mc_newsletter_form.mc_style_2 input {
  width: 100%;
  padding: 23px 20px;
  outline: 0;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  color: var(--secondary-color);
}

.mc_newsletter_form.mc_style_2 input::placeholder {
  color: var(--secondary-color);
}

.mc_newsletter_form.mc_style_2 input:focus {
  border-color: var(--primary-color);
}

.mc_newsletter_form.mc_style_2 .mc_btn.mc_style_1 {
  padding: 14px 30px 13px;
  position: absolute;
  right: 11px;
  top: 11px;
}

.mc_newsletter_form.mc_style_2.mc_type_1 input {
  border: 0;
  border-radius: 10px;
}

@media (min-width: 768px) and (max-width: 1399px) {
  .mc_newsletter_form.mc_style_2.mc_type_1 input {
    padding: 13px 20px;
  }

  .mc_newsletter_form.mc_style_2.mc_type_1 .mc_btn.mc_style_1 {
    position: relative;
    top: initial;
    right: initial;
    border-color: var(--white-color);
    border-radius: 10px;
  }
}

@media (max-width: 450px) {
  .mc_newsletter_form.mc_style_2.mc_type_1 input {
    padding: 13px 20px;
  }

  .mc_newsletter_form.mc_style_2.mc_type_1 .mc_btn.mc_style_1 {
    position: relative;
    top: initial;
    right: initial;
    border-color: var(--white-color);
    border-radius: 10px;
  }
}

/*==============================================================
 07. Sidebar
================================================================*/
.mc_sidebar.mc_style_1 {
  width: min(100%, 400px);
  padding: 29px 35px 35px;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget:not(:last-child) {
  padding-bottom: 24px;
  position: relative;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget:not(:first-child) {
  padding-top: 24px;
}

.mc_sidebar.mc_style_1 .mc_property_location .ts-control {
  color: var(--primary-color);
  font-family: inherit;
  font-size: 16px !important;
  line-height: 1.75em;
  border-radius: 10px;
  background-color: transparent;
}

.mc_sidebar.mc_style_1 .mc_property_location .ts-control::after {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0.5;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.mc_sidebar.mc_style_1 .mc_property_location .ts-control input {
  font-size: inherit;
  color: inherit;
}

.mc_sidebar.mc_style_1 .mc_property_location .ts-control input::placeholder {
  color: var(--primary-color);
}

.mc_sidebar.mc_style_1 .mc_input_group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px 7px;
  flex-wrap: wrap;
}

.mc_sidebar.mc_style_1 .mc_input_wrapper {
  width: calc(50% - 10px);
}

.mc_sidebar.mc_style_1 .mc_input_wrapper input {
  width: 100%;
}

.mc_sidebar.mc_style_1 li:not(:last-child) {
  margin-bottom: 5px;
}

.mc_sidebar.mc_style_1 li label {
  margin-bottom: 0;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget_title i {
  font-size: 10px;
  transition: all 0.3s ease-in-out;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget_title.active {
  margin-bottom: 0;
}

.mc_sidebar.mc_style_1 .mc_sidebar_widget_title.active i {
  transform: rotatex(180deg);
}

@media (max-width: 991px) {
  .mc_sidebar.mc_style_1 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .mc_sidebar.mc_style_1 {
    padding: 25px 20px 30px;
  }
}

@media (max-width: 400px) {
  .mc_sidebar.mc_style_1 .mc_input_wrapper {
    width: 100%;
  }

  .mc_sidebar.mc_style_1 .mc_hyphen {
    display: none;
  }
}

.mc_sidebar.mc_style_2 {
  padding: 40px;
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget:first-child {
  padding: 0;
  border-bottom: 0;
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget .mc_categories li:not(:last-child) {
  margin-bottom: 13px;
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget .mc_categories li a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget .mc_categories li a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_sidebar.mc_style_2 .mc_sidebar_widget .mc_latest_posts li:not(:last-child) {
  margin-bottom: 17px;
}

.mc_sidebar.mc_style_2 .mc_sidebar_search_form {
  position: relative;
}

.mc_sidebar.mc_style_2 .mc_sidebar_search_form input {
  width: 100%;
  padding: 13px 15px 12px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  outline: 0;
}

.mc_sidebar.mc_style_2 .mc_sidebar_search_form input:focus {
  border-color: var(--primary-color);
}

.mc_sidebar.mc_style_2 .mc_sidebar_search_form .mc_search_icon {
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: all 0.3s ease-in-out;
}

.mc_sidebar.mc_style_2 .mc_sidebar_search_form .mc_search_icon:hover {
  color: var(--primary-color);
}

.mc_sidebar.mc_style_2 .mc_tags_links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mc_sidebar.mc_style_2 .mc_tags_links .mc_tag_link {
  padding: 5px 15px;
  border: 1px solid var(--secondary-color);
}

.mc_sidebar.mc_style_2 .mc_tags_links .mc_tag_link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

@media (max-width: 767px) {
  .mc_sidebar.mc_style_2 {
    padding: 30px 20px;
  }
}

.mc_sidebar.mc_style_3 .mc_sidebar_widget {
  padding: 30px 30px 40px;
  margin-bottom: 24px;
}

.mc_sidebar.mc_style_3 .mc_sidebar_widget:last-child {
  margin-bottom: 0;
}

.mc_sidebar.mc_style_3 .mc_contact_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mc_sidebar.mc_style_3 .mc_contact_form .mc_form_field {
  padding: 8px 15px;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
}

.mc_sidebar.mc_style_3 .mc_contact_form .mc_form_field:focus {
  border-color: var(--primary-color);
}

.mc_sidebar.mc_style_3 .mc_contact_form .mc_form_field::placeholder {
  color: var(--secondary-color);
}

.mc_sidebar.mc_style_3 .mc_contact_form .mc_input_icon {
  right: 15px;
  top: 10px;
}

@media (max-width: 767px) {
  .mc_sidebar.mc_style_3 .mc_sidebar_widget {
    padding: 25px 20px 30px;
  }
}

/*================================================================
  08. Slider
==================================================================*/
.mc_slider {
  position: relative;
}

.slick-arrow {
  cursor: pointer;
}

.draggable {
  cursor: url(../img/drag.png) 16 9, ew-resize !important;
}

.slick-slide>div {
  display: flex;
  flex-direction: column;
}

.mc_remove_overflow .slick-list {
  overflow: visible;
}

.mc_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.mc_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.slick-active .mc_hero.mc_style_2 .mc_hero_thumbnail {
  transform: translateY(10px) scale(1.06);
}

.slick-active .mc_hero.mc_style_2 .mc_hero_content {
  transform: scale(1, 1);
  opacity: 1;
}

.slick-active .mc_hero.mc_style_2 .mc_hero_content .mc_hero_text {
  opacity: 1;
  transform: translateY(0);
}

.slick-active .mc_hero.mc_style_3 .mc_hero_thumbnail {
  /* transform: scale(1.06); */
}

.slick-active .mc_hero.mc_style_3 .mc_hero_title {
  transform: translateY(0);
  opacity: 1;
}

.slick-active .mc_hero.mc_style_5 .mc_hero_thumbnail {
  transform: scale(1.05);
}

.slick-active .mc_hero.mc_style_5 .mc_hero_content {
  clip-path: inset(0 0 0 0);
}

.slick-active .mc_hero.mc_style_6 .mc_hero_thumbnail {
  transform: scale(1.05);
}

.slick-active .mc_hero.mc_style_6 .mc_property_title,
.slick-active .mc_hero.mc_style_6 .mc_property_price {
  opacity: 1;
  transform: translateY(0);
}

.slick-active .mc_hero.mc_style_6 .mc_property_view_btn {
  opacity: 1;
  transform: scale(1);
}

.mc_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}

.mc_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.mc_slider_gap_20 .slick-slide {
  padding-left: 10px;
  padding-right: 10px;
}

.mc_slider_gap_20 .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}

.mc_slider_gap_30 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.mc_slider_gap_30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 991px) {
  .mc_slider_gap_30 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mc_slider_gap_30 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.mc_hover_show_arrows:hover .mc_slider_arrows.mc_style_1 {
  visibility: visible;
  opacity: 1;
  pointer-events: none;
}

.mc_hover_show_arrows:hover .mc_slider_arrows.mc_style_1 .mc_left_arrow,
.mc_hover_show_arrows:hover .mc_slider_arrows.mc_style_1 .mc_right_arrow {
  transform: initial;
  pointer-events: all;
}

/*=================================================
 Slider Arrows
===================================================*/
.mc_slider_arrows.mc_style_1 {
  width: calc(100vw - 15%);
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.mc_slider_arrows.mc_style_1 .mc_left_arrow,
.mc_slider_arrows.mc_style_1 .mc_right_arrow {
  cursor: pointer;
  transition: all 0.3s ease;
}

.mc_slider_arrows.mc_style_1 .mc_left_arrow {
  transform: translateX(40px);
}

.mc_slider_arrows.mc_style_1 .mc_left_arrow svg {
  transform: rotate(180deg);
}

.mc_slider_arrows.mc_style_1 .mc_right_arrow {
  transform: translateX(-40px);
}

.mc_slider_arrows.mc_style_1.mc_type_1 {
  width: calc(100vw - 10%);
  top: 50%;
  transform: translate(-50%, -50%);
}

.mc_slider_arrows.mc_style_1.mc_type_1 .mc_left_arrow,
.mc_slider_arrows.mc_style_1.mc_type_1 .mc_right_arrow {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.mc_slider_arrows.mc_style_1.mc_type_1 .mc_left_arrow:hover,
.mc_slider_arrows.mc_style_1.mc_type_1 .mc_right_arrow:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.mc_slider_arrows.mc_style_1.mc_type_2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .mc_slider_arrows.mc_style_1.mc_type_1 {
    width: calc(100vw - 3%);
  }
}

@media (max-width: 991px) {
  .mc_slider_arrows.mc_style_1 {
    position: initial;
    width: 100%;
    justify-content: center;
    gap: 30px;
    visibility: visible;
    opacity: 1;
    transform: initial;
  }

  .mc_slider_arrows.mc_style_1 .mc_left_arrow,
  .mc_slider_arrows.mc_style_1 .mc_right_arrow {
    transform: initial;
  }

  .mc_slider_arrows.mc_style_1.mc_type_1 {
    position: absolute;
    top: calc(100% - 45px);
  }

  .mc_slider_arrows.mc_style_1.mc_type_2 {
    position: initial;
    transform: initial;
  }
}

.mc_slider_arrows.mc_style_2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_slider_arrows.mc_style_2.mc_type_1 .slick-arrow:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.mc_slider_arrows.mc_style_2 .slick-arrow {
  width: 50px;
  height: 45px;
  border: 1px solid currentColor;
  transition: all 0.4s ease;
}

.mc_slider_arrows.mc_style_2 .slick-arrow:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

/*=================================================
 Slider Paginations
===================================================*/
.mc_pagination.mc_style_1 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc_pagination.mc_style_1 .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: var(--primary-color);
  opacity: 0.2;
  font-size: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mc_pagination.mc_style_1 .slick-dots .slick-active {
  opacity: 1;
}

.mc_pagination.mc_style_2 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc_pagination.mc_style_2 .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  font-size: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mc_pagination.mc_style_2 .slick-dots .slick-active {
  background-color: var(--primary-color);
}

.mc_pagination.mc_style_3 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc_pagination.mc_style_3 .slick-dots li {
  width: 30px;
  height: 8px;
  border-radius: 5px;
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  font-size: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mc_pagination.mc_style_3 .slick-dots .slick-active {
  background-color: var(--primary-color);
}

.mc_pagination.mc_style_4 {
  position: absolute;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
}

.mc_pagination.mc_style_4 .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc_pagination.mc_style_4 .slick-dots li {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--white-color);
  font-size: 0;
  cursor: pointer;
  position: relative;
}

.mc_pagination.mc_style_4 .slick-dots li::before {
  content: "";
  width: 31px;
  height: 31px;
  border: 1px solid var(--white-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease;
}

.mc_pagination.mc_style_4 .slick-dots .slick-active::before {
  transform: translate(-50%, -50%) scale(1);
}

/*=======================================================
 Horizontal Slider
=========================================================*/
.mc_horizontal_slider_wrapper {
  overflow-x: hidden;
}

.mc_horizontal_slider_wrapper:hover .mc_location_list,
.mc_horizontal_slider_wrapper:hover .mc_slider_text_wrapper {
  animation-play-state: paused;
}

.mc_horizontal_slider_wrapper.mc_type_1 .mc_slider_text_wrapper {
  animation-direction: reverse;
}

.mc_horizontal_slider_in {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.mc_location_list {
  height: max-content;
  display: flex;
  gap: 24px;
  margin: 0 12px;
  animation: infinite-slide 50s linear infinite;
}

.mc_location_list .mc_card.mc_style_2:nth-child(odd) {
  margin-top: 70px;
}

.mc_slider_text_wrapper {
  margin: 0 10px;
  animation: infinite-slide 80s linear infinite;
}

@keyframes infinite-slide {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*================================================================
  09. Video Modal
==================================================================*/
.mc_video_popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  transition-delay: 0.3s;
}

.mc_video_popup.active {
  left: 0;
  transition-delay: 0s;
  left: 0;
}

.mc_video_popup-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  transition: all 0.4s ease-out;
  opacity: 0;
}

.mc_video_popup.active .mc_video_popup-overlay {
  opacity: 0.8;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.mc_video_popup-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  text-align: center;
  transition: all 0.4s ease-out;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  padding: 15px;
}

.mc_video_popup.active .mc_video_popup-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mc_video_popup-content:after {
  content: "";
  display: inline-block;
  height: calc(100% + 1px);
  vertical-align: middle;
}

.mc_video_popup_container {
  display: inline-block;
  position: relative;
  text-align: left;
  background: var(--white-color);
  max-width: 1380px;
  width: 100%;
  vertical-align: middle;
}

.mc_video_popup_container .embed-responsive {
  width: 100%;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.embed-responsive-16by9::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mc_video_popup_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #d90d0d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.mc_video_popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.mc_video_popup_close:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--white-color);
  margin-left: -10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.mc_video_popup_close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--white-color);
  margin-left: -10px;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mc_video_popup_close:hover:before,
.mc_video_popup_close:hover:after {
  background: #000;
}

.mc_video_popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.mc_video_popup-align {
  overflow: hidden;
}

/*End Video Popup*/
/*===============================================================
 10. Preloader
==================================================================*/
.mc_preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000000;
}

.mc_preloader .mc_preloader_in {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--white-color);
}

.mc_preloader .mc_preloader_icon {
  width: 70px;
  height: 70px;
  background-color: var(--gray-color);
}

.mc_preloader .mc_preloader_icon::before,
.mc_preloader .mc_preloader_icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0);
  animation: preloaderAnimation 3s linear infinite;
}

.mc_preloader .mc_preloader_icon::after {
  animation-delay: 1.5s;
}

.mc_preloader p {
  letter-spacing: 4px;
}

@keyframes preloaderAnimation {
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

/*===============================================================
  11. All Hero Section
=================================================================*/
.mc_hero.mc_style_1 {
  padding: 215px 0 120px;
  min-height: 650px;
  position: relative;
}

.mc_hero.mc_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mc_hero.mc_style_1 .mc_hero_content {
  max-width: 946px;
  margin: 0 auto;
}

.mc_hero.mc_style_1 .mc_hero_subtitle::before,
.mc_hero.mc_style_1 .mc_hero_subtitle::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  top: 12px;
}

.mc_hero.mc_style_1 .mc_hero_subtitle::before {
  left: -38px;
}

.mc_hero.mc_style_1 .mc_hero_subtitle::after {
  right: -38px;
}

.mc_hero.mc_style_1 .mc_tabs {
  width: 100%;
}

.mc_hero.mc_style_1 .mc_btn_wrapper {
  gap: 15px;
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_1 {
    min-height: auto;
    padding: 220px 0 140px;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_1 {
    padding: 160px 0 80px;
  }
}

@media (max-width: 575px) {

  .mc_hero.mc_style_1 .mc_hero_subtitle::before,
  .mc_hero.mc_style_1 .mc_hero_subtitle::after {
    display: none;
  }
}

.mc_hero.mc_style_2 {
  margin-top: 100px;
  padding: 274px 0 310px;
}

.mc_hero.mc_style_2 .mc_hero_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.8s ease;
}

.mc_hero.mc_style_2 .mc_hero_content {
  width: min(100%, 640px);
  transform: scale(1, 0);
  transform-origin: top right;
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.mc_hero.mc_style_2 .mc_hero_decs {
  line-height: 1.75em;
}

.mc_hero.mc_style_2.mc_type_2 {
  margin-top: 0;
  padding: 358px 0 310px;
}

.mc_hero.mc_style_2.mc_type_2 .mc_hero_content {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  transform: scale(1, 1);
}

.mc_hero.mc_style_2.mc_type_2 .mc_hero_text {
  width: min(100%, 696px);
  transform: translateY(-60px);
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.3s;
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_2 {
    margin-top: 80px;
    padding: 140px 0 310px;
  }

  .mc_hero.mc_style_2 .mc_hero_content {
    width: 100%;
  }

  .mc_hero.mc_style_2.mc_type_1 {
    min-height: auto;
    padding: 160px 0 310px;
  }

  .mc_hero.mc_style_2.mc_type_1 .mc_hero_content {
    max-width: 100%;
  }

  .mc_hero.mc_style_2.mc_type_2 {
    margin-top: 0;
    padding: 220px 0 200px;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_2 {
    padding: 80px 0 310px;
  }

  .mc_hero.mc_style_2.mc_type_2 {
    padding: 160px 0 130px;
  }

  .mc_hero.mc_style_2.mc_type_2 .mc_hero_content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .mc_hero.mc_style_2.mc_type_2 .mc_hero_text {
    width: 100%;
  }
}

.mc_hero.mc_style_3 {
  width: 100%;
  min-height: 580px;
  /* margin-top: 100px; */
  padding: 245px 0 140px;
}

.mc_hero.mc_style_3 .mc_hero_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s ease;
}

.mc_hero.mc_style_3 .mc_hero_content {
  width: min(100%, 936px);
  padding: 33px 30px;
  margin: 0 auto;
  background: rgba(29, 29, 29, 0.5);
  backdrop-filter: blur(25px);
}

.mc_hero.mc_style_3 .mc_hero_title {
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_3 {
    margin-top: 80px;
    padding: 150px 0 140px;
    min-height: 600px;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_3 {
    min-height: 100%;
    padding: 80px 0 260px;
  }
}

.mc_hero.mc_style_4 {
  width: 100%;
  height: 100%;
  min-height: 1000px;
}

.mc_hero.mc_style_4 .mc_hero_thumbnail {
  width: 50vw;
  min-height: 1000px;
  margin-left: -12vw;
}

.mc_hero.mc_style_4 .mc_hero_thumbnail img {
  width: 100%;
}

.mc_hero.mc_style_4 .mc_hero_content {
  width: min(100%, 696px);
  padding: 270px 0 0;
}

@media (max-width: 1650px) {
  .mc_hero.mc_style_4 .mc_hero_thumbnail {
    margin-left: -5vw;
  }
}

@media (max-width: 1399px) {
  .mc_hero.mc_style_4 .mc_hero_thumbnail {
    margin-left: 30px;
  }
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_4 {
    padding: 220px 0 140px;
  }

  .mc_hero.mc_style_4 .mc_hero_thumbnail {
    width: 100%;
    margin-left: 0;
    min-height: 500px;
  }

  .mc_hero.mc_style_4 .mc_hero_content {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_4 {
    padding: 160px 0 80px;
  }
}

@media (max-width: 575px) {
  .mc_hero.mc_style_4 .mc_hero_thumbnail {
    min-height: 350px;
  }
}

.mc_hero.mc_style_5 {
  min-height: 1000px;
  padding: 400px 0 285px;
}

.mc_hero.mc_style_5 .mc_hero_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: all 2s ease;
}

.mc_hero.mc_style_5 .mc_hero_content {
  max-width: min(100%, 696px);
  clip-path: inset(0 100% 0 0);
  transition: all 0.8s ease;
  transition-delay: 0.4s;
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_5 {
    min-height: auto;
    padding: 220px 0 310px;
  }

  .mc_hero.mc_style_5 .mc_hero_content {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_5 {
    padding: 160px 0 310px;
  }
}

.mc_hero.mc_style_6 {
  min-height: 900px;
  padding: 160px 0 140px;
  margin-top: 100px;
}

.mc_hero.mc_style_6 .mc_hero_thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: all 2s ease;
}

.mc_hero.mc_style_6 .mc_hero_content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px 40px;
  flex-wrap: wrap;
}

.mc_hero.mc_style_6 .mc_property_title {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.mc_hero.mc_style_6 .mc_property_price {
  display: inline-block;
  width: min(100%, 363px);
  padding: 15px 24px;
  border-radius: 20px 0px 0px 0px;
  background: linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, #363636 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.mc_hero.mc_style_6 .mc_property_view_btn {
  display: block;
  width: 200px;
  padding: 66px 29px;
  line-height: 1.6em;
  background: rgba(29, 29, 29, 0.5);
  backdrop-filter: blur(100px);
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.68, 0.55, 0.27, 0.88);
  transition-delay: 0.3s;
}

.mc_hero.mc_style_6 .mc_property_view_btn span {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 100% 2px;
}

.mc_hero.mc_style_6 .mc_property_view_btn:hover {
  color: var(--white-color);
}

.mc_hero.mc_style_6 .mc_property_view_btn:hover span {
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_hero.mc_style_6 .mc_property_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_hero.mc_style_6 .mc_property_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_6 {
    margin-top: 80px;
    min-height: auto;
    padding: 80px 0 160px;
  }
}

.mc_hero.mc_style_7 {
  margin-top: 150px;
}

.mc_hero.mc_style_7 .mc_location_map {
  width: 100%;
  height: 100%;
  min-height: 550px;
  padding: 15px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mc_hero.mc_style_7 iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(90%) grayscale(0.6);
}

.mc_hero.mc_style_7 .mc_property_search.mc_style_1 {
  width: min(100%, 946px);
  position: relative;
  z-index: 2;
}

.mc_hero.mc_style_8 {
  width: 100%;
  min-height: 1000px;
  padding: 315px 0 140px;
}

.mc_hero.mc_style_8 .mc_hero_content {
  padding-bottom: 255px;
}

.mc_hero.mc_style_8 .mc_hero_text {
  width: min(100%, 576px);
}

.mc_hero.mc_style_8 .mc_hero_subtitle {
  display: inline-block;
  padding-left: 90px;
  position: relative;
}

.mc_hero.mc_style_8 .mc_hero_subtitle::before {
  content: "";
  width: 75px;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 24px;
}

.mc_hero.mc_style_8 .mc_property_features_wrapper {
  width: min(100%, 456px);
  padding: 37px 40px;
  border: 1px solid rgba(226, 226, 226, 0.5);
  position: absolute;
  right: 0;
  bottom: 0;
}

.mc_hero.mc_style_8 .mc_property_features_wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0.9;
  background: rgba(29, 29, 29, 0.5);
  backdrop-filter: blur(100px);
  position: absolute;
  left: 0;
  top: 0;
}

.mc_hero.mc_style_8 .mc_property_features_list li {
  margin-bottom: 15px;
  padding-left: 47px;
  line-height: 1.65em;
  position: relative;
}

.mc_hero.mc_style_8 .mc_property_features_list li:last-child {
  margin-bottom: 0;
}

.mc_hero.mc_style_8 .mc_property_features_list li span:first-child {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .mc_hero.mc_style_8 {
    padding: 160px 0 80px;
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .mc_hero.mc_style_8 .mc_hero_content {
    padding-bottom: 0;
  }

  .mc_hero.mc_style_8 .mc_hero_text {
    width: 100%;
  }

  .mc_hero.mc_style_8 .mc_property_features_wrapper {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    padding: 24px 15px;
  }
}

@media (max-width: 400px) {
  .mc_hero.mc_style_8 .mc_hero_subtitle {
    padding-left: 0;
  }

  .mc_hero.mc_style_8 .mc_hero_subtitle::before {
    display: none;
  }
}

/*========================================================
 Hero Component and Slider Component
==========================================================*/
.mc_slider.mc_style_2 .mc_tabs {
  width: max-content;
  position: absolute;
  top: 60%;
  right: calc(14% - 5px);
  transform: translateY(-60%);
}

.mc_slider.mc_style_2 .mc_tab_body {
  border-radius: 0 10px 10px 10px;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(25, 25, 25, 0.2);
}

.mc_slider.mc_style_2 .mc_pagination.mc_style_2 {
  width: fit-content;
  position: absolute;
  bottom: 260px;
}

@media (max-width: 1399px) {
  .mc_slider.mc_style_2 .mc_tabs {
    right: calc(4% - 5px);
  }
}

@media (max-width: 1199px) {
  .mc_slider.mc_style_2 .mc_tabs {
    width: 100%;
    position: initial;
    transform: initial;
    margin-top: -200px;
  }

  .mc_slider.mc_style_2 .mc_pagination.mc_style_2 {
    position: initial;
    transform: translateY(-270px);
  }
}

.mc_slider.mc_style_3 .mc_tabs {
  width: max-content;
  margin-top: -720px;
}

.mc_slider.mc_style_3 .mc_tab_body {
  border-radius: 0 10px 10px 10px;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(25, 25, 25, 0.2);
}

.mc_slider.mc_style_3 .mc_pagination.mc_style_2 {
  position: absolute;
  bottom: 260px;
}

.mc_slider.mc_style_3 .mc_pagination.mc_style_3 {
  width: fit-content;
  transform: translate(70px, -250px);
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .mc_slider.mc_style_3 .mc_tabs {
    right: calc(4% - 5px);
  }

  .mc_slider.mc_style_3 .mc_pagination.mc_style_3 {
    transform: translate(-27px, -250px);
  }
}

@media (max-width: 1199px) {
  .mc_slider.mc_style_3 .mc_tabs {
    width: 100%;
    position: initial;
    transform: initial;
    margin-top: -200px;
  }

  .mc_slider.mc_style_3 .mc_pagination.mc_style_2 {
    bottom: 140px;
  }

  .mc_slider.mc_style_3 .mc_pagination.mc_style_3 {
    transform: translate(0, -270px);
    margin: 0;
  }
}

@media (max-width: 991px) {
  .mc_slider.mc_style_3 .mc_pagination.mc_style_2 {
    bottom: 80px;
  }
}

/*========================================================
 Filter Tabs
==========================================================*/
.mc_tabs_container {
  margin-top: -88px;
}

.mc_tabs_container .mc_tabs {
  width: min(100%, 936px);
  margin: 0 auto;
}

.mc_tabs_container .mc_tabs .mc_tab_body {
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(25, 25, 25, 0.2);
}

.mc_tabs_container .mc_tabs .mc_property_search {
  padding: 20px;
}

/*========================================================
 Page Header
==========================================================*/
.mc_page_header.mc_style_1 {
  width: 100%;
  height: 100%;
  padding: 233px 0 164px;
}

@media (max-width: 991px) {
  .mc_page_header.mc_style_1 {
    padding: 160px 0 80px;
  }
}

.breadcrumb li a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.breadcrumb li a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.breadcrumb li.active {
  color: var(--primary-color);
}

@keyframes circularRotation {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*===============================================================
 12. About Us Section and Page
=================================================================*/
.mc_about.mc_style_1 .mc_about_img_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mc_about.mc_style_1 .mc_about_img_wrapper img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}

.mc_about.mc_style_1 .mc_features_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 40px;
}

.mc_about.mc_style_1 .mc_about_shape_1 {
  top: -16px;
  left: -16px;
  z-index: 0;
  animation: particleMovement1 10s linear infinite;
}

.mc_about.mc_style_1 .mc_about_shape_2 {
  right: -60px;
  bottom: -50px;
  z-index: 0;
  animation: particleMovement2 20s linear infinite;
}

@media (max-width: 991px) {
  .mc_about.mc_style_1 .mc_about_img_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .mc_about.mc_style_1 .mc_features_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.mc_about.mc_style_2 .mc_about_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.mc_about.mc_style_2 .mc_review_container {
  padding: 35px 30px;
  left: 0;
  bottom: 16%;
  display: flex;
  gap: 12px;
  box-shadow: 0px 0px 10px 0px rgba(25, 25, 25, 0.15);
  animation: slide-left 20s linear infinite;
}

.mc_about.mc_style_2 .mc_review_container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  opacity: 0.95;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_about.mc_style_2 .mc_review_container>* {
  position: relative;
  z-index: 1;
}

.mc_about.mc_style_2 .mc_avatar_wrapper {
  display: flex;
  align-items: center;
}

.mc_about.mc_style_2 .mc_avatar_wrapper img {
  border-radius: 50%;
  margin-left: -29px;
}

.mc_about.mc_style_2 .mc_avatar_wrapper img:first-child {
  margin-left: 0;
}

.mc_about.mc_style_2 .mc_ratinf_info {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mc_about.mc_style_2 .mc_ratinf_info .mc_rating {
  width: 120px;
  font-size: 14px;
  height: 30px;
  color: #fe5b2c;
}

.mc_about.mc_style_2 .mc_about_content {
  padding-left: 120px;
}

.mc_about.mc_style_2 .mc_bts_wrapper {
  display: flex;
  gap: 10px;
}

.mc_about.mc_style_2 .mc_counter.mc_style_1 {
  max-width: 100%;
  margin: 0;
}

.mc_about.mc_style_2 .mc_about_shape_1 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.mc_about.mc_style_2 .mc_video_block.mc_style_2 {
  width: min(100%, 410px);
  left: 0;
  top: 7%;
  padding: 24px 32px;
  box-shadow: 0px 0px 50px 0px rgba(29, 29, 29, 0.15);
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  animation: slide-left 20s linear infinite;
}

.mc_about.mc_style_2 .mc_video_block.mc_style_2 .mc_player_btn.mc_style_2 {
  width: 64px;
  height: 64px;
  flex: none;
  border: 2px solid var(--primary-color);
  transition: all 0.4s ease;
}

.mc_about.mc_style_2 .mc_video_block.mc_style_2:hover {
  animation-play-state: paused;
}

.mc_about.mc_style_2 .mc_video_block.mc_style_2:hover .mc_player_btn.mc_style_2 {
  background-color: transparent;
  color: var(--primary-color);
}

.mc_about.mc_style_2 .mc_offerbox {
  width: min(100%, 410px);
  left: 0;
  bottom: 0;
  padding-top: 32px;
  animation: slide-left 20s linear infinite;
  animation-delay: 10s;
}

.mc_about.mc_style_2 .mc_offerbox .mc_offerbox_icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gray-color);
  position: absolute;
  top: 0;
  right: 30px;
  transition: all 0.3s ease;
}

.mc_about.mc_style_2 .mc_offerbox .mc_video_info {
  padding: 24px 32px;
  box-shadow: 0px 0px 50px 0px rgba(29, 29, 29, 0.15);
}

.mc_about.mc_style_2 .mc_offerbox:hover {
  animation-play-state: paused;
}

.mc_about.mc_style_2 .mc_offerbox:hover .mc_offerbox_icon {
  border-color: var(--white-color);
}

.mc_about.mc_style_2.mc_type_1 .mc_about_thumbnail {
  padding-bottom: 60px;
}

@media (max-width: 1399px) {
  .mc_about.mc_style_2 .mc_about_content {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .mc_about.mc_style_2 .mc_about_content {
    padding-left: 0;
  }
}

.mc_about.mc_style_3 .mc_text_logo_wrapper {
  margin: 0 auto;
}

@keyframes slide-left {
  50% {
    transform: translateX(-115px);
  }
}

@keyframes particleMovement1 {
  50% {
    transform: translate(15px, 16px);
    opacity: 0;
  }
}

@keyframes particleMovement2 {
  50% {
    transform: translate(-60px, -50px);
    opacity: 0;
  }
}

/*==============================================================
 13. All Utility Componnents
================================================================*/
/*=============================================  
  All Button And Input Field Components
===============================================*/
.mc_btn.mc_style_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-wrap: nowrap;
  line-height: 1.57em;
  border: 0;
  outline: 0;
  padding: 9px 24px;
  border: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.58, 0, 0.88, 1);
  background-color: #000;
  color: #fff;
}

.mc_btn.mc_style_1::before {
  content: "";
  position: absolute;
  transition-duration: 600ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #a07134;
  transform: translateX(-50%);
  border-radius: 50%;
}

.mc_btn.mc_style_1.mc_primary_bg::before {
  background-color: var(--white-color);
}

.mc_btn.mc_style_1.mc_white_bg {
  border-color: var(--white-color);
}

.mc_btn.mc_style_1>* {
  position: relative;
  z-index: 1;
}

.mc_btn.mc_style_1 .mc_btn_arrow {
  width: 18px;
  height: 20px;
  display: inline-block;
  transform: translateY(-1px) rotate(-45deg);
  overflow: hidden;
}

.mc_btn.mc_style_1 .mc_btn_arrow i {
  text-shadow: -20px 0px 0px currentColor;
  transition: all 0.3s ease;
}

.mc_btn.mc_style_1:hover {
  color: var(--white-color);
}

.mc_btn.mc_style_1:hover .mc_btn_arrow i {
  transform: translateX(20px);
}

.mc_btn.mc_style_1:hover::before {
  top: -40%;
}

.mc_btn.mc_style_1:hover.mc_primary_bg {
  color: var(--primary-color);
}

.mc_player_btn.mc_style_1 {
  width: 50px;
  height: 50px;
}

.mc_player_btn.mc_style_1::before,
.mc_player_btn.mc_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
  border-radius: inherit;
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-border 3s linear infinite;
}

.mc_player_btn.mc_style_1::after {
  animation-delay: 1.5s;
}

.mc_player_btn.mc_style_1:hover::before,
.mc_player_btn.mc_style_1:hover::after {
  animation-play-state: paused;
}

.mc_player_btn.mc_style_3 {
  width: 100px;
  height: 100px;
}

.mc_player_btn.mc_style_3::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  border-radius: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  animation: pulse-bg 2s linear infinite;
  z-index: 0;
}

.mc_player_btn.mc_style_3>* {
  position: relative;
  z-index: 1;
}

.mc_player_btn.mc_style_3:hover::before {
  animation-play-state: paused;
}

.mc_social_btns.mc_style_1 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_social_btns.mc_style_1 a {
  width: 50px;
  height: 50px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  background-color: var(--white-color);
}

.mc_social_btns.mc_style_1 a:hover {
  color: var(--white-color);
}

@media (max-width: 767px) {
  .mc_social_btns.mc_style_1 {
    gap: 15px;
  }

  .mc_social_btns.mc_style_1 a {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

.mc_social_btns.mc_style_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 20px;
}

.mc_social_btns.mc_style_2 a {
  width: 50px;
  height: 50px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
}

.mc_social_btns.mc_style_2 a:nth-child(1) {
  background-color: #1877f2;
  border: 2px solid #1877f2;
}

.mc_social_btns.mc_style_2 a:nth-child(1):hover {
  color: #1877f2;
}

.mc_social_btns.mc_style_2 a:nth-child(2) {
  background-color: #000000;
  border: 2px solid #000000;
}

.mc_social_btns.mc_style_2 a:nth-child(2):hover {
  color: #000000;
}

.mc_social_btns.mc_style_2 a:nth-child(3) {
  background-color: #0a66c2;
  border: 2px solid #0a66c2;
}

.mc_social_btns.mc_style_2 a:nth-child(3):hover {
  color: #0a66c2;
}

.mc_social_btns.mc_style_2 a:nth-child(4) {
  background-color: #ea4335;
  border: 2px solid #ea4335;
}

.mc_social_btns.mc_style_2 a:nth-child(4):hover {
  color: #ea4335;
}

.mc_social_btns.mc_style_2 a:hover {
  background-color: transparent;
}

@media (max-width: 767px) {
  .mc_social_btns.mc_style_2 {
    gap: 15px;
  }

  .mc_social_btns.mc_style_2 a {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

.mc_text_btn.mc_style_1 {
  position: relative;
}

.mc_text_btn.mc_style_1::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(1, 1);
  transform-origin: top right;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mc_text_btn.mc_style_1:hover::before {
  transform: scale(0.5, 1);
}

.mc_text_btn.mc_style_2 {
  display: inline-flex;
  gap: 8px;
}

.mc_text_btn.mc_style_2 .mc_btn_arrow {
  overflow: hidden;
  display: inline-block;
  width: 16px;
}

.mc_text_btn.mc_style_2 .mc_btn_arrow i {
  text-shadow: -30px 0px 0px currentColor;
  transition: all 0.3s cubic-bezier(0.68, 0.55, 0.27, 0.55);
}

.mc_text_btn.mc_style_2:hover .mc_btn_arrow i {
  transform: translateX(30px);
}

.mc_scrollup_btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(120px) scale(0);
  transition: all 0.4s cubic-bezier(0.68, 0.55, 0.27, 0.55);
}

.mc_scrollup_btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mc_scrollup_btn:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--white-color);
}

.mc_text_logo_wrapper {
  width: 270px;
  height: 270px;
  flex: none;
}

.mc_text_logo_wrapper .mc_text_logo {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circularRotation 20s linear infinite;
}

/*=============================================  
  All Section Heading Components
===============================================*/
.mc_section_heading.mc_style_1.mc_type_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mc_section_heading.mc_style_1 span {
  display: inline-block;
  position: relative;
}

.mc_section_heading.mc_style_1 span svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 90%;
}

.mc_section_heading.mc_style_1 .mc_vector_shape {
  width: min(100%, 418px);
}

@media (max-width: 991px) {
  .mc_section_heading.mc_style_1 br {
    display: none;
  }

  .mc_section_heading.mc_style_1.mc_type_1 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

/*=============================================  
  Property Searchbox Component
===============================================*/
.mc_property_search.mc_style_1 {
  width: 100%;
  padding: 0px;
}

.mc_property_search.mc_style_1 .mc_search_form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc_property_search.mc_style_1 .mc_input_wrapper {
  width: 11%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(1) {
  width: 20%;
  display: unset !important;
}


.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(2) {
  width: 18%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(3) {
  width: 10%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(4) {
  width: 10%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(5) {
  width: 10%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(6) {
  width: 10%;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(7) {
  width: 10%;
}


.mc_property_search.mc_style_1 .mc_property_location .ts-control::after {
  content: "\f3c5";
}

.mc_property_search.mc_style_1 .ts-control {
  /* height: 45px; */
  width: 100%;
  /* border-color: var(--border-color);
  border-radius: 10px; */
  border-color: var(--border-color);
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-left: 1px solid var(--border-color);
  padding-bottom: 1rem;
  padding-top: 1rem;
  line-height: 1.5rem;

}

.mc_property_search.mc_style_1 .ts-control input {
  min-width: 70px;
  margin: 0 0 0 4px !important;
  display: none !important;
}

.mc_property_search.mc_style_1 .ts-control input::placeholder {
  color: var(--primary-color);
}

.mc_property_search.mc_style_1 .ts-control::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.mc_property_search.mc_style_1 .ts-control,
.mc_property_search.mc_style_1 .ts-control input,
.mc_property_search.mc_style_1 .ts-dropdown {
  font-size: 16px;
  line-height: 1.75em;
  color: var(--primary-color);
}

.mc_property_search.mc_style_1 .mc_advanced_search_btn {
  width: 100%;
  height: 45px;
  padding: 8px 15px;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.mc_property_search.mc_style_1 .mc_btn.mc_style_1 {
  border-color: var(--border-color);
}

.mc_property_search.mc_style_1 .mc_btn.mc_style_1.banner-search-btn {
  /* height: 100%; */
  border-radius: 0;
  line-height: 1.75em;
  border: none;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.mc_property_search.mc_style_1.mc_type_1 {
  max-width: 455px;
  padding: 41px 35px 50px;
  border-radius: 0 10px 10px 10px;
}

.mc_property_search.mc_style_1.mc_type_1 .mc_search_form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

.mc_property_search.mc_style_1.mc_type_1 .mc_input_wrapper,
.mc_property_search.mc_style_1.mc_type_1 .mc_btns_wrapper {
  width: 100% !important;
}

.mc_property_search.mc_style_1.mc_type_1 .ts-control {
  height: 50px;
  padding-left: 45px;
}

.mc_property_search.mc_style_1.mc_type_1 .mc_property_icon {
  display: inline-block;
  width: 15px;
  height: 32px;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.mc_property_search.mc_style_1.mc_type_1 .mc_property_location .ts-control::after {
  content: "";
}

.mc_property_search.mc_style_1.mc_type_1 .mc_btns_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.mc_property_search.mc_style_1.mc_type_1 .mc_btn.mc_style_1,
.mc_property_search.mc_style_1.mc_type_1 .mc_advanced_search_btn {
  flex: 1;
  min-width: 185px;
  height: 50px;
}

.mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(1) {
  width: 33%;
}

.mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(2) {
  width: 37%;
}

.mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(3),
.mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(4) {
  width: auto;
}

@media (max-width: 1199px) {
  .mc_property_search.mc_style_1.mc_type_1 {
    max-width: 100%;
  }

  .mc_property_search.mc_style_1.mc_type_1 br {
    display: none;
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_search_form {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_btns_wrapper {
    min-width: 100%;
    grid-column: auto/span 2;
    justify-content: space-between;
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_btn.mc_style_1,
  .mc_property_search.mc_style_1.mc_type_1 .mc_advanced_search_btn {
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 991px) {
  .mc_property_search.mc_style_1 .mc_input_wrapper {
    width: 20%;
  }

  .mc_property_search.mc_style_1 .mc_search_form {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(1) {
    width: calc(30% - 10px);
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(2) {
    width: calc(25% - 0px);
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(3) {
    width: calc(20% - 10px);
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(4) {
    width: 20%;
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(5) {
    width: 20%;
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(6) {
    width: 20%;
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(4),
  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(5) {
    /* width: initial; */
  }

  .mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(1),
  .mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(2) {
    width: calc(50% - 5px);
  }

  .mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(3),
  .mc_property_search.mc_style_1.mc_type_2 .mc_input_wrapper:nth-child(4) {
    width: auto;
  }
}

@media (max-width: 767px) {
  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(1) {
    width: calc(40% - 5px);
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(2) {
    width: calc(60% - 5px);
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(3) {
    width: 100%;
  }

  .mc_property_search.mc_style_1.mc_type_1 {
    padding: 30px 20px 40px;
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_search_form {
    grid-template-columns: repeat(1, 1fr);
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_btns_wrapper {
    grid-column: auto/span 1;
  }
}

@media (max-width: 450px) {
  .mc_property_search.mc_style_1 .mc_input_wrapper {
    width: 100% !important;
  }

  .mc_property_search.mc_style_1 .mc_input_wrapper .mc_btn.mc_style_1 {
    width: 100%;
  }

  .mc_property_search.mc_style_1.mc_type_1 .mc_btn.mc_style_1,
  .mc_property_search.mc_style_1.mc_type_1 .mc_advanced_search_btn {
    max-width: 100%;
  }
}

.ts-dropdown {
  border: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.3s ease;
  display: block !important;
  pointer-events: none;
}

.ts-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ts-dropdown .option {
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.ts-dropdown .option.active {
  background-color: var(--gray2-color);
}

.mc_property_sort_wrapper {
  width: 253px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc_property_sort_wrapper span {
  text-wrap: nowrap;
}

.mc_property_sort_wrapper .ts-control {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.7em;
}

.mc_property_sort_wrapper .ts-control::after {
  content: "\f078";
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 15px;
}

.mc_property_sort_wrapper .ts-control input {
  min-width: auto !important;
}

@media (max-width: 1199px) {
  .mc_property_list_wrapper .mc_card.mc_style_1 .mc_property_info {
    flex-wrap: wrap;
  }
}

/*=============================================  
  Advanced Search Modal
===============================================*/
.mc_advanced_search_modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.mc_advanced_search_modal::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_advanced_search_modal .mc_advanced_search_content {
  width: min(100%, 696px);
  margin: 76px auto 0;
  padding: 44px 50px 50px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
}

.mc_advanced_search_modal .mc_advanced_search_items {
  width: 100%;
  height: min(100vh - 250px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-color) var(--white-color);
  -ms-overflow-style: none;
}

.mc_advanced_search_modal .mc_search_item:nth-child(3),
.mc_advanced_search_modal .mc_search_item:nth-child(4),
.mc_advanced_search_modal .mc_search_item:nth-child(5) {
  grid-column: auto/span 2;
}

.mc_advanced_search_modal .mc_filter_widget_list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mc_advanced_search_modal .mc_filter_widget_list li {
  width: 100%;
}

.mc_advanced_search_modal .mc_filter_widget_list.mc_full li {
  width: calc(50% - 10px);
  text-wrap: nowrap;
}

.mc_advanced_search_modal .mc_input_group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px 7px;
}

.mc_advanced_search_modal .mc_input_group .mc_form_field {
  max-width: 155px;
}

.mc_advanced_search_modal .mc_close_modal {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.mc_advanced_search_modal .mc_close_modal::before,
.mc_advanced_search_modal .mc_close_modal::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease;
}

.mc_advanced_search_modal .mc_close_modal::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mc_advanced_search_modal .mc_close_modal::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mc_advanced_search_modal .mc_close_modal:hover::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mc_advanced_search_modal .mc_close_modal:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mc_advanced_search_modal.active {
  visibility: visible;
  opacity: 1;
}

.mc_advanced_search_modal.active .mc_advanced_search_content {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .mc_advanced_search_modal .mc_advanced_search_content {
    padding: 40px 20px 40px;
  }
}

@media (max-width: 400px) {
  .mc_advanced_search_modal .mc_advanced_search_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .mc_advanced_search_modal .mc_search_item {
    grid-column: auto/span 1 !important;
  }

  .mc_advanced_search_modal .mc_filter_widget_list li {
    width: 100% !important;
  }

  .mc_advanced_search_modal .mc_input_group {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc_advanced_search_modal .mc_input_group .mc_input_wrapper {
    min-width: 100%;
  }

  .mc_advanced_search_modal .mc_input_group .mc_form_field {
    min-width: 100%;
  }

  .mc_advanced_search_modal .mc_input_group .mc_hyphen {
    display: none;
  }
}

/*=============================================
 Counter Components
===============================================*/
.mc_counter.mc_style_1 {
  max-width: 264px;
  margin: 0 auto;
}

.mc_counter.mc_style_1 .mc_counter_icon {
  width: 50px;
  height: 50px;
}

.mc_counter.mc_style_1 .odometer.odometer-auto-theme,
.mc_counter.mc_style_1 .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.mc_counter.mc_style_1 .odometer.odometer-auto-theme,
.mc_counter.mc_style_1 .odometer.odometer-auto-theme .odometer-digit,
.mc_counter.mc_style_1 .odometer.odometer-theme-default,
.mc_counter.mc_style_1 .odometer.odometer-theme-default .odometer-digit {
  vertical-align: top;
}

.mc_counter.mc_style_1 .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.mc_counter.mc_style_1 .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  left: -5px;
}

/*=============================================
 Rating Component
===============================================*/
.mc_rating_percentage,
.mc_rating {
  overflow: hidden;
}

.mc_rating_percentage::before,
.mc_rating::before {
  content: "\f005\f005\f005\f005\f005";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
}

.mc_rating {
  max-width: 120px;
  flex: none;
  height: 24px;
  position: relative;
  color: var(--accent-color);
  font-size: 16px;
  letter-spacing: 7px;
}

.mc_rating::before {
  font-weight: 400;
}

.mc_rating_percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.mc_rating_percentage::before {
  font-weight: 900;
}

/*=============================================
 Avatar Component
===============================================*/
.mc_avatar.mc_style_1 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mc_avatar.mc_style_1 .mc_avatar_icon {
  width: 60px;
  height: 60px;
}

.mc_avatar.mc_style_1 .mc_avatar_icon img {
  border-radius: inherit;
}

.mc_avatar.mc_style_1 .mc_avatar_info {
  text-wrap: nowrap;
}

.mc_avatar.mc_style_2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_avatar.mc_style_2 .mc_avatar_icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
}

.mc_avatar.mc_style_2 .mc_avatar_info {
  text-wrap: nowrap;
}

.mc_team.mc_style_1 .mc_team_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.mc_team.mc_style_1 .mc_social_btns.mc_style_1 {
  padding: 15px;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22.5px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mc_team.mc_style_1 .mc_social_btns.mc_style_1 a {
  border-radius: 10px;
}

.mc_team.mc_style_1 .mc_social_btns.mc_style_1 a:hover {
  background-color: var(--primary-color);
}

.mc_team.mc_style_1 .mc_team_bio {
  padding: 23px 15px 0;
}

.mc_team.mc_style_1 .mc_team_contact_list {
  padding-bottom: 2px;
}

.mc_team.mc_style_1 .mc_team_contact_list li {
  padding-left: 40px;
  margin-bottom: 12px;
  position: relative;
}

.mc_team.mc_style_1 .mc_team_contact_list li:last-child {
  margin-bottom: 0;
}

.mc_team.mc_style_1 .mc_team_contact_list .mc_contact_icon {
  width: 30px;
  height: 30px;
  padding: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_team.mc_style_1 .mc_team_contact_list a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_team.mc_style_1 .mc_team_contact_list a:hover {
  color: var(--primary-color);
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_team.mc_style_1:hover .mc_social_btns.mc_style_1 {
  transform: translate(-50%, -50%);
  gap: 15px;
  opacity: 1;
  pointer-events: initial;
}

@media (max-width: 991px) {
  .mc_team.mc_style_1 .mc_team_bio {
    padding: 17px 10px 0;
  }
}

@media (max-width: 575px) {
  .mc_team.mc_style_1 {
    width: min(100%, 330px);
    margin: 0 auto;
  }
}

/*=============================================
 All CTA Components
===============================================*/
.mc_cta.mc_style_1 {
  padding: 127px 0 140px;
  background-repeat: no-repeat;
  background-size: cover;
}

.mc_cta.mc_style_1 .mc_cta_title span {
  display: inline-block;
  position: relative;
  margin-left: 10px;
}

.mc_cta.mc_style_1 .mc_cta_title svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -5px;
  color: var(--gray-color);
}

.mc_cta.mc_style_1 .mc_btn.mc_style_1 {
  border-color: var(--white-color);
  position: relative;
  z-index: 1;
}

.mc_cta.mc_style_1 .mc_btn.mc_style_1::before {
  background-color: var(--white-color);
}

.mc_cta.mc_style_1 .mc_btn.mc_style_1.mc_white_bg::before {
  background-color: var(--primary-color);
}

.mc_cta.mc_style_1 .mc_btn.mc_style_1:hover {
  color: var(--primary-color);
}

.mc_cta.mc_style_1 .mc_btn.mc_style_1:hover.mc_white_bg {
  color: var(--white-color);
}

.mc_cta.mc_style_1 .mc_cta_shape_1 {
  top: 30px;
  right: 10%;
  animation: rotate-y 20s linear infinite;
}

.mc_cta.mc_style_1 .mc_cta_shape_2 {
  left: 4%;
  bottom: 12%;
  animation: rotate-y 20s linear infinite;
  animation-delay: 10s;
}

.mc_cta.mc_style_1 .mc_cta_shape_3 {
  top: 60px;
  right: 17%;
  animation: rotate-y 20s linear infinite;
}

.mc_cta.mc_style_1 .mc_cta_shape_4 {
  left: 17%;
  bottom: 25%;
  animation: rotate-y 20s linear infinite;
  animation-delay: 10s;
}

@media (max-width: 991px) {
  .mc_cta.mc_style_1 {
    padding: 80px 15px;
  }

  .mc_cta.mc_style_1 br,
  .mc_cta.mc_style_1 svg {
    display: none;
  }
}

/*=============================================  
  Video Block
===============================================*/
.mc_video_block.mc_style_1 {
  min-height: 650px;
}

@media (max-width: 1199px) {
  .mc_video_block.mc_style_1 {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .mc_video_block.mc_style_1 {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .mc_video_block.mc_style_1 {
    min-height: 300px;
  }
}

.mc_video_block.mc_style_3 {
  min-height: 900px;
}

@media (max-width: 1199px) {
  .mc_video_block.mc_style_3 {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .mc_video_block.mc_style_3 {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .mc_video_block.mc_style_3 {
    min-height: 300px;
  }
}

/*=============================================
  FAQ Components
===============================================*/
.mc_faq_heading {
  width: min(100%, 460px);
}

@media (max-width: 991px) {
  .mc_faq_heading {
    width: 100%;
  }
}

.mc_faq_thumbnail {
  width: fit-content;
  margin-top: -40px;
  margin-left: -180px;
}

.mc_faq_thumbnail img {
  width: 100%;
}

@media (max-width: 991px) {
  .mc_faq_thumbnail {
    margin-left: 0;
    margin-top: 0;
  }
}

.mc_accordian.mc_style_1 {
  border-bottom: 1px solid var(--gray-color);
}

.mc_accordian.mc_style_1:last-child {
  border-bottom: 0;
}

.mc_accordian.mc_style_1 .mc_accordian_head {
  padding: 12px 30px 24px 0;
  cursor: pointer;
}

.mc_accordian.mc_style_1 .mc_accordian_toggler {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 7px solid currentColor;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: 37px;
  right: 15px;
  transition: all 0.3s ease;
}

.mc_accordian.mc_style_1 .mc_accordian_body {
  padding: 10px 0px;
  margin-top: -35px;
}

.mc_accordian.mc_style_1.mc_type_1 .mc_accordian_head {
  padding: 30px 30px 40px 0;
}

.mc_accordian.mc_style_1.mc_type_1 .mc_accordian_toggler {
  top: 50px !important;
  right: 0;
}

.mc_accordian.mc_style_1.mc_type_1 .mc_accordian_body {
  padding: 0 0 40px 0;
}

.mc_accordian.mc_style_1.mc_type_1:first-child .mc_accordian_head {
  border-top: 1px solid var(--gray-color);
}

.mc_accordian.mc_style_1.mc_type_2 .mc_accordian_toggler {
  width: 8px;
  height: 8px;
  border: 1px solid var(--secondary-color);
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

.mc_accordian.mc_style_1.active .mc_accordian_head {
  pointer-events: none;
}

.mc_accordian.mc_style_1.active .mc_accordian_toggler {
  transform: translateY(-7px) rotateX(180deg);
}

.mc_accordian.mc_style_1.active .mc_card.mc_style_11 .mc_card_thumbnail {
  transform: scale(1);
}

.mc_accordian.mc_style_1.active.mc_type_2 .mc_accordian_toggler {
  transform: rotate(-135deg);
}

@media (max-width: 767px) {
  .mc_accordian.mc_style_1.mc_type_1 .mc_accordian_head {
    padding: 20px 30px 30px 0;
  }

  .mc_accordian.mc_style_1.mc_type_1 .mc_accordian_toggler {
    top: 40px;
  }

  .mc_accordian.mc_style_1.mc_type_1 .mc_accordian_body {
    padding: 0 0 30px 0;
  }

  .mc_accordian.mc_style_1 .mc_card_subtitle {
    margin-bottom: 15px;
  }
}

.mc_accordian.mc_style_2 {
  border-bottom: 1px solid var(--gray-color);
}

.mc_accordian.mc_style_2 .mc_accordian_head {
  padding: 30px 40px 40px 0;
  cursor: pointer;
}

.mc_accordian.mc_style_2 .mc_accordian_toggler {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 7px solid currentColor;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: 50px;
  right: 0px;
  transition: all 0.3s ease;
}

.mc_accordian.mc_style_2 .mc_accordian_body {
  padding: 0 0 40px 0;
}

.mc_accordian.mc_style_2:first-child {
  border-top: 1px solid var(--gray-color);
}

.mc_accordian.mc_style_2.active .mc_accordian_head {
  pointer-events: none;
}

.mc_accordian.mc_style_2.active .mc_accordian_toggler {
  transform: translateY(-7px) rotateX(180deg);
}

.mc_accordian.mc_style_2.active .mc_card.mc_style_11 .mc_card_thumbnail {
  transform: scale(1);
}

@media (max-width: 767px) {
  .mc_accordian.mc_style_2 .mc_accordian_head {
    padding: 20px 40px 30px 0;
  }

  .mc_accordian.mc_style_2 .mc_accordian_toggler {
    top: 40px;
  }

  .mc_accordian.mc_style_2 .mc_accordian_body {
    padding: 0 0 30px 0;
  }
}

/*=============================================
  Form and input Components Contact Section
===============================================*/
.mc_form_field {
  outline: 0;
  padding: 8px 15px;
  border: 1px solid var(--border-color);
}

.mc_custom_checkbox {
  display: inline-block;
  position: relative;
  min-height: 24px;
}

.mc_custom_checkbox input {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}

.mc_custom_checkbox input:checked+label::before {
  background-color: var(--primary-color);
}

.mc_custom_checkbox input:checked+label::after {
  border-color: var(--white-color);
  opacity: 1;
}

.mc_custom_checkbox>label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  line-height: 1.75em;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.mc_custom_checkbox>label::before,
.mc_custom_checkbox>label::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}

.mc_custom_checkbox>label::before {
  height: 15px;
  width: 15px;
  border-radius: 2px;
  border: 1px solid var(--primary-color);
  left: 0;
  top: 6px;
}

.mc_custom_checkbox>label::after {
  height: 5px;
  width: 8px;
  border: 2px solid currentColor;
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
  border-radius: 1px;
  left: 4px;
  top: 10px;
  opacity: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/*===============================================
 Flatpickr Date and Time Taker
=================================================*/
.flatpickr-months .flatpickr-month {
  height: 45px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  height: 45px;
  padding: 8px 10px;
  color: var(--primary-color);
}

.flatpickr-current-month {
  padding: 10px 0 0 0;
  font-weight: 700;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: 500;
}

.dayContainer {
  padding: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

span.flatpickr-weekday {
  color: var(--primary-color);
  font-weight: 600;
}

.flatpickr-day.today {
  font-weight: 700;
  border-color: var(--primary-color);
}

/*===============================================
 Contact Component And Section
=================================================*/
.mc_contact_form .mc_form_field {
  display: block;
  width: 100%;
  border: 0;
  padding: 0 0 10px 0;
  resize: none;
  color: var(--primary-color);
  background-color: transparent;
  border-bottom: 1px solid var(--primary-color);
}

.mc_contact_form .mc_form_field::placeholder {
  color: var(--primary-color);
}

.mc_contact_form .ts-control {
  padding: 18px 15px 17px;
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  color: var(--secondary-color);
}

.mc_contact_form .mc_country .ts-control::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.mc_contact_form .mc_input_icon {
  right: 0;
  bottom: 12px;
  pointer-events: none;
  font-size: 12px;
}

.mc_contact_form.mc_type_1 .mc_form_field {
  padding: 13px 15px 12px;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
}

.mc_contact_form.mc_type_1 .mc_form_field:focus {
  border-color: var(--primary-color);
}

.mc_contact_form.mc_type_1 .mc_btn.mc_style_1 {
  padding: 14px 25px;
}

.mc_contact_form_wrapper {
  padding: 30px 40px 40px;
}

@media (max-width: 767px) {
  .mc_contact_form_wrapper {
    padding: 30px 20px 40px;
  }
}

.mc_location_map iframe {
  width: 100%;
  min-height: 560px;
  border-radius: inherit;
  filter: brightness(110%) grayscale(0.8);
}

@media (max-width: 991px) {
  .mc_location_map iframe {
    min-height: 350px;
  }
}

.mc_contact_map {
  width: 50vw;
  height: 100%;
  min-height: 500px;
}

.mc_contact_map iframe {
  display: block;
  transform: 0;
 
 
  filter: brightness(120%) grayscale(0.6);
}

.mc_contact_map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .mc_contact_map {
    width: 100%;
    padding-top: 80px;
  }

  .mc_contact_map iframe {
    border-radius: 20px;
  }
}

/*=============================================
 Finding Apartments Area Section
===============================================*/
.mc_apartments_area {
  width: 100%;
  height: 100%;
  min-height: 1280px;
}

.mc_apartments_area .mc_apartments_wrapper {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mc_apartments_area .mc_apartment_item {
  width: min(100%, 239px);
  gap: 14px;
  position: absolute;
}

.mc_apartments_area .mc_apartment_item .mc_apartment_info {
  width: 100%;
  padding: 17px 15px 25px;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: all 0.4s ease;
}

.mc_apartments_area .mc_apartment_item .mc_apartment_info::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%) rotate(45deg);
}

.mc_apartments_area .mc_apartment_item .mc_apartment_btn {
  width: 50px;
  height: 50px;
  border: 13px solid var(--white-color);
  transition: all 0.4s ease;
}

.mc_apartments_area .mc_apartment_item .mc_apartment_btn:hover {
  background-color: var(--white-color);
  border-color: var(--primary-color);
}

.mc_apartments_area .mc_apartment_item:nth-child(1) {
  top: 21%;
  left: 13%;
}

.mc_apartments_area .mc_apartment_item:nth-child(2) {
  top: 26%;
  right: 16%;
}

.mc_apartments_area .mc_apartment_item:nth-child(3) {
  bottom: 14%;
  left: 23%;
}

.mc_apartments_area .mc_apartment_item:nth-child(4) {
  bottom: 30%;
  right: 8%;
}

.mc_apartments_area .mc_apartment_item.active .mc_apartment_info {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

@media (max-width: 1399px) {
  .mc_apartments_area {
    min-height: 900px;
  }

  .mc_apartments_area .mc_apartment_item:nth-child(1) {
    top: 16%;
    left: 8%;
  }

  .mc_apartments_area .mc_apartment_item:nth-child(2) {
    top: 20%;
    right: 9%;
  }

  .mc_apartments_area .mc_apartment_item:nth-child(3) {
    bottom: 12%;
    left: 10%;
  }

  .mc_apartments_area .mc_apartment_item:nth-child(4) {
    bottom: 25%;
    right: 5%;
  }
}

@media (max-width: 991px) {
  .mc_apartments_area .mc_apartment_item {
    align-items: center;
  }
}

@media (max-width: 575px) {
  .mc_apartments_area .mc_apartment_item {
    position: initial;
    align-items: center;
  }
}

/*===========================================================
  Pagination Box
=============================================================*/
.mc_pagination_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

@media (max-width: 991px) {
  .mc_pagination_box {
    gap: 15px;
  }
}

@media (max-width: 400px) {
  .mc_pagination_box {
    gap: 5px;
  }
}

.mc_pagination_box .mc_pagination_item {
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 4px 20px 0px rgba(29, 29, 29, 0.07);
  height: 45px;
  width: 45px;
  color: var(--secondary-color);
  line-height: 1.75em;
}

@media (max-width: 400px) {
  .mc_pagination_box .mc_pagination_item {
    height: 40px;
    width: 40px;
  }
}

.mc_pagination_box .mc_pagination_item.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  pointer-events: none;
}

.mc_pagination_box a.mc_pagination_item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.mc_pagination_box .mc_pagination_arrow {
  width: 20px;
  height: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid currentColor;
  transition: all 0.4s ease;
}

.mc_pagination_box .mc_pagination_arrow:hover {
  color: var(--primary-color);
}

.mc_pagination_box .mc_pagination_arrow_left {
  margin-right: 15px;
}

.mc_pagination_box .mc_pagination_arrow_right {
  margin-left: 15px;
  transform: rotate(180deg);
}

/*=============================================
 Pricing Components and Section
===============================================*/
.mc_pricing_control li {
  display: flex;
  align-items: center;
  position: relative;
}

.mc_pricing_control li a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.mc_pricing_control li a:hover {
  color: var(--secondary-color);
}

.mc_pricing_control li a[href=yearly]::before {
  left: initial;
  right: 100%;
}

.mc_pricing_control li.active a {
  pointer-events: none;
  color: var(--secondary-color);
}

.mc_pricing_control li.active .mc_switch::before {
  left: 4px;
}

.mc_pricing_control .mc_switch {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 28px;
  background-color: var(--primary-color);
  border-radius: 20px;
  margin: 0 15px;
}

.mc_pricing_control .mc_switch::before {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 34px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.mc_pricing_control a {
  position: relative;
}

.mc_pricing_control a::before {
  content: "";
  height: 28px;
  width: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  z-index: 1;
}

.mc_pricing_table.mc_style_1 {
  width: 100%;
  height: 100%;
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
}

.mc_pricing_table.mc_style_1 .yearlyPrice,
.mc_pricing_table.mc_style_1 .yearlyText {
  display: none;
}

.mc_pricing_table.mc_style_1 hr {
  margin-top: 0;
  margin-bottom: 40px;
  border-color: var(--white-color);
}

.mc_pricing_table.mc_style_1 .mc_pricing_feature_list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 21px;
}

.mc_pricing_table.mc_style_1 .mc_pricing_feature_list li:last-child {
  margin-bottom: 0;
}

.mc_pricing_table.mc_style_1 .mc_pricing_feature_list .mc_feature_icon {
  position: absolute;
  top: 3px;
  left: 0;
}

.mc_pricing_table.mc_style_1 .mc_pricing_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin-top: auto;
  text-align: center;
  border: 1px solid var(--white-color);
  text-shadow: 0 50px 0 currentColor;
  overflow: hidden;
}

.mc_pricing_table.mc_style_1 .mc_pricing_btn span {
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mc_pricing_table.mc_style_1 .mc_pricing_btn:hover span {
  transform: translateY(-50px);
}

.mc_pricing_table.mc_style_1:hover .mc_pricing_btn {
  background-color: transparent;
  color: var(--white-color);
}

@media (max-width: 1399px) {
  .mc_pricing_table.mc_style_1 {
    padding: 32px 20px 40px;
  }
}

/*=============================================
 All Shape Components
===============================================*/
.mc_cloud_shape_1 {
  left: 20%;
  top: 10%;
  animation: particleMovement 10s linear infinite;
}

.mc_cloud_shape_2 {
  left: 12%;
  top: 14%;
  animation: particleMovement 10s linear infinite;
  animation-direction: reverse;
  animation-delay: 5s;
}

.mc_cloud_shape_3 {
  right: 20%;
  top: 10%;
  animation: particleMovement 10s linear infinite;
}

.mc_cloud_shape_3 svg {
  transform: rotateY(180deg);
}

.mc_cloud_shape_4 {
  right: 12%;
  top: 14%;
  animation: particleMovement 10s linear infinite;
  animation-direction: reverse;
  animation-delay: 5s;
}

.mc_cloud_shape_4 svg {
  transform: rotateY(180deg);
}

.mc_counter_shape_1 {
  top: 10%;
  left: 2%;
  animation: particleMovement3 20s linear infinite;
}

.mc_counter_shape_2 {
  bottom: 10%;
  right: 2%;
  animation: particleMovement3 20s linear infinite;
}

.mc_vector_1 {
  left: 30px;
  bottom: 0;
}

.mc_vector_2 {
  top: 0;
  right: 40px;
}

/*===========================================================  
  All Common Animations
=============================================================*/
@keyframes pulse-border {
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

@keyframes pulse-bg {
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes particleMovement {
  50% {
    transform: translate(20px, -10px) scale(1.2);
  }
}

@keyframes particleMovement3 {
  50% {
    transform: scale(1.2) rotatez(180deg);
  }
}

@keyframes rotate-y {
  50% {
    transform: translateY(50px) rotateY(180deg);
  }
}

/*===============================================================
 14. Cards
=================================================================*/
.mc_card.mc_style_1 .mc_card_thumbnail {
  display: block;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.mc_card.mc_style_1 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.mc_card.mc_style_1 .mc_card_thumbnail .mc_card_img_front {
  opacity: 1;
  transform: scale(1);
}

.mc_card.mc_style_1 .mc_card_thumbnail .mc_card_img_back {
  opacity: 0;
  transform: scale(1.05);
}

.mc_card.mc_style_1 .mc_card_thumbnail:hover .mc_card_img_font {
  opacity: 0;
  transform: scale(1.05);
}

.mc_card.mc_style_1 .mc_card_thumbnail:hover .mc_card_img_back {
  opacity: 1;
  transform: scale(1);
}

.mc_card.mc_style_1 .mc_heart_toggler {
  width: 40px;
  height: 40px;
  padding: 10px;
  top: 30px;
  right: 30px;
  pointer-events: fill;
}

.mc_card.mc_style_1 .mc_property_info_header {
  display: flex;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.mc_card.mc_style_1 .mc_property_price {
  padding: 10px 14px;
  backdrop-filter: blur(20px);
  left: 15px;
  top: 15px;
}

.mc_card.mc_style_1 .mc_property_price small {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondary-font);
}

.mc_card.mc_style_1 .mc_property_features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mc_card.mc_style_1 .mc_property_features li span:first-child {
  margin-right: 14px;
}

.mc_card.mc_style_1 .mc_property_features li:not(:first-child) {
  padding-left: 10%;
  position: relative;
}

.mc_card.mc_style_1 .mc_property_features li:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mc_card.mc_style_1 .mc_property_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mc_card.mc_style_1 .mc_property_info_text {
  width: min(100%, 270px);
}

.mc_card.mc_style_1 .mc_property_location_text {
  padding-left: 28px;
  position: relative;
}

.mc_card.mc_style_1 .mc_property_location_text span {
  position: absolute;
  top: 0;
  left: 0;
}

.mc_card.mc_style_1 .mc_btn.mc_style_1 {
  line-height: 1.563em;
}

.mc_card.mc_style_1 .mc_property_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_card.mc_style_1 .mc_property_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_card.mc_style_1.mc_type_1 {
  padding: 15px 15px 22px;
  border: 1px solid var(--gray-color);
}

.mc_card.mc_style_1.mc_type_1 .mc_property_features li:not(:first-child) {
  padding-left: 8%;
}

.mc_card.mc_style_1.mc_type_1 .mc_card_content {
  padding: 0 10px;
}

.mc_card.mc_style_1.mc_type_1 .mc_btn.mc_style_1 {
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
}

.mc_card.mc_style_1.mc_type_2 .mc_card_thumbnail {
  border-radius: 10px 10px 0 0;
}

.mc_card.mc_style_1.mc_type_2 .mc_card_content {
  padding: 20px 25px 22px;
  border: 1px solid var(--gray-color);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.mc_card.mc_style_1.mc_type_2 .mc_property_features {
  padding: 20px 0 21px;
  position: relative;
}

.mc_card.mc_style_1.mc_type_2 .mc_property_features li:not(:first-child) {
  padding-left: 8%;
}

.mc_card.mc_style_1.mc_type_2 .mc_property_features::before,
.mc_card.mc_style_1.mc_type_2 .mc_property_features::after {
  content: "";
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--gray-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mc_card.mc_style_1.mc_type_2 .mc_property_features::before {
  top: 0;
}

.mc_card.mc_style_1.mc_type_2 .mc_property_features::after {
  bottom: 0;
}

.mc_card.mc_style_1.mc_type_3 .mc_card_thumbnail {
  border-radius: 10px 10px 0 0;
}

.mc_card.mc_style_1.mc_type_3 .mc_card_badge {
  top: 24px;
  left: 24px;
  padding: 1px 9px;
  background: rgba(29, 29, 29, 0.3);
  backdrop-filter: blur(25px);
}

.mc_card.mc_style_1.mc_type_3 .mc_card_content {
  padding: 20px 25px 22px;
  border: 1px solid var(--gray-color);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.mc_card.mc_style_1.mc_type_3 .mc_property_info_header {
  padding-right: 65px;
  flex-direction: column;
}

.mc_card.mc_style_1.mc_type_3 .mc_btn.mc_style_1 {
  width: 45px;
  height: 45px;
  padding: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  border: 0;
}

.mc_card.mc_style_1.mc_type_3 .mc_property_features li:not(:first-child)::before {
  content: "\f621";
  width: auto;
  height: auto;
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  background-color: transparent;
  color: var(--secondary-color);
  opacity: 1;
}

.mc_card.mc_style_1.mc_type_3 hr {
  border-style: dashed;
  border-color: var(--secondary-color);
  opacity: 0.3;
}

.mc_card.mc_style_1.mc_type_4 .mc_card_thumbnail {
  border-radius: 10px 10px 0 0;
}

.mc_card.mc_style_1.mc_type_4 .mc_card_content {
  padding: 20px 25px 22px;
  border-radius: 0 0 10px 10px;
}

.mc_card.mc_style_1.mc_type_4 .mc_property_features {
  padding: 0 0 21px;
  position: relative;
}

.mc_card.mc_style_1.mc_type_4 .mc_property_features li:not(:first-child) {
  padding-left: 8%;
}

.mc_card.mc_style_1.mc_type_4 .mc_property_features::after {
  content: "";
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--gray-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.mc_card.mc_style_1.mc_type_5 .mc_card_thumbnail {
  height: 550px;
}

.mc_card.mc_style_1.mc_type_5 .mc_card_badge {
  top: 24px;
  left: 24px;
  padding: 1px 9px;
  background: rgba(29, 29, 29, 0.3);
  backdrop-filter: blur(25px);
}

.mc_card.mc_style_1.mc_type_5 .mc_card_content {
  width: calc(100% - 20px);
  padding: 11px 17px 12px 25px;
  background: rgba(29, 29, 29, 0.6);
  backdrop-filter: blur(25px);
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.mc_card.mc_style_1.mc_type_5 .mc_property_info_header {
  padding-right: 65px;
  flex-direction: column;
}

.mc_card.mc_style_1.mc_type_5 .mc_property_price {
  background-color: transparent;
  backdrop-filter: none;
}

.mc_card.mc_style_1.mc_type_5 .mc_btn.mc_style_1 {
  width: 45px;
  height: 45px;
  padding: 10px;
  position: absolute;
  top: 5px;
  right: 0;
}

.mc_card.mc_style_1.mc_type_5 .mc_property_features li:not(:first-child)::before {
  content: "\f621";
  width: auto;
  height: auto;
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  background-color: transparent;
  color: currentColor;
  opacity: 1;
}

.mc_card.mc_style_1.mc_type_5 hr {
  border-style: dashed;
  border-color: var(--gray-color);
  opacity: 0.3;
}

.mc_card.mc_style_1.mc_type_6 .mc_property_features li:not(:first-child) {
  padding-left: 12%;
}

.mc_card.mc_style_1.mc_type_6 .mc_property_features li:not(:first-child)::before {
  content: "\f621";
  width: auto;
  height: auto;
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  background-color: transparent;
  color: currentColor;
  opacity: 1;
}

.mc_card.mc_style_1.mc_type_6 .mc_btn.mc_style_1 {
  flex: none;
}

.mc_card.mc_style_1.mc_type_6 hr {
  border-style: dashed;
  border-color: var(--secondary-color);
  opacity: 0.3;
}

@media (max-width: 1399px) {
  .mc_card.mc_style_1 .mc_property_features li span:first-child {
    margin-right: 6px;
  }

  .mc_card.mc_style_1 .mc_property_features li:not(:first-child) {
    padding-left: 7%;
  }

  .mc_card.mc_style_1.mc_type_1 .mc_property_features li {
    padding: 0;
  }

  .mc_card.mc_style_1.mc_type_1 .mc_property_features li::before {
    display: none;
  }

  .mc_card.mc_style_1.mc_type_1 .mc_card_content {
    padding: 0;
  }

  .mc_card.mc_style_1.mc_type_2 .mc_property_features li:not(:first-child) {
    padding-left: 4%;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_card_thumbnail {
    border-radius: 10px 10px 0 0;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_card_badge {
    top: 24px;
    left: 24px;
    padding: 1px 9px;
    background: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(25px);
  }

  .mc_card.mc_style_1.mc_type_3 .mc_card_content {
    padding: 20px 25px 22px;
    border: 1px solid var(--gray-color);
    border-top: 0;
    border-radius: 0 0 10px 10px;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_property_info_header {
    padding-right: 65px;
    flex-direction: column;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_btn.mc_style_1 {
    width: 45px;
    height: 45px;
    padding: 10px;
    position: absolute;
    top: 5px;
    right: 0;
    border: 0;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_property_features li:not(:first-child) {
    padding-left: 0;
  }

  .mc_card.mc_style_1.mc_type_3 .mc_property_features li:not(:first-child)::before {
    display: none;
  }

  .mc_card.mc_style_1.mc_type_4 .mc_property_features li:not(:first-child) {
    padding-left: 4%;
  }

  .mc_card.mc_style_1.mc_type_5 .mc_property_features li:not(:first-child) {
    padding-left: 0;
  }

  .mc_card.mc_style_1.mc_type_5 .mc_property_features li::before {
    display: none;
  }

  .mc_card.mc_style_1.mc_type_6 .mc_property_features li:not(:first-child) {
    padding-left: 9%;
  }
}

@media (max-width: 1199px) {
  .mc_card.mc_style_1 .mc_property_features li {
    padding: 0 !important;
  }

  .mc_card.mc_style_1 .mc_property_features li::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .mc_card.mc_style_1 .mc_property_info {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc_card.mc_style_1 .mc_property_info_text {
    width: 100%;
  }

  .mc_card.mc_style_1.mc_type_5 .mc_card_thumbnail {
    height: 550px;
  }

  .mc_card.mc_style_1.mc_type_5 .mc_card_badge {
    top: 24px;
    left: 24px;
    padding: 1px 9px;
    background: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(25px);
  }

  .mc_card.mc_style_1.mc_type_5 .mc_card_content {
    padding: 12px 15px;
  }
}

@media (max-width: 450px) {
  .mc_card.mc_style_1 .mc_property_info_text {
    width: 100%;
  }
}

.mc_card.mc_style_2 {
  width: 456px;
  height: 100%;
  display: block;
  overflow: hidden;
}

.mc_card.mc_style_2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
  transition: all 0.8s ease;
}

.mc_card.mc_style_2 .mc_card_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(42, 42, 42, 0.5) 0%, rgba(42, 42, 42, 0) 30%);
  border-radius: inherit;
  left: 0;
  top: 0;
  z-index: 1;
}

.mc_card.mc_style_2 .mc_card_text {
  padding: 15px 20px 16px;
  left: 30px;
  bottom: 30px;
}

.mc_card.mc_style_2:hover img {
  transform: scale(1.06);
}

.mc_card.mc_style_2.mc_type_1 .mc_card_text {
  width: calc(100% - 60px);
  padding: 17px 30px 18px;
  border-radius: 15px;
  background: rgba(29, 29, 29, 0.1);
  backdrop-filter: blur(20px);
  left: 30px;
  bottom: 40px;
}

.mc_card.mc_style_2.mc_type_2 {
  width: fit-content;
  height: 100%;
  margin: 0 auto;
}

.mc_card.mc_style_2.mc_type_2 .mc_card_overlay {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.5) 0%, rgba(42, 42, 42, 0) 30%);
}

.mc_card.mc_style_2.mc_type_2 .mc_card_text {
  left: 10px;
  top: 8px;
}

@media (max-width: 991px) {
  .mc_card.mc_style_2 {
    width: 290px;
  }
}

.mc_card.mc_style_3 {
  max-width: 1320px;
}

.mc_card.mc_style_3 .mc_card_thumbnail>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.mc_card.mc_style_3 .mc_video_block_wrapper {
  width: 100%;
  height: 100%;
  padding-top: 60%;
  padding-left: 40%;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_card.mc_style_3 .mc_video_block {
  width: 100%;
  height: 100%;
  min-height: auto;
  border-top: 10px solid var(--white-color);
  border-left: 10px solid var(--white-color);
  border-radius: 0 0 20px 0;
}

.mc_card.mc_style_3 .mc_card_content {
  padding-left: 120px;
}

.mc_card.mc_style_3 .mc_card_title {
  margin-bottom: 67px;
}

.mc_card.mc_style_3 .mc_iconbox.mc_style_2 {
  max-width: 588px;
}

.mc_card.mc_style_3 .mc_iconbox.mc_style_2:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .mc_card.mc_style_3 .mc_card_content {
    padding-left: 40px;
  }
}

@media (max-width: 1199px) {
  .mc_card.mc_style_3 .mc_card_content {
    padding-left: 0px;
  }

  .mc_card.mc_style_3 .mc_card_title {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .mc_card.mc_style_3 .mc_iconbox.mc_style_2 {
    max-width: 100%;
    gap: 20px;
  }
}

@media (max-width: 450px) {
  .mc_card.mc_style_3 .mc_iconbox.mc_style_2 {
    flex-direction: column;
  }
}

.mc_card.mc_style_4 {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-color);
}

.mc_card.mc_style_4 .mc_card_info {
  padding: 40px 45px 0;
}

.mc_card.mc_style_4 .mc_card_thumbnail {
  width: 100%;
  border-radius: 0 0 10px 10px;
}

.mc_card.mc_style_4 .mc_card_thumbnail img {
  width: 100%;
  border-radius: inherit;
}

@media (max-width: 1399px) {
  .mc_card.mc_style_4 .mc_card_info {
    padding: 40px 30px 0;
  }
}

@media (max-width: 1199px) {
  .mc_card.mc_style_4 .mc_card_info {
    padding: 40px 20px 0;
  }
}

.mc_card.mc_style_5 {
  display: block;
  width: min(100%, 336px);
  margin: 0 auto;
}

.mc_card.mc_style_5::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(0deg, #1d1d1d 0%, rgba(29, 29, 29, 0) 80%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mc_card.mc_style_5 .mc_card_thumbnail {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: 0;
}

.mc_card.mc_style_5 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.6s ease;
}

.mc_card.mc_style_5 .mc_iconbox_info {
  left: 30px;
  bottom: 24px;
  z-index: 3;
}

.mc_card.mc_style_5.mc_type_1 {
  width: 100%;
  height: 410px;
}

.mc_card.mc_style_5:hover .mc_card_thumbnail img {
  transform: scale(1.03);
}

.mc_card.mc_style_6 {
  width: 100%;
  padding: 24px;
  display: flex;
  gap: 20px 30px;
}

.mc_card.mc_style_6 .mc_card_thumbnail {
  display: block;
  width: 57%;
  flex: none;
}

.mc_card.mc_style_6 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.mc_card.mc_style_6 .mc_card_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc_card.mc_style_6 .mc_property_location_text {
  padding-left: 28px;
  position: relative;
}

.mc_card.mc_style_6 .mc_property_location_text span {
  position: absolute;
  top: 0;
  left: 0;
}

.mc_card.mc_style_6 .mc_property_price {
  padding: 12px 0;
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
}

.mc_card.mc_style_6 .mc_property_features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px 20px;
  flex-wrap: wrap;
}

.mc_card.mc_style_6 .mc_property_features li {
  width: calc(50% - 10px);
}

.mc_card.mc_style_6 .mc_property_features li span:first-child {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .mc_card.mc_style_6 {
    padding: 15px 15px 20px;
    flex-direction: column;
  }

  .mc_card.mc_style_6 .mc_card_thumbnail {
    width: 100%;
  }
}

.mc_card.mc_style_7 {
  padding: 25px;
  display: flex;
  gap: 24px;
  border: 1px solid var(--gray-color);
}

.mc_card.mc_style_7 .mc_card_thumbnail {
  display: block;
  flex: 1;
  min-height: 197px;
  overflow: hidden;
}

.mc_card.mc_style_7 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.mc_card.mc_style_7 .mc_card_thumbnail .mc_card_img_front {
  opacity: 1;
  transform: scale(1);
}

.mc_card.mc_style_7 .mc_card_thumbnail .mc_card_img_back {
  opacity: 0;
  transform: scale(1.05);
}

.mc_card.mc_style_7 .mc_card_thumbnail:hover .mc_card_img_font {
  opacity: 0;
  transform: scale(1.05);
}

.mc_card.mc_style_7 .mc_card_thumbnail:hover .mc_card_img_back {
  opacity: 1;
  transform: scale(1);
}

.mc_card.mc_style_7 .mc_card_thumbnail .mc_card_badge {
  left: 0;
  top: 24px;
  padding: 1px 9px;
  background: rgba(29, 29, 29, 0.3);
  backdrop-filter: blur(25px);
}

.mc_card.mc_style_7 .mc_card_content {
  flex: 1.2;
}

.mc_card.mc_style_7 .mc_property_features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 15px;
  flex-wrap: wrap;
}

.mc_card.mc_style_7 .mc_property_features li span:first-child {
  margin-right: 14px;
}

.mc_card.mc_style_7 .mc_property_location_text {
  padding-left: 28px;
  position: relative;
}

.mc_card.mc_style_7 .mc_property_location_text span {
  position: absolute;
  top: 0;
  left: 0;
}

.mc_card.mc_style_7 .mc_property_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_card.mc_style_7 .mc_property_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_card.mc_style_7 .mc_price_btn_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 20px;
  flex-wrap: wrap;
}

@media (max-width: 1399px) {
  .mc_card.mc_style_7 {
    padding: 15px;
  }

  .mc_card.mc_style_7 .mc_property_features li span:first-child {
    margin-right: 6px;
  }
}

@media (max-width: 575px) {
  .mc_card.mc_style_7 {
    flex-direction: column;
  }

  .mc_card.mc_style_7 .mc_card_thumbnail {
    min-height: 220px;
  }
}

.mc_card.mc_style_8 .mc_card_thumbnail {
  width: 300px;
  height: 300px;
}

.mc_card.mc_style_8 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.4s cubic-bezier(0.68, 0.55, 0.27, 1.55);
}

.mc_card.mc_style_8 .mc_card_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_card.mc_style_8 .mc_card_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_card.mc_style_8:hover .mc_card_thumbnail img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .mc_card.mc_style_8 .mc_card_thumbnail {
    width: 240px;
    height: 240px;
  }
}

.mc_card.mc_style_9 {
  width: 696px;
}

.mc_card.mc_style_9 .mc_card_thumbnail {
  display: block;
  width: 100%;
}

.mc_card.mc_style_9 .mc_card_thumbnail img {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.58, 0.55, 0.27, 0.55);
}

.mc_card.mc_style_9 .mc_card_thumbnail:hover img {
  transform: scale(1.03);
}

.mc_card.mc_style_9 .mc_card_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_card.mc_style_9 .mc_card_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_card.mc_style_9 .mc_property_location_text {
  padding-left: 28px;
  position: relative;
}

.mc_card.mc_style_9 .mc_property_location_text span {
  position: absolute;
  top: 0;
  left: 0;
}

.mc_card.mc_style_9 hr {
  width: 100%;
  border-style: dashed;
  border-color: var(--secondary-color);
}

.mc_card.mc_style_9 .mc_property_features {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.mc_card.mc_style_9 .mc_property_features li {
  position: relative;
}

.mc_card.mc_style_9 .mc_property_features li span:first-child {
  margin-right: 14px;
}

.mc_card.mc_style_9 .mc_property_features li:not(:first-child) {
  padding-left: 10%;
}

.mc_card.mc_style_9 .mc_property_features li:not(:first-child)::before {
  content: "\f621";
  width: auto;
  height: auto;
  font-size: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  background-color: transparent;
  color: var(--secondary-color);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1199px) {
  .mc_card.mc_style_9 {
    width: 500px;
  }
}

@media (max-width: 991px) {
  .mc_card.mc_style_9 {
    width: 400px;
  }
}

@media (max-width: 767px) {
  .mc_card.mc_style_9 {
    width: 290px;
  }

  .mc_card.mc_style_9 .mc_property_features {
    gap: 10px 15px;
  }

  .mc_card.mc_style_9 .mc_property_features li span:first-child {
    margin-right: 6px;
  }

  .mc_card.mc_style_9 .mc_property_features li:not(:first-child) {
    padding-left: 0;
  }

  .mc_card.mc_style_9 .mc_property_features li:not(:first-child)::before {
    display: none;
  }
}

.mc_card.mc_style_10 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mc_card.mc_style_10 .mc_card_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(67, 67, 67, 0) 0%, #1d1d1d 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.mc_card.mc_style_10 .mc_card_arrow {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.mc_card.mc_style_10 .mc_card_content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 570px;
  padding: 48px 45px;
  margin-top: -50px;
}

.mc_card.mc_style_10 .mc_card_content:hover .mc_card_arrow {
  left: 50%;
  opacity: 1;
}

@media (max-width: 991px) {
  .mc_card.mc_style_10 .mc_card_content {
    padding: 48px 15px;
  }
}

.mc_card.mc_style_11 {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 30px 40px;
}

.mc_card.mc_style_11 .mc_card_thumbnail {
  display: block;
  flex: none;
  width: min(35%, 240px);
  transform: scale(0);
  transition: all 0.5s ease;
  transition-delay: 0.25s;
}

.mc_card.mc_style_11 .mc_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc_card.mc_style_11 .mc_card_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc_card.mc_style_11 .mc_card_subtitle {
  margin-bottom: 33px;
}

@media (max-width: 767px) {
  .mc_card.mc_style_11 {
    gap: 20px;
  }

  .mc_card.mc_style_11 .mc_card_subtitle {
    margin-bottom: 15px;
  }
}

@media (max-width: 450px) {
  .mc_card.mc_style_11 {
    flex-direction: column;
  }

  .mc_card.mc_style_11 .mc_card_thumbnail {
    width: 100%;
  }
}

.mc_card.mc_style_12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  padding-left: 100px;
}

.mc_card.mc_style_12 .mc_card_thumbnail {
  width: 100%;
}

.mc_card.mc_style_12 .mc_card_thumbnail img {
  width: 100%;
}

.mc_card.mc_style_12 .mc_card_info {
  width: min(100%, 425px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.mc_card.mc_style_12 .mc_apartment_features li:not(:last-child) {
  margin-bottom: 13px;
}

@media (max-width: 1199px) {
  .mc_card.mc_style_12 {
    padding-left: 0;
  }
}

.mc_card.mc_style_13 .mc_card_content {
  width: min(100%, 620px);
}

.mc_card.mc_style_13 .mc_horizontal_line {
  width: 150px;
  height: 1px;
  background-color: var(--secondary-color);
}

@media (max-width: 991px) {
  .mc_card.mc_style_13 .mc_card_content {
    width: 100%;
  }
}

/*===============================================================
  15. Iconbox
=================================================================*/
.mc_iconbox.mc_style_1 {
  width: min(100%, 377px);
}

.mc_iconbox.mc_style_1 .mc_iconbox_icon {
  width: 70px;
  height: 70px;
  flex: none;
}

.mc_iconbox.mc_style_1 .mc_iconbox_icon svg {
  transition: all 1s ease;
}

.mc_iconbox.mc_style_1:hover .mc_iconbox_icon svg {
  transform: rotateY(360deg);
}

@media (max-width: 991px) {
  .mc_iconbox.mc_style_1 {
    width: 100%;
    display: flex;
    gap: 20px 25px;
  }

  .mc_iconbox.mc_style_1 .mc_iconbox_icon {
    margin-bottom: 0;
  }
}

@media (max-width: 450px) {
  .mc_iconbox.mc_style_1 {
    flex-direction: column;
  }
}

.mc_iconbox.mc_style_2 {
  display: flex;
  gap: 20px 28px;
}

.mc_iconbox.mc_style_2 .mc_iconbox_icon {
  width: 80px;
  height: 80px;
  flex: none;
  border: 1px solid var(--secondary-color);
  transition: all 0.4s ease;
}

.mc_iconbox.mc_style_2 .mc_iconbox_icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease;
}

.mc_iconbox.mc_style_2 .mc_iconbox_icon>* {
  position: relative;
  z-index: 1;
}

.mc_iconbox.mc_style_2:hover .mc_iconbox_icon {
  border-color: var(--primary-color);
  color: var(--white-color);
}

.mc_iconbox.mc_style_2:hover .mc_iconbox_icon::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

@media (max-width: 575px) {
  .mc_iconbox.mc_style_2 .mc_iconbox_icon {
    width: 70px;
    height: 70px;
  }
}

.mc_iconbox.mc_style_3 {
  width: min(100%, 336px);
  height: 100%;
  margin: 0 auto;
}

.mc_iconbox.mc_style_3 .mc_iconbox_icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--white-color);
  transition: all 0.3s ease;
}

.mc_iconbox.mc_style_3 .mc_iconbox_icon img {
  transition: inherit;
}

.mc_iconbox.mc_style_3 a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_iconbox.mc_style_3 a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_iconbox.mc_style_3.mc_type_1 {
  max-width: 100%;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: auto;
}

.mc_iconbox.mc_style_3.mc_type_1 .mc_iconbox_bg {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  transition: all 0.8s ease;
}

.mc_iconbox.mc_style_3.mc_type_1>* {
  position: relative;
  z-index: 1;
}

.mc_iconbox.mc_style_3.mc_type_1 h3 {
  font-family: var(--secondary-font);
}

.mc_iconbox.mc_style_3.mc_type_2 .mc_iconbox_icon {
  border-color: var(--primary-color);
}

.mc_iconbox.mc_style_3.mc_type_2 .mc_arrow_shape_1 {
  left: 77%;
  top: 22px;
  overflow: hidden;
}

.mc_iconbox.mc_style_3:hover .mc_iconbox_icon {
  background-color: transparent;
  color: var(--white-color);
}

.mc_iconbox.mc_style_3:hover .mc_iconbox_icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(55deg) brightness(107%) contrast(101%);
}

.mc_iconbox.mc_style_3:hover .mc_iconbox_bg {
  transform: scale(1.03);
}

.mc_iconbox.mc_style_3:hover.mc_type_2 .mc_iconbox_icon {
  background-color: transparent;
  color: var(--primary-color);
}

@media (max-width: 1399px) {
  .mc_iconbox.mc_style_3.mc_type_2 .mc_arrow_shape_1 {
    left: 67%;
  }
}

@media (max-width: 1199px) {
  .mc_iconbox.mc_style_3.mc_type_2 .mc_arrow_shape_1 {
    top: 32px;
    left: 77%;
  }

  .mc_iconbox.mc_style_3.mc_type_2 .mc_arrow_shape_1 svg {
    margin-left: -120px;
  }
}

@media (max-width: 991px) {
  .mc_iconbox.mc_style_3.mc_type_2 .mc_arrow_shape_1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .mc_iconbox.mc_style_3 {
    width: 100%;
  }
}

.mc_iconbox.mc_style_4 {
  width: min(100%, 320px);
}

.mc_iconbox.mc_style_4 .mc_iconbox_icon {
  width: 73px;
  height: 73px;
  flex: none;
  border: 1px solid var(--gray-color);
  transition: all 0.4s ease;
}

.mc_iconbox.mc_style_4 .mc_iconbox_icon::before {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: var(--primary-color);
  border-radius: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.mc_iconbox.mc_style_4 .mc_iconbox_icon>* {
  position: relative;
  z-index: 1;
}

.mc_iconbox.mc_style_4:hover .mc_iconbox_icon {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.mc_iconbox.mc_style_4:hover .mc_iconbox_icon::before {
  transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 1399px) {
  .mc_iconbox.mc_style_4 {
    width: 100%;
  }
}

.mc_iconbox.mc_style_5 {
  display: flex;
  gap: 20px 45px;
}

.mc_iconbox.mc_style_5 .mc_iconbox_icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  flex: none;
}

@media (max-width: 991px) {
  .mc_iconbox.mc_style_5 {
    gap: 20px 25px;
  }
}

@media (max-width: 400px) {
  .mc_iconbox.mc_style_5 {
    flex-direction: column;
  }
}

.mc_iconbox.mc_style_6 {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.mc_iconbox.mc_style_6 .mc_iconbox_icon {
  width: 70px;
  height: 70px;
  padding: 10px;
  flex: none;
}

.mc_iconbox.mc_style_6 .mc_iconbox_info {
  text-wrap: nowrap;
}

/*===============================================================
 16. Posts and Post Details
=================================================================*/
.mc_post.mc_style_1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mc_post.mc_style_1 .mc_post_thumbnail {
  width: 100%;
}

.mc_post.mc_style_1 .mc_post_thumbnail img {
  width: 100%;
  border-radius: inherit;
  transform: scale(1.03);
  transition: all 0.6s ease;
}

.mc_post.mc_style_1 .mc_post_thumbnail:hover img {
  transform: scale(1);
}

.mc_post.mc_style_1 .mc_post_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mc_post.mc_style_1 .mc_post_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_post.mc_style_1 .mc_post_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_post.mc_style_1 .mc_btn.mc_style_1 {
  margin-top: auto;
}

.mc_post.mc_style_1.mc_type_1 {
  padding: 15px 15px 26px;
  border: 1px solid var(--gray-color);
}

.mc_post.mc_style_1.mc_type_1 .mc_post_content {
  align-items: center;
}

.mc_post.mc_style_1.mc_type_1 .mc_post_meta {
  display: flex;
  gap: 14px;
}

.mc_post.mc_style_1.mc_type_1 .mc_post_meta span:first-child {
  display: inline-block;
  padding-right: 14px;
  position: relative;
}

.mc_post.mc_style_1.mc_type_1 .mc_post_meta span:first-child::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.mc_post.mc_style_2 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mc_post.mc_style_2 .mc_post_thumbnail {
  display: block;
  width: 63px;
  height: 63px;
  flex: none;
}

.mc_post.mc_style_2 .mc_post_thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 0.5s ease;
}

.mc_post.mc_style_2 .mc_post_thumbnail:hover img {
  transform: scale(1.03);
}

.mc_post.mc_style_2 .mc_post_title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc_post.mc_style_2 .mc_post_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_post.mc_style_2 .mc_post_title a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

/*======================================================================
 Post Details Page Styling
========================================================================*/
.mc_post_details .mc_post_meta_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc_post_details .mc_post_meta:last-child {
  padding-left: 24px;
  position: relative;
}

.mc_post_details .mc_post_meta:last-child::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

.mc_post_details h2 {
  font-size: 39px;
  font-weight: 600;
  line-height: 1.282em;
  margin-bottom: 34px;
}

.mc_post_details h3 {
  font-size: 31px;
  font-weight: 600;
  line-height: 1.29em;
  margin-bottom: 14px;
}

.mc_post_details p {
  margin-bottom: 30px;
}

.mc_post_details p:last-child {
  margin-bottom: 0;
}

.mc_post_details img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 45px;
}

.mc_post_details blockquote {
  padding: 19px 32px;
  background-color: var(--gray3-color);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
}

.mc_post_details blockquote::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_post_details blockquote svg {
  width: 49px;
  height: 49px;
  margin-bottom: 22px;
}

.mc_post_details blockquote small {
  margin-top: 13px;
}

.mc_post_details .mc_post_shares {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
  flex-wrap: wrap;
}

.mc_post_details .mc_post_shares .mc_categories {
  display: flex;
  gap: 15px;
}

.mc_post_details .mc_post_shares .mc_category {
  padding: 1px 15px;
  border: 1px solid var(--primary-color);
}

.mc_post_details .mc_post_shares .mc_category:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.mc_post_details .mc_social_share_btns {
  display: flex;
  gap: 18px;
}

.mc_post_details .mc_social_share_btns a:hover {
  color: var(--primary-color);
}

@media (max-width: 1199px) {
  .mc_post_details br {
    display: none;
  }
}

@media (max-width: 767px) {
  .mc_post_details blockquote {
    padding: 19px 15px 19px 20px;
  }
}

/*=======================================================
 Post Author
=========================================================*/
.mc_post_author {
  padding: 50px 0;
  display: flex;
  gap: 20px 50px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.mc_post_author .mc_author_thumbnail {
  width: 150px;
  height: 150px;
  flex: none;
}

.mc_post_author .mc_social_links {
  display: flex;
  gap: 10px;
}

.mc_post_author .mc_social_links a {
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

.mc_post_author .mc_social_links a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

@media (max-width: 991px) {
  .mc_post_author {
    gap: 20px 30px;
  }
}

@media (max-width: 500px) {
  .mc_post_author {
    flex-direction: column;
  }
}

/*=======================================================
 Post Comment
=========================================================*/
.mc_comment_form .mc_form_field {
  width: 100%;
  padding: 12px 20px 13px;
  resize: none;
  color: var(--secondary-color);
}

.mc_comment_form .mc_form_field:focus {
  border-color: var(--primary-color);
}

.mc_comment_form .mc_input_wrapper {
  gap: 15px 30px;
}

.mc_comment_form .mc_btn.mc_style_1 {
  flex: none;
}

@media (max-width: 767px) {
  .mc_comment_form .mc_input_wrapper {
    flex-wrap: wrap;
  }
}

/*===============================================================
 17. Testimonials
=================================================================*/
.mc_testimonial.mc_style_1 {
  padding: 50px;
  border: 1px solid var(--secondary-color);
  height: 420px;
}

.mc_testimonial.mc_style_1 .mc_quote_icon {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.mc_testimonial.mc_style_1 blockquote {
  font-size: 16px;
  color: #ffffff;
  font-style: normal;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .mc_testimonial.mc_style_1 {
    padding: 30px 20px;
  }
}

.mc_testimonial.mc_style_2 .mc_testimonial_heading {
  width: min(100%, 570px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.mc_testimonial.mc_style_2 .slick-active .mc_avatar.mc_style_1 {
  transform: translateY(0);
  opacity: 1;
}

.mc_testimonial.mc_style_2 .mc_avatar.mc_style_1 {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.4s;
}

.mc_testimonial.mc_style_2 blockquote {
  font-size: 39px;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-style: normal;
}

.mc_testimonial.mc_style_2 .mc_slider.mc_style_1 {
  padding: 85px;
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  background: #202020;
}

.mc_testimonial.mc_style_2 .mc_testimonial_rating_info {
  width: 160px;
  height: 160px;
  padding: 50px;
  position: absolute;
  top: -80px;
  right: -80px;
  z-index: 0;
}

.mc_testimonial.mc_style_2 .mc_testimonial_rating_info svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: focusAnimation 20s linear infinite;
}

.mc_testimonial.mc_style_2 .mc_testimonial_rating_info span {
  position: relative;
  z-index: 1;
}

@media (max-width: 1550px) {
  .mc_testimonial.mc_style_2 .mc_testimonial_rating_info {
    top: -50px;
    right: -40px;
  }
}

@media (max-width: 1399px) {
  .mc_testimonial.mc_style_2 .mc_slider.mc_style_1 {
    padding: 80px 20px;
  }
}

@media (max-width: 1199px) {
  .mc_testimonial.mc_style_2 .mc_testimonial_heading {
    width: 100%;
  }

  .mc_testimonial.mc_style_2 .mc_testimonial_heading br {
    display: none;
  }
}

@media (max-width: 991px) {
  .mc_testimonial.mc_style_2 blockquote {
    font-size: 31px;
  }

  .mc_testimonial.mc_style_2 .mc_slider.mc_style_1 {
    padding: 80px 20px 60px;
  }
}

@media (max-width: 575px) {
  .mc_testimonial.mc_style_2 .mc_testimonial_rating_info {
    top: -80px;
  }

  .mc_testimonial.mc_style_2 blockquote {
    font-size: 25px;
  }
}

.mc_testimonial.mc_style_3 {
  width: min(100%, 936px);
  min-height: 160px;
  margin: 0 auto;
}

.mc_testimonial.mc_style_3 blockquote {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
  font-style: normal;
  font-family: var(--primary-font);
  margin-bottom: 23px;
  text-wrap: wrap;
}

.mc_testimonial.mc_style_3 small {
  font-family: var(--primary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4em;
}

.mc_testimonial.mc_style_3.mc_type_1 blockquote,
.mc_testimonial.mc_style_3.mc_type_1 small {
  color: var(--white-color);
}

@keyframes focusAnimation {
  100% {
    transform: rotate(360deg);
  }
}

/*===============================================================
 18. Property and Property Details
=================================================================*/
.mc_flor_diagram img {
  width: 100%;
}

.mc_floor_plan_list li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--border-color);
}

.mc_floor_plan_list li span:last-child {
  text-align: right;
}

/*=======================================================
 Property Gallery
=========================================================*/
.mc_gallery_item {
  display: flex;
  width: 696px;
}

.mc_gallery_item img {
  width: 100%;
  height: 100%;
}

.mc_gallery_item .mc_gallery_title {
  display: inline-block;
  position: absolute;
  left: 34px;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.mc_gallery_item .mc_gallery_title::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%) scale(0, 1);
  transform-origin: top left;
  transition: transform 0.3s cubic-bezier(0.68, 0.55, 0.27, 1);
  transition-delay: 0.2s;
}

.mc_gallery_item:hover .mc_gallery_title {
  opacity: 1;
  bottom: 34px;
}

.mc_gallery_item:hover .mc_gallery_title::after {
  transform: translateY(-50%) scale(1, 1);
}

/*=======================================================
 Single Property Apartment 
=========================================================*/
.mc_apartment_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mc_apartment_item .mc_apartment_heading {
  min-width: 180px;
}

.mc_apartment_item .mc_property_title a {
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 2px;
}

.mc_apartment_item .mc_property_title a:hover {
  background-size: 100% 2px;
  background-position: 0 calc(100% - 0px);
}

.mc_apartment_item .mc_apartment_thumbnail {
  display: block;
  width: min(100%, 336px);
}

.mc_apartment_item .mc_apartment_thumbnail img {
  width: 100%;
  transform: scale(1) rotate(0);
  transition: all 0.8s ease;
}

.mc_apartment_item .mc_apartment_thumbnail:hover img {
  transform: scale(1.06) rotate(1deg);
}

.mc_apartment_item .mc_apartment_info_list {
  width: min(100%, 276px);
}

.mc_apartment_item .mc_apartment_info_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.mc_apartment_item .mc_apartment_info_list li:last-child {
  margin-bottom: 0;
}

.mc_apartment_item .mc_btn.mc_style_1 {
  flex: none;
}

@media (max-width: 1199px) {
  .mc_apartment_item .mc_apartment_thumbnail {
    width: min(100%, 260px);
  }

  .mc_apartment_item .mc_apartment_info_list {
    width: min(100%, 250px);
  }
}

@media (max-width: 991px) {
  .mc_apartment_item {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc_apartment_item .mc_apartment_thumbnail,
  .mc_apartment_item .mc_apartment_info_list {
    width: 100%;
  }
}

.mc_apartment_list>li {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.mc_apartment_list>li:last-child {
  margin-bottom: 0;
}

/*=======================================================
 Property Explore Section
 ========================================================*/
.mc_explore_list li {
  padding: 0 150px 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mc_explore_list li:last-child {
  margin-bottom: 0;
}

.mc_explore_list .mc_text_btn.mc_style_2 {
  position: absolute;
  top: 60px;
  right: 0;
}

.mc_explore_list .mc_text_btn.mc_style_2 .mc_btn_arrow {
  width: 35px;
}

.mc_explore_list .mc_text_btn.mc_style_2 .mc_btn_arrow i {
  text-shadow: -40px 0px 0px currentColor;
}

.mc_explore_list .mc_text_btn.mc_style_2:hover .mc_btn_arrow i {
  transform: translateX(40px);
}

@media (max-width: 1399px) {
  .mc_explore_list .mc_text_btn.mc_style_2 {
    top: 45px;
  }
}

@media (max-width: 1199px) {
  .mc_explore_list li {
    padding: 0 150px 30px 0;
    margin-bottom: 20px;
  }

  .mc_explore_list .mc_text_btn.mc_style_2 {
    top: 35px;
  }
}

@media (max-width: 991px) {
  .mc_explore_list .mc_text_btn.mc_style_2 {
    top: 25px;
  }
}

@media (max-width: 575px) {
  .mc_explore_list li {
    padding-right: 0;
  }

  .mc_explore_list .mc_text_btn.mc_style_2 {
    position: initial;
  }
}

/*=======================================================
 Property Details
 ========================================================*/
.mc_property_details .mc_property_header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.mc_property_details .mc_property_header_right {
  text-align: right;
}

.mc_property_details .mc_property_banner {
  width: 100%;
}

.mc_property_details .mc_property_banner img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.mc_property_details .mc_property_banner .mc_property_badge {
  padding: 3px 12px 2px;
  top: 16px;
  left: 16px;
}

.mc_property_details .mc_property_features_list {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.mc_property_details .mc_property_features_list li {
  padding: 0 20px;
  position: relative;
}

.mc_property_details .mc_property_features_list li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
}

.mc_property_details .mc_property_features_list li:last-child::after {
  display: none;
}

@media (max-width: 1199px) {
  .mc_property_details .mc_property_features_list li {
    padding: 0;
  }

  .mc_property_details .mc_property_features_list li::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .mc_property_details .mc_property_features_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .mc_property_details .mc_property_header_right {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .mc_property_details .mc_property_features_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mc_single_property_content {
  padding: 30px 40px 40px;
  border: 1px solid var(--gray-color);
}

.mc_single_property_content>div {
  padding-bottom: 35px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-color);
}

.mc_single_property_content>div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.mc_single_property_content .mc_location_map iframe {
  filter: brightness(120%) grayscale(0.8);
}

.mc_single_property_content .mc_property_info_list {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_property_info_list li {
  width: calc(50% - 10px);
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_property_info_list span:first-child {
  display: inline-block;
  width: min(40%, 147px);
}

.mc_single_property_content .mc_property_amenties_list {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_property_amenties_list li {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 15px 20px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_property_amenties_list span:first-child {
  display: inline-block;
  width: min(40%, 147px);
}

.mc_single_property_content .mc_property_floor .mc_floor_content_wrapper {
  padding: 45px;
}

.mc_single_property_content .mc_property_floor .mc_floor_diagram {
  width: min(100%, 547px);
  height: 460px;
  margin: 0 auto;
}

.mc_single_property_content .mc_property_floor .mc_floor_diagram img {
  width: 100%;
  height: 100%;
}

.mc_single_property_content .mc_financial_info_list li {
  margin-bottom: 10px;
}

.mc_single_property_content .mc_financial_info_list li:last-child {
  margin-bottom: 0;
}

.mc_single_property_content .mc_financial_info_list span:first-child {
  display: inline-block;
  width: min(50%, 175px);
}

.mc_single_property_content .mc_surroundings_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px 60px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_nearby_items {
  display: flex;
  align-items: center;
  gap: 30px 60px;
  flex-wrap: wrap;
}

.mc_single_property_content .mc_mortgage_calculation_form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px 20px;
}

.mc_single_property_content .mc_mortgage_calculation_form .mc_input_wrapper:last-child {
  grid-column: auto/span 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.mc_single_property_content .mc_mortgage_calculation_form .mc_form_field {
  width: 100%;
}

.mc_single_property_content .mc_mortgage_calculation_form .mc_form_field:focus {
  border-color: var(--primary-color);
}

@media (max-width: 1199px) {
  .mc_single_property_content .mc_property_info_list span:first-child {
    width: min(50%, 147px);
  }

  .mc_single_property_content .mc_property_amenties_list span:first-child {
    width: min(55%, 147px);
  }
}

@media (max-width: 991px) {
  .mc_single_property_content {
    padding: 30px 20px 40px;
  }

  .mc_single_property_content .mc_property_floor .mc_floor_content_wrapper {
    padding: 30px;
  }

  .mc_single_property_content .mc_property_floor .mc_floor_diagram {
    height: 350px;
  }
}

@media (max-width: 767px) {

  .mc_single_property_content .mc_property_info_list li,
  .mc_single_property_content .mc_property_amenties_list li {
    width: 100%;
  }

  .mc_single_property_content .mc_property_info_list span:first-child,
  .mc_single_property_content .mc_property_amenties_list span:first-child {
    width: 50%;
  }

  .mc_single_property_content .mc_floor_diagram {
    height: 360px;
  }

  .mc_single_property_content .mc_mortgage_calculation_form {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc_single_property_content .mc_mortgage_calculation_form .mc_input_wrapper:last-child {
    grid-column: auto/span 2;
  }
}

@media (max-width: 575px) {
  .mc_single_property_content .mc_property_floor .mc_floor_diagram {
    height: 250px;
  }

  .mc_single_property_content .mc_mortgage_calculation_form {
    grid-template-columns: repeat(1, 1fr);
  }

  .mc_single_property_content .mc_mortgage_calculation_form .mc_input_wrapper:last-child {
    grid-column: auto/span 1;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0;
  }
}

/*===============================================================
  19. Tabs
=================================================================*/
/*====================================================
  Tab Links Styling
 ======================================================*/
.mc_tab_links.mc_style_1 {
  display: flex;
  transform: translateY(1px);
}

.mc_tab_links.mc_style_1 li {
  position: relative;
  transition: all 0.2s ease;
}

.mc_tab_links.mc_style_1 li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  opacity: 0.95;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}

.mc_tab_links.mc_style_1 li.active,
.mc_tab_links.mc_style_1 li:hover {
  color: var(--white-color);
}

.mc_tab_links.mc_style_1 li.active::before,
.mc_tab_links.mc_style_1 li:hover::before {
  background-color: var(--primary-color);
}

.mc_tab_links.mc_style_1 li:first-child {
  border-radius: 10px 0 0 0;
}

.mc_tab_links.mc_style_1 li a {
  display: inline-block;
  padding: 9px 25px;
  position: relative;
  z-index: 1;
}

.mc_tab_links.mc_style_1.mc_type_1 li:first-child {
  border-radius: 10px 0 0 0;
}

.mc_tab_links.mc_style_1.mc_type_1 li:last-child {
  border-radius: 0 10px 0 0;
}

.mc_tab_links.mc_style_2 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mc_tab_links.mc_style_2 li a {
  display: inline-block;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  height: 45px;
  padding: 8px 25px;
  text-wrap: nowrap;
}

.mc_tab_links.mc_style_2 li.active a,
.mc_tab_links.mc_style_2 li:hover a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.mc_tab_links.mc_style_2.mc_type_1 {
  padding: 7px;
  border-radius: 10px;
  gap: 3px;
  border: 1px solid var(--gray-color);
}

.mc_tab_links.mc_style_2.mc_type_1 li a {
  border: 0;
  border-radius: 7px;
  padding: 7px 20px;
}

@media (max-width: 991px) {
  .mc_tab_links.mc_style_2 {
    justify-content: center;
  }
}

.mc_tab_links.mc_style_3 {
  gap: 20px;
}

.mc_tab_links.mc_style_3 li a {
  display: inline-block;
  height: 72px;
  width: 72px;
  padding: 4px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
}

.mc_tab_links.mc_style_3 li img {
  border-radius: inherit;
}

.mc_tab_links.mc_style_3 li.active a,
.mc_tab_links.mc_style_3 li:hover a {
  border-color: var(--primary-color);
}

.mc_tab_links.mc_style_3.mc_type_1 {
  padding: 7px;
  border-radius: 10px;
  gap: 3px;
  border: 1px solid var(--gray-color);
}

.mc_tab_links.mc_style_3.mc_type_1 li a {
  border: 0;
  border-radius: 7px;
  padding: 7px 20px;
}

.mc_tab_links.mc_style_3.mc_type_2 li a {
  border: 2px solid var(--secondary-color);
}

.mc_tab_links.mc_style_3.mc_type_2 li.active a,
.mc_tab_links.mc_style_3.mc_type_2 li:hover a {
  border-color: var(--gray-color);
}

@media (max-width: 991px) {
  .mc_tab_links.mc_style_3 {
    justify-content: center;
  }
}

.mc_tab_links.mc_style_4 {
  counter-reset: section;
  transition: all 0.3s ease;
}

.mc_tab_links.mc_style_4 li {
  padding-left: 64px;
  position: relative;
  font-size: 39px;
  line-height: 1.28em;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--primary-font);
  border-bottom: 1px solid var(--gray-color);
}

.mc_tab_links.mc_style_4 li::before,
.mc_tab_links.mc_style_4 li::after {
  position: absolute;
  bottom: 40px;
  left: 0;
}

.mc_tab_links.mc_style_4 li::before {
  counter-increment: section;
  content: counters(section, "") ".";
  left: 30px;
}

.mc_tab_links.mc_style_4 li:not(:empty):not(:nth-child(n+10))::after {
  content: counter(item);
  left: 0;
}

.mc_tab_links.mc_style_4 li:nth-child(n+10)::before {
  left: 0;
}

.mc_tab_links.mc_style_4 li:first-child a {
  padding-top: 0;
}

.mc_tab_links.mc_style_4 li:hover {
  color: var(--secondary-color);
}

.mc_tab_links.mc_style_4 a {
  display: block;
  padding: 30px 0 40px;
}

@media (max-width: 1199px) {
  .mc_tab_links.mc_style_4 li {
    font-size: 31px;
    padding-left: 50px;
  }

  .mc_tab_links.mc_style_4 li::before,
  .mc_tab_links.mc_style_4 li::after {
    bottom: 20px;
  }

  .mc_tab_links.mc_style_4 li::before {
    left: 20px;
  }

  .mc_tab_links.mc_style_4 li a {
    padding: 15px 0 20px;
  }
}

.mc_tab_links.mc_style_5 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mc_tab_links.mc_style_5 a {
  display: inline-block;
  padding: 9px 20px;
  position: relative;
  z-index: 1;
}

.mc_tab_links.mc_style_5 li {
  font-family: var(--primary-font);
  font-weight: 500;
  position: relative;
  border-radius: 10px;
}

.mc_tab_links.mc_style_5 li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.05;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.mc_tab_links.mc_style_5 li.active,
.mc_tab_links.mc_style_5 li:hover {
  color: var(--primary-color);
}

.mc_tab_links.mc_style_5 li.active::before,
.mc_tab_links.mc_style_5 li:hover::before {
  opacity: 0.1;
}

/*====================================================
 Tab Content Styling
======================================================*/
.mc_tabs {
  position: relative;
}

.mc_tabs .mc_tab_body {
  position: relative;
}

.mc_tabs .mc_tab_body.mc_type_1 {
  border-radius: 0 10px 10px 10px;
}

.mc_tabs .mc_tab {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  top: 0;
  width: 100%;
  transition: all 0.5s ease;
}

.mc_tabs .mc_tab.active {
  opacity: 1;
  visibility: visible;
  position: initial;
  pointer-events: initial;
  top: 0;
}

/*==============================================================
  20. Profile
================================================================*/
.mc_or_login span {
  padding: 0 12px;
  position: relative;
  text-align: center;
}

.mc_or_login span::before,
.mc_or_login span::after {
  background-color: var(--border-color);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 35px;
}

.mc_or_login span::before {
  right: 100%;
}

.mc_or_login span::after {
  left: 100%;
}

/*------------------------------------------
 Profile page
--------------------------------------------*/
.mc_profile_menu {
  padding: 30px;
  border: 1px solid var(--border-color);
}

.mc_profile_menu .mc_profile_thumbnail {
  width: 150px;
  height: 150px;
  border: 5px solid var(--gray-color);
}

.mc_profile_menu .mc_profile_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.mc_dashboard_nav li {
  font-family: var(--primary-font);
  color: var(--primary-color);
  padding-left: 26px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.mc_dashboard_nav li:last-child {
  border-bottom: 0;
}

.mc_dashboard_nav li:last-child a {
  padding-bottom: 0;
}

.mc_dashboard_nav li.active,
.mc_dashboard_nav li:hover {
  opacity: 0.75;
}

.mc_dashboard_nav li a {
  display: inline-block;
  padding: 12px 0;
}

.mc_dashboard_nav li span:first-child {
  position: absolute;
  left: 0;
  top: 12px;
}

.mc_profile {
  width: min(100%, 860px);
  padding: 30px 30px 40px;
  margin: 0 auto;
}

.mc_profile .mc_avatar.mc_style_2 {
  display: flex;
  align-items: center;
  gap: 20px 25px;
  flex-wrap: wrap;
}

.mc_profile .mc_avatar.mc_style_2 .mc_avatar_icon {
  width: 120px;
  height: 120px;
  background-color: transparent;
}

.mc_profile .mc_avatar.mc_style_2 .mc_avatar_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.mc_profile .mc_avatar.mc_style_2 .mc_avatar_icon .mc_thumb_edit {
  width: 30px;
  height: 30px;
  padding: 6px;
  background-color: var(--primary-color);
  font-size: 14px;
  color: var(--white-color);
  bottom: 0;
  right: 15px;
  cursor: pointer;
}

.mc_admin_iconbox {
  align-items: center;
  display: flex;
  gap: 15px;
  padding: 20px;
  box-shadow: 0 0 15px 0 rgba(27, 27, 27, 0.1);
}

.mc_admin_iconbox .mc_admin_iconbox_icon {
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  flex: none;
  font-size: 31px;
  height: 65px;
  width: 65px;
}

/*------------------------------------------
 Property Table 
--------------------------------------------*/
.mc_property_list {
  padding: 30px;
}

@media (max-width: 991px) {
  .mc_property_list {
    padding: 30px 15px;
  }
}

.mc_property_table {
  min-width: 800px;
}

.mc_property_table thead {
  background-color: var(--gray3-color);
  padding-left: 20px;
}

.mc_property_table td,
.mc_property_table th {
  border-top: 0;
  padding-left: 20px;
}

.mc_property_table td {
  border-top: 0;
  padding: 20px 20px 20px 0;
  vertical-align: middle;
  text-align: center;
}

.mc_property_table tr .property_thumbnail {
  padding-left: 20px;
}

.mc_property_table tr:nth-child(even) {
  background-color: var(--gray3-color);
}

.mc_property_table .mc_property_item {
  display: none;
}

.mc_property_table .mc_property_info {
  text-align: left;
}

.mc_property_table .mc_property_info a {
  display: inline-block;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  transition: background-size 0.4s cubic-bezier(0.49, 0.49, 0.08, 1);
  background-position: 100% calc(100% - 0px);
  background-size: 0 1px;
}

.mc_property_table .mc_property_info a:hover {
  background-size: 100% 1px;
  background-position: 0 calc(100% - 0px);
}

.mc_property_table .property_thumbnail {
  width: 160px;
}

.mc_property_table .property_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.mc_property_table .property_thumbnail a {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.mc_property_table .property_thumbnail:hover img {
  transform: scale(1.06);
}

.mc_property_table .mc_rating {
  font-size: 14px;
}

.mc_change_password_form_wraper {
  padding: 30px;
}

.mc_password_change_quote {
  padding: 30px;
  position: relative;
}

.mc_password_change_quote>* {
  position: relative;
  z-index: 1;
}

.mc_password_change_quote::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.07;
  position: absolute;
  left: 0;
  top: 0;
}

/*------------------------------------------
 Dashboard Styling
--------------------------------------------*/
.mc_dashboard_contentbox:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .mc_dashboard_contentbox:not(:last-child) {
    margin-bottom: 30px;
  }
}

.mc_reviews_list li:not(:last-child) {
  margin-bottom: 40px;
}

.mc_customer_review {
  max-width: 650px;
}

.mc_customer_review .mc_review_header {
  display: flex;
  gap: 20px;
}

.mc_customer_review .mc_customer_icon {
  flex: none;
  width: 72px;
  height: 72px;
}

.mc_customer_review .mc_customer_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.mc_customer_review .mc_actions_btns {
  position: absolute;
  top: 30px;
  right: 0;
}

@media (max-width: 400px) {
  .mc_customer_review .mc_review_header {
    flex-direction: column;
  }

  .mc_customer_review .mc_actions_btns {
    top: 115px;
  }
}

/*======================================================================
 Add New Property Styling
========================================================================*/
.mc_add_property_container {
  max-width: 860px;
  padding: 40px 30px;
  margin: 0 auto;
}

.mc_add_property_container .mc_custom_select,
.mc_add_property_container .mc_form_field {
  color: var(--heading-color);
}

.mc_add_property_container .mc_custom_select {
  border-color: var(--heading-color);
  background-image: linear-gradient(45deg, transparent 50%, #152046 50%), linear-gradient(135deg, #152046 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
}

.mc_add_property_container .mc_notification_wrapper {
  padding: 20px 30px 24px;
}

.mc_add_property_container .mc_notification_wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--accent-color);
  opacity: 0.07;
  position: absolute;
  left: 0;
  top: 0;
}

.mc_add_property_container .mc_notification_wrapper>* {
  position: relative;
  z-index: 1;
  color: var(--accent-color);
}

.mc_add_property_container .mc_submit_section:not(:last-child) {
  margin-bottom: 50px;
}

.mc_add_property_container .mc_other_features_list {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.mc_add_property_container .mc_file_input_wrapper {
  border: 2px dashed var(--accent-color);
}

.mc_add_property_container .mc_file_input_wrapper .mc_file_load {
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  appearance: none;
  cursor: pointer;
  opacity: 0;
}

.mc_add_property_container .mc_file_input_wrapper label {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mc_add_property_container .mc_file_input_wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .mc_add_property_container .mc_submit_section:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .mc_add_property_container {
    padding: 40px 20px;
  }

  .mc_add_property_container .mc_notification_wrapper {
    padding: 20px 15px 24px;
  }
}

/*======================================================================
 Client list table Styling
========================================================================*/
.mc_clients_wrapper {
  padding: 30px 0px;
  text-wrap: nowrap;
  overflow-x: auto;
}

.mc_user_data_table .form-check {
  margin-bottom: 0;
  min-height: 28px;
}

.mc_user_data_table .form-check label {
  margin-bottom: 0;
  margin-right: 10px;
}

.mc_user_data_table .form-check-input {
  width: 15px;
  height: 15px;
  box-shadow: none;
  border-color: var(--primary-color);
  background-color: transparent;
  border-radius: 2px;
  margin-top: 6px;
  cursor: pointer;
}

.mc_user_data_table .form-check-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.mc_user_data_table .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.mc_user_data_table tr.even {
  background-color: var(--gray3-color);
}

.mc_user_data_table tr th {
  background-color: var(--gray3-color);
  padding: 12px 20px !important;
}

.mc_user_data_table tr .sorting_1,
.mc_user_data_table tr td {
  border-color: var(--border-color) !important;
  box-shadow: none !important;
}

.mc_user_data_table tbody td {
  padding: 12px 20px !important;
}

.mc_user_data_table td button {
  width: 100%;
  text-align: center;
}

.dataTables_length {
  padding-left: 20px;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--border-color);
  outline: 0;
  border-radius: 10px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  margin-left: 10px;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-color: var(--primary-color);
}

.dataTables_filter {
  padding-right: 20px;
}

.dataTables_wrapper .dataTables_info {
  padding-top: 20px !important;
  margin-left: 20px;
}

.dataTables_wrapper .dataTables_paginate {
  padding-top: 20px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  line-height: 1.6em;
  margin-left: 10px;
  padding: 5px 15px !important;
}

/*===============================================================
 21. Dark Version
=================================================================*/
.mc_dark h1,
.mc_dark h2,
.mc_dark h3,
.mc_dark h4,
.mc_dark h5,
.mc_dark h6,
.mc_dark .mc_counter_number {
  color: var(--primary-color);
}

.mc_dark p {
  color: var(--secondary-color);
}

.mc_dark .mc_player_btn.mc_style_1::before,
.mc_dark .mc_player_btn.mc_style_1::after {
  border-color: var(--primary-color);
}

.mc_dark .mc_player_btn.mc_style_3 {
  background-color: var(--primary-color);
}

.mc_dark .mc_player_btn.mc_style_3::before {
  background-color: var(--primary-color);
}

.mc_dark section.mc_primary_bg,
.mc_dark footer.mc_primary_bg {
  background-color: var(--white-color);
}

.mc_dark section.mc_primary_bg .mc_gray_color,
.mc_dark footer.mc_primary_bg .mc_gray_color {
  color: var(--secondary-color);
}

.mc_dark .mc_btn.mc_style_1.mc_primary_bg.mc_white_color {
  color: var(--white-color);
}

.mc_dark .mc_btn.mc_style_1.mc_primary_bg.mc_white_color:hover {
  color: var(--primary-color);
}

.mc_dark .mc_btn.mc_style_1.mc_white_bg.mc_primary_color {
  color: var(--white-color);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.mc_dark .mc_btn.mc_style_1.mc_white_bg.mc_primary_color::before {
  background-color: var(--white-color);
}

.mc_dark .mc_btn.mc_style_1.mc_white_bg.mc_primary_color:hover {
  color: var(--primary-color);
}

.mc_dark .mc_footer.mc_style_2 .mc_social_btns.mc_style_1 a {
  background-color: var(--gray2-color);
  border-color: var(--gray2-color);
}

.mc_dark .mc_footer.mc_style_2 .mc_social_btns.mc_style_1 a:hover {
  background-color: transparent;
}

.mc_dark .mc_about.mc_style_2 .mc_video_block.mc_style_2 {
  box-shadow: 0px 0px 50px 0px rgba(143, 143, 143, 0.15);
}

.mc_dark .mc_about.mc_style_2 .mc_video_block.mc_style_2 .mc_player_btn.mc_style_2 {
  background-color: var(--white-color);
}

.mc_dark .mc_about.mc_style_2 .mc_offerbox .mc_video_info {
  box-shadow: 0px 0px 50px 0px rgba(143, 143, 143, 0.15);
}

.mc_dark .mc_about.mc_style_2 .mc_offerbox .mc_offerbox_icon {
  background-color: var(--white-color);
  border-color: var(--secondary-color);
}

.mc_dark .mc_about.mc_style_3 .mc_text_logo_wrapper .mc_player_btn.mc_style_3 {
  color: var(--white-color);
}

.mc_dark .mc_pagination.mc_style_2 .slick-dots li {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.mc_dark .mc_pagination.mc_style_2 .slick-dots .slick-active {
  background-color: var(--white-color);
}

/* Base Styles */
.mc_hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* Full screen hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mc_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keeps aspect ratio and covers */
  z-index: -1;
  /* Keep video behind content */
}

/* Hero Content Styling */
.mc_hero_content {
  position: relative;
  z-index: 2;
  /* Above video */
  color: #fff;
  /* Text color over video */
  padding: 0 15px;
}

.mc_hero_content .mc_hero_title {
  color: #fff;
}

/* Responsive Media Queries */

/* Large screens (default) */
@media (min-width: 1200px) {
  .mc_hero {
    height: 580px;
    /* full screen */
  }

  .mc_hero_title {
    font-size: 60px;
  }

  .mc_hero_title.mc_hero_title2 {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .mc_hero {
    height: 80vh;
    /* slightly smaller */
  }

  .mc_hero_title {
    font-size: 40px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .mc_hero {
    height: 70vh;
  }

  .mc_hero_title {
    font-size: 28px;
    line-height: 1.3;
  }
}

/* Mobile portrait */
@media (max-width: 576px) {
  .mc_hero {
    height: 85vh;
  }

  .mc_hero_title {
    font-size: 22px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .mc_property_search {
    padding: 15px;
  }

  .mc_property_search select,
  .mc_property_search button {
    font-size: 14px;
  }
}



.title-cus {
  position: relative;
  text-transform: capitalize !important;
}

.title-cus:before {
  position: absolute;
  content: " ";
  width: 45px;
  height: 2px;
  border-radius: 0;
  background-color: var(--danger-color);
  bottom: -13px;
  left: 0;
  z-index: 2;
}

.title-cus:after {
  position: absolute;
  content: " ";
  width: 100px;
  height: 3px;
  background-color: var(--danger-color);
  bottom: -6px;
  left: 0;
  z-index: 1;
}

/* =============================================== */
.product-listing-sec {}

.product-listing-sec .property-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-listing-sec .property-card:hover {
  transform: translateY(-5px);
}

.product-listing-sec .property-image {
  position: relative;
  overflow: hidden;
}

.product-listing-sec .badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.product-listing-sec .property-info {
  background: #000;
  color: #fff;
  padding: 10px;
}

.product-listing-sec .property-info h6 {
  color: #fff;
}

.product-listing-sec .property-details {
  padding: 15px;
  font-size: 14px;
}

.product-listing-sec .property-details p {
  margin-bottom: 0;
}

.product-listing-sec .property-details strong {
  font-weight: 600;
}

.product-listing-sec.property-logo {
  margin-top: 15px;
}

/* Hover overlay */
.product-listing-sec .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-listing-sec .property-card:hover .hover-overlay {
  opacity: 1;
}

.product-listing-sec .hover-overlay a {
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  font-weight: 500;
}

/* .product-listing-sec .hover-overlay a:hover {
  text-decoration: underline;
} */

.mc_sticky_active.mc_site_header.mc_style_1 .mc_nav_list>li>a {
  color: #000;
}

.mc_sticky_active.mc_site_header.mc_style_1 .mc_main_header_left .mc_site_brand img {
  filter: unset;
  background: #000;
  padding: 0px 10px;
  border-radius: 5px;
}

.mc_sticky_active.mc_site_header.mc_style_1 .mc_right_nav_list li {
  color: #000;
}







/* =======================chat bot =========================== */
/* Floating chat button */
.phone-toggle {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 1050;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d9af78, #a27437);
  color: #fff;
  border: none;
  cursor: pointer;
}

.chat-toggle {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 1050;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d9af78, #a27437);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Chat panel */
.chat-panel {
  position: fixed;
  left: 20px;
  bottom: 170px;
  width: 360px;
  max-width: 95%;
  height: 520px;
  max-height: 80vh;
  z-index: 1049;
  display: none;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Header */
.chat-panel .card-header {
  background: linear-gradient(90deg, #ff0000, #960000);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.chat-panel .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  font-weight: 700;
}

/* Messages area */
.chat-messages {
  padding: 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  flex: 1 1 auto;
}

.msg {
  display: flex;
  margin-bottom: 12px;
  gap: 10px;
  align-items: flex-end;
}

.msg.bot .bubble {
  background: #f1f5ff;
  color: #0b2b61;
  border-radius: 12px 12px 12px 4px;
  padding: 10px 12px;
  max-width: 78%;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.msg.user {
  justify-content: flex-end;
}

.msg.user .bubble {
  background: #ff0000;
  color: #fff;
  border-radius: 12px 12px 4px 12px;
  padding: 10px 12px;
  max-width: 78%;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.14);
}

.chat-input {
  border-top: 1px solid #e9ecef;
  padding: 10px;
  background: #fff;
}

/* ------------ Responsive Breakpoints ------------ */

/* Small mobiles */
@media (max-width: 480px) {
  .chat-panel {
    left: 10px;
    right: 10px;
    bottom: 80px;
    width: auto;
    height: 70vh;
    border-radius: 10px;
  }

  .chat-toggle {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .msg.bot .bubble,
  .msg.user .bubble {
    max-width: 90%;
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .chat-panel {
    width: 320px;
    height: 65vh;
  }

  .msg.bot .bubble,
  .msg.user .bubble {
    font-size: 13.5px;
  }
}

/* Small laptops */
@media (max-width: 1024px) {
  .chat-panel {
    width: 340px;
    height: 70vh;
  }
}

/* subtle show animation */
.chat-panel.show {
  display: flex;
  animation: slideUp .25s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(15px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}


.mc_about {
  padding: 40px 0;
}

.buy-sell-sec {
  padding: 40px 0;
  border-bottom: 1px solid #cccccc56;
}

.buy-sell-sec .buy-btn {}

.buy-sell-sec .mc_iconbox.mc_style_3.mc_type_1 h3 {
  font-family: var(--secondary-font);
  font-size: 24px;
}

.mc_property_search.mc_style_1 .mc_input_wrapper:nth-child(1) .ts-wrapper input {
  display: unset !important;
}

.mc_slider_parent_sec {
  position: relative;
}

.mc_slider_content_cus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  color: #fff;
  text-align: center;
  width: 45%;
}

@media only screen and (min-width: 992px) and (max-width: 1439px) {
  .mc_slider_content_cus {
    width: 100%;
  }

  .mc_site_header.mc_style_1 .mc_menu_toggle {
    display: inline-block;
    color: #fff;
  }

  .mc_site_header.mc_style_1.mc_sticky_active .mc_menu_toggle {
    color: #000;
  }

  .mc_slider_arrows.mc_style_1.mc_type_1 {
    position: absolute;
    top: calc(100% - 40px);
  }

  .mc_slider_arrows.mc_style_1 {
    visibility: visible;
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mc_slider_content_cus {
    width: 75%;
  }

  .mc_site_header.mc_style_1 .mc_menu_toggle {
    display: inline-block;
    color: #fff;
  }

  .mc_site_header.mc_style_1.mc_sticky_active .mc_menu_toggle {
    color: #000;
  }
	    .mc_hero.mc_style_3 .mc_hero_thumbnail {
        background-size: 295% 100%;
        background-position: right;
    }
	  .mc_slider_content_cus {
    width: 100%;
    transform: translate(-50%, -50%);
	  top: 65%;
  }
	.idx-omnibar-form input{
		 background: #00000057;
		        border-bottom: 1px solid #fff !important;
        border-left: 2px solid #fff !important;
	}
	.idx-omnibar-form input::placeholder {
  color:#fff; 
}

.idx-omnibar-form input::-ms-input-placeholder { 
  color: #fff;
}
	
	
	
	
	
	
	
	
	
}

@media only screen and (min-width: 200px) and (max-width: 767px) {
  .mc_slider_content_cus {
    width: 100%;
    transform: translate(-50%, -50%);
	  top: 65%;
  }
	.idx-omnibar-form input{
		 background: #00000057;
		        border-bottom: 1px solid #fff !important;
        border-left: 2px solid #fff !important;
	}
	.idx-omnibar-form input::placeholder {
  color:#fff; 
}

.idx-omnibar-form input::-ms-input-placeholder { 
  color: #fff;
}
	

  .mc_site_header.mc_style_1 .mc_nav .mc_nav_list_wrap {
    color: #fff;
  }

  .mc_site_header.mc_style_1 .mc_menu_toggle {
    display: inline-block;
    color: #fff;
  }

  .mc_site_header.mc_style_1.mc_sticky_active .mc_menu_toggle {
    color: #000;
  }

  .phone-toggle {
    position: fixed;
    bottom: 82px;
    z-index: 1050;
    width: 60px;
    height: 60px;
  }

  .mc_slider_arrows.mc_style_1.mc_type_1 {
    position: absolute;
    top: calc(100% - 30px);
  }
}


.mc_newsletter_wrapper_cus {
  width: 50%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.mc_newsletter_wrapper_cus .mc_newsletter_form.mc_style_2 input {
  padding: 5px 5px;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
  /* border: 0; */
}

.mc_newsletter_wrapper_cus .mc_newsletter_form.mc_style_2 .mc_btn.mc_style_1 {
  padding: 11px 15px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0px 0px 0px 0px;
  line-height: normal;
  border: none;
  height: 100%;
}

/* Tablet */
@media (max-width: 991px) {
  .mc_newsletter_wrapper_cus {
    width: 85%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mc_newsletter_wrapper_cus {
    width: 100%;
  }

  .mc_newsletter_wrapper_cus .mc_newsletter_form.mc_style_2 {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .mc_newsletter_wrapper_cus .mc_newsletter_form.mc_style_2 input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .mc_newsletter_wrapper_cus .mc_newsletter_form.mc_style_2 .mc_btn.mc_style_1 {
    position: relative;
    width: 100%;
    border-radius: 5px;
    height: auto;
  }
}


/* =============================================================================================== */

/* Default (Desktop) */


/* Tablet View */
@media (max-width: 991px) {
  .mc_property_search .mc_input_wrapper {
    flex: 1 1 calc(33.33% - 10px);
    /* 3 per row */
  }

  .mc_property_search .banner-search-btn {
    width: 100%;
  }

  .mc_property_search .mc_search_form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  .mc_property_search .mc_input_wrapper {
    flex: 1 1 calc(14.2% - 10px);
    /* 7 items in a row roughly */
    min-width: 150px;
  }


}

/* Mobile View */
@media (max-width: 600px) {
  .mc_property_search .mc_search_form {
    flex-direction: column;
    gap: 10px;
  }

  .mc_property_search .mc_input_wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .mc_property_search .banner-search-btn {
    width: 100%;
    text-align: center;
  }

  .mc_property_search .banner-search-btn {
    width: 100%;
  }

  .mc_property_search.mc_style_1 .ts-control {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }

  .mc_property_search .mc_search_form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  .mc_property_search .mc_input_wrapper {
    flex: 1 1 calc(14.2% - 10px);
    /* 7 items in a row roughly */
    min-width: 150px;
  }

}




.mc_page_header {
  position: relative;
  background-size: cover;
  background-position: center;
}

.mc_page_header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* black overlay with 50% opacity */
  z-index: 1;
}

.mc_page_header .mc_page_header_content {
  position: relative;
  z-index: 2;
}

.mc_page_header .mc_page_header_content h1 {
  color: #fff;
}

.mc_page_header .mc_page_header_content .breadcrumb li {
  color: #fff;
}

.quote-right-opacity {
  opacity: 0.1;
}

.testimonial-section-cus .mc_avatar.mc_style_1 .mc_avatar_icon {
  border: 1px solid var(--black-color);
}

.mc_site_header.mc_style_1 .mc_nav_list>li.active>a {
  border-bottom: 2px solid var(--white-color);
}

.mc_site_header.mc_style_1.mc_sticky_active .mc_nav_list>li.active>a {
  border-bottom: 2px solid var(--primary-color);
}


.mc_post.mc_style_1 .mc_post_thumbnail img {
    height: 400px;
    object-fit: cover;
}

.wp-google-name span {
    color: #fff !important;
}

section.testimonials-section {
    padding: 0px 0px 160px 0px;
}


.listing-row.text-center {
    padding: 50px 0px 30px 0px !important;
    box-shadow: 0px 0px 12px #0000002b;
    border-radius: 10px;
}

.listing-row.form {
    padding: 40px !important;
    background-color: #fafafa;
    margin: 30px 0px 60px 0px;
    border-radius: 10px;
}
.profile-section-one {
    display: flex;
    flex-direction: row;
}
.profile-section {
    padding: 60px;
}

ul.profile-detail {
    list-style: none;
}
.profile-section {
    padding: 60px;
    box-shadow: 0px 0px 20px #0000002b;
    margin: 60px 0px 60px 0px;
    border-radius: 10px;
}
.profile-section-one img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}
.detail-profile p {
    margin: 20px 0px 0px 0px;
}







.profile-section-2 {
    padding: 60px;
}

ul.profile-detail {
    list-style: none;
}
.profile-section-2 {
    padding: 60px;
    box-shadow: 0px 0px 20px #0000002b;
    margin: 0px 0px 60px 0px;
    border-radius: 10px;
}
.profile-section-one img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}
.detail-profile p {
    margin: 20px 0px 0px 0px;
}


.mc_about_img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.mc_about_img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Right-side black overlay */
.img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px; /* fixed width */
  height: 100%;
  background: rgb(0 0 0 / 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
	z-index:9;
}

/* Text and button inside */
.overlay-content {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.overlay-content h5 {
  font-size: 22px;
  margin: 0;
	color:#fff;
	padding-bottom:20px;
}

.overlay-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 3px 8px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  background: #fff;
  color: #000;
}

@media(max-width: 767px){
	
	.mc_bts_wrapper.mc_mb_20.aos-init.aos-animate a {
    margin-bottom: 20px;
}
	
}

.idx-sidebar form.idx-omnibar-form.idx-omnibar-extra-form {
    display: block;
}
