@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,500;0,700;1,400&display=swap');

body{
  font-family: 'Ubuntu', sans-serif;
}
ul, li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
a, a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
:focus {
  outline: none;
}
.btn-check:focus+.btn, .btn:focus {
  box-shadow: none;
}
.btnSecondary {
  background: #F2994A;
  color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 18px 10px;
}

/* new page css starts */
.sm-container {
  max-width: 830px;
  margin: auto;
}
.domainName {
  position: relative;
  background: #142a80;
  background: -moz-linear-gradient(left,  #142a80 0%, #1a65b0 100%);
  background: -webkit-linear-gradient(left,  #142a80 0%,#1a65b0 100%);
  background: linear-gradient(to right,  #142a80 0%,#1a65b0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#142a80', endColorstr='#1a65b0',GradientType=1 );
  z-index: 5;
}
.domainName::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-img.svg");
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.15;
}
.domainCol {
  padding: 30px 0;
  min-height: 100vh;
}
.contentCol {
  padding: 40px 0;
}
.contentCol h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #fe8b35;
}
.contentCol p {
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;
  padding-top: 20px;
}
.customSearch .form-control {
  padding: 24px 240px 24px 88px;
  font-size: 19px;
  color: #000000;
  background-color: #fff;
  border-radius: 9px;
  border: none;
  box-shadow: 0 0 31px 0px rgba(0,0,0,0.10);
  -webkit-box-shadow: 0 0 31px 0px rgba(0,0,0,0.10);
  -moz-box-shadow: 0 0 31px 0px rgba(0,0,0,0.10);
}
.customSearch .form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.customSearch .form-control::placeholder {
  color: #BDBDBD;
}
.customSearch.input-group {
  position: relative;
}
.customSearch.input-group::before {
  content: "";
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  z-index: 99;
}
.customSearch .btn {
  font-size: 18px;
  font-weight: 500;
  width: 200px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 7px;
  border-radius: 5px;
  z-index: 99;
}
.customSearch .btn:hover {
  background: #015abe;
  color: #FFFFFF;
}
.customSearch .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}
.customSearch.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.getStarted h5 {
  font-size: 25px;
  font-weight: 500;
  color: #FE8B35;
  display: inline-block;
  padding: 0px 20px 10px 20px;
  border-bottom: 1px dashed #ABE1EA;
}
.getStarted {
  padding: 40px 0 30px 0;
}
.impLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.impLinks a {
  width: 230px;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 7px 25px;
  text-align: start;
  font-size: 16px;
  color: #2A2E36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  box-shadow: 0 30px 75px 0px rgba(0,37,105,0.5);
  -webkit-box-shadow: 0 30px 75px 0px rgba(0,37,105,0.5);
  -moz-box-shadow: 0 30px 75px 0px rgba(0,37,105,0.5);
}
.impLinks a + a {
  margin-left: 15px;
}
.impLinksImgCol img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.impLinksContentCol span {
  font-size: 16px;
  color: #2A2E36;
  line-height: 18px;
  display: block;
}
@media (min-width:1400px) {
	.container {
		max-width: 1230px;
	}
}
@media (max-width:1400px) {
	.impLinks a {
		padding: 7px 15px;
	}
}
