/*framework start*/
.d-flex{
	display:flex;
}
.d-hidden{
	display:none;
}
.flex-100{
	flex:1;
	width:100%;
}

.fw-300{
	font-weight:300;
}
.fw-400{
	font-weight:400;
}
.fw-500{
	font-weight:500;
}
.fw-600{
	font-weight:600;
}
.fw-700{
	font-weight:700;
}

.fs-11{
	font-size:11px;
}
.fs-13, .fs-13 p{
	font-size:13px;
}
.fs-18{
	font-size:18px;
}
.fs-20{
	font-size:20px;
}
.fs-22{
	font-size:22px;
}
.fs-30{
	font-size:30px;
}
.fs-36{
	font-size:36px;
}
.fs-48{
	font-size:48px;
}

.mt-5{
	margin-top:5px;
}
.mt-24{
	margin-top:24px;
}
.mt-60{
	margin-top:60px;
}
.mt-120{
	margin-top:120px;
}

.mb-8{
	margin-bottom:8px;
}
.mb-10{
	margin-bottom:10px;
}
.mb-12{
	margin-bottom:12px;
}
.mb-20{
	margin-bottom:20px;
}
.mb-24{
	margin-bottom:24px;
}
.mb-30{
	margin-bottom:30px;
}
.mb-32{
	margin-bottom:32px;
}
.mb-40{
	margin-bottom:40px;
}
.mb-50{
	margin-bottom:50px;
}
.mb-60{
	margin-bottom:60px;
}
.mb-100{
	margin-bottom:100px;
}
.mb-120{
	margin-bottom:120px;
}
.mb-128{
	margin-bottom:128px;
}
.mb-144{
	margin-bottom:144px;
}

.h4-fs24 h4{
	font-size:24px;
}
.h4-mb24 h4{
	margin-bottom:24px;
}
.h4-fs18 h4{
	font-size:18px;
}

.lh-1{
	line-height:1;
}
.lh-12{
	line-height:1.2;
}
.lh-145{
	line-height:1.45;
}

.li-mb20 li{
	margin-bottom:20px;
}
.li-r-13 li{
	padding-left:33px;
	position:relative;
}
.li-r-13 li:before{
	content:'';
	width:13px;
	height:13px;
	border-radius:50%;
	background:#0F56A6;
	position:absolute;
	left:0;
	top:5px;
}

.p-mb20 p{
	margin-bottom:20px;
}

.w-100{
	width:100%;
}

.align-items-center{
	align-items:center;
}
.text-center{
	text-align:center;
}

.color-black{
	color:#212325;
}
.color-gray1{
	color:#616971;
}
.color-gray2{
	color:#9BA0A4;
}
.color-white{
	color:#fff;
}
.color-blue{
	color:#003067;
}
.color-blue2{
	color:#0F56A6;
}

.block-2col,.block-3col, .block-4col, .block-5col{
	display:flex;
	gap:30px;
	flex-wrap:wrap;
}

.block-2col__col{
	width:calc(50% - 15px);
}


.block-3col__col{
	width:calc(33.333% - 20px);
}

.block-4col__col{
	width:calc(25% - 23px);
}

.block-5col__col{
	width:calc(20% - 24px);
}

.btn-blue2{
	color:#fff;
	border-radius:10px;
	line-height:54px;
	border:1px solid #0F56A6;
	background:#0F56A6;
	font-weight:bold;
	display:inline-block;
	text-align:center;
	cursor:pointer;
}
.btn-blue2:hover{
	background: #003067;
    transition: all 0.3s;
}

.btn-transparent{
	color:#fff;
	border-radius:10px;
	line-height:54px;
	border:1px solid #fff;
	display:inline-block;
	text-align:center;
	cursor:pointer;
}
.btn-transparent:hover{
	background: #003067;
    transition: all 0.3s;
}

.bx-wrapper {
    margin-bottom: 0;
    box-shadow: none;
    border: none;
}

.img-fluid{
	max-width:100%;
	max-height: 100%;
}

.accordion-container__title{
	display:block;
	cursor:pointer;
	font-size:18px;
	padding:20px 50px 20px 0;
	font-weight:bold;
	font-size:18px;
	color:#003067;
	background:url(../imgs/plus.svg) no-repeat right center;
}
.opened .accordion-container__title{
	background:url(../imgs/minus.svg) no-repeat right center;
	color:#212325;
}
.accordion-container__block{
	border-bottom:1px solid #CAD9EB;
}
.accordion-container__block:last-child{
	border-bottom:none;
}
.accordion-container__text{
	display:none;
	padding-bottom:20px;
}
.custom-text p{
	margin-bottom:20px;
}
.custom-text a {
    color: #0F56A6;
}
.custom-text a:hover {
    color: #003067;
    transition: all 0.3s;
}

.blue-form form{
	border-radius:24px;
	background:#324861;
	padding:36px 30px;
}
.blue-form form .btn-blue2{
	width:100%;
	margin-top:32px;
}
.blue-form input[type=text]{
	width:100%;
	outline:0;
	background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(7.5px);
	border:0;
	height:56px;
	line-height:56px;
	font-size:20px;
	padding:0 20px;	
	border-radius:10px;
}
.blue-form input[type=text]::placeholder{
	color:#212325;
}
.flex-wrap{
	flex-wrap:wrap;
}
.arrow-a{
	display:inline-flex;
	gap:18px;
	align-items:center;
}
.arrow-a__text{
	font-weight:bold;
	color:#0f56a6;
}
.arrow-a svg {
    fill: transparent;
    position: relative;
    z-index: 3;
}
.arrow-a__arrow:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2px);
    z-index: 1;
    height: calc(100% - 2px);
    border-radius: 50%;
    background: #0F56A6;
}
.arrow-a__arrow:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    height: 100%;
    border-radius: 50%;
    background: #EDF3F8;
    transition: all 0.3s;
}
.arrow-a__arrow {
    display:block;
	position:relative;
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

.arrow-a__arrow svg path {
	stroke: #0f56a6;
}

.arrow-a:hover .arrow-a__arrow:after {
    width: 0;
    height: 0;
    transition: all 0.3s;
}
.arrow-a svg rect {
    fill: transparent;
}
.arrow-a:hover svg path {
    stroke: #fff;
    transition: all 0.3s;
}
.headers-color-black h1,.headers-color-black h2,.headers-color-black h3,.headers-color-black h4,.headers-color-black h5,.headers-color-black h6, .headers-color-black b{
	color:#212325;
}
.custom-text h1{
	margin-bottom:60px;
}
.custom-text h2{
	line-height:1;
	margin-bottom:40px;
}
.custom-text h3{
	margin-bottom:30px;
}
.custom-text h5{
	margin-bottom:20px;
}
.custom-text h6{
	margin-bottom:20px;
}
.custom-text ul{
	margin-bottom:20px;
}
.custom-text li{
	margin-bottom:10px;
}
.custom-text li{
	padding-left:20px;
	position:relative;
}
.custom-text li:before{
	content:'';
	width:10px;
	height:10px;
	border-radius:50%;
	background:#0F56A6;
	position:absolute;
	left:0;
	top:7px;
}

.table-container table{
	width:100%;
}
.table-container table th, .table-container table td{
	border:1px solid #CAD9EB;
	padding:20px 30px;
	vertical-align:middle;
}
.table-container table th{
	background:#EDF3F8;
	padding:10px 30px;
}
.mt-auto{
	margin-top:auto;
}
a.a-underline{
	text-decoration:underline;
}
.custom-text.ul-check li {
    padding-left: 64px;
	display:flex;
	min-height:44px;
	align-items:center;
	max-width:750px;
    position: relative;
	margin-bottom:10px;
}
.custom-text.ul-check li:before {
	background:url(../imgs/check-li.svg);
    width: 44px;
    height: 44px;
	margin-top:-22px;
	background-size:cover;
    position: absolute;
    left: 0;
    top: 50%;	
}
.sticky-form {
    position: sticky;
    top: 150px;
}
.p-mb-0 p{
	margin-bottom:0;
}
.accordion-container.with-last-line .accordion-container__block:last-child {
    border-bottom: 1px solid #CAD9EB;
}
.d-none{
	display:none;
}
.zoom-image-container{
	overflow:hidden;
	display: inline-block;
	line-height: 0
}
.zoom-image-container img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.zoom-image-container:hover img {
  transform: scale(1.15);
}
.zoom-radius{
	border-radius:30px;
}

@media (max-width: 1640px) {
	.md__h4-fs14 h4 {
		font-size: 14px;
	}
	.md__h4-mb16 h4 {
		margin-bottom: 16px;
	}
	
	.md__fs12, .md__fs12 p{
		font-size:12px;
	}
	.md__fs-14{
		font-size:14px;
	}
	.md__fs-16{
		font-size:16px;
	}
	.md__fs-18{
		font-size:18px;
	}
	.md__fs-24{
		font-size:24px;
	}
	.md__fs-30{
		font-size:30px;
	}
	
	.md__li-mb14 li{
		margin-bottom:14px;
	}
	.md__li-r-9 li{
		padding-left:22px;
		position:relative;
	}
	.md__li-r-9 li:before{
		content:'';
		width:9px;
		height:9px;
		border-radius:50%;
		background:#0F56A6;
		position:absolute;
		left:0;
		top:5px;
	}
	.btn-blue2 {
		border-radius: 7px;
		line-height: 40px;
		font-size: 12px;
	}
	
	.custom-text p.md__mb-10 {
        margin-bottom: 10px;
    }
	
	.md__mb-0{
		margin-bottom:0px;
	}
	.md__mb-8{
		margin-bottom:8px;
	}
	.md__mb-10{
		margin-bottom:10px;
	}
	.md__mb-15{
		margin-bottom:15px;
	}
	.md__mb-20{
		margin-bottom:20px;
	}
	.md__mb-24{
		margin-bottom:24px;
	}
	.md__mb-30{
		margin-bottom:30px;
	}
	.md__mb-40{
		margin-bottom:40px;
	}
	.md__mb-50{
		margin-bottom:50px;
	}
	.md__mb-60{
		margin-bottom:60px;
	}
	.md__mb-64{
		margin-bottom:64px;
	}
	.md__mb-80{
		margin-bottom:80px;
	}
	
	.md__mt-64{
		margin-top:64px;
	}
	
	.block-2col, .block-3col, .block-4col, .block-5col{
		gap:20px;
	}

	.block-3col__col{
		width:calc(33.333% - 14px);
	}

	.block-4col__col{
		width:calc(25% - 15px);
	}

	.block-5col__col{
		width:calc(20% - 16px);
	}
	
	.md__p-mb14 p {
		margin-bottom: 14px;
	}
	.blue-form input[type=text] {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		padding: 0px 16px;
		border-radius: 5px;
	}
	.blue-form form .btn-blue2 {
		margin-top: 20px;
	}
		
	.accordion-container__title {
		padding: 24px 30px 24px 0;
		font-size: 16px;
		color: #003067;
		background: url(../imgs/plus.svg) no-repeat right center;
	}
	.opened .accordion-container__title {
		background: url(../imgs/minus.svg) no-repeat right center;
	}
	.custom-text p {
		margin-bottom: 15px;
	}
	.btn-transparent {
		line-height: 48px;
	}	
	.md__mt-40 {
		margin-top:40px;
	}
	.arrow-a {
		gap: 11px;
	}
	.arrow-a__arrow {
		width: 48px;
		height: 48px;
	}
	.arrow-a svg {
		width: 100%;
		height:  100%;
	}
	.custom-text h1 {
		margin-bottom: 50px;
	}
	.custom-text h2 {
		margin-bottom: 30px;
	}
	.custom-text h3 {
		margin-bottom: 24px;
	}
	.custom-text li:before {
		top: 6px;
	}
	.table-container table {
		font-size: 14px;
	}
	.table-container table th, .table-container table td {
		padding: 14px 20px;
	}
	.custom-text.ul-check li:before {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
	.custom-text.ul-check li {
		padding-left: 56px;
		min-height: 40px;
	}
	.sticky-form {
		top: 120px;
	}
	.md__d-block{
		display:block;
	}
	.zoom-radius{
		border-radius:20px;
	}
}
@media (max-width: 1200px) {
	.block-3col__col{
		width:calc(33.333% - 20px);
	}

	.block-4col__col{
		width:calc(25% - 23px);
	}

	.block-5col__col{
		width:calc(20% - 24px);
	}
	
	.sm__mt-40{
		margin-top:40px;
	}
	.sm__mt-50{
		margin-top:50px;
	}
	
	
	.sm__mb-0{
		margin-bottom:0;
	}
	.sm__mb-5{
		margin-bottom:5px;
	}
	.sm__mb-10{
		margin-bottom:10px;
	}
	.sm__mb-15{
		margin-bottom:15px;
	}
	.sm__mb-20{
		margin-bottom:20px;
	}
	.sm__mb-24{
		margin-bottom:24px;
	}
	.sm__mb-30{
		margin-bottom:30px;
	}
	.sm__mb-40{
		margin-bottom:40px;
	}
	.sm__mb-60{
		margin-bottom:60px;
	}
	.sm__d-block{
		display:block;
	}
	.sm__d-none{
		display:block;
	}
	.sm__fs-11{
		font-size:11px;
	}
	.sm__fs-12{
		font-size:12px;
	}
	.sm__fs-13{
		font-size:13px;
	}
	.sm__fs-16{
		font-size:16px;
	}
	.sm__fs-18{
		font-size:18px;
	}
	.sm__fs-20{
		font-size:20px;
	}
	.sm__fs-24{
		font-size:24px;
	}
	.block-3col, .block-4col, .block-5col {
        gap: 30px;
    }
	.sm__block-1col__col {
        width: 100%;
    }
	.sm__block-2col__col {
        width: calc(50% - 15px);
    }
	.sm__block-3col__col {
        width: calc(33.333% - 20px);
    }
	
	.accordion-container__block:last-child {
		border-bottom: 1px solid #CAD9EB;
	}
	.accordion-container__title {
        padding: 16px 30px 16px 0;
        font-size: 14px;
        background: url(../imgs/plus.svg) no-repeat right center;
    }
	.opened .accordion-container__title {
        background: url(../imgs/minus.svg) no-repeat right center;
    }
	.sm__lh-145{
		line-height:1.45;
	}
	.btn-transparent {
        line-height: 40px;
    }
	.sm__d-none{
		display:none;
	}
	.sm__mt-30{
		margin-top:30px;
	}
	.arrow-a__arrow {
		width: 40px;
		height: 40px;
	}
	
	.custom-text h1 {
		margin-bottom: 40px;
	}
	.custom-text h6 {
		margin-bottom: 15px;
	}	
	.sm__flex-line-wrap{
		position: relative;
		margin-right:-30px;
		scrollbar-color: #fff #fff;
	}
	.sm__flex-line-wrap:before {
        position: absolute;
        content: "";
        height: 100%;
        right: -10px;
        top: 0;
        width: 100px;
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
        z-index: 10;
    }
	.about-custom.sm__flex-line-wrap:before {
		display: none;
	}
	.sm__flex-line{
		overflow: auto;
        margin-bottom: 0;
        padding-bottom: 20px;
        flex-wrap: nowrap;
        gap: 10px;
		width: calc(100% + 60px);
		margin-left: -30px;
		padding-left: 30px;
		padding-right: 0;
		scrollbar-width: none;
	}
	.sm__order-2{
		order:2;
	}
	.blue-form form .blue-form__bottom .btn-blue2 {
        margin-top: 20px;
    }
	.table-container table{
		display:none;
	}
}

@media (max-width: 720px) {
	.xs__h4-fs12 h4 {
        font-size: 12px;
    }
	.xs__li-mb10 li {
        margin-bottom: 10px;
    }
	
	.xs__mt-0{
		margin-top:0px;
	}
	.xs__mt-30{
		margin-top:30px;
	}
	
	.xs__mb-0{
		margin-bottom:0px;
	}
	.xs__mb-5{
		margin-bottom:5px;
	}
	.xs__mb-10{
		margin-bottom:10px;
	}
	.xs__mb-20{
		margin-bottom:20px;
	}
	.xs__mb-24{
		margin-bottom:24px;
	}
	.xs__mb-30{
		margin-bottom:30px;
	}
	.xs__mb-50{
		margin-bottom:50px;
	}
	
	.xs__fs-11{
		font-size:11px;
	}
	.xs__fs-12{
		font-size:12px;
	}
	.xs__fs-13{
		font-size:13px;
	}
	.xs__fs-14{
		font-size:14px;
	}
	.xs__fs-16{
		font-size:16px;
	}
	.xs__fs-18{
		font-size:18px;
	}
	.xs__fs-20{
		font-size:20px;
	}
	.xs__block-1col__col{
		width:100%;
	}
	.block-3col, .block-4col, .block-5col {
        gap: 20px;
    }
	.blue-form input[type=text] {
		font-size: 12px;
	}
	.xs__block-2col__col {
        width: calc(50% - 10px);
    }
	.xs__flex-line-wrap{
		position: relative;
		scrollbar-color: #fff #fff;
	}
	.xs__flex-line-wrap:before {
        position: absolute;
        content: "";
        height: 100%;
        right: -20px;
        top: 0;
        width: 100px;
        background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
        z-index: 10;
    }
	.xs__flex-line{
		display: flex;
		width: calc(100% + 52px);
		overflow: auto;
		margin-left: -20px;
		padding-left: 20px;
		padding-right: 70px;
        margin-bottom: 0;
        padding-bottom: 20px;
        flex-wrap: nowrap;
        gap: 10px;
	}
	.xs__d-block{
		display:block;
	}
	.custom-text h1 {
        margin-bottom: 30px;
    }
	.custom-text h2 {
        margin-bottom: 24px;
    }
	.custom-text h3 {
		line-height:1.2;
	}
	.custom-text.ul-check li {
        padding-left: 50px;
        min-height: 36px;
    }
	.custom-text.ul-check li:before {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
	.career__form-block__page__list__one:last-child {
		border-bottom: none;
	}
	.xs__fw-400{
		font-weight:400;
	}
	.blue-form__bottom {
        display: block;
	}
	.blue-form__bottom > div {
        width: 100%;
    }
	.blue-form .wrap-checked label p {
        font-size: 9px;
    }
	.blue-form form .blue-form__bottom .btn-blue2 {
        margin-top: 10px;
    }
	.xs__d-none{
		display:none;
	}
	.zoom-radius{
		border-radius:10px;
	}
}