* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}
p {
  margin-bottom: 17px;
}
body {
  font-weight: normal;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--dark);
}

html,
body {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}


h1,h2,h3,h4,h5,h6{
  font-weight: 700;
}

h1, .h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}

h2,
.h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}

h3,
.h3{
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}

h4,
.h4{
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}

h5,
.h5{
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}

h6,
.h6{
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}


.cust-container-lg, .cust-container-md, .cust-container, .cust-container-sm {
  padding-left: 50px; padding-right: 50px;
}
.cust-container-lg {
  max-width: 1740px;
  width: 100%;
  margin: 0 auto;
}
.cust-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.cust-container-sm {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}
ul, ol{
  padding: 0; margin: 0;
}
ul, ol, li{
  list-style-type: none;
}

.social-link {
	display: flex;
}
.social-link a {
  width: 16px;
  height: 16px;
  display: block;
  transition: all 200ms ease-in; margin-right: 22px; background-size: cover !important;
}
.social-link a:last-child{
  margin-right: 0px;
}
.social-link a.insta-ico  {
  background: url("../images/insta-icon-white.png") no-repeat center;
}
.social-link a.fb-ico  {
  background: url("../images/fb-icon-white.png") no-repeat center;
}
.social-link a.linkdn-ico {
  background: url("../images/linkedin-icon-white.png") no-repeat center;
}
.social-link a.twitter-ico {
  background: url("../images/twitter-icon-white.png") no-repeat center;
}
.social-link a:hover {
  opacity: 0.5;
}
.menu-toggle {
  margin-right: 20px; cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 30px;
  height: 2px;
  background-color: var(--navy-blue);;
  margin: 8px 0;
    margin-left: 0px;
  transition: 0.4s; display: block;
}
.bar2 {
  margin-left: 10px;
}
.open-menu .bar1 {
  -webkit-transform: rotate(-45deg) translate(-7px, 6px);
  transform: rotate(-45deg) translate(-7px, 6px);
}
.open-menu .bar2 {
  opacity: 0;
}
.open-menu .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
.open-menu .bar1, .open-menu .bar2, .open-menu .bar3 {
  background-color: #fff;
}

.btn-theme {
	font-size: var(--body-font-size);
	min-width: 144px;
	height: 44px;
	text-align: center;
	padding: 0px 30px; font-weight: 500;
	background-color: var(--blue);
	color: var(--white);
	transition: all 300ms ease-in;
	display: inline-block;
	line-height: 42px;
  border-radius: 5px; border: 1px solid var(--blue);
}
.btn-theme:hover {
  background: var(--navy-blue);
  color: var(--white); border: 1px solid var(--navy-blue);
}

.btn-theme-dark {
	background-color: var(--navy-blue);
	border: 1px solid var(--navy-blue);
}
.btn-theme-dark:hover {
  background: var(--blue);
  color: var(--white); border: 1px solid var(--blue);
}

.navy-blue{
  color: var(--navy-blue);
}
/* theme-btn */
.box-shadow{
  box-shadow: 0 10px 20px rgba(0,0,0,.16)
}
.img-box {
  position: relative;
  overflow: hidden; padding-bottom: 100%; ;
}
.img-box img, .img-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; 
}
.img-box img{
  border-radius: var(--border-radius);
}
/* Form */
.form-control {
	font-size: var(--h6-font-size);
	color: var(--white);
	background-color: transparent !important;
	display: block;
	padding-right: 12px;
	padding-top: 0px;
	padding-left: 12px;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid #627595;
	height: 48px;
	padding-bottom: 9px;
	font-weight: normal;
}
select.form-control {
  background-color: var(--navy-blue) !important;
  background-image: url(../images/menu-arrow-mob.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
}
textarea.form-control {
  min-height: auto; height: auto;
}
.form-control:focus {
  color: var(--white);
  border-color: var(--white);
  outline: 0;
  box-shadow: none;
}
.form-check-input:focus {
  border-color: var(--green-grey-color);
  outline: 0;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder { /* Edge */
	color: #acacac; 
  }
  
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #acacac; 
  }
  
.form-control::placeholder {
	color: #acacac; 
}

.form-control-white.form-control::-webkit-input-placeholder { /* Edge */
	color: #acacac; 
  }
  
  .form-control-white.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #acacac; 
  }
  
.form-control-white.form-control::placeholder {
	color: #acacac; 
}

.overlay {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	background: rgb(16, 55, 122, 0.9);
	z-index: 1;
}

.bg-dark {
  background-color: var(--dark) !important;
}
.bg-light-gray{
  background-color: var(--light-gray);
}
.dark-gray-color{ color: var(--dark-gray-color); }

.owl-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy-blue) !important;
  border-radius: var(--border-radius);
}
.owl-nav button:hover{
  background-color: var(--navy-blue) !important; 
}
.owl-nav button span{
  display: none;
}
.owl-nav {
  text-align: center;
}
.owl-nav button.owl-prev {
  background-image: url(../images/back-arrow.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.owl-nav button.owl-prev:hover {
  background-image: url(../images/back-arrow-white.png) !important;
}
.owl-nav button.owl-next {
  background-image: url(../images/next-icon.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  margin-left: 25px;
}
.owl-nav button.owl-next:hover {
  background-image: url(../images/next-icon-hover.png) !important;
}