/*Common*/

/*Font Family*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

/*Varialbles*/
:root {
  --primary-color: #02006A;
  --secondary-color: #02A9E9;
  --gradient-one: linear-gradient(90deg, #001E4A 50%, #001E4A 0%);

  --primary-font-family: 'Figtree', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: var(primary-font-family);
}
::selection {
  color: var(--primary-color);
  background: var(--secondary-color);
}
img {
	max-width: 100%;
}
a {
	text-decoration: none;
}
ul, p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
ul {
    padding-left: 17px;
}
.vimeo-video iframe {
    height: 210px;
}
.uni-padding {
	padding: 90px 0;
}
.sec-head {
	font-size: 40px;
	font-weight: 700;
	color: #222222;
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 40px;
	padding-top: 50px;
}
.background-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.heading {
	font-size: 28px;
	line-height: 39.6px;
	font-weight: 700;
}
.para {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}
header, section {
	overflow: hidden;
}
.why-us .row,
.about-us .row {
	align-items: center;
}
.why-us .heading,
.about-us .heading {
	color: var(--primary-color);
}
.cstm-btn-sec {
	font-size: 20px;
	font-weight: 500;
	color: #FFFFFF;
	background-color: var(--secondary-color);
	border-radius: 12px;
	padding: 15px;
	border: 2px solid transparent;
	transition: all .5s ease !important;
}
.cstm-btn-sec:hover,
.cstm-btn-sec:active{
	color: var(--secondary-color);
	background-color: transparent;
	border-color: var(--secondary-color);
}
.btn:focus,
.btn:focus-visible,
.form-control:focus,
.form-control:focus-visible {
	box-shadow: none;
	outline: none;
}
textarea { resize: none; }
/*header, section {
	overflow: hidden;
}*/

/*Animations*/
[data-animate-in] {
    opacity: 0;
    transition: transform 0.9s ease, opacity 0.9s ease
}

[data-animate-in="up"] {
    transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
    transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
    transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
    transform: translate3d(0, -154px, 0)
}

[data-animate-in="fadeIn"] {
    transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease
}

.page-loaded .fade-in,.page-loaded.fade-in {
    opacity: 1
}

.isSafari.isTouch [data-animate-in],.isSafari.isTouch [data-animate-in="up"] {
    opacity: 1;
    transition: none;
    transform: none
}
.g-recaptcha {
  transform-origin: left top;
  -webkit-transform-origin: left top;
}

/*Header*/
header.primary-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 2;
}
header.primary-header.fixed-header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 2;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgb(103 151 255 / 10%), 0 12px 64px 0 rgb(103 151 255 / 10%);
}
header .custom-props {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*max-width: 70%;*/
  /*margin: 0 auto;*/
  /*padding: 15px 0;*/
}
header .custom-props .nav {
    padding: 1rem 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
}
header .logo {
    max-width: 150px;
  }
header #overlay {
  display: flex;
  justify-content: end;
  align-items: center;
  transition: all 0.5s ease-in-out;
  z-index:999;
}
header #overlay .nav-link {
  text-decoration: none;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  margin: 0 30px;
  padding: 0;
  transition: all 0.5s ease;
}
header #overlay .nav-link:first-child {
  margin-left: 0;
}
header #overlay .nav-link:last-child {
  margin-right: 0;
}
header #overlay .nav-link:hover {
    color: var(--secondary-color);
}


@media (min-width:992px) {
    header .custom-props .nav div#hamburger {
        display: none;
    }
}

/*Banner*/
.banner {
	position: relative;
	min-height: 700px;
	background-image: url("../images/banner.png");
	background-size: cover;
}
/*.banner:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-image: url("../images/banner.png");*/
/*	background-size: cover;*/
/*}*/
.banner:after {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.banner img {
	width: 100%;
}
.banner .banner-content {
	color: #FFFFFF;
	position: absolute;
	top: 35%;
	left: 12%;
	max-width: 607px;
}

/*Why Us*/
.why-us {
    overflow: hidden;
}
.why-us .custom-margin {
	margin-bottom: 80px;
}

/*About Us*/
.about-us {
	background-image: url("../images/about-us-bg.png");
}
.about-us .about-us-content .para:last-child {
	margin-top: 30px;
}

/*Product*/
.product .product-content .para a {
	color: var(--secondary-color);
}
.product .product-link {
	display: flex;
	align-items: center;
	border: 2px solid #DDDDDD;
	padding: 20px 39px 20px 25px;
	width: fit-content;
	border-radius: 20px;
	/*margin: 0 auto 30px;*/
}
.product video {
	border-radius: 20px;
	width: 555px;
	height: 310px;
}
.video-container {
 margin: 0 auto;
 position: relative;
 display: flex;
 justify-content: center; 
 margin-bottom: 47px;
}
.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  width: 75px;
  height: auto;
}
.play-button-wrapper #circle-play-b svg {
 fill: rgba(0, 0, 0, 0.6);
 cursor: pointer;
}
.video-container a {
	font-size: 20px;
	font-weight: 500;
	color: #FFFFFF;
	position: absolute;
	bottom: 22px;
	left: 72px;
}
.video-container .time {
	color: #FFFFFF;
	background: #000;
	border-radius: 7px;
	padding: 2px 7px;
	position: absolute;
	bottom: 22px;
	right: 72px;
}
.product .product-link img {
	margin-right: 18px;
	-webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.product .product-link a {
	color: var(--secondary-color);
}

/*Contact Us*/
.contact-us form {
	font-size: 20px;
	color: #666666;
	max-width: 60%;
	margin: 0 auto;
}
.contact-us .form-control {
	background-color: #F2F8FF;
	border: none;
	min-height: 65px;
	border-radius: 12px;
}
.contact-us .devider {
	position: relative;
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 500;
	color: #999999;
	text-align: center;
	padding: 20px;
	border-bottom: 1px solid #999999;
}
.contact-us .devider:before {
	position: absolute;
	content: 'or';
	background-color: #FFFFFF;
	display: inline-block;
	padding: 2px;
	width: 100%;
	height: 100%;
	top: 27px;
	left: 0;
}
.contact-us .contact-details {
	text-align: center;
	padding-top: 20px;
	font-size: 25px;
	font-weight: 700;
	color: #222222;
}
.contact-us .contact-details a {
	font-size: 20px;
	font-weight: 500;
	color: var(--secondary-color);
}
.contact-us .custom-padding-left {
	padding-left: 0;
}
.contact-us .custom-padding-right {
	padding-right: 0;
}
.divider {
	display: flex;
	color: #999999;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0;
}
.divider:before, .divider:after {
	content: "";
	flex: 1;
}
.line {
	align-items: center;
	margin: 20px 0;
}
.line:before, .line:after {
	height: 1px;
	margin: 0 20px;
	width: 100%;
}
.one-line:before, .one-line:after {
	background: #DDDDDD;
}

/* Footer */
footer {
	background-color: #001C26;
	padding: 45px 0 38px;
}
footer a {
	font-size: 18px;
	font-weight: 400;
	color: #FFFFFF;
	transition: all .5s ease;
}
footer .sec-devider {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .sec-two,
footer .sec-three {
	display: flex;
}
footer .sec-two .policy {
	margin-right: 49px;
}
footer .sec-two .policy:last-child {
	margin-right: 0;
}
footer .sec-three .social {
	margin-right: 26px;
}
footer .sec-three .social:last-child {
	margin-right: 0;
}
footer .sec-three .social a {
	font-size: 24px;
    color: #001C26;
    background-color: #FFFFFF;
    border-radius: 100%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .sec-three .social:first-child a {
	align-items: flex-end;
}
footer a:hover,
footer .sec-three .social a:hover {
	color: var(--secondary-color);
	border-radius: 0;
}

/* Copyright */
.copyright {
	color: #FFFFFF;
	background-color: #001C26;
	text-align: center;
}
.copyright .copyright-content {
	opacity: .8;
	border-top: 1px solid rgba(255, 255, 255, .6);
	padding: 20px 0;
}





label.form-label {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.6px;
}
span.required {
    color: red;
    font-size: 22px;
}
.messages button.close {
    width: 35px;
    height: 35px;
    background-color: #78585b;
    color: #fff;
    border: medium none;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 20px;
    line-height: 35px;
}
.messages .alert-success button.close {
    background-color: #0f5132;
}

/*Policy and T&C Pages*/
section.policy-section .inner-content h1, section.policy-section .inner-content h2, section.policy-section .inner-content h3, section.policy-section .inner-content h4, section.policy-section .inner-content h5, section.policy-section .inner-content h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
	color: #383D7B;
}
section.policy-section .inner-content h1 {
    color: #383D7B;
    font-size: 32px;
}
section.policy-section .inner-content h2, section.policy-section .inner-content h3, section.policy-section .inner-content h4 {
    font-size: 22px;
    font-weight: 700;
}
section.policy-section .inner-content h5, section.policy-section .inner-content h6 {
	font-size:18px;
	font-weight: 600;
}

p, ul {
    margin-bottom: 15px;
}

@media only screen (min-width:768px) {
    .banner-thumbnail img {
        /*height: 400px;*/
        /*width: 400px;*/
    }
	.tinybit-thumbnail .sub-heading {
		bottom: 120px;
	}
}

@media (min-width:992px) {
    .vimeo-video iframe {
    width: 100%;
    height: 350px;
}
	.para, p, li {
		font-size: 17px;
	}
    .banner-thumbnail img {
        /*height: 600px;*/
        /*width: 600px;*/
    }
    .tinybit-thumbnail.left-align {
        margin-left: -100px;
    }
    .tinybit-thumbnail.right-align {
        margin-right: -100px;
    }
    .product .location-image img, .product .translator-image img {
        /*min-width: 200px;*/
        /*max-width: 50%;*/
    }
}
@media (min-width:1200px) {
    .tinybit-thumbnail.left-align {
        margin-left: -180px;
    }
    .tinybit-thumbnail.right-align {
        margin-right: -180px;
    }
    .banner-thumbnail img {
        /*height: 600px;*/
        /*width: 600px;*/
    }
}

@media (max-width:400px) {
	.tinybit-thumbnail .sub-heading {
		bottom: 64px;
		font-size: 20px;
	}
}







