@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@400;500;700&display=swap');
/* font-family: 'Montserrat', sans-serif;
font-family: 'Oswald', sans-serif; */

:root {
  --baseFont: 'Montserrat', sans-serif;
  --titleFont: 'Oswald', sans-serif;
  --baseColor: #222;
  --primaryColor: #00315A;
  --primaryHoverColor: #02223E;
  --secondaryColor: #008C07;
  --secondaryHoverColor: #007606;
  --white: #fff;
  --black: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--baseFont);
  color: var(--baseColor);
  font-size: 18px;
}
a {
  color: inherit;
  text-decoration: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5 {
  font-family: var(--titleFont);
}
.btn {
	font-size: 14px;
	font-weight: 500;
	border-radius: 30px;
	text-transform: uppercase;
	padding: 10px 30px;
}
.btnPrimary {
  background-color: var(--primaryColor);
  color: var(--white);
}
.btnPrimary:hover {
  background-color: var(--primaryHoverColor);
  color: var(--white);
}
.btnSecondary {
  background-color: var(--secondaryColor);
  color: var(--white);
}
.btnSecondary:hover {
  background-color: var(--secondaryHoverColor);
  color: var(--white);
}

.primaryColor {
  color: var(--primaryColor)
}
.secondaryColor {
  color: var(--secondaryColor)
}
h1, h2, h3 ,
.xlTitle, .lgTitle {
  font-family: var(--titleFont);
  line-height: 1.2;
  color: var(--primaryColor);
}
.xlTitle, h1 {
  font-size: 50px;
}
.lgTitle, h2, h3 {
  font-size: 40px;
}

.headerCol {
	padding: 25px 0;
  background-color: var(--primaryColor);
  color: var(--white);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.fixedHeader .headerCol {
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 15px 0;
}
.logoCol img {
	width: 340px;
}

.headerRightText {
	font-size: 36px;
	font-family: var(--titleFont);
	font-weight: 500;
}

.bannerSection {
	padding: 50px 0 0px;
	position: relative;
	background-image: url('../images/banner-bg.jpg');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center top;
	margin-top: 90px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bannerSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.2);
}
.bannerContentMain {
  position: relative;
  z-index: 2;
}
.bannerLeftCol {
	width: 580px;
	padding-right: 120px;
}
.bannerLeftCol p {
	font-size: 18px;
	font-weight: 500;
}
.listStyle {
  padding-left: 20px;
	font-weight: 600;
	color: var(--primaryColor);
}

.bannerRightCol {
	position: relative;
	padding: 20px 20px 30px;
	background-color: var(--secondaryColor);
	color: var(--white);
	max-width: 380px;
	margin-left: auto;
	margin-bottom: -40px;
}
.bannerFormTitle {
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
}
.bannerFormTitle p.lgTitle {
	color: #fff;
}
.formStyle .form-control::placeholder,
.formStyle .form-control, .formStyle .form-select {
  color: #969696;
}
.formStyle .form-control:focus, .formStyle .form-select:focus {
  box-shadow: none;
}
.formStyle .form-control, .formStyle .form-select {
	background-color: #F2F2F2;
	border-color: transparent;
	border-radius: 30px;
	height: 44px;
	padding: 8px 20px;
	font-size: 14px;
}
.formStyle .form-select {
	padding-right: 35px;
	background-image: url('../images/angle-down.svg');
	-webkit-background-size: 14px 8px;
  background-size: 14px 8px;
	background-position: right 15px center;
}



.offCol {
	position: absolute;
	width: 118px;
	height: 138px;
	background-image: url('../images/off-bg.svg');
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: left top;
	color: var(--white);
	text-align: center;
	padding: 18px 20px 10px;
	font-size: 14px;
  line-height: 1.14;
	font-family: var(--titleFont);
	font-weight: 500;
	top: -17px;
	right: 14px;
}
.offHlt {
	display: block;
	font-size: 36px;
	font-weight: 700;
}


.sectionSpace {
  padding: 80px 0;
}
.titleCol {
  padding-bottom: 20px;
}
.titleCol .lgTitle + p, .titleCol h2 + p, .titleCol h3 + p {
	padding-top: 10px;
}
.titleCol p {
	font-size: 20px;
	font-weight: 500;
}

.cs1ImgCol, .imgStyle2 {
	border: 1px solid #E3E3E3;
	padding: 12px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.cs1Img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cs1ContentCol {
	padding: 20px 0;
	text-align: center;
}
.cs1Title {
	font-size: 36px;
	font-family: var(--titleFont);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--secondaryColor);
}

.imgStyle2 img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.contentCol > p + p {
  padding-top: 10px;
}
.contentCol > p + a {
  margin-top: 20px;
}

.bannerLeftCol h1 {
	padding-bottom: 8px;
  color: var(--primaryColor);
}

.footerCol {
	background-color: var(--primaryColor);
	color: var(--white);
	text-align: center;
	padding: 35px 0;
}

.mdTitle {
	font-size: 26px;
	font-weight: 500;
	font-family: var(--titleFont);
	margin-bottom: 3px;
}

/* media start */
@media (max-width:1399px) {
  .bannerLeftCol p, body {
    font-size: 16px;
  }
  .headerRightText {
  	font-size: 30px;
  }
  .logoCol img {
  	width: 300px;
  }
  .headerCol {
  	padding: 20px 0;
  }
  .bannerSection {
  	margin-top: 80px;
  }
  .bannerLeftCol {
  	width: 480px;
  	padding-right: 100px;
  }

  .xlTitle, h1 {
    font-size: 44px;
  }
  .lgTitle, h2, h3 {
    font-size: 36px;
  }
  .cs1Title {
  	font-size: 30px;
  }
  .titleCol p {
  	font-size: 18px;
  }
  .cs1Img {
  	height: 210px;
  }
  .imgStyle2 img {
  	height: 260px;
  }
  .footerCol {
  	padding: 25px 0;
  }

}

@media (max-width:1199px) {
  .bannerLeftCol {
  	width: 380px;
  	padding-right: 20px;
  }
  .xlTitle, h1 {
  	font-size: 40px;
  }
  .bannerRightCol {
  	padding: 35px 20px;
  }
  .bannerFormTitle {
  	/* text-align: left; */
    font-size: 16px;
  }
  .lgTitle, h2, h3 {
  	font-size: 30px;
  }
  .bannerLeftCol p, body {
  	font-size: 15px;
  }
  .titleCol p {
  	font-size: 16px;
  }
  .titleCol {
  	padding-bottom: 10px;
  }
  .sectionSpace {
  	padding: 60px 0;
  }
  .cs1ImgCol, .imgStyle2 {
  	padding: 6px;
  }
  .cs1Img {
  	height: 180px;
  }
  .imgStyle2 img {
  	height: 230px;
  }
  .cs1ContentCol {
  	padding: 15px 0;
  }
  .cs1Title {
  	font-size: 26px;
  }
  .contentCol > p + p {
  	padding-top: 0;
  }
  .contentCol > p + a {
  	margin-top: 5px;
  }
  .bannerSection {
  	/* background-position: top right; */
  }
  .bannerSection::before {
  	background-color: rgba(255,255,255,0.5);
  }
}

@media (max-width:991px) {
  .headerRightText {
  	font-size: 20px;
  }
  .logoCol img {
  	width: 240px;
  }
  .headerCol {
  	padding: 15px 0;
  }
  .bannerSection {
  	margin-top: 70px;
  	padding: 40px 0;
  }
  .bannerLeftCol {
  	width: 100%;
  	padding-right: 0;
  }
  .bannerLeftCol h1 {
  	padding-bottom: 0;
  }
  .cs1Img {
  	height: 140px;
  }
  .cs1ImgCol, .imgStyle2 {
  	padding: 3px;
  }
  .cs1ContentCol {
  	padding: 10px 0;
  }
  .cs1Title {
  	font-size: 22px;
  }
  .imgStyle2 img {
  	height: 320px;
  }
  .footerCol {
  	padding: 15px 0;
  	font-size: 14px;
  }
  .xlTitle, h1 {
  	font-size: 36px;
  }
  .bannerContentMain .listStyle {
  	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  	-webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  	font-size: 14px;
  }

  .bannerRightCol {
  	margin: 0;
  }
  .bannerSection {
  	background-position: left -70px top;
  }
  .mdTitle {
  	font-size: 26px;
  }

  .bannerRightCol {
  	margin: 0;
  	max-width: 450px;
  }
}
@media (max-width:768px) {
  .bannerSection {
  	background-position: left -140px top;
  }
}

@media (max-width:767px) {
  .xlTitle, h1 {
  	font-size: 32px;
  }
  .logoCol img {
  	width: 220px;
  }
  .headerRightText {
  	font-size: 18px;
  }
  .bannerSection {
  	margin-top: 65px;
  	padding: 30px 0;
  }
  .formStyle .form-control, .formStyle .form-select {
  	height: 46px;
  	padding: 8px 15px;
  	font-size: 13px;
  }
  .formStyle .form-select {
  	padding-right: 30px;
  }
  .bannerRightCol {
  	padding: 35px 20px;
  	max-width: 100%;
  }
  .offHlt {
  	font-size: 26px;
  }
  .offCol {
  	width: 100px;
  	height: 114px;
  	padding: 18px 20px 10px;
  	font-size: 13px;
  	top: -14px;
  }

  .btn {
  	font-size: 13px;
  }
  .cs1Img {
  	height: 300px;
  }
  .titleCol p {
  	font-size: 15px;
  }
  .bannerSection {
    background-position: left  top;
  }
}

@media (max-width:575px) {
  .bannerContentMain .listStyle {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    font-size: 14px;
  }
  .number {
  	display: block;
  }
  .headerRightText {
  	font-size: 14px;
  	line-height: 1.2;
  	text-align: right;
  }
  .logoCol img {
  	width: 200px;
  }
  .xlTitle, h1 {
  	font-size: 28px;
  }
  .bannerLeftCol p, body {
  	font-size: 14px;
  }
  .bannerContentMain .listStyle {
  	font-size: 13px;
  }
  .bannerRightCol {
  	padding: 25px 15px;
  }
  .sectionSpace {
  	padding: 50px 0;
  }
  .lgTitle, h2, h3 {
  	font-size: 24px;
  }
  .cs1Img {
  	height: 220px;
  }
  .imgStyle2 img {
  	height: 260px;
  }
  .bannerFormTitle {
  	font-size: 14px;
  	line-height: 1.2;
  }
  .footerCol {
  	font-size: 12px;
  }
  .bannerRightCol {
    max-width: 100%;
  }
}

@media (max-width:374px) {
  .xlTitle, h1 {
  	font-size: 26px;
  }
  .cs1Img {
  	height: 185px;
  }
  .imgStyle2 img {
  	height: 200px;
  }
  .logoCol img {
  	width: 190px;
  }
}
