<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Common Style */

:root{
	--p-fonts: "Work Sans", sans-serif;
}

*{
	box-sizing: border-box;
}

body{
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-family: var(--p-fonts);
}

p{
	font-size: 20px;
	font-weight: 400;
	color: #000;
	line-height: 1.45;
	margin-block: 0 16px;
}

p:last-of-type{
	margin-bottom: 0;
}

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

.row-gap{
	margin: 0 -15px;
}

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

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

.cmn__title{
	font-size: 44px;
	color: #0e5487;
	text-align: center;
	margin: 0 0 40px 0;
}

.cmn__title.white{
	color: #fff;
}

.white *{
	color: #fff;
}

.bold-text {
  font-weight: bold;
}

.italic-text {
  font-style: italic;
}

.small-text {
  font-size: 0.8em; /* Smaller than the parent element's text size */
}

.large-text {
  font-size: 1.2em; /* Larger than the parent element's text size */
}

.error-container {
  margin-top: 160px;
}


/* Header Style */

.header{
	width: 100%;
	padding: 15px 0;
	position: absolute;
	top: 0;
	left: 0;
}

.header .logo{
	width: 436px;
}

.header .logo a{
	display: inline-block;
    line-height: 0;
}

.header .logo img{
	width: 100%;
	height: auto;
}

.header .navbar-nav{
	padding: 0;
	margin: 0;
	list-style: none;
}

.header .navbar-collapse{
	flex: 1;
	padding-left: 20px;
	margin-top: 48px;
}

.header .navbar-nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.header .navbar-nav &gt; li + li{
	padding-left: 25px;
}

.header .navbar-nav &gt; li &gt; a{
	font-size: 18px;
	font-weight: 700; 
	color: #0e5487;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.header .navbar-toggler{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #0e5487;
	padding: 4px 8px;
	border: none;
	outline: none;
	position: relative;
}

.header .navbar-toggler:before{
	content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header .navbar-toggler-icon{
	display: inline-block;
    width: 25px;
    height: 30px;
    vertical-align: middle;
    background: center center/100% 100% no-repeat;
}

.header .navbar-toggler-icon:before,
.header .navbar-toggler-icon:after{
	content: "";
	display: inline-block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
}

.header .navbar-toggler-icon:before{
    top: calc(50% - 7px);
}

.header .navbar-toggler-icon:after{
    top: calc(50% + 7px);
}

/* Banner Style */

.home--banner{
	background: url("../images/gradiant_banner.jpeg") no-repeat;
	background-size: cover;
}

.home--banner .banner-wrap{
	padding: 120px 0 0;
	min-height: 624px;
}

.home--banner .left--col{
	width: 45%;
	padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home--banner .right--col{
	width: 55%;
	padding: 0 15px;
	position: relative;
}

.home--banner .pic--col{
	width: 100%;
	line-height: 0;
	height: 100%;
}

.home--banner .pic--col img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.home--banner .title{
	font-size: 81px;
	color: #0e5487;
	line-height: 1;
	margin: 0;
}

/* About Section */

.about--section{
	background: url("../images/about_gradiant.jpg") no-repeat;
	background-size: cover;
	padding-block: 80px 150px;
	position: relative;
	z-index: 1; 
}

.about--section:before{
	content: "";
	width: 20%;
	height: 100%;
	background: url("../images/about_circle.png") no-repeat;
	background-size: cover;
	background-position: right;
	position: absolute;
	top: 0;
	left: 0;
}

.about--section .about-content{
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
}

.about--section .cmn__title{
	margin-bottom: 60px;
}

.about--section p{
	color: #fff;
}

  .about--section .about-content a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

    .about--section .about-content a:hover {
      text-decoration: underline;
    }

/* Brand Section */

.brand--section{
	background: #f2efdc;
	padding-block: 80px 100px;
}

.brand--section .cmn__title{
	margin-bottom: 60px;
}

.brand--section .brand--wrap{
	max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.brand--wrap &gt; div{
	width: 50%;
	padding: 0 15px;
}

.brand--wrap .brand--pic{
	max-width: 350px;
	width: 100%;
}

.brand--wrap .brand--pic img{
	width: 100%;
	height: auto;
}

.brand--wrap .lrn--btn a{
	font-size: 20px;
	color: #5ba1bd;
	text-decoration: underline;
}

/* Contact Section */

.contact--section{
	background: #2a4353;
	padding-block: 70px;
}

.contact--wrap{
	max-width: 930px;
	width: 100%;
	margin: 0 auto;
}

.contact--section .cmn__title{
	margin-bottom: 60px;
}

.contact--section .form-wrap{
	max-width: 500px;
	width: 100%;
	margin: 60px auto 0;
}

.contact--section form label{
	width: 100%;
	display: block;
	font-size: 16px;
	color: #fff;
	margin-bottom: 5px;
}

.contact--section form input:not([type="submit"]){
	display: block;
	width: 100%;
	height: 45px;
	border: none;
	border-radius: 3px;
	font-size: 16px;
	color: #000;
	padding: 10px 15px;
}

.contact--section form textarea{
	display: block;
	width: 100%;
	min-height: 180px;
	border: none;
	border-radius: 3px;
	font-size: 16px;
	color: #000;
	resize: none;
	padding: 10px 15px;
}

.contact--section form input,
.contact--section form textarea{
	border: none;
	outline: none;
}

.contact--section form &gt; div:not(:last-child){
	margin-bottom: 30px;
}

.contact--section form .submit-msg{
	text-align: center;
}

.contact--section form .submit-msg input{
	min-width: 205px;
	background: #f15a29;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	padding: 16px 10px;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}

.contact--section form .submit-msg input:hover{
	background: #fff;
	color: #f15a29;
}

/* Footer Section */

.footer{
	background: #0e5487;
	padding-block: 50px 20px;
}

.footer .copyright p{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

.footer--nav{
	margin-top: 12px;
}

.footer--nav ul{
	padding: 0;
	margin: 0;
	list-style: none;
    justify-content: center;
}

.footer--nav ul li{
	position: relative;
}

.footer--nav ul li:not(:last-child){
	padding-right: 40px;
}

.footer--nav ul li:not(:last-child):after{
	content: "";
	width: 2px;
	height: 20px;
	background: #fff;
	position: absolute;
	top: 2px;
	right: 20px;
}

.footer--nav ul li a{
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}

.ftr--privacy{
	padding-inline: 20px;
	margin-top: 25px;
}

.ftr--privacy .privacy-content{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}

.footer .privacy-content{
	margin-right: 15px;
}

.footer .privacy-toggle{
	position: relative;
}

.footer .privacy-toggle:before{
	content: "\00d7";
	display: inline-block;
	font-size: 19px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 6px;
	z-index: 1;
    pointer-events: none;
}

.ftr--privacy input[type=checkbox]{
	display: none;
	width: 0;
	height: 0;
	visibility: hidden;
}

.ftr--privacy label{
	display: block;
	width: 47px;
	height: 22px;
	background: #0080ff;
	font-size: 0;
	border-radius: 100px;
	text-indent: -9999px;
	position: relative;
	cursor: pointer;
}

.ftr--privacy label:before{
	content: "";
	width: 4px;
	height: 8px;
	border: solid #0080ff;
	border-width: 0 2px 2px 0;
	position: absolute;
	top: 5px;
	left: 8px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 999;
	transition: 0.3s;
}

.ftr--privacy label:after {
	content: "";
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 90px 0 0 90px;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: 0.3s;
}

.ftr--privacy input:checked + label:before{
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}

.ftr--privacy input:checked + label:after {
	width: calc(100% - 4px);
	left: 2px;
	border-radius: 90px;
}

/* Responsie Style */

@media (min-width: 992px){
	.header .navbar-toggler{
		display: none;
	}
}

@media (max-width: 1700px){
	.container{
		max-width: 1250px;
	}
}

@media (max-width: 1199px){
	.home--banner .title{
		font-size: 50px;
	}
	.home--banner .banner-wrap {
	    padding: 100px 0 0;
	    min-height: 450px;
	}
}

@media (max-width: 991px){
	.header .main-nav{
		display: none;
		width: calc(100% - 30px);
	    position: absolute;
	    top: 100%;
	    left: 15px;
	    z-index: 99;
	}
	.header .navbar-nav{
		background: #0e5487;
	}
	.header .navbar-nav &gt; li{
		display: block;
		width: 100%;
		text-align: left;
	}
	.header .navbar-nav &gt; li + li{
		padding-left: 0;
		border-top: 1px solid #fff;
	}
	.header .navbar-nav &gt; li &gt; a{
		display: inline-block;
	    font-size: 16px;
		color: #fff;
	    padding: 8px 20px;
	}
	.header .navbar-collapse{
		text-align: right;
	    margin-top: 0;
	}
	.header .logo{
		width: 230px;
	}
	.home--banner .banner-wrap {
	    min-height: 370px;
	}
	.home--banner .title {
	    font-size: 40px;
	}
}

@media (max-width: 767px){
	p{
		font-size: 18px;
	}
	.cmn__title{
	    font-size: 36px;
        margin: 0 0 25px 0;
	}
	.home--banner .left--col{
		width: 100%;
		margin-bottom: 50px;
	    justify-content: center;
	}
	.home--banner .right--col{
		width: 100%;
	}
	.home--banner .banner-wrap {
	    min-height: auto;
	}
	.home--banner .title {
	    font-size: 36px;
	    text-align: center;
	}
	.about--section{
		padding-block: 30px 50px;
	}
	.about--section .cmn__title{
		margin-bottom: 35px;
	}
	.brand--section{
		padding-block: 40px 60px;
	}
	.brand--wrap &gt; div{
		width: 100%;
	}
	.brand--wrap .left--col{
		margin-bottom: 20px;
	}
	.brand--wrap .lrn--btn a{
		font-size: 18px;
	}
	.brand--section .cmn__title {
    	margin-bottom: 35px;
	}
	.contact--section {
	    padding-block: 40px;
	}
	.contact--section .cmn__title {
	    margin-bottom: 30px;
	}
	.footer{
	    padding-block: 30px 20px;
	}
	.footer .copyright p{
		font-size: 18px;
	}
	.footer--nav ul li:not(:last-child) {
	    padding-right: 20px;
	}
	.footer--nav ul li a{
		font-size: 18px;
	}
	.footer--nav ul li:not(:last-child):after{
		height: 18px;
		right: 10px;
	}
	.ftr--privacy,
	.ftr--privacy .privacy-content{
		font-size: 18px;
	}
}

@media (max-width: 480px){
	p{
		font-size: 16px;
	}
	.cmn__title{
		font-size: 30px;
	}
	.header .logo {
	    width: 190px;
	}
	.home--banner .title {
	    font-size: 30px;
	}
	.brand--wrap .lrn--btn a,
	.contact--section form .submit-msg input,
	.ftr--privacy,
	.ftr--privacy .privacy-content{
		font-size: 16px;
	}
	.footer .copyright p{
		font-size: 16px;
	}
	.footer--nav ul li a{
		font-size: 16px;
	}
	.footer--nav ul li:not(:last-child):after{
		height: 16px;
	}
}
</pre></body></html>