/*===========================BODY==========================*/

/*font-family: "Karantina", system-ui;*/
/*font-family: "Assistant", sans-serif;*/


@font-face {
    font-family: 'OHYaelLeibushor2_0Regular';
    src: url('fonts/OHYaelLeibushor2_0Regular.eot');
    src: url('fonts/OHYaelLeibushor2_0Regular.eot') format('embedded-opentype'),
         url('fonts/OHYaelLeibushor2_0Regular.woff2') format('woff2'),
         url('fonts/OHYaelLeibushor2_0Regular.woff') format('woff'),
         url('fonts/OHYaelLeibushor2_0Regular.ttf') format('truetype'),
         url('fonts/OHYaelLeibushor2_0Regular.svg#OHYaelLeibushor2_0Regular') format('svg');
}





:root {
    --bg: #f4f7fb;
    --ink: #0f2438;
    --brand: #123e7a;
    --brand-2: #0a2f5d;
    --line: #dce4ef;
    --card: #ffffff;
}


* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}


body {
	font-family: "Assistant", sans-serif;
	background: #fff;
	color: #283b59;
	font-size:24px;
	line-height:28px;
}



body p,  
body li {
	font-family: "Assistant", sans-serif;
	font-size:24px;
	line-height:28px;
}



img {
    max-width: 100%;
}



body h1, body h2, body h3, body h4, body h5, body h6 {
	font-family: "Karantina", system-ui;
}



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



.only-mobile {
  display: none;
}



/*===========================BODY==========================*/




/*===========================HEADER==========================*/


.container {
	width: 100%;
	padding: 0 20px;
	max-width: 1215px;
	margin: 0 auto;
}



.site-header {
	background: #fff;
	padding: 0px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	/*border-bottom: 1px solid #ced5df;*/
}


.top-nav {
	background: linear-gradient(90deg,rgb(238, 196, 120) 0%, rgb(178, 127, 72) 100%);
	padding: 13px 0;
}

/* ─── Terms & Conditions popup ─── */
.terms-modal-overlay {
	position: fixed; inset: 0; background: rgba(15,23,42,.55);
	z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.terms-modal {
	background: #fff; padding: 26px 32px 22px; border-radius: 10px;
	width: 92%; max-width: 720px; max-height: 82vh; overflow-y: auto;
	box-shadow: 0 18px 50px rgba(0,0,0,.25); position: relative;
	font-family: "Assistant", sans-serif; text-align: right;
	direction: rtl;
}
.terms-modal h3 {
	margin: 0 0 18px; color: #293c5a; font-size: 26px; font-weight: 700;
	padding-bottom: 12px; border-bottom: 1px solid #eef0f3;
}
.terms-modal-body {
	color: #333; font-size: 16px; line-height: 1.6;
}
.terms-modal-body p, .terms-modal-body li { margin-bottom: 10px; }
.terms-modal-close {
	position: absolute; top: 6px; left: 14px; background: none; border: 0;
	font-size: 30px; line-height: 1; cursor: pointer; color: #888;
}
.terms-modal-close:hover { color: #293c5a; }

/* Underlined link inside the "אני מאשר את תנאי השימוש" label */
.check-item .js-open-terms {
	color: #c8a04a;
	text-decoration: underline;
	font-weight: 700;
}
.check-item .js-open-terms:hover { color: #b88e3a; }

.club-section .club-heading {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.club-section .club-heading h2 {
	margin: 0;
	color: #293c5a;
	font-size: 26px;
	font-weight: 800;
	font-family: "Assistant", sans-serif;
}
.club-section .club-heading .club-sub {
	color: #555;
	font-size: 26px;
	font-weight: 500;
}
.club-section textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8dde3;
	border-radius: 4px;
	font-size: 16px;
	font-family: "Assistant", sans-serif;
	background: #fff;
	box-sizing: border-box;
	resize: vertical;
	min-height: 90px;
}
.club-section textarea:focus { border-color: #c8a04a; outline: none; }
.club-section .club-note {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.55;
	background: #f7f8fb;
	border-right: 3px solid #c8a04a;
	padding: 14px 18px;
	border-radius: 4px;
	margin-top: 8px;
}

.user-greeting {
	color: #fff;
	font-family: "Assistant", sans-serif;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	/* Page-specific rules override .top-nav .container's justify-content to
	   flex-end (physical left in RTL), packing every child to the LEFT.
	   These auto-margins push the greeting to the RTL start (physical right,
	   above the logo) without touching the shared page rules. */
	margin-inline-end: auto;
	margin-left: auto;   /* physical fallback for RTL */
}

.user-greeting .greet-sep { opacity: 0.55; margin: 0 2px; }

@media (max-width: 700px) {
	.user-greeting { font-size: 14px; gap: 6px; }
	.user-greeting .greet-sep { display: none; }
	.user-greeting .greet-num { display: block; }
}


.top-nav .container {
  display: flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}


.top-nav ul {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}



.top-nav ul li {
	margin-left: 85px;
	color: #fff;
	font-family: "Assistant", sans-serif;
	font-size: 18px;
	font-weight: 600;
}


.top-nav ul li:last-child {
  margin-left: 0;
}


.top-nav ul li a {
  color: #fff;
  text-decoration: none;
}


.white-btn a {
	background: #fff;
	border-radius: 87px;
	text-decoration: none;
	padding: 0px 19px 4px;
	display: inline-block;
	color: #293C5A;
	font-size: 18px;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	line-height: 27px;
	margin-right: 10px;
	min-width: 102px;
	text-align: center;
	white-space: nowrap;
}


.white-btn a:hover {
	background: #293c5a;
	color: #fff;
}


.white-btn a:first-child {
	margin-right: 0;
}



.white-btn a.link {
  background: transparent;
  color: #fff;
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
  margin-right: 53px;
  width: auto;
}


.white-btn a.link:hover {
  color: #293c5a;
}


.header-inner .container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	position: relative;
}


.header-mail {
  position: absolute;
  left: 20px;
  top: 28px;
}


.header-mail span {
	background: #EE5151;
	color: #fff;
	border-radius: 23px;
	font-size: 18px;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	padding: 0px 8px 1px;
	position: absolute;
	right: -21px;
	top: -14px;
	line-height: 23px;
}



.header-inner {
  padding: 11px 0;
}


.main-nav ul {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.main-nav ul li {
	margin: 0 0 0 35px;
}


.main-nav ul li:last-child {
	margin-left: 0;
}


.main-nav ul li a {
	color: #143246;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	font-family: "Assistant", sans-serif;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.main-nav ul li a:hover {
	color: #b27f46;
}


.site-logo {
	margin-left: 5.5%;
	width: 15%;
}


.site-logo a {
  display: block;
}


.site-logo a img {
  width: 100%;
  display: inherit;
}



.home .top-nav .container,
.about .top-nav .container,
.customer-messages .top-nav .container,
.sending-request .top-nav .container,
.brokers-center .top-nav .container,
.collaboration .top-nav .container,
.implementers-club .top-nav .container,
.contact .top-nav .container {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
}



.hamburger {
  width: 25px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
  position: relative;
  left: 4px;
}


.hamburger.active {
  gap: 7px;
}



.hamburger span {
  display: block;
  height: 2px;
  width: 29px;
  background: #143246;
  border-radius: 0;
  transition: 0.3s;
}



.hamburger.active span:nth-child(1){
	transform:translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
	opacity:0;
}

.hamburger.active span:nth-child(3){
	transform:translateY(-9px) rotate(-45deg);
}


/*==========================HEADER==========================*/






/*===========================MAIN===========================*/


#main {
  min-height: 550px;
  overflow: hidden;
  padding-top: 166px;
}


.hm01 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center -150px;
	position: relative;
	padding: 48px 0 36px;
}



.hm01 h3 {
	font-family: 'OHYaelLeibushor2_0Regular';
	text-align: center;
	color: #B27F48;
	font-size: 80px;
	line-height: 58px;
	transform: rotate(1.44deg);
	margin:0;
	text-shadow: 1px 0 6px #fff, 1px 0 37px #fff, 1px 0 30px #fff;
}


.hm01 h1 {
	color: #293C5A;
	font-size: 140px;
	font-weight: 700;
	margin: 75px 0 124px;
	text-shadow: 1px 0 12px #fff, 1px 0 26px #fff, 1px 0 29px #fff;
}


.hm01 h1 span {
  font-size: 68px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
}


.banner-list ul {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.banner-list ul li {
	background: #F4F4F4;
	width: 49%;
	position: relative;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	overflow: hidden;
	padding: 26px 97px 26px 90px;
	margin-top: 20px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.banner-list ul li::after {
	content: "";
	display: block;
	width: 47px;
	height: 100%;
	background: linear-gradient(90deg,rgb(238, 196, 120) 0%, rgb(178, 127, 72) 100%);
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}


.banner-list .hover-content {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #EEC478;
	padding: 33px 33px 33px 100px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(1,0,0,1.21);
	-webkit-transition: all 0.3s cubic-bezier(1,0,0,1.21);
	-moz-transition: all 0.3s cubic-bezier(1,0,0,1.21);
	-ms-transition: all 0.3s cubic-bezier(1,0,0,1.21);
	right: 0;
	top: 0;
	z-index: 1;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.banner-list ul li:hover .hover-content {
	opacity: 1;
	visibility: visible;
}


.hover-content p {
	color: #143246;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;
	margin: 0;
	width:100%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: pre-line; /*pre-wrap;*/
}


.banner-list {
  position: relative;
}


.wt-tip {
  width: 102px;
  position: absolute;
  top: 102px;
  right: -116px;
  text-align: center;
}


.wt-tip span {
  display: block;
  background: #293C5A;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 102px;
  height: 64px;
  padding: 9px 12px;
  line-height: 20px;
  font-family: "Assistant", sans-serif;
  text-align: right;
  position: relative;
  margin-bottom: 14px;
}


.wt-tip span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("images/tip-arrow.svg") no-repeat 0 0;
  position: absolute;
  bottom: -12px;
  right: 9px;
}


.banner-list h5 {
	font-size: 42px;
	line-height: 42px;
	margin: 0;
	font-weight: 700;
	color: #293C5A;
}


.banner-list h4 {
  color: #293C5A;
  font-size: 120px;
  line-height: 37px;
  letter-spacing: 2%;
  font-family: 'OHYaelLeibushor2_0Regular';
  margin: 0 0 45px;
  text-shadow: 1px 0 6px #fff, 1px 0 37px #fff, 1px 0 30px #fff;
}


.banner-list .blue-arrow-block {
	position: absolute;
	left: 36px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}



.banner-list .blue-arrow-block a {
  position: relative;
  width: 51px;
  height: 51px;
  display: block;
  text-decoration: none;
}



.banner-list .blue-arrow-block img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.blue-arrow-block span {
  color: #143246;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  position: absolute;
  bottom: -25px;
  width: 70px;
  text-align: center;
  margin: 0 auto;
  right: -10px;
  transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	opacity: 0;
}


.banner-list .blue-arrow-block .blue-arrow {
	opacity: 0;
}



.banner-list ul li:hover .blue-arrow {
	opacity: 1;
}


.banner-list ul li:hover .blue-arrow-block span {
	opacity: 1;
}


.hm02 {
	background: linear-gradient(90deg,rgba(75, 91, 116, 1) 0%, rgba(41, 60, 90, 1) 100%);
	overflow: hidden;
	position: relative;
	padding: 14px 0;
	margin-bottom: 47px;
}


.hm02 .container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}



.hm2-right {
  width: 36%;
}



.hm02 h3 {
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #fff 105%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 30px;
	line-height: 37px;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	margin: 0 0 22px;
}


.hm2-right p {
  color: #fff;
  font-size: 30px;
  line-height: 37px;
  font-weight: 600;
}



.hm2-image {
  width: 45%;
  position: relative;
  left: 55px;
  top: 20px;
}


.hm2-image img {
  width: 100%;
}


.hm2-left {
  width: 18%;
  position: relative;
}



.hm2-left h2 {
  background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #fff 105%);
    background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 80px;
  line-height: 70px;
  font-weight: 400;
  font-family: 'OHYaelLeibushor2_0Regular';
  transform: rotate(-12deg);
  position: absolute;
  right: -109px;
  top: -64px;
  width: 335px;
}




.hm03-inner {
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 150px 0 0 0;
	position: relative;
	overflow: hidden;
}


.hm03-inner::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url("images/bg-blue.png") no-repeat 0 0;
}


.hm03 {
  margin-bottom: 78px;
}



.hm03-block {
  position: relative;
  z-index: 1;
  padding: 53px 75px;
}



.hm03-block h3 {
  color: #143246;
  font-size: 80px;
  line-height: 70px;
  text-align: left;
  font-family: 'OHYaelLeibushor2_0Regular';
  font-weight: 400;
}


.hm03-block h3 span {
	transform: rotate(-12deg);
	-webkit-transform: rotate(-12deg);
	-moz-transform: rotate(-12deg);
	-ms-transform: rotate(-12deg);
	display: inline-block;
	position: relative;
	left: -46px;
}


.hm03-block h2 {
	font-size: 100px;
	line-height: 64px;
	font-weight: 400;
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 173%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 22px;
}


.hm03-block h2 span {
  font-size: 64px;
}


.hm03-block p {
  color: #283b59;
  font-size: 30px;
  line-height: 37px;
  font-weight: 600;
  margin: 0 0 37px;
}



.hm03-block ul li {
  color: #293C5A;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 36px;
  background: url("images/key-icon.svg") no-repeat right -8px;
  padding-right: 80px;
}


.hm03-block ul li:last-child {
  margin-bottom: 0;
}



.hm03-gray {
  background: linear-gradient(90deg,rgb(238, 196, 120) 0%, rgb(178, 127, 72) 100%);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 23px 0;
}


.hm03-gray span {
  color: #143246;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
}



.hm04-block {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.hm04-content {
	width: 50%;
	padding: 50px 0 50px 50px;
}


.hm04-content h3 {
	font-size: 60px;
	line-height: 46px;
	font-weight: 700;
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 173%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 27px;
}


.hm04-content h4 {
  color: #293C5A;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 23px;
}


.hm04-content p {
  color: #293C5A;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 47px;
}


.hm04-image {
  width: 50%;
  overflow: hidden;
}



.hm04-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transform: scale(1.01);
}


.hm04-image:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}



.hm04-block:nth-child(2n) .hm04-content {
  order: 2;
  padding-right: 50px;
}


.gold-btn a {
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 100%);
	color: #293C5A;
	text-decoration: none;
	font-weight: 700;
	font-size: 24px;
	line-height: 37px;
	font-family: "Assistant", sans-serif;
	border-radius: 100px;
	padding: 14px 28px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.gold-btn a:hover {
  background: linear-gradient(90deg,rgb(75, 91, 116) 0%, rgb(41, 60, 90) 100%);
  color: #fff;
}


.golden-btn {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
}


.call-num {
  padding-left: 25px;
}


.call-num a {
	color: #143246;
	font-size: 30px;
	line-height: 37px;
	text-decoration: none;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.call-num a:hover {
  color: #B27F48;
}


.blue-arrow-block a {
	text-decoration: none;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
}


.hm04-content .blue-arrow-block span {
  position: static;
  opacity: 1;
  visibility: visible;
  width: auto;
  margin: -3px 0 0 24px;
  font-size: 30px;
  line-height: 37px;
  font-weight: 600;
  background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 100%);
    background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.gray-block {
  background: #F4F4F4;
  padding: 18px 25px;
  margin-bottom: 30px;
}


.gray-block p {
  margin: 0;
}


.hm04-content .blue-arrow-block img{
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.blue-arrow-block a:hover img {
  transform: translateX(-5px);
}














.custom-popup .popup-content {
  width: 100%;
  padding: 55px 55px 0px;
}


.custom-popup .popup-box h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  line-height: 37px;
  text-align: right;
  margin-bottom: 18px;
}


.custom-popup .popup-content h2 strong {
  font-size: 42px;
  font-weight: 700;
}


.custom-popup .form-group label {
  color: #143246;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  margin: 0 0 10px;
}


.custom-popup {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    z-index:99;
}

.custom-popup .popup-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}



.popup-box {
	position: fixed;
	width: 90%;
	max-width: 1005px;
	margin: 0 auto;
	z-index: 2;
	direction: rtl;
	background-size: cover;
	background-repeat: no-repeat;
	/*padding: 55px 55px 71px;*/
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}


.popup-close {
    position:absolute;
    top:15px;
    left:20px;
    font-size:34px;
    cursor:pointer;
    color:#1a2c47;
}


.custom-popup .form-group{
    margin-bottom:25px;
}


.custom-popup .form-group textarea {
	width: 100%;
	height: 84px;
	resize: none;
	padding: 9px 22px;
	font-size: 28px;
	border: 1px solid #143246;
	background: #fff;
	outline: none;
	color: #727C83;
	font-size: 24px;
	font-family: "Assistant", sans-serif;
	font-weight: 600;
}


.custom-popup .form-group {
  padding: 0;
}


.custom-popup .submit-button {
	padding: 0;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.custom-popup .submit-button button {
	background: #143246;
	height: 63px;
	width: 224px;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	border: none;
	cursor: pointer;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.custom-popup .submit-button button:hover {
	background: linear-gradient(90deg,rgb(238, 196, 120) 0%, rgb(178, 127, 72) 100%);
	color: #293C5A;
}


.custom-popup .submit-button p {
  color: #143246;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  width: 65%;
  margin: 0;
}



.bottom-area {
  background: linear-gradient(90deg,rgb(238, 196, 120) 0%, rgb(178, 127, 72) 100%);
  padding: 13px 10px;
  color: #143246;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 19px 0 0;
  text-align: center;
}




/*===========================MAIN===========================*/







/*===========================ABOUT===========================*/


.about01 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
  margin-bottom: 70px;
}



.about01 h1 {
  color: #fff;
  font-size: 93.95px;
  line-height: normal;
  margin: 0 0 38px;
  text-align: center;
}


.about01 h1 span {
  font-size: 49.33px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
}


.select-col2 {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.about01 .select {
  margin-bottom: 22px;
  position: relative;
}


.select-col2 .select {
	width: 49%;
}



.select .select-btn {
	border-radius: 40px;
	padding: 24px 51px 24px 66px;
	background: rgba(255,255,255,0.95);
	position: relative;
	cursor: pointer;
	font-size: 23px;
	font-family: "Assistant", sans-serif;
}


.select .select-btn strong {
  font-size: 32px;
}


.option:hover {
    background: #293C5A;
	color:#fff;
}


.select .option {
	padding: 7px 8px;
	font-family: "Assistant", sans-serif;
	font-size: 20px;
}


.select-btn::after {
	content: "";
	display: block;
	background: url("images/select-icon.svg") no-repeat 0 0;
	font-size: 25px;
	position: absolute;
	top: 54%;
	left: 33px;
	width: 20px;
	height: 18px;
	background-size: 100%;
	transform: translateY(-50%);
}

.select-dropdown {
  background:#fff;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 4px);
  width: 100%;
  transition: ease-in all 0.3s;
  transform: scale(1, 0);
  transform-origin: top center;
  z-index: 1;
  padding: 23px 44px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
}

.select-btn.toggle {
    border-radius: 3px 3px 0 0;
}

.toggle {
    visibility: visible;
    transform: scale(1, 1);
}




.about02-inner {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-bottom: 42px;
}


.about02-inner h3 {
	font-size: 80px;
	line-height: normal;
	font-weight: 400;
	font-family: 'OHYaelLeibushor2_0Regular';
	margin: 0 0 4px;
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.about02-inner h4 {
  color: #293C5A;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 18px;
}


.about02-inner p {
  color: #293C5A;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}


.abt-right, .abt-center, .abt-left {
	width: 30%;
}


.abt-center img {
  width: 100%;
}


.about02-bottom {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.about02-bottom h4 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  max-width: 800px;
  margin: 0;
}



.about02 {
  margin-bottom: 72px;
}


.about03 h2 {
	text-align: center;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 100%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 42px;
}




.team-list {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
}



.about03 {
  margin-bottom: 50px;
}



.about03 .container {
  max-width: 1240px;
}


.team-block {
	background: #F4F4F4;
	border-radius: 13px;
	width: 23.3%;
	margin: 0 0.8% 1.8%;
	text-align: center;
	padding: 35px;
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
	transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  border: 1px solid transparent;
}



.team-block:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.2);
}


.tm-img {
  width: 186px;
  height: 186px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto 30px;
}


.tm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  transform: scale(1.02);
}


.team-block h3 {
  color: #293C5A;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 9px;
}


.team-block p {
  color: #293C5A;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 15px;
}


.gold-btn-link a {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	text-decoration: none;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
}


.gold-btn-link a img {
  width: 41px;
  height: 41px;
  object-fit: contain;
  transition: all 0.2s linear;
}


.gold-btn-link a span {
  font-weight: 600;
  font-size: 24px;
  line-height: 37px;
  font-family: "Assistant", sans-serif;
  background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 52%);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-left: 10px;
}



.gold-btn-link a:hover img {
  transform: translateX(-5px);
}





.team-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.team-popup.active{
    opacity: 1;
    visibility: visible;
}

.team-popup-inner {
  width: 90%;
  max-width: 600px;
  background: #fff;
  padding: 45px 60px;
  position: relative;
  direction: rtl;
}

.close-popup{
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 30px;
    cursor: pointer;
}


.popup-top {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	gap: 20px;
	margin-bottom: 14px;
	border-bottom: 2px solid #293C5A80;
	padding-bottom: 31px;
}


.popup-image {
  width: 164px;
  height: 164px;
  border-radius: 100%;
  overflow: hidden;
}


.popup-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  transform: scale(1.02);
}


.popup-content {
  width: calc(95% - 170px);
  padding-right: 47px;
}


.popup-content h3 {
  color: #23345d;
  font-size: 50px;
  font-family: "Assistant", sans-serif;
  line-height: 40px;
  margin: 0 0 13px;
}

.popup-content h4 {
  margin-top: 5px;
  color: #293C5A;
  font-size: 36px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  line-height: 28px;
}


.popup-desc {
  color: #293C5A;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}



/*===========================ABOUT===========================*/





/*===========================CUSTOMER===========================*/


.cus01 {
  padding: 25px 0;
}


.center-title {
  text-align: center;
  margin-bottom: 37px;
}


.cus01 h1 {
  font-size: 64px;
  line-height: 70px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 63px;
}


.cus01 h1 span {
  position: relative;
  border-bottom: 2px solid #293C5A80;
  padding: 0 42px 8px;
}


.center-title p {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 20px;
}


.cc-table-outer .container {
  max-width: 1380px;
}


.cc-table-outer {
  background: #143246;
  padding: 36px 0;
  margin-bottom: 30px;
}



.cc-table-wrap-block {
  background: rgba(255,255,255,0.95);
  border-radius: 40px;
  padding: 20px 36px;
}


.cc-table-wrap {
  overflow-x: auto;
}


.cc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0;
}


.cc-table thead th {
  color: #143246;
  font-size: 20px;
  padding: 16px 10px 20px;
  text-align: center;
  white-space: nowrap;
  line-height: 28px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
}


.cc-table thead th:nth-child(2n) {
  background: #e7ebee;
}


.cc-table tbody tr td:nth-child(2n) {
  background: #dde2e5;
}


.cc-table tbody tr td {
  background: #e7ebee;
}



.cc-table tbody tr:nth-child(2n) td {
  background: #f4f5f7;
}


.cc-table tbody tr:nth-child(2n) td:nth-child(2n) {
  background: #e7ebee;
}


.cc-table tbody td {
  color: #143246;
  padding: 8px 16px;
  vertical-align: top;
  line-height: 28px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
}


.trash--link, .check--link {
  margin: 0 4px;
}


.trash--link {
  cursor: pointer;
}


/*===========================CUSTOMER===========================*/






/*===========================SENDING REQUEST===========================*/



.send01 {
  padding: 28px 0 0;
}


.send01 .center-title {
  margin-bottom: 0;
}


.center-title-inner p {
  margin: 0;
}


.center-title-inner {
	background: #E9F5FF;
	border-radius: 10px 10px 0 0;
	padding: 34px 10px 9px;
}


.center-title-inner h1 {
  color: #143246;
  font-size: 48px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 20px;
}


.center-title-inner p {
  font-size: 24px;
  line-height: 28px;
}



.request-form .container {
  max-width: 1175px;
}


.section-title {
	font-family: "Assistant", sans-serif;
	font-size: 32px;
	line-height: 28px;
	font-weight: 700;
	color: #143246;
	margin: 0 0 23px;
	padding: 0 5px;
}


.request-form {
	background: #E9F5FF;
	padding: 33px 0;
}


.request-form-inner {
    background-color: #E6E6E6;
    padding: 39px 26px;
    border-radius: 10px;
}

.form-section {
    width: 100%;
}


.form-group label {
  color: #143246;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  margin: 0 0 10px;
}


.section-divider {
	border: 0;
	border-top: 2px solid #143246;
	margin: 4px auto 22px;
  width: calc(100% - 15px);
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
	margin-bottom: 25px;
}


.col-100 {
    width: 100%;
}

.col-50 {
    width: 50%;
}


.col-33 {
    width: 33.333%;
}


.col-30 {
  width: 38.333%;
  padding-left: 4px;
}


.col-25 {
    width: 23.333%;
}


.form-section input[type="text"], 
.form-section input[type="email"], 
.form-section input[type="tel"], 
.form-section input[type="password"], 
.form-section select, 
.form-section textarea {
	width: 100%;
	height: 61px;
	padding: 17px 43px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	font-size: 24px;
	color: #727C83;
	border-radius: 2px;
	outline: none;
	line-height: normal;
	font-weight: 600;
	font-family: "Assistant", sans-serif;
	text-align: right;
}


.form-section select {
	padding: 0px 43px;
}

.form-section textarea {
    height: 108px;
    padding: 17px 43px;
    resize: none;
}



.form-section input::-webkit-input-placeholder, 
.form-section textarea::-webkit-input-placeholder { 
   color: #727C83; opacity:1;
}

.form-section input::-moz-placeholder, 
.form-section textarea::-moz-placeholder { 
   color: #727C83;  opacity:1;
}

.form-section input:-ms-input-placeholder, 
.form-section textarea:-ms-input-placeholder { 
   color: #727C83;  opacity:1;
}

.form-section input:-moz-placeholder, 
.form-section textarea:-moz-placeholder { 
   color: #727C83;  opacity:1;
}



.text-placeholder {
    color: #94a3b8 !important;
}

.text-center {
    text-align: center;
}


.select-wrapper {
    position: relative;
    width: 100%;
}



.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0 43px;
  cursor: pointer;
}



.select-wrapper::after {
	content: "";
	display: block;
	background: url("images/select-icon.svg") no-repeat 0 0;
	position: absolute;
	left: 20px;
	top: 53%;
	pointer-events: none;
	width: 20px;
	height: 18px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}


.input-with-unit {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-unit input {
    padding-right: 35px;
}


.unit-label {
	font-size: 24px;
	color: #143246;
	font-weight: 600;
	line-height: 28px;
	font-family: "Assistant", sans-serif;
	padding: 0 10px;
}



.unit-label1 {
  width: 34%;
  padding: 0 40px 0 4px;
}


.unit-label2 {
  width: 20%;
  padding: 0 29px 0 5px;
}


.unit-label3 {
	width: 40%;
	padding: 0 39px 0 10px;
}



.flex-floor-group {
    flex-direction: row !important;
    align-items: flex-end;
}

.floor-col {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.floor-col.no-label {
    margin-bottom: 0;
}

.floor-middle {
  padding: 0 8px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}



.floor-text {
  font-size: 24px;
  color: #143246;
  font-weight: 600;
  line-height: 28px;
  font-family: "Assistant", sans-serif;
}


.comment-box, .upload-container {
  margin-top: 4px;
  padding: 0 5px;
}



.upload-box {
  background-color: #ffffff;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}



.upload-link {
  color: #143246;
  text-decoration: underline;
  font-weight: 600;
}


.upload-box span {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
  color: #727C83;
}


.submit-button {
  padding: 10px 5px 0;
}


.submit-btn {
	background-color: #143246;
	color: #ffffff;
	border: none;
	width: 100%;
	height: 77px;
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 2px;
	font-family: "Assistant", sans-serif;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}



.submit-btn:hover {
	background-color: rgb(178, 127, 70);
	color: #ffffff;
}


@media (max-width: 580px) {
    .col-50, .col-33 {
        flex: 0 0 100%;
        width: 100%;
    }
    .flex-floor-group {
        flex-wrap: nowrap;
    }
    .form-container {
        padding: 20px;
    }
}/*====*/


/*===========================SENDING REQUEST===========================*/




/*==========================IMPLEMENTERS CLUB===========================*/


.imp-club01 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
}


.imp-club01 h1 {
  color: #fff;
  font-size: 93.95px;
  line-height: normal;
  margin: 0 0 20px;
}


.imp-club01 h1 span {
  font-size: 49.33px;
  font-weight: 600;
  font-family: "Assistant", sans-serif;
}



.imp-club01 h4 {
  font-size: 32px;
  font-family: "Assistant", sans-serif;
  line-height: 32px;
  margin: 0 0 34px;
  color: #EEC478;
}



.imp01-white {
	background: rgba(255,255,255,0.95);
	border-radius: 40px;
	padding: 26px 50px;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-bottom: 61px;
}



.imp01-right {
  width: 71%;
}


.imp01-right h3 {
  color: #143246;
  font-size: 32px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  margin: 0 0 4px;
}


.imp01-right p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}



.imp01-left {
	width: 26%;
	position: relative;
	right: 16px;
}


.imp01-left h5 {
  font-size: 80px;
  line-height: 49px;
  font-weight: 400;
  font-family: 'OHYaelLeibushor2_0Regular';
  margin: 0 0 4px;
  background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 100%);
    background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.imp01-list h2 {
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #fff 105%);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 42px;
	line-height: 37px;
	font-weight: 700;
	font-family: "Assistant", sans-serif;
	margin: 0 0 37px;
	text-align: center;
}


.imp01-list ul {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.imp01-list ul li {
  width: 40%;
  color: #fff;
  margin: 0 0 27px;
  position: relative;
}


.imp01-list ul li:nth-child(2n) {
  width: 37%;
}


.imp01-list ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	position: relative;
	display: inline-block;
}


.imp01-list ul li a::after {
	content: "";
	display: block;
	width: 13px;
	height: 15px;
	background: url("images/polygon-white.svg") no-repeat 0 0;
	position: absolute;
	top: 9px;
	left: -28px;
}


.imp01-desc {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	margin: 38px 0 29px;
}



.imp01-desc h6 {
  color: #fff;
  font-size: 32px;
  line-height: 32px;
  font-family: "Assistant", sans-serif;
  width: 64%;
}


.imp01-desc .gold-btn {
  width: 31%;
}



.imp-club02 {
  padding: 51px 0;
}



.imp-club02 .container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.imp-club02-right {
  width: 60%;
}


.imp-club02-right p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #293C5A;
  margin: 0 0 13px;
}


.imp-club02-right h3 {
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
}



.imp-club02-left a img {
  position: absolute;
  left: -70px;
  top: 7px;
}


.imp-club02-left a {
  color: #143246;
  font-size: 46px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-left: 70px;
}




/*==========================IMPLEMENTERS CLUB===========================*/





/*==========================COLLABORATION===========================*/



.collab01 h4 {
  color: #fff;
  margin: 30px 0 4px;
  text-align: center;
  font-weight: 600;
}


.collab01 h1 {
  color: #fff;
  font-size: 80px;
  margin: 0 0 40px;
  text-align: center;
}



.collab01 .imp01-right {
  width: 100%;
  text-align: center;
}


.collab01 .imp01-white {
	padding: 26px 11px;
	margin-bottom: 45px;
}



.collab01 .imp01-list h2 {
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #EEC478 105%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 36px;
	line-height: 37px;
	margin: 0 0 44px;
}



.collab01 .imp01-list ul {
	max-width: 100%;
}


.collab01 .imp01-list ul li {
	width: 45% !important;
	color: #fff;
	margin: 0 0 36px;
	text-align: center;
}


.collab01 .imp01-list h5 {
	font-size: 32px;
	line-height: 28px;
	margin: 0 0 6px;
	font-family: "Assistant", sans-serif;
	font-weight: 700;
}



.collab01 .imp01-desc {
  margin: 4px 0 0px;
}


.collab01 .imp01-desc h6 {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-family: "Assistant", sans-serif;
  width: 100%;
  text-align: center;
}



.collab02 {
  padding: 59px 0 30px;
  text-align: center;
}



.collab02 h2 {
  font-family: "Assistant", sans-serif;
  color: #293C5A;
  font-size: 30px;
  line-height: 37px;
  margin: 0 0 26px;
  padding: 0 20px;
}


.collab02 .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.collab02 .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.collab02 .slick-list:focus {
    outline: none;
}

.collab02 .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.collab02 .slick-slider .slick-track,
.collab02 .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.collab02 .slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	margin-left: auto;
	margin-right: auto;
}

.collab02 .slick-track:before,
.collab02 .slick-track:after {
    display: table;
    content: '';
}

.collab02 .slick-track:after {
    clear: both;
}

.collab02 .slick-loading .slick-track {
    visibility: hidden;
}

.collab02 .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
	padding: 0 20px;
	text-align: center;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.collab02 .slick-slide img {
	display: initial;
}

.collab02 .slick-slide.slick-loading img {
    display: none;
}

.collab02 .slick-slide.dragging img {
    pointer-events: none;
}

.collab02 .slick-initialized .slick-slide {
    display: block;
}

.collab02 .slick-loading .slick-slide {
    visibility: hidden;
}


.collab02 .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.collab02 .slick-arrow.slick-hidden {
    display: none;
}






/*==========================COLLABORATION===========================*/




/*==========================THE BROKERS===========================*/


.the-b01 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 64px 0;
  margin-bottom: 60px;
}


.the-b01 .gold-btn {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
}


.the-b01 .gold-btn a {
  padding: 12px 28px;
  max-width: 200px;
  width: 100%;
  text-align: center;
}



.the-b01 h1 {
  color: #fff;
  font-size: 80px;
  line-height: normal;
  margin: -74px auto 11px;
  text-align: center;
  max-width: 700px;
}


.the-b01 h4 {
  font-size: 42px;
  font-family: "Assistant", sans-serif;
  line-height: 50px;
  margin: 0 auto 28px;
  color: #fff;
  max-width: 704px;
  text-align: center;
  width: 100%;
  font-weight: 600;
}



.the-b01 .imp01-white {
  border-radius: 10px;
  padding: 16px 30px;
  text-align: center;
}


.the-b01 .imp01-white p {
	font-weight: 700;
}


.the01-list ul li {
	margin: 0 0 32px;
}


.the01-list ul li a {
	color: #fff;
	font-size: 24px;
	line-height: 28px;
	text-decoration: none;
	font-weight: 700;
	position:relative;
	display: inline-block;
}




.the01-list ul li a::after {
	content: "";
	display: block;
	width: 13px;
	height: 15px;
	background: url("images/polygon-white.svg") no-repeat 0 0;
	position: absolute;
	top: 17px;
	left: -28px;
}

.the01-list ul li a strong {
  color: #EEC478;
  font-size: 32px;
  line-height: 37px;
  font-weight: 700;
  padding-left: 10px;
}



.the-b02 {
	margin-bottom: 72px;
}


.the02-list {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.the02-list .the-b02-right, 
.the02-list .the-b02-left {
	width: 48%;
}


.the02-list h3 {
	background: #F4F4F4;
	border-radius: 13px;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 21px 51px;
	font-size: 30px;
	line-height: 37px;
	font-family: "Assistant", sans-serif;
	font-weight: 700;
	min-height: 119px;
	box-shadow: 0 5px 3px 0 rgba(0,0,0,0.2);
	margin-bottom: 23px;
}


.the-b02-left h3 {
  padding: 21px 78px;
}


.the02-list ul li {
	position: relative;
	padding-right: 23px;
	color: #293C5A;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 2px;
}


.the-b02-right ul {
  padding-right: 50px;
}


.the-b02-right ul li::after {
	content: "";
	display: block;
	width: 16px;
	height: 20px;
	background: url("images/check-blue.png") no-repeat 0 0;
	position: absolute;
	top: 7px;
	right: 0;
	background-size: 100%;
}


.the-b02-left ul li {
	margin-bottom: 8px;
	padding-right: 76px;
}

.the-b02-left li strong {
	font-size: 32px;
	font-weight: 600;
	padding-left: 26px;
}


.the-b03 .center-title h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
  line-height: 48px;
  margin: 0 0 11px;
}


.the-b03 .center-title p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}



.the-b03 .center-title p strong {
  font-weight: 700;
}


.the-b03 .form-section input[type="text"], 
.the-b03 .form-section select, 
.the-b03 .form-section textarea, 
.the-b03 .form-section input[type="email"], 
.the-b03 .form-section input[type="tel"], 
.the-b03 .submit-btn {
	border-radius: 10px;
}


.the-b03 .center-title {
	margin-bottom: 61px;
	margin-top: 30px;
}


.the-b03 .request-form-inner {
	padding: 39px 64px;
	margin-bottom: 60px;
}



/*==========================THE BROKERS===========================*/









/*==========================CONTACT===========================*/


.contact-form {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	padding: 79px 0;
}


.contact-form .request-form-inner {
	width: 100%;
	max-width: 538px;
}


.contact-form .form-group {
	padding-left: 7px;
	padding-right: 7px;
	margin-bottom: 14px;
}



.contact-form .form-section input[type="text"], 
.contact-form .form-section input[type="email"], 
.contact-form .form-section input[type="tel"], 
.contact-form .form-section select, 
.contact-form .form-section textarea {
  padding: 17px 17px;
}


.contact-form .form-section select {
  padding: 0px 17px;
}


.contact-form .submit-button {
  padding: 10px 0 0;
}


.contact-form .select-wrapper::after {
	width: 14px;
	height: 18px;
	background-size: 100%;
}


.contact-right h1 {
	font-size: 140px;
	line-height: 140px;
	font-weight: 700;
	background: -webkit-linear-gradient(0deg,rgb(238, 196, 120), #B27F48 173%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 32px;
}


.contact-info ul li {
	color: #143246;
	font-size: 29.29px;
	position: relative;
	padding-right: 71px;
	margin-bottom: 32px;
}


.contact-info ul li img {
  position: absolute;
  right: 0;
  top: 0;
}


.contact-info ul li a {
  text-decoration: none;
  color: #143246;
}


/*==========================CONTACT===========================*/









/*========================REGISTRATION=========================*/


.reg01 {
  padding: 18px 0 0;
}


.reg01 .center-title {
  margin-bottom: 0;
}


.reg01 .request-form-inner {
	max-width: 887px;
	margin: 9px auto;
	width: 100%;
	padding-bottom: 6px;
}


.reg01 .form-group {
	padding-left: 12px;
	padding-right: 12px;
}



.check-item input[type="checkbox"] {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  border: none;
  appearance: none;
  background: #fff;
  cursor: pointer;
  position: relative;
  top: 6px;
}


.check-item input[type="checkbox"]:after {
	content: ' ';
	width: 28px;
	height: 28px;
	display: none;
}


.check-item input[type="checkbox"]:checked::after {
	display: block;
	background: url("images/check-blue.png") no-repeat center center;
	width: 28px;
	height: 28px;
	background-size: 12px;
}


.check-item span {
  padding-right: 10px;
  cursor: pointer;
}


.col-100 .col-50 {
  padding-right: 0;
  margin-bottom: 0;
}


.form-group label em {
  color: #AC2124;
  font-style: normal;
}


.last-col {
  text-align: center;
  padding-top: 21px;
}


.last-col span{
  color: #143246;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}


.last-col a {
  color: #143246;
}


/*========================REGISTRATION=========================*/







/*===========================FOOTER===========================*/


.footer-top {
	background: #F4F4F4;
	padding: 45px 0;
}


.footer-top .container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
}


.f-link-block {
	padding-left: 50px;
}


.f-link {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	border-left: 2px solid #293C5A80;
	padding-left: 7px;
	width: 35.5%;
}


.f-link ul li a {
	color: #143246;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	line-height: 100%;
	display: inline-block;
	font-family: "Assistant", sans-serif;
}


.f-link ul li a:hover {
	color: #b27f46;
}


.f-add {
  padding: 17px 120px 0 30px;
  width: 43%;
}


.f-add ul li, 
.f-add ul li a {
	color: #143246;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	line-height: 100%;
}


.f-add ul li a {
	display: inline-block;
}


.f-link-block li {
  margin-bottom: 9px;
}


.f-link-block li:last-child {
  margin-bottom: 0;
}


.f-add ul li {
  position: relative;
  margin: 0 0 26px;
  padding-right: 48px;
}


.f-add ul li:last-child {
	margin-bottom: 0;
}


.f-add ul li img {
  position: absolute;
  right: 0;
  top: -4px;
}


.f-logo {
  width: 21%;
}


.f-logo img {
  width: 100%;
}


.copyright {
  padding: 65px 0 54px;
}



.copyright .container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
}


.copyright ul {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	margin-left: 43px;
}


.copyright ul li {
  margin-left: 35px;
}


.copyright ul li a {
	color: #293C5A;
	font-size: 15px;
	font-weight: 700;
	line-height: 100%;
	text-decoration: none;
	font-family: "Assistant", sans-serif;
	border-bottom: 2px solid #293C5A;
	padding: 0 5px 4px;
}


.site-footer ul li a {
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}


.site-footer ul li a:hover {
  color: #b27f46;
  border-color: #b27f46;
}


.copyright p {
  color: #293C5A;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  margin: 7px 0 0 56px;
}



/*===========================FOOTER===========================*/



/*===========================================================================================================================================================================================================================================================================================================================================================================*/




/*===========================HEADER===========================*/


@media (max-width:1000px){
		
	.top-nav {
		padding: 7px 0 10px;
	}	
		
	.white-btn a.link {
		font-size: 16px;
		margin-right: 5px;
	}


	.white-btn a {
	  padding: 0px 11px 2px;
	  font-size: 15px;
	  line-height: 26px;
	  margin-right: 3px;
	  width: auto;
	}


	.top-nav ul {
		flex-flow: row wrap;
		-webkit-flex-flow: row wrap;
		-moz-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		width: 38%;
	}


	.top-nav ul li {
	  margin-left: 0;
	  font-size: 14px;
	  width: 100%;
	  line-height: 17px;
	}



	.container {
		padding: 0 15px;
		position: relative;
		z-index: 2;
	}


	.header-inner .container {
		justify-content: space-between;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
	}


	.site-logo {
	  margin-left: 0;
	  width: 129px;
	}


	.hamburger{
		display:flex;
	}

	.main-nav {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		width: 100%;
		background: #fff;
		display: none;
		padding: 20px 0;
		z-index: 99;
	}

	.main-nav.active{
		display:block;
	}

	.main-nav ul{
		flex-direction:column;
		gap:15px;
	}


	.main-nav ul li {
		margin: 0;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		width: 100%;
		padding: 0 20px 21px;
	}


	.main-nav ul li:last-child {
	  border: none;
	  padding-bottom: 0;
	}
	
	
	#main {
	  padding-top: 135px;
	}
	
	
}/*===media close===*/



@media (max-width:767px){
	
	
	.home .top-nav .container, 
	.about .top-nav .container {
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
	}
	
	
	.home .white-btn a, 
	.about .white-btn a {
		padding: 0px 11px 3px;
		font-size: 18px;
		margin: 0 4px;
		min-width: 102px;
		text-align: center;
		white-space: nowrap;
	}
	
	
}/*===media close===*/




@media (min-width:1000px) and (max-width:1100px){

	.main-nav ul li {
	  margin: 0 0 0 20px;
	}
	
	
	.main-nav ul li a {
		font-size: 16px;
	}

	.main-nav ul li:last-child {
	  margin-left: 0;
	}	
		
	
}/*===media close===*/



@media (min-width:1100px) and (max-width:1170px){

	.main-nav ul li {
	  margin: 0 0 0 30px;
	}
	
	
	.main-nav ul li a {
		font-size: 17px;
	}

	.main-nav ul li:last-child {
	  margin-left: 0;
	}	
		
	
}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){

	.top-nav ul li {
		margin-left: 36px;
		width: auto;
	}
		
}/*===media close===*/




@media (max-width:1000px){
	
	.header-mail {
		left: 53px;
		top: 16px;
	}	

}/*===media close===*/




/*===========================HEADER===========================*/





/*===========================HOME===========================*/


@media (max-width:767px){

		
	.only-mobile {
	  display: block;
	}


	.hm01 {
	  padding: 34px 0 36px;
	  background-image: unset !important;
	}


	.hm01 img.only-mobile {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  height: 100%;
	  width: 100%;
	  object-fit: cover;
	}


	.hm01 h3 {
		color: #B27F48;
		font-size: 41px;
		line-height: 32px;
		text-shadow: 1px 0 12px #fff, 1px 0 26px #fff, 1px 0 29px #fff;
	}	


	.hm01 h1 {
		font-size: 90px;
		margin: 24px 0 20px;
		text-align: center;
		line-height: 90px;
		text-shadow: 1px 0 12px #fff, 1px 0 26px #fff, 1px 0 29px #fff;
	}


	.hm01 h1 span {
		font-size: 40px;
		line-height: 40px;
		display: block;
	}



	.banner-list h4 {
	  font-size: 45px;
	  line-height: 47px;
	  margin: 0 0 18px;
	  text-align: center;
	  text-shadow: 1px 0 12px #fff, 1px 0 26px #fff, 1px 0 29px #fff;
	  width: 100%;
	}


	.banner-list ul li::after {
		width: 28px;
	}


	.banner-list h5 {
		font-size: 25.36px;
		line-height: 25.36px;
	}


	.banner-list .blue-arrow-block a {
		width: 30px;
		height: 30px;
	}


	.hover-content p {
		font-size: 16px;
		line-height: 18px;
	}


	.banner-list ul li {
		padding: 15px 55px 15px 45px;
		margin-top: 10px;
		width: 100%;
	}


	.banner-list .blue-arrow-block {
		left: 17px;
	}


	.blue-arrow-block span {
		font-size: 14px;
		line-height: 24px;
		bottom: -22px;
		width: 70px;
		right: -19px;
	}



	.hm02 {
		margin-bottom: 34px;
		padding: 53px 0 38px;
	}


	.hm2-right p br {
	  display: none;
	}


	.hm2-right {
		width: 100%;
		text-align: center;
	}


	.hm02 h3 {
		font-size: 25px;
		line-height: 25px;
		margin: 0 0 10px;
	}


	.hm2-right p {
		font-size: 14px;
		line-height: 14px;
	}


	.hm2-image {
	  width: 100%;
	  position: relative;
	  left: 0;
	  top: 0;
	  padding: 31px 0 34px;
	}


	.hm2-left {
	  width: 100%;
	  position: relative;
	}


	.hm2-left h2 br {
	  display: none;
	}


	.hm2-left h2 {
		font-size: 44px;
		line-height: 44px;
		transform: rotate(-0deg);
		position: static;
		width: 100%;
	}
		
		
	.hm03-inner {
	  border-radius: 50px 0 0 0;
	  background-image: unset !important;
	}	


	.hm03-inner::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: url("images/bg-blue-m.png") no-repeat 0 0;
		background-size: auto;
		background-size: cover;
		border-radius: 50px 0 0 0;
		transform: scale(1.1);
	}


	.hm03-inner img.only-mobile {
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  object-fit: cover;
	}


	.hm03-block {
	  z-index: 2;
	  padding: 28px 15px;
	}
		
		
	.hm03-block h3 {
	  font-size: 44px;
	  line-height: 44px;
	  text-align: center;
	  font-weight: 400;
	  margin-bottom: 21px;
	}


	.hm03-block h3 span {
	  transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  display: inline-block;
	  position: relative;
	  left: 0;
	}	


	.hm03-block h2 {
		font-size: 62.68px;
		line-height: 34px;
		margin: 0 0 18px;
	}


	.hm03-block h2 span {
	  font-size: 40px;
	}


	.hm03-block p {
		font-size: 16px;
		line-height: 16px;
		margin: 0 0 31px;
	}


	.hm03-block ul li {
		font-size: 16px;
		margin: 0 0 22px;
		background: url("images/key-icon.svg") no-repeat right -7px;
		padding: 0 38px 0 0;
		line-height: 16px;
		background-size: 31px;
	}


	.hm03-gray {
		padding: 5px 0;
	}


	.hm03-gray span {
		font-size: 16px;
		line-height: 37px;
	}


	.hm03 {
	  margin-bottom: 35px;
	}



	.hm04-content {
		width: 100%;
		order: 2;
		padding: 0;
	}


	.hm04-image {
	  width: 100%;
	  margin-bottom: 12px;
	}


	.hm04-image img {
		height: 172px;
	}


	.hm04-content h3 {
	  font-size: 40px;
	  line-height: 46px;
	  margin: 0 0 6px;
	}


	.hm04-content h4 {
	  font-size: 16px;
	  line-height: 16px;
	  margin: 0 0 9px;
	}


	.hm04-content p {
	  color: #293C5A;
	  font-size: 14px;
	  line-height: 14px;
	  font-weight: 600;
	  margin: 0 0 27px;
	}


	.gold-btn a {
	  font-size: 16px;
	  line-height: 33px;
	  padding: 10px 20px;
	}


	.call-num a {
	  font-size: 16px;
	  line-height: 37px;
	}


	.hm04-block:nth-child(2n) .hm04-content {
	  padding-right: 0;
	}


	.hm04-block {
		margin-bottom: 36px;
	}


	.hm04-content .blue-arrow-block span {
		margin: -3px 0 0 12px;
		font-size: 16px;
		line-height: 37px;
	}


	.hm04-content .blue-arrow-block img {
	  width: 36px;
	  height: 36px;
	}


	.gray-block {
		margin-bottom: 15px;
	}


	.gray-block p {
	  margin: 0;
	}


	.custom-popup .popup-content {
	  padding: 55px 18px 0px;

	}


	.custom-popup .popup-box h2 {
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 24px;
	}


	.custom-popup .popup-content h2 strong {
		font-size: 24px;
		display: block;
	}


	.custom-popup .form-group label {
	  font-size: 20px;
	  line-height: 19px;
	  margin: 0 0 12px;
	}


	.custom-popup .submit-button p {
		font-size: 20px;
		line-height: 22px;
		display: none;
		width: 100%;
	}


	.custom-popup .submit-button button {
		font-size: 20px;
		width: 100%;
	}


	.bottom-area p {
	  font-size: 20px;
	  line-height: 22px;
	}


	.popup-box {
		width: 100%;
		height: 100%;
		overflow: auto;
	}


	
}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){


	.hm01 h3 {
		font-size: 60px;
	}	



	.hm01 h1 span {
	  font-size: 37px;
	}


	.hm01 h1 {
	  font-size: 100px;
	  margin: 46px 0 47px;
	}


	.banner-list h4 {
		color: #293C5A;
		font-size: 70px;
		margin: 0 0 45px;
	}


	.banner-list h5 {
	  font-size: 26px;
	  line-height: 26px;
	}


	.banner-list .blue-arrow-block img {
		width: 40px;
		height: 40px;
	}


	.blue-arrow-block span {
		font-size: 15px;
		line-height: 24px;
		bottom: -12px;
		width: 70px;
		right: -4px;
	}


	.hover-content p {
		font-size: 15px;
		line-height: 17px;
	}


	.banner-list .blue-arrow-block {
	  left: 21px;
	}


	.banner-list ul li {
		padding: 26px 70px 26px 64px;
	}


	.hm01 {
		background-position: center 0;
	}


	.banner-list ul li::after {
		width: 40px;
	}


	.hm2-right {
	  width: 38%;
	}


	.hm02 h3 {
	  font-size: 25px;
	  line-height: 26px;
	  margin: 0 0 18px;
	}


	.hm2-right p {
		font-size: 18px;
		line-height: 20px;
	}


	.hm2-image {
		width: 45%;
		left: 38px;
	}	


	.hm2-left {
	  width: 15%;
	}


	.hm2-left h2 {
		font-size: 49px;
		line-height: 34px;
		right: -61px;
		top: -38px;
		width: 335px;
	}


	.hm03-block {
		padding: 53px 50px;
	}


	.hm03-block h3 {
		font-size: 56px;
		line-height: 60px;
		margin-bottom: 21px;
	}


	.hm03-block h3 span {
		left: 24px;
	}


	.hm03-block h2 span {
	  font-size: 50px;
	}


	.hm03-block h2 {
		font-size: 80px;
		line-height: 64px;
	}


	.hm03-block p br {
	  display: none;
	}


	.hm03-block p {
		font-size: 24px;
		line-height: 32px;
	}


	.hm03-block ul li {
		font-size: 21px;
		padding-right: 61px;
	}


	.hm03-gray span {
		font-size: 24px;
	}


	.hm03-gray {
		padding: 15px 0;
	}


	.hm03-block {
		padding: 53px 50px 23px;
	}


	.hm04-content h3 {
		font-size: 44px;
		line-height: 40px;
	}



	.hm04-content h4 {
		font-size: 20px;
		line-height: 24px;
	}


	.hm04-content p {
		font-size: 17px;
		line-height: 21px;
	}


	.call-num a, 
	.hm04-content .blue-arrow-block span {
		font-size: 20px;
	}


	.gold-btn a {
		font-size: 18px;
		padding: 12px 24px;
	}


	.hm04-content .blue-arrow-block img {
		width: 40px;
	}
	



	.custom-popup .popup-content {
	  padding: 55px 18px 0px;

	}


	.custom-popup .popup-box h2 {
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 24px;
	}


	.custom-popup .popup-content h2 strong {
		font-size: 24px;
		display: block;
	}


	.custom-popup .form-group label {
	  font-size: 20px;
	  line-height: 19px;
	  margin: 0 0 12px;
	}


	.custom-popup .submit-button p {
		font-size: 20px;
		line-height: 22px;
		display: none;
		width: 100%;
	}


	.custom-popup .submit-button button {
		font-size: 20px;
		width: 100%;
	}


	.bottom-area p {
	  font-size: 20px;
	  line-height: 22px;
	}


	.popup-box {
		width: 100%;
		transform: translate(-50%, -50%) scale(0.85);
		-webkit-transform: translate(-50%, -50%) scale(0.85);
		-moz-transform: translate(-50%, -50%) scale(0.85);
		-ms-transform: translate(-50%, -50%) scale(0.85);
	}
	
	
	
}/*===media close===*/







@media (min-width:1000px) and (max-width:1210px){


	.hm01 h1 span {
	  font-size: 50px;
	}

	.hm01 h1 {
		font-size: 120px;
		margin: 72px 0 70px;
	}


	.banner-list h4 {
		font-size: 90px;
	}


	.banner-list h5 {
	  font-size: 35px;
	  line-height: 35px;
	}


	.banner-list .blue-arrow-block img {
		width: 40px;
		height: 40px;
	}


	.blue-arrow-block span {
		font-size: 18px;
		line-height: 24px;
		bottom: -12px;
		width: 70px;
		right: -4px;
	}


	.hover-content p {
		font-size: 18px;
		line-height: 20px;
	}


	.banner-list .blue-arrow-block {
	  left: 21px;
	}


	.banner-list ul li {
		padding: 26px 70px 26px 64px;
	}


	.hm01 {
		background-position: center 0;
	}


	.banner-list ul li::after {
		width: 40px;
	}


	.hm2-right p {
		font-size: 24px;
		line-height: 30px;
	}



	.hm2-left h2 {
		font-size: 66px;
		line-height: 48px;
		right: -84px;
		top: -38px;
		width: 272px;
	}


	.hm03-block {
		padding: 53px 50px 45px;
	}



	.hm03-block h3 span {
		left: -24px;
	}



	.hm03-block p {
		font-size: 24px;
		line-height: 32px;
	}


	.hm03-block ul li {
		font-size: 26px;
		padding-right: 61px;
	}


	.hm03-gray span {
		font-size: 24px;
	}


	.hm03-gray {
		padding: 15px 0;
	}


	.hm03-block {
		padding: 53px 50px 23px;
	}


	.hm04-content h3 {
		font-size: 50px;
		line-height: 55px;
	}



	.hm04-content h4 {
		font-size: 24px;
		line-height: 27px;
	}


	.hm04-content p {
		font-size: 20px;
		line-height: 24px;
	}


	.call-num a, 
	.hm04-content .blue-arrow-block span {
		font-size: 26px;
	}


	.gold-btn a {
		font-size: 20px;
		padding: 14px 24px;
	}


	.hm04-content .blue-arrow-block img {
		width: 40px;
	}
		
	
}/*===media close===*/



@media (max-width:1300px){
	
	.wt-tip {
		display: none;
	}	
	
	
}/*===media close===*/




@media (min-width:1200px) and (max-width:1500px){
	
	.hm01 {
	  background-size: 130%;
	}	
	
}/*===media close===*/



@media (min-width:1300px) and (max-width:1400px){
	
	.wt-tip {
		width: 50px;
		top: 101px;
		right: -62px;
	}


	.wt-tip span {
	  font-size: 10px;
	  width: 56px;
	  height: 48px;
	  padding: 9px 6px;
	  line-height: 13px;
	  margin-bottom: 14px;
	}

	.wt-tip a img {
	  width: 50px;
	}
	
}/*===media close===*/




@media (min-width:1000px) and (max-width:1500px){
	
	.popup-box {
		width: 100%;
		transform: translate(-50%, -50%) scale(0.85);
		-webkit-transform: translate(-50%, -50%) scale(0.85);
		-moz-transform: translate(-50%, -50%) scale(0.85);
		-ms-transform: translate(-50%, -50%) scale(0.85);
	}
	
	
}/*===media close===*/




/*===========================HOME===========================*/






/*===========================ABOUT===========================*/

@media (max-width:767px){



	.about01 h1 {
		font-size: 80px;
		line-height: 57px;
		margin: 0 0 22px;
		text-align: center;
	}


	.about01 h1 span {
		font-size: 40px;
		display: block;
		line-height: 42px;
	}


	.about01 h1 span:last-child {
	  font-size: 25px;
	  margin-top: 6px;
	}


	.about01 {
		padding: 25px 0 40px;
		margin-bottom: 32px;
	}


	.about01 .select {
	  margin-bottom: 15px;
	  position: relative;
	  width: 100%;
	}


	.select .select-btn strong {
	  font-size: 16px;
	}


	.select .select-btn {
		border-radius: 50px;
		padding: 7px 25px 7px 37px;
		background: rgba(255,255,255,0.95);
		position: relative;
		cursor: pointer;
		font-size: 16px;
		font-family: "Assistant", sans-serif;
		display: -webkit-box;
		overflow: hidden;
		white-space: pre-line;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}


	.select-btn::after {
		top: 64%;
		left: 23px;
		width: 10px;
		height: 18px;
	}


	.select .option {
		padding: 2px 8px;
		font-size: 16px;
	}


	.select-dropdown {
		padding: 15px 10px;
	}



	.abt-right, 
	.abt-center, 
	.abt-left {
		width: 100%;
	}


	.about02-inner h3 {
		font-size: 44px;
	}


	.about02-inner h4 {
	  font-size: 16px;
	  line-height: 18px;
	  margin: 0 0 3px;
	}


	.about02-inner p {
		font-size: 16px;
		line-height: 18px;
	}


	.abt-center {
	  max-width: 260px;
	  margin: 26px auto 0;
	}


	.about02-bottom h4 {
		font-size: 16px;
		line-height: 18px;
		margin: 0 0 27px;
	}


	.about02-inner {
		margin-bottom: 24px;
	}


	.about02 {
	  margin-bottom: 47px;
	}


	.about03 h2 {
		font-size: 40px;
		line-height: 47px;
		margin-bottom: 24px;
	}


	.team-list {
		justify-content: space-between;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
	}


	.team-block {
		width: 48%;
		margin: 0 0 15px;
		padding: 26px 0;
	}


	.tm-img {
		width: 117px;
		height: 117px;
		margin: 0 auto 19px;
	}


	.team-block h3 {
		font-size: 18.92px;
		line-height: 23.33px;
		margin: 0 0 6px;
	}


	.team-block p {
		font-size: 15.14px;
		line-height: 17.66px;
		margin: 0 0 26px;
	}


	.gold-btn-link a span {
		font-weight: 600;
		font-size: 15.14px;
		line-height: 23.33px;
		padding-left: 6px;
	}


	.gold-btn-link a img {
		width: 25px;
		height: 25px;
		position: relative;
		top: 1px;
	}


}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){
	

	.about01 h1 {
		font-size: 80px;
		line-height: 57px;
		margin: 0 0 22px;
		text-align: center;
	}


	.about01 h1 span {
		font-size: 40px;
		display: block;
		line-height: 42px;
	}


	.about01 h1 span:last-child {
	  font-size: 25px;
	  margin-top: 6px;
	}


	.about01 {
		padding: 25px 0 40px;
		margin-bottom: 32px;
	}



	.select .select-btn strong {
	  font-size: 22px;
	}


	.select .select-btn {
		border-radius: 50px;
		padding: 7px 25px 7px 37px;
		background: rgba(255,255,255,0.95);
		position: relative;
		cursor: pointer;
		font-size: 22px;
		font-family: "Assistant", sans-serif;
		display: -webkit-box;
		overflow: hidden;
		white-space: pre-line;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}


	.select-btn::after {
		top: 64%;
		left: 23px;
		width: 10px;
		height: 18px;
	}


	.select .option {
		padding: 2px 8px;
		font-size: 16px;
	}


	.select-dropdown {
		padding: 15px 10px;
	}



	.abt-right, 
	.abt-center, 
	.abt-left {
		width: 100%;
	}


	.about02-inner h3 {
		font-size: 60px;
	}


	.about02-inner h4 {
	  font-size: 20px;
	  line-height: 22px;
	  margin: 0 0 3px;
	}


	.about02-inner p {
		font-size: 20px;
		line-height: 22px;
	}


	.abt-center {
	  max-width: 260px;
	  margin: 26px auto 0;
	}


	.about02-bottom h4 {
		font-size: 20px;
		line-height: 22px;
		margin: 0 0 27px;
	}


	.about02-inner {
		margin-bottom: 24px;
	}


	.about02 {
	  margin-bottom: 47px;
	}


	.about03 h2 {
		font-size: 50px;
		line-height: 47px;
		margin-bottom: 24px;
	}


	.team-block {
		width: 31%;
		margin: 0 1% 15px;
		padding: 26px 0;
	}


	.tm-img {
		width: 117px;
		height: 117px;
		margin: 0 auto 19px;
	}


	.team-block h3 {
		font-size: 18.92px;
		line-height: 23.33px;
		margin: 0 0 6px;
	}


	.team-block p {
		font-size: 15.14px;
		line-height: 17.66px;
		margin: 0 0 26px;
	}


	.gold-btn-link a span {
		font-weight: 600;
		font-size: 15.14px;
		line-height: 23.33px;
		padding-left: 6px;
	}


	.gold-btn-link a img {
		width: 25px;
		height: 25px;
		position: relative;
		top: 1px;
	}
	
	
	
}/*===media close===*/




@media (min-width:1000px) and (max-width:1200px){



	.about01 {
		padding: 25px 0 40px;
		margin-bottom: 32px;
	}



	.select .select-btn strong {
	  font-size: 22px;
	}


	.select .select-btn {
		padding: 15px 25px 15px 37px;
		font-size: 21px;
	}


	.select-btn::after {
		top: 64%;
		left: 23px;
		width: 10px;
		height: 18px;
	}


	.select .option {
		padding: 2px 8px;
		font-size: 16px;
	}


	.select-dropdown {
		padding: 15px 10px;
	}




	.about02-inner h4 {
	  font-size: 24px;
	  line-height: 24px;
	  margin: 0 0 3px;
	}


	.about02-inner p {
		font-size: 20px;
		line-height: 22px;
	}


	.about02-bottom h4 {
		font-size: 30px;
		line-height: 30px;
		margin: 0 0 27px;
		max-width: 700px;
	}


	.about03 h2 {
		font-size: 50px;
		line-height: 47px;
		margin-bottom: 24px;
	}


	.team-block {
		width: 31%;
		margin: 0 1% 15px;
		padding: 26px 30px;
	}


	.tm-img {
		width: 150px;
		height: 150px;
		margin: 0 auto 19px;
	}


	.team-block h3 {
		font-size: 26px;
		line-height: 28px;
		margin: 0 0 6px;
	}


	.team-block p {
		font-size: 20px;
		line-height: 24px;
		margin: 0 0 26px;
	}

	
	
}/*===media close===*/





/*===========================ABOUT===========================*/








/*======================CUSTOMER MESSAGES=======================*/


@media (max-width:767px){

	.cus01 {
	  padding: 34px 0 25px;
	}


	.cus01 h1 {
		font-size: 40px;
		line-height: 50px;
		margin: 0 0 33px;
	}


	.cus01 h1 span {
		padding: 0 42px 17px;
	}


	.center-title p {
		font-size: 16px;
		line-height: 18px;
		margin: 0 0 20px;
	}


	.cus01 .center-title {
	  margin-bottom: 78px;
	}


	.cc-table-wrap-block {
		border-radius: 0;
		padding: 20px 20px;
	}


	.cc-table {
		width: 1100px;
	}


	.cc-table tbody td {
		line-height: 21.21px;
		font-size: 15.15px;
	}

	.cc-table thead th {
		font-size: 15.15px;
		padding: 16px 15px 20px;
		line-height: 21.21px;
	}


	.edit-link img {
	  width: 21px;
	  position: relative;
	  top: 47%;
	  transform: translateY(-50%);
	  -webkit-transform: translateY(-50%);
	  -moz-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	}

}/*===media close===*/



@media (min-width:767px) and (max-width:1200px){


	.cus01 h1 {
		font-size: 50px;
		line-height: 70px;
		font-weight: 700;
		font-family: "Assistant", sans-serif;
		margin: 0 0 63px;
	}


	.center-title p {
		font-size: 24px;
		line-height: 28px;
	}

		
	.cc-table {
		width: 1400px;
	}


	.cc-table tbody td {
		line-height: 21.21px;
		font-size: 15.15px;
	}

	.cc-table thead th {
		font-size: 15.15px;
		padding: 16px 15px 20px;
		line-height: 21.21px;
	}	
	
}/*===media close===*/



@media (min-width:1200px) and (max-width:1400px){

	.cc-table tbody td {
		line-height: 21.21px;
		font-size: 17px;
	}

	.cc-table thead th {
		font-size: 17px;
		padding: 16px 15px 20px;
		line-height: 21.21px;
	}	
	
}/*===media close===*/




/*======================CUSTOMER MESSAGES=======================*/





/*======================SENDING REQUEST=======================*/


@media (max-width:767px){


	.send01 {
		padding: 10px 0 0;
	}


	.send01 .center-title {
	  background: #E9F5FF;
	}


	.send01 .center-title-inner {
	  max-width: 360px;
	  margin: 0 auto;
	}


	.send01 .center-title-inner h1 {
		font-size: 25px;
		margin: 0 0 15px;
		line-height: 27px;
		border-bottom: 2px solid #293C5A80;
		padding-bottom: 14px;
	}


	.request-form {
		padding: 0 0 34px;
	}


	.section-title {
		font-size: 20px;
		line-height: 28px;
		margin: 0 0 8px;
	}


	.request-form-inner {
		padding: 16px 5px 20px;
	}


	.col-30 {
	  width: 100%;
	  padding-left: 15px;
	}



	.form-section input[type="text"], 
	.form-section input[type="email"], 
	.form-section input[type="tel"], 
	.form-section input[type="password"], 
	.form-section select, 
	.form-section textarea {
	  width: 100%;
	  height: 40px;
	  padding: 2px 15px;
	  font-size: 16px;
	}


	.form-section textarea {
		height: 70px;
		padding: 8px 15px;
	}


	.form-group label {
		font-size: 18px;
		line-height: 17px;
		margin: 0 0 8px;
	}


	.form-group {
	  margin-bottom: 15px;
	  width: 100%;
	}


	.col-25 {
	  width: 100%;
	}


	.select-wrapper::after {
		left: 14px;
		top: 60%;
		width: 11px;
		height: 18px;
		background-size: 100%;
	}


	.floor-middle {
		height: 40px;
	}


	.floor-text, .unit-label {
		font-size: 18px;
		line-height: 17px;
	}


	.unit-label3, 
	.unit-label1 {
		width: 26%;
	}


	.upload-box {
		height: 100px;
	}


	.upload-box span {
		font-size: 16px;
		line-height: 28px;
	}


	.submit-button {
		padding: 10px 7px 0;
	}


	.submit-btn {
		height: 58px;
		font-size: 18px;
	}


	.comment-box, 
	.upload-container {
	  padding: 0 7px;
	}



}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){


	.center-title-inner h1 {
		font-size: 40px;
	}	


	.form-section input[type="text"], 
	.form-section input[type="email"], 
	.form-section input[type="tel"], 
	.form-section input[type="password"], 
	.form-section select, 
	.form-section textarea, 
	.upload-box span, 
	.form-group label {
		font-size: 20px;
	}
	
	
	.unit-label2 {
	  width: 25%;
	}
	
	
}/*===media close===*/





/*======================SENDING REQUEST=======================*/





/*=====================IMPLEMENTERS CLUB=======================*/



@media (max-width:767px){

	.imp-club01 {
		padding: 21px 0;
		margin-top: 24px;
	}


	.imp-club01 h1 span {
		font-size: 40px;
		display: block;
	}


	.imp-club01 h1 {
		font-size: 80px;
		line-height: 62px;
		margin: 0 0 13px;
		text-align: center;
	}


	.imp-club01 h1 span:last-child {
		font-size: 25px;
		line-height: 26px;
		margin-top: 14px;
	}


	.imp-club01 h4 {
		font-size: 20px;
		line-height: 26px;
		margin: 0 0 22px;
		text-align: center;
	}


	.imp01-white {
	  border-radius: 20px;
	  padding: 26px 27px;
	  margin-bottom: 20px;
	  text-align: center;
	}


	.imp01-right {
	  width: 100%;
	}


	.imp01-right h3 {
		font-size: 20px;
		line-height: 28px;
		margin: 0 0 4px;
	}


	.imp01-right p {
		font-size: 16px;
		line-height: 18px;
		margin: 0 0 11px;
	}


	.imp01-left {
	  width: 100%;
	  right: 0;
	}


	.imp01-left h5 {
		font-size: 40px;
	}


	.imp01-list h2 {
		font-size: 25px;
		margin-bottom: 11px;
	}


	.imp01-list ul li a::after {
		width: 10px;
		height: 15px;
		top: 4px;
		left: -23px;
	}


	.imp01-list ul li a {
		font-size: 18px;
		line-height: 20px;
	}


	.imp01-list ul li {
		width: 100%;
		margin: 0 0 13px;
	}


	.imp01-list ul li:nth-child(2n) {
	  width: 100%;
	}


	.imp01-desc h6 {
		font-size: 20px;
		line-height: 24px;
		width: 100%;
		  margin-bottom: 27px;
	}


	.imp01-desc {
		margin: 12px 0 29px;
	}


	.imp01-desc .gold-btn {
	  width: 100%;
	}


	.imp01-desc .gold-btn a {
		width: 100%;
		display: block;
		text-align: center;
		font-size: 20px;
		padding: 4px 20px 8px;
	}


	.imp-club02 {
	  padding: 34px 0;
	}

	.imp-club02-right {
	  width: 100%;
	}


	.imp-club02-right p {
		font-size: 16px;
		line-height: 20px;
		margin: 0 0 10px;
	}


	.imp-club02-right h3 {
		font-size: 20px;
		line-height: 22px;
	}


	.imp-club02-left a {
		font-size: 36px;
		padding-left: 40px;
	}


	.imp-club02-left a img {
		left: -53px;
		top: 7px;
		width: 36px;
	}


	.imp-club02-left {
	  width: 100%;
	  text-align: center;
	  margin-top: 36px;
	}


}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){
	

	.imp-club01 h1 {
		font-size: 80px;
	}


	.imp-club01 h1 span {
		font-size: 32px;
	}


	.imp-club01 h4 {
		font-size: 28px;
	}


	.imp01-white {
		padding: 26px 30px;
	}


	.imp01-right h3 {
		font-size: 27px;
	}


	.imp01-right p {
		font-size: 20px;
		line-height: 24px;
	}


	.imp01-right {
	  width: 67%;
	}


	.imp01-left {
		width: 31%;
	}


	.imp01-left h5 {
		font-size: 52px;
		line-height: 40px;
	}


	.imp01-desc h6 {
		font-size: 26px;
		line-height: 28px;
	}
		
		
	.imp01-desc .gold-btn a {
		font-size: 14px;
	}


	.imp-club02-right p {
		font-size: 22px;
		line-height: 25px;
	}


	.imp-club02-right h3 {
		font-size: 26px;
		line-height: 27px;
	}	


	.imp-club02-left a {
		font-size: 32px;
	}


	.imp-club02-left a img {
		left: -58px;
		top: 4px;
		width: 35px;
	}
		
	

}/*===media close===*/




@media (min-width:1000px) and (max-width:1200px){


	.imp-club01 h1 span {
		font-size: 40px;
	}


	.imp-club01 h1 {
		font-size: 80px;
	}


	.imp-club01 h4 {
		font-size: 30px;
	}
	
	
	.imp01-left {
	  width: 24%;
	}


	.imp01-left h5 {
	  font-size: 62px;
	  line-height: 39px;
	  padding-top: 12px;
	}


	.imp01-desc h6 {
		font-size: 28px;
		line-height: 30px;
	}


}/*===media close===*/



/*=====================IMPLEMENTERS CLUB=======================*/







/*=====================COLLABORATION=======================*/


@media (max-width:767px){


	.collab01 h1 {
	  font-size: 60px;
	  margin-bottom: 24px;
	}


	.collab01 h4 {
	  font-size: 25px;
	  margin: 0 0 7px;
	}


	.collab01 {
		padding: 46px 0 10px;
	}


	.collab01 .imp01-right h3 {
		line-height: 22px;
	}


	.collab01 .imp01-right p {
		margin-bottom: 0;
	}


	.collab01 .imp01-white {
		margin-bottom: 19px;
	}


	.collab01 .imp01-list h2 {
		font-size: 25px;
		line-height: 27px;
		margin: 0 0 17px;
	}


	.collab01 .imp01-list ul li {
		width: 100% !important;
		margin: 0 0 15px;
	}


	.collab01 .imp01-list h5 {
		font-size: 20px;
		line-height: 28px;
		margin: 0 0 6px;
	}


	.collab01 .imp01-list p {
	  font-size: 16px;
	  line-height: 18px;
	}


	.collab01 .imp01-desc h6 {
		font-size: 20px;
		line-height: 24px;
	}
	
	
	.collab02 {
	  padding: 21px 0 44px;
	}
	
	
	.collab02 h2 {
	  font-size: 20px;
	}


}/*===media close===*/



@media (min-width:767px) and (max-width:1000px){
	
	.collab01 .imp01-list h5 {
		font-size: 28px;
	}	
		

	.collab01 .imp01-list p {
	  font-size: 20px;
	  line-height: 22px;
	}	
	

}/*===media close===*/




/*=====================COLLABORATION=======================*/





/*=====================THE BROKERS=======================*/



@media (max-width:767px){


	.the-b01 .gold-btn a {
		padding: 7px 10px;
		max-width: 155px;
		font-size: 19px;
	}


	.the-b01 {
		padding: 27px 0;
		margin-bottom: 30px;
		margin-top: 25px;
	}


	.the-b01 h1 {
		font-size: 60px;
		margin: 37px auto -2px;
	}


	.the-b01 h4 {
		font-size: 25px;
		line-height: 28px;
		margin: 0 auto 24px;
	}


	.the-b01 .imp01-white {
	  border-radius: 20px;
	  padding: 16px 15px;
	}


	.the-b01 .imp01-white p {
		font-size: 16px;
		line-height: 18px;
	}


	.the01-list ul li {
	  margin: 0 0 18px;
	}


	.the01-list ul li a {
		font-size: 16px;
		line-height: 18px;
		display: block;
		width: 100%;
	}


	.the01-list ul li a strong {
		font-size: 20px;
		line-height: 23px;
		display: block;
		margin-bottom: 4px;
	}



	.the01-list ul li span {
		position: relative;
		display: block;
		width: 100%;
		padding-left: 30px;
	}


	.the01-list ul li a::after {
	  display: none;
	}


	.the01-list ul li span::after {
		content: "";
		display: block;
		width: 8px;
		height: 15px;
		background: url("images/polygon-white.svg") no-repeat 0 0;
		position: absolute;
		top: 4px;
		left: 0;
	}


	.the02-list h3 {
		padding: 10px 20px;
		border-radius: 9px;
		font-size: 19px;
		line-height: 23.97px;
		min-height: 77px;
		margin-bottom: 14px;
	}


	.the02-list ul li {
	  padding-right: 23px;
	  font-size: 16px;
	  margin-bottom: 2px;
	  line-height: 100%;
	}


	.the02-list .the-b02-right, .the02-list .the-b02-left {
		width: 100%;
	}


	.the-b02-right ul {
	  padding-right: 20px;
	  margin-bottom: 30px;
	}


	.the-b02-right ul li::after {
		width: 10px;
		height: 20px;
		top: 4px;
	}


	.the-b02-left h3 {
	  padding: 15px 41px;
	}


	.the-b02-left ul li {
		padding-right: 38px;
	}


	.the-b02-left li strong {
		font-size: 16px;
		padding-left: 12px;
	}


	.the-b02 {
	  margin-bottom: 34px;
	}


	.the-b03 .center-title {
	  max-width: 360px;
	  margin: 0 auto 38px;
	}


	.the-b03 .center-title h2 {
		font-size: 25px;
		line-height: 27px;
		margin: 0 auto 12px;
		border-bottom: 2px solid #293C5A80;
		padding-bottom: 13px;
	}

	.the-b03 .center-title p {
		font-size: 16px;
		line-height: 18px;
	}


	.the-b03 .request-form {
		padding: 36px 0;
	}



	.the-b03 .request-form-inner {
		padding: 16px 5px 20px;
		margin-bottom: 60px;
	}


	.the-b03 .form-section input[type="text"], .the-b03 .form-section select, .the-b03 .form-section textarea, .the-b03 .form-section input[type="email"], .the-b03 .form-section input[type="tel"], .the-b03 .submit-btn {
	  border-radius: 0;
	}


	.section-title {
	  padding: 0 7px;
	}



}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){


	.the-b01 h1 {
		font-size: 60px;
		margin: -65px auto 11px;
		max-width: 400px;
	}


	.the-b01 .gold-btn a {
		padding: 8px 10px;
		max-width: 156px;
	}	


	.the-b01 h4 {
		font-size: 27px;
		line-height: 35px;
		margin: 0 auto 28px;
	}


	.the01-list ul li a {
		font-size: 20px;
		line-height: 22px;
		display: block;
		width: 100%;
	}


	.the01-list ul li a strong {
		font-size: 26px;
		line-height: 28px;
		display: block;
		margin-bottom: 4px;
	}



	.the01-list ul li span {
		position: relative;
		padding-left: 30px;
		display: inline-block;
	}


	.the01-list ul li a::after {
	  display: none;
	}


	.the01-list ul li span::after {
		content: "";
		display: block;
		width: 8px;
		height: 15px;
		background: url("images/polygon-white.svg") no-repeat 0 0;
		position: absolute;
		top: 7px;
		left: 0;
	}


	.the02-list .the-b02-right, .the02-list .the-b02-left {
		width: 100%;
	}


	.the-b02-right {
	  margin-bottom: 40px;
	}
	

	.the-b03 .center-title h2 {
		font-size: 40px;
	}


	.the-b03 .center-title p {
		font-size: 22px;
		line-height: 26px;
	}


	.the-b03 .request-form-inner {
	  padding: 39px 20px;
	}

	
	
}/*===media close===*/







@media (min-width:1000px) and (max-width:1200px){


	.the-b01 h1 {
		font-size: 60px;
		margin: -65px auto 11px;
		max-width: 400px;
	}


	.the-b01 .gold-btn a {
		padding: 8px 10px;
		max-width: 156px;
	}	


	.the-b01 h4 {
		font-size: 27px;
		line-height: 35px;
		margin: 0 auto 28px;
	}

	

	.the-b03 .center-title h2 {
		font-size: 40px;
	}


	.the-b03 .center-title p {
		font-size: 22px;
		line-height: 26px;
	}


	.the-b03 .request-form-inner {
	  padding: 39px 20px;
	}


	.the02-list h3 {
		font-size: 24px;
		line-height: 28px;
	}


	.the02-list ul li {
		font-size: 21px;
	}


	.the01-list ul li a {
		font-size: 20px;
	}


	.the01-list ul li a strong {
		font-size: 26px;
	}


	.the-b02-left li strong {
		font-size: 27px;
	}
	
	
}/*===media close===*/






/*=====================THE BROKERS=======================*/





/*=====================CONTACT=======================*/




@media (max-width:1000px){
	

	.contact-form {
		padding: 40px 0 80px;
	}


	.contact-right h1 {
		font-size: 60px;
		line-height: 60px;
		margin: 0 0 24px;
	}


	.contact-info ul li {
		font-size: 22.45px;
		padding-right: 49px;
		margin-bottom: 21px;
	}


	.contact-info ul li img {
		width: 26px;
	}


	.contact-right {
	  width: 100%;
	  margin-bottom: 34px;
	}


	.contact-form .request-form-inner {
		padding: 16px 15px 20px;
		max-width: 100%;
	}


	.contact-form .section-title {
		padding: 0 0 15px;
	}
	
	
}/*===media close===*/



@media (min-width:900px) and (max-width:1200px){
	
	
	.contact-form .request-form-inner {
		padding: 16px 15px 20px;
		max-width: 100%;
		width: 54%;
	}

	.contact-right {
		width: 40%;
	}	


	.contact-right h1 {
		font-size: 70px;
		line-height: 70px;
	}
	
		
	.contact-form .section-title {
	  padding: 0 0;
	}


	.contact-info ul li {
		font-size: 25px;
	}	
	
}/*===media close===*/


/*=====================CONTACT=======================*/






/*=====================REGISTRATION=======================*/


.registration .top-nav .container {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
}


@media (max-width:767px){


	.registration .top-nav .container {
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
	}


	.registration .white-btn a {
		padding: 0px 11px 3px;
		font-size: 18px;
		margin: 0 4px;
		min-width: 102px;
		text-align: center;
		white-space: nowrap;
	}


	.reg01 .center-title-inner {
		padding: 21px 10px 9px;
	}


	.reg01 .center-title-inner h1 {
		font-size: 25px;
		line-height: 27px;
	}


	.reg01 .center-title {
	  margin-bottom: 0;
	  background: #E9F5FF;
	}


	.reg01 .request-form-inner {
		margin: 0 auto;
		padding: 18px 8px 8px;
	}


	.check-item input[type="checkbox"] {
	  width: 19px;
	  height: 19px;
	}


	.check-item input[type="checkbox"]:checked::after {
		width: 19px;
		height: 19px;
		background-size: 9px;
	}
	
	
	
	.last-col span {
		font-size: 16px;
	}	


	.last-col {
	  padding-top: 14px;
	}


}/*===media close===*/






/*=====================REGISTRATION=======================*/





/*===========================FOOTER===========================*/


@media (max-width:767px){


	.footer-top {
		padding: 45px 0 35px;
	}

		
	.f-link {
		border-left: none;
		padding-left: 0;
		width: 100%;
		margin-bottom: 30px;
	}


	.f-link ul li a, 
	.f-add ul li, 
	.f-add ul li a {
		font-size: 16px;
	}


	.f-add {
	  padding: 0 0 40px;
	  width: 100%;
	}


	.f-logo {
	  width: 100%;
	  text-align: center;
	}


	.f-logo img {
	  width: 183px;
	  margin: 0 auto;
	}


	.f-link-block {
	  padding-left: 0;
	}


	.copyright {
	  padding: 12px 0 16px;
	}


	.copyright ul {
		margin: 0 0 12px;
		width: 100%;
		justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
	}


	.copyright ul li {
	  margin: 0 8px;
	}
		

	.copyright p {
		margin: 10px 0 0;
		font-size: 14px;
	}


	.copyright ul li a {
	  font-size: 14px;
	  padding: 0 8px 4px;
	}	
	
	
	.footer-top .container {
		max-width: 400px;
	}
	
	
	
}/*===media close===*/




@media (min-width:767px) and (max-width:1000px){
	
	.f-link-block {
	  padding: 0 0 10px;
	  width: 100%;
	}


	.f-add {
		padding: 17px 34px 0 30px;
	}


	.copyright ul {
		margin-left: 0;
	}


	.copyright p {
	  margin: 7px 0 0 0;
	}
	
	
}/*===media close===*/




@media (min-width:1000px) and (max-width:1220px){

	.f-link {
		width: 40.5%;
	}


	.f-add {
		padding: 17px 36px 0 30px;
		width: 38%;
	}

	.f-logo {
	  width: 21%;
	}


	.f-link-block {
	  padding-left: 37px;
	}
	
	
	.copyright p {
	  margin: 7px 0 0 0;
	}


}/*===media close===*/



/*===========================FOOTER===========================*/