@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&family=Source+Serif+Pro:wght@400;600;700&display=swap');

/*** commen style ***/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{
	border:0;
	margin:0;
	padding:0
}
article,aside,figure,figure img,figcaption,hgroup,footer,header,nav,section,video,object{
	display:block
}
a img{
	border:0
}
figure{
	position:relative
}
figure img{
	width:100%
}
:root {
	--blue: #004890;
	--gray: #4d4d4d;
	--white: #ffffff;
	--aqua: #28a9e0;
	--light-gry: #4d4d4d;

}

body {
	padding: 0;
	padding-top: 60px;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	background: rgba(40,169,224,0.2);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

label {
	font-weight: normal;
}

img {
	border: none;
	padding: 0;
	margin: 0;
	outline: none !important;
}

a,
a:hover {
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 24px;
	color: var(--gray);
}

*,
img,
a {
	outline: none !important;
}

a {
	transition: all 0.2s ease-in 0s;
	-webkit-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;

}

* {
	box-sizing: border-box;
}

img,
object,
embed {
	max-width: 100%;
}

img {
	height: auto;
}

h1 {
	font-size: 44px;
	line-height: 52px;
	font-family: 'Source Serif Pro', sans-serif;
	font-weight: 700;
	color: var(--blue)
}

h2 {
	font-size: 26px;
	line-height: 30px;
	color: var(--blue);
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
}

h3{
	font-size: 22px;
	line-height: 26px;
	color: var(--gray);
	font-family: 'Source Serif Pro', sans-serif;
	font-weight: 600;
}
h6{
	font-size: 16px;
	line-height: 22px;
	font-family: 'Source Serif Pro', sans-serif;
}


input[type="text"],
input[type="tel"],
select,
input[type="submit"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="button"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	box-shadow: none;
}
::-webkit-input-placeholder {
	color: var(--gry) !important;
	opacity: 1;
}

:-moz-placeholder {
	color: var(--gry) !important;
	opacity: 1;
}

::-moz-placeholder {
	color: var(--gry) !important;
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--gry) !important;
	opacity: 1;
}

.clear {
	clear: both;
	height: 0;
}

.container {
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.max-row {
	max-width: 1200px;
	margin: 0 auto
}

.table {
	display: table;
	width: 100%;
	height: 100%;
	table-layout: fixed;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.pt70{
	padding-top: 70px;
}
.pb70{
	padding-bottom: 70px;
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 0.9;
		transform: translateY(0);
	}
}


/*** commen style end ***/


/*** home page style ***/


.header-section {
	padding: 10px 0 20px;
	transition: all 0.5s;
	background: var(--blue);
}
.header-section {
	padding: 10px 0 20px;
	z-index: 99;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	animation: slide-down 0.7s;
}

.header-section .logo {
	display: table-cell;
	width: 80px;
	padding-right: 20px;
	vertical-align: middle;
}

.header-section .navigation {
	display: table-cell;
	text-align: right;
	vertical-align: middle;
	position: relative;
}
.header-section .max-row{
	position: relative;
}
.ps-search {
	position: absolute;
	right: 0;
	left: 0;
	margin-top: 10px;
	top: 100%;
	opacity: 0;
	z-index: 112;
	visibility: hidden;
	text-align: right;
}
.bg-dark .ps-search{
	visibility: visible;
	opacity: 1;
}
.search-box {
	width: 100%;
	border: 1px solid var(--dark-gry);
	border-radius: 50px;
	padding: 10px 50px 10px 20px;
	position: relative;
	background: var(--white);
}
.search-box .text {
	width: 100%;
	border: 0;
	color: var(--dark-gry);
	font-size: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	background: none;
}
.search-box .search {
	position: absolute;
	background: url(../../../images/front/covid-19/search.png) no-repeat 0 0;
	width: 20px;
	background-size: 100% 100%;
	border: 0;
	right: 20px;
	top: 15px;
	cursor: pointer;
}

.bg-dark html, .bg-dark body {
	overflow: hidden;
}
.dark-tp {
	background: rgba(0,0,0,0.5);
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	z-index: 10;
}
.bg-dark .dark-tp{
	opacity: 1;
	visibility: visible;
}
.input-redio{
	display: inline-block;
	margin: 15px 15px  0;
	color: var(--white);
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 2px;

	text-transform: uppercase;

}
.input-redio label{
	cursor: pointer;
}
.input-redio input{
	margin: 0 5px 0 0;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	width: 15px;
	height: 15px;
	position: relative;
	top: -2px;
	border: 1px solid var(--gray);
}
.navigation ul, .navbar ul {
	list-style: none;
}

.navigation li, .navbar li {
	display: inline-block;
	vertical-align: 0;
}

.navigation li:before, .navbar li::before {
	content: "";
	width: 1px;
	height: 15px;
	background: var(--white);
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}

.navigation li:first-child:before, .navbar li:first-child:before {
	display: none;
	margin: 0;
}

.navigation li a, .navbar li a {
	display: inline-block;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--white);
	position: relative;
}

.navigation li a:after, .navbar li a:after{
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 1px solid;
	margin-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
.navigation li a:hover:after, .a-link:hover:after, .navbar li a:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.top-links{
	margin-top: 15px;
	text-align: right;
}
.top-links ul{
	list-style: none;
}


.top-links li {
	display: inline-block;
	vertical-align: 0;
}

.top-links li:before {
	content: "";
	width: 1px;
	height: 15px;
	background:var(--blue);
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}

.top-links li:first-child:before {
	display: none;
	margin: 0;
}

.top-links li a {
	display: inline-block;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
	position: relative;
	padding: 4px 10px 6px;
	border-radius: 7px;
}
.top-links li a:hover, .top-links li.active a{
	background: var(--blue);
	color: var(--white);
}

.mm-listitem__text {
	text-transform: uppercase;
}

.div-none{
	display: none;
}
.banner-section{
	margin-top: 100px;
}
.banner-content {
	max-width: 800px;
}
.banner-content p{
	margin-top: 20px;
	max-width: 580px;
}
.usd-img{
	margin-top: 30px;
	display: inline-block;
}
.banner-section{
	position: relative;
}

.banner-section:after{
	background: url(../../../images/front/covid-19/home-banner.png) no-repeat bottom;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	content: "";
}
.pdf-download .banner-section::after{
	background-size: contain;
}

.a-link{
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	color: var(--blue);
	position: relative;
}
.a-link:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 1px solid;
	margin-top: 5px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

.middle-seaction{
	padding: 100px 0;
}
.full-row:first-child{
	margin-top: 0;
}
.full-row{
	margin-top: 100px;
}

.ctn-box h2{
	padding-right: 10px;
	float: left;
}
.ctn-box .a-link{
	text-align: right;
	float: right;
	margin-top: 5px;
}
.ctn-box  p{
	margin-top: 20px;
}

.tab-links ul{
	margin: -40px -20px 0;
	list-style: none;
}
.tab-links ul li{
	padding: 40px 20px 0;
	float: left;
	width: 25%;
}
.tab-links ul li a{
	background:rgba(255,255,255,0.75);
	padding: 15px 5px;
	text-align: center;
	display: block;
	border-radius: 50px;
	color: var(--blue);
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
}
.tab-links ul li a:hover,.tab-links ul li a.active{
	background: var(--blue);
	color: var(--white);
}
.mrg-half{
	margin: 0 -20px;
	display: flex;
	flex-wrap: wrap;
}
.half{
	padding: 40px 20px 0;
	float: left;
	width: 25%;
}
.half-box{
	background: rgba(255,255,255,0.75);
	padding: 15px;
	float: left;
	width: 100%;
	height: 100%;
}
.half-box:hover .half-img .table{
	opacity: 1;
}
.half-img{
	position: relative;
	float: left;
	width: 100%;
	border: 1px solid #b3b3b3;
	line-height: 1px;
}
.half-img .table{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	background: rgba(0,72,144,0.9);
	text-align: center;
	padding: 5px;
	transition: all 0.2s ease-in 0s;
	-webkit-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;

}
.half-img p:first-child{
	margin-top: 0;
}
.half-img p{
	margin-top: 20px;
}
.half-img a{
	color: var(--white);
	display: block;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
}

.half-img img{
	width: 100%;
}
.half-content{
	float: left;
	width: 100%;
}
.view-detail, .download{
	padding-right: 25px;
}
.view-detail::before, .download::before{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 0;

}
.view-detail::before{
	background: url(../../../images/front/covid-19/view.svg) no-repeat 0 0;
}
.download::before{
	background: url(../../../images/front/covid-19/download.svg) no-repeat 0 0;
	width: 18px;
	height: 18px;
}

.half-img a:after, .new-one .download:after{
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 1px solid;
	margin-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
.half-img a:hover:after, .new-one .download:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.half-content{
	margin: 30px 0 5px;
}
.logo-redius {
	min-height: 40px;
	padding-left: 50px;
	position: relative;
	margin-top: 10px;
}
.logo-redius .i-box{
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border: 1px solid #b3b3b3;
	background: var(--white);
	border-radius: 100%;
	padding: 3px;
	line-height: 40px;
	text-align: center;
	overflow: hidden;
}
.half-content span{
	font-size: 16px;
	line-height: 18px;
	color: var(--gray);
}
.last-ctn{
	margin-top: 10px;
}
.last-ctn span:first-child{
	float: left;
	color: var(--blue);
	margin-right: 5px;
}
.last-ctn span{
	float: right;
	margin-top: 5px;
}
.bottom-slider .table{
	background: var(--white);
	padding: 20px;
}
.bottom-slider{
	margin-top: 40px;
}
.bottom-slider .table-cell:first-child{
	width: 107px;
	padding: 0;
}
.bottom-slider .table-cell{
	padding-left: 20px;
}
.bottom-slider p{
	font-size: 22px;
	line-height: 26px;
	font-weight: 600;
	color: var(--gray);
	font-family: 'Source Serif Pro', sans-serif;
}
.ctn-box .all-link{
	width: 134px;
}
.bottom-slider .owl-dots{
	text-align: center;
	margin-top: 25px;
}
.bottom-slider .owl-dot{
	width: 50px;
	height: 8px;
	background: var(--gray) !important;
	display: inline-block;
	margin: 5px 5px 0px ;
}
.bottom-slider .owl-dot.active{
	background: var(--blue) !important;
}
.footer-section{
	background: var(--blue);
	padding: 30px 0 20px;
}
.footer-section .max-row{
	position: relative;
}
.footer-section .max-row:after{
	content: "";
	width: 341px;
	height: 162px;
	position: absolute;
	background: url(../../../images/front/covid-19/ft-bg.png) no-repeat left top;
	left: 0;
	top: -192px;
	left: -230px;
}
.footer-content {
	font-family: 'Source Serif Pro', serif;
	font-size: 16px;
	line-height: 19px;
	color: var(--white);
}

.ft-last h6 {
	font-family: 'Source Serif Pro', serif;
	color: var(--dark);
}

.ft-last {
	margin-top: 20px;
	text-align: right;
}

.ft-last .table-cell:first-child {
	text-align: left;
	width: 290px;
	padding-right: 20px;
}

.ft-last  h6 {
	display: inline-block;
	vertical-align: middle;
	color: var(--white);
}

.ft-last .float-right a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}


.inner-page .banner-section:after, .pdf-download .banner-section:after{
	display: none;
}
.inner-page .banner-section{
	margin-top: 30px;
}
.inner-page .banner-section .table-cell:first-child{
	padding-right: 10px;
}
.inner-page .banner-section .table-cell{
	vertical-align: bottom;
}

.inner-page .banner-section .table-cell.div-none{
	display: block;
}
.banner-text{
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	color: var(--blue);
	display: block;
	margin-bottom: 10px;
}

.inner-page .middle-seaction, .pdf-download .middle-seaction{
	padding-bottom: 160px;
}
.tab-content{
	margin-top: 60px;
	float: left;
	width: 100%;
}

.two, .three, .fore{
	display: none;
}
.pdf-download .middle-seaction, .pdf-download .middle-seaction .container, .pdf-download .middle-seaction .full-row, .pdf-box{
	float: left;
	width: 100%;
}
.pdf-content p:first-child{
	margin-top: 0;
}
.pdf-content p{
	margin-top: 20px;
}
.pdf-content p strong{
	color: var(--blue);
}
.pdf-box{
	margin-top: 30px;
}
.pdf-box .pdf-mrg{
	margin: -30px -20px 0;
}
.pdf-box .pdf-half:first-child{
	width: 40%;
}
.pdf-box .pdf-half{
	float: left;
	width: 60%;
	padding: 30px 20px 0;
}
.pd-download img{
	width: 100%;
}
.new-one .logo-redius{
	width: 50%;
	float: left;
}
.new-one .last-ctn{
	width: 50%;
	float: left;
	margin-top: 30px;
}
.new-one .half-content{
	margin: 0;
}
.new-one .download{
	float: right;
	color: var(--blue);
	position: relative;
	margin-bottom: 10px;

}
.new-one h3{
	margin-right: 10px;
}
.new-one .download::before{
	background: url(../images/download-blue.svg) no-repeat 0 0;
}

.half.half-50{
	width: 50%;
}

.half-50 .half-box{
	display: table;
	height: auto;
}

.half-50 .half-img{
	display: table-cell;
	width: 90px;
	vertical-align: top;
	float: none;
	border: 0;
}
.half-50 .half-img img{
	border: 1px solid #b3b3b3;
}

.half-50 .half-content{
	display: table-cell;
	vertical-align: top;
	padding-left: 20px;
	margin-top: 0;
}

.load-more{
	margin-top: 60px;
	text-align: center;
}
.load-more a{
	display: inline-block;
	max-width: 250px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--blue);
	background: var(--white);
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	width: 100%;
	border-radius: 50px;
}
.half-50 .last-ctn span:first-child{
	font-style: italic;
}
.load-more a:hover{
	background: var(--blue);
	color: var(--white);
}
.filter-section{
	background: rgba(255,255,255,0.75);
	padding: 15px;
}
.filter-section .table-cell:first-child{
	width: auto;
	padding-right: 20px;
}
.filter-section .table-cell{
	width: 200px;
}
.filter-section p{
	display: inline-block;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	color: var(--blue);
	letter-spacing: 2px;
	margin-right: 20px;
}
.filter-section P + .input-field{
	width: 40%;
}
.filter-section .input-field{
	display: inline-block;
	margin-right: 20px;
	width: 30%;
}
.input-field{position: relative;}
.input-field input{
	border: 0;
	border-bottom: 1px solid var(--gray);
	font-size: 18px;
	padding:0 10px;
	height: 40px;
	color: var(--gray);
	width: 100%;
	background: none;

}
.input-field:after, .input-field:before{
	content: "";
	position: absolute;
	width: 1px;
	height: 10px;
	bottom: 0;
	background: var(--gray);
}
.input-field:after{
	right: 0;
}
.input-field:before{
	left: 0;
}
.filter-section a{
	display: inline-block;
	max-width: 200px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--white);
	background: var(--blue);
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	width: 100%;
	border-radius: 50px;
	text-align: center;
}
.navigation .search a {
	vertical-align: -4px;
}
.navigation .search a::after{
	display: none;
}
.half-search{
	float: left;
	width: 50%;
	padding: 30px 20px 0;
}
.serch-half{
	margin: 0 -20px;
}
.tp-search h2{
	display: table-cell;
	vertical-align: top;
}
.tp-search p{
	display: table-cell;
	vertical-align: top;
	text-align: right;
	width: 120px;
}

.half-search .half{
	width: 50%;
}
.half-search .half.half-50{
	width: 100%;
}

.left-nav{
	float: left;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
}
.nav-menu{
	float: right;
}
.navbar{
	padding-top: 20px;
	transition: all 0.2s ease-in 0s;
	-webkit-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
	padding-bottom: 20px;
	display: inline-block;
	width: 100%;
}
#navbar.sticky {
	position: fixed;
	width: 100%;
	background: #f2f5f9;

	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	z-index: 9;
}
.navbar .nav-menu li:before{
	margin: 0 20px;
	background: var(--blue);
}
.navbar .nav-menu li a{
	color: var(--blue);
}
.new-one{
	background: #F2F5F9;
}

.left-scrolly{
	float: left;
	width: 50%;
	padding-right: 20px;
}
.left-scrolly img{
	width: 100%;
	max-width: 500px;;
}

.right-scrolly{
	float: left;
	width: 50%;
	padding-left: 20px;
}
.right-scrolly img.rightgraphic{
	display: none;
}
@media (max-width: 991px) {
	.navbar .nav-menu li:before{
		margin: 0 2px;
	}
}
@media (max-width: 767px) {
	.left-scrolly{
		display: none;
	}
	.right-scrolly{
		width: 100%;
		padding-left: 0;
		padding-bottom: 130px;
	}
	.right-scrolly img.rightgraphic{
		display: block;
		padding-top: 0;
	}
	.right-scrolly .pt70 {
		padding-top: 30px;
	}
	#navbar{
		display: none;
	}
}

/*** responsive style ***/
@media (max-width: 1299px) {
	.banner-section:after{
		display: none;
	}
	.banner-section .div-none{
		display: block;
	}
}
@media (max-width: 1199px) {
	.navigation li a{
		font-size: 14px;
	}
	.mrg-half{
		margin: 0 -10px;
	}
	.half {
		padding: 20px 10px 0;
	}
	.full-row, .banner-section{
		margin-top: 60px;
	}
	.middle-seaction {
		padding: 60px 0;
	}
	.bottom-slider {
		margin-top: 30px;
	}
	.bottom-slider .owl-dots{
		margin-top: 15px;
	}
	.tab-links ul li {
		padding: 40px 10px 0;
	}
}

@media (max-width: 1023px) {
	.navigation li::before {
		margin: 0 5px;
	}
	h1 {
		font-size: 38px;
		line-height: 46px;
	}
	.tab-content{
		margin-top: 40px;
	}
	.tab-links ul li {
		padding: 40px 10px 0;
	}

}

@media (max-width: 979px) {
	.inner-page .banner-section .table-cell.div-none {
		display: none;
	}

	.navigation li a{
		letter-spacing: 1px;
		font-size: 13px;
	}
	.banner-section .div-none{
		display: none ;
	}
	.banner-section .table-cell:first-child .mobile-block{
		display: block !important;
		max-width: 500px;
		margin: 0 auto;
	}
	.full-row{
		margin-top: 40px;
	}
	.banner-section{
		margin-top: 20px;
	}
	.banner-content h1, .banner-text{
		margin-top: 40px;
	}
	.inner-page .banner-content h1{
		margin-top: 0;
	}
	.banner-content p{
		max-width: none;
	}
	.half{
		width: 33.33%;
	}


	.tab-links ul li a{
		letter-spacing: 1px;
	}
	.half-search{
		width: 100%;
	}
	.half-search .half{
		width: 33.33%;
	}
	.half-search .half.half-50 {
		width: 50%;
	}
}
@media (max-width:839px) {
	.navigation li a{
		letter-spacing: 0;
		font-size: 13px;
	}
	.tab-links ul li a{
		font-size: 14px;
	}
	.filter-section .table-cell {
		width: 160px;
	}
}


@media (min-width: 768px) {
	.mobile-menu {
		display: none;
	}
	.mobile-block{
		display: none !important;
	}
	html {
		zoom: 0.9;
		-ms-zoom: 0.9;
		-webkit-zoom: 0.9;
		-moz-transform: scale(0.9, 0.9);
		-moz-transform-origin: center top;
	}
}

@media (max-width: 767px) {
	body {
		padding-top: 0px !important;
	}
	.middle-scrolly {
		padding-top: 60px;
	}
	.header-section .max-row{
		position: static;
	}
	.mobile-none{
		display: none !important;
	}
	.mobile-menu {
		position: absolute;
		left: 0;
		top: 0;
		background: #f3f3f3;
		width: 40px;
		height: 56px;
		cursor: pointer;
	}
	.mobile-menu a {
		cursor: pointer;
		text-align: center;
		display: inline-block;
		width: 40px;
		height: 56px;
	}
	.mobile-menu a img:first-child,
	.mm-wrapper_opening .mobile-menu a img {
		display: inline-block;
		height: 100%;
	}
	.mobile-menu a img {
		display: none;
	}
	.mm-wrapper_opening .mobile-menu a img:first-child {
		display: none;
	}
	.header-section .navigation{
		display: none;
	}
	.header-section{
		text-align: center;
	}
	.header-section .logo{
		display: inline-block;
		padding: 0;
	}
	.header-section .logo a{
		display: inline-block;
	}
	.header-section{
		padding: 10px 0 5px;
	}

	.mm-wrapper__blocker.mm-slideout > a {
		display: block !important;
		background: #f3f3f3;
	}

	.mm-wrapper__blocker.mm-slideout > a,
	.mm-wrapper__blocker.mm-slideout > a .mm-sronly {
		width: 39px !important;
		height: 56px !important;
	}

	.mm-wrapper__blocker.mm-slideout > a .mm-sronly {
		cursor: pointer;
		display: block;
		clip: rect(0px,40px,44px,0px) !important;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
		color: var(--light-gry) !important;
		position: relative !important;
	}

	.mm-wrapper__blocker.mm-slideout > a .mm-sronly::after {
		content: "";
		background: #f3f3f3;
		position: absolute;
		top: 0;
		left: 0;
		width: 40px;
		height: 56px;
		background-image: url("../../../images/front/covid-19/close.svg");
		background-size: 20px 20px;
		background-repeat: no-repeat;
		background-position: center center;
	}

	.top-links{
		display: none;
	}
	h3{
		font-size: 20px;
		line-height: 24px;
	}
	.half-content span{
		font-size: 14px;
	}
	p{
		font-size: 16px;
		line-height: 20px;
	}
	.ctn-box .a-link{
		font-size: 14px;
		line-height: 16px;
		letter-spacing: 1px;
	}
	h2{
		font-size: 24px;
		line-height: 26px;
	}
	.middle-seaction {
		padding: 40px 0;
	}
	.tab-links ul li {
		padding: 20px 10px 0;
		width: 50%;
	}
	.tab-links{
		margin-top: 10px;
	}
	.tab-content {
		margin-top: 30px;
	}
	.pdf-box .pdf-half, .pdf-box .pdf-half:first-child, .half.half-50{
		width: 100%;
	}
	.half-50 .half-content {
		vertical-align: middle;
		float: none;
		width: auto;
	}
	.load-more{
		margin-top: 30px;
	}
	.load-more a{
		height: 40px;
		line-height: 40px;
		max-width: 200px;
	}
	.filter-section p{
		display: block;
	}
	.filter-section P + .input-field, .filter-section .input-field{
		width: 100%;
	}
	.half-search .half.half-50 {
		width: 100%;
	}
}

@media (max-width: 639px) {
	.banner-content h1 {
		margin-top: 20px;
	}
	.half{
		width: 50%;
	}
	.ft-last .table-cell:first-child {
		width: auto;
		padding: 0;
		text-align: center;
	}
	.ft-last .table-cell {
		display: block;
		padding: 15px 0 0 0;
		width: 100%;
		text-align: center;
	}
	h1 {
		font-size: 28px;
		line-height: 34px;
	}
	.bottom-slider .owl-dot{
		width: 30px;
		height: 4px;
	}
	.new-one .download{
		display:inline-block;
		float: none;
	}
	.new-one .logo-redius, .new-one .last-ctn{
		width: 100%;
	}
	.new-one .last-ctn{
		margin-top: 10px;
	}
	.half-search .half{
		width: 50%;
	}
}

@media (max-width: 479px) {
	.half-search .half{
		width: 100%;
	}
	.tab-links ul li {
		padding: 20px 10px 0;
		width: 100%;
	}
	.half-content h3{
		height: auto !important;
	}
	.half{
		width: 100%;
	}
	.bottom-slider .table{
		padding: 10;
	}
	.bottom-slider .table-cell:first-child{
		width: auto;
		text-align: center;
	}
	.bottom-slider .table-cell img{
		max-width: 100px;
		margin: 0 auto;
	}
	.bottom-slider .table-cell{
		display: block;
		padding: 10px 0 0 0;
	}
	.filter-section .table-cell:first-child{
		padding-right: 0;
		padding-bottom: 10px;
	}
	.filter-section .input-field{
		margin-bottom: 10px;
	}
	.filter-section .table-cell{
		width: auto;
		display: block;
	}
	.half-50 .half-img{
		display: block;
	}
	.half-50 .half-content{
		display: block;
		padding: 0;
		margin-top: 20px;
	}
	.half-50 .half-img{
		width: auto;
	}
}

.sticky-div{
	position: sticky;
	padding-top: 0;
	top: 130px;
}
.scrolly-content h4{
	color: var(--blue);
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.scrolly-content h2{
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	margin-bottom: 20px;
	font-family: 'Source Serif Pro', sans-serif;
}
.scrolly-content p{
	margin-bottom: 20px;
}
.corporate-list li{
	padding-left: 85px;
	position: relative;
	list-style: none;
}
.corporate-list li img{
	position: absolute;
	left: 0;
	width: 70px;
}
.corporate-list li h4{
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.listtitle {
	display: flex;
	justify-content: space-between;
}
.listtitle a {
	color: var(--blue);
	text-transform: uppercase;
	font-size: 13px;
}

.modal {
	position: fixed;
	z-index: 10000; /* 1 */
	top: 0;
	left: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
}

.modal.is-visible {
	visibility: visible;
}

.modal-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, 0.5);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.modal-wrapper {
	position: absolute;
	z-index: 9999;
	top: 4em;
	left: 50%;
	width: calc(100% - 30px);
	max-width: 940px;
	background-color: #fff;
	box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
	transform: translate(-50%, 0);
}

.modal-transition {
	transition: all 0.3s 0.12s;
	/*transform: translateY(-10%);*/
	opacity: 0;
}

.modal.is-visible .modal-transition {
	/*transform: translateY(0);*/
	opacity: 1;
}

.modal-content {
	padding: 20px;
}
.modal-content ul {
	list-style: none;
}
.modal-content ul li {
	width: 80%;
	display: inline-block;
	text-transform: uppercase;
}
@media (max-width: 767px){
	.modal-content ul li {
		width: 49%;
	}
}
.modal-header {
	position: relative;
	background-color: #fff;
	padding: 40px 20px 10px 20px;
}
.modal-body {
	padding: 20px;
	height: calc(100vh - 150px);
	overflow-y: auto;
}
.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em;
	color: var(--blue);
	background: none;
	border: 0;
}

.modal-close:hover {
	color: #777;
}

.modal-heading {
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.modal-heading img {
	width: 25px;
	vertical-align: middle;
	margin: 0 10px;
}

.modal-content > *:first-child {
	margin-top: 0;
}

.modal-content > *:last-child {
	margin-bottom: 0;
}

.scrolly-content .btn{
	float: left;
	max-width: 250px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: var(--blue);
	color: var(--white);
	height: 55px;
	line-height: 22px;
	text-align: center;
	font-size: 18px;
	width: 100%;
	border-radius: 50px;
	margin-right: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scrolly-content .btn:hover{
	background: var(--aqua);
}

.list li {
	padding-left: 20px;
	font-size: 18px;
	list-style: none;
	line-height: 24px;
	color: var(--gray);
	position: relative;
}
.list li:before{
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue);
}
.colwrap{
	margin: 0 -5px;
}
.colwrap .col2{
	padding: 0 5px;
	width: 50%;
	float: left;
}
/* Popup form */
/**/

.text-uppercase {
	text-transform: uppercase;
}

.reachus-form input[type=text],
.reachus-form input[type=email],
.reachus-form textarea,
.reachus-form button {
	width: 100%;
	margin: 10px 0;
	box-sizing: border-box;
	font-size: 18px !important;
	line-height: 24px !important;
	font-family: 'Source Sans Pro', sans-serif;
	background-color: var(--blue);
	color: var(--white);
	height: 50px;
	border: 1px solid var(--white);
	border-radius: 50px;
	background: none;
	padding: 0 20px;
}

.reach-us textarea {
    height: 100px !important;
    border-radius: 20px !important;
    padding: 15px !important;
}

.reachus-form button,
.reachus-form button p{
	background: var(--blue);
	color: var(--white) !important;
	border: none;
	text-align: left;
	text-transform: uppercase;
	font-size: 20px !important;
	line-height: 24px !important;
	letter-spacing: 2px;
}

.reachus-form button img {
	transition: all 0.2s ease-in 0s;
	-webkit-transition: all 0.2s ease-in 0s;
	-ms-transition: all 0.2s ease-in 0s;
}

.reachus-form button:hover img {
	color: var(--white); !important;
	margin-left: 5px;
}


.mm-listitem__text {
	text-transform: uppercase;
}

.modal-header {
	position: relative;
	background-color: #fff;
	padding: 40px 20px 10px 20px;
}

.modal-body {
	padding: 20px;
	height: calc(100vh - 150px);
	overflow-y: auto;
}

.modal#modal-ru .modal-wrapper {
	background-color: var(--blue);
	color: var(--white);
}

.modal#modal-ru .modal-header {
	background-color: var(--blue);
	color: var(--white) !important;
	text-align: center;
}

.modal#modal-ru .modal-header h3 {
	color: var(--white) !important;
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em;
	background: none;
	border: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px !important;
	line-height: 24px !important;
	color: var(--white);
}

.modal-close:hover {
	color: #777;
}

.modal-heading {
	font-size: 22px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--white);
}

.modal-heading img {
	width: 25px;
	vertical-align: middle;
	margin: 0 10px;
}

.modal-content > *:first-child {
	margin-top: 0;
}

.modal-content > *:last-child {
	margin-bottom: 0;
}

.text-white-content,
.text-white-content * {
	color: var(--white) !important;
}


/*.popup-form input[type=text],*/
/*.popup-form textarea,*/
/*.popup-form button {*/
/*width: 100%;*/
/*padding: 12px 20px;*/
/*margin: 8px 0;*/
/*box-sizing: border-box;*/
/*border: 1px solid #9a9a9a;*/
/*}*/
/*.popup-form button {*/
/*background: #f9a61a !important;*/
/*color: #fff !important;*/
/*border: none !important;*/
/*}*/


.diamond-modal-toggle .modal-content ul,
.gold-modal-toggle .modal-content ul,
.silver-modal-toggle .modal-content ul,
.platinum-modal-toggle .modal-content ul{
	list-style: unset !important;
}
.diamond-modal-toggle .modal-content ul li,
.gold-modal-toggle .modal-content ul li,
.silver-modal-toggle .modal-content ul li,
.platinum-modal-toggle .modal-content ul li {
	/*display: list-item !important;*/
}

.navigation ul li ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	padding: 1px 0 2px;
	left: 95px;
	display: none;
	border-radius: 6px;
	right: 0;
	background: #ffffff;
	transition: all 0.2s ease-in 0s;
	-webkit-transition: all 0.2s ease-in 0s;
	top: 30px;
	-ms-transition: all 0.2s ease-in 0s;
}

.navigation ul li:hover > ul, .navigation ul li ul:hover {
	visibility: visible;
	opacity: 1;
	display: block;
}

ul.theme-submenu li a {
	color: var(--blue);
}

ul.theme-submenu li:before {
	background: var(--blue);
}

.theme-submenu {
	display: flex !important;
	justify-content: center !important;
}

.SourceSerifPro {
	font-family: 'Source Serif Pro', sans-serif;
}

.SourceSansPro {
	font-family: 'Source Sans Pro', sans-serif;
}

.mm-menu_opened {
	width: 80vw;
}
