
=/*
Template Name: Sendy
Template URL: https://ultimatewebsolutions.net/sendy/
Author: Ultimate Websolutions
Author URL: https://codecanyon.net/user/ultimatewebsolutions/

[Table of contents]

01. PRELOADER
02. GENERAL
03. HEADER
04. SUB HEAEDR
05. FOOTER
06. CONTAINERS
07. FORM ELEMENTS 
08. CONTACT INFO
09. BACK TO TOP
10. SUCCESS SUBMIT
11. RESPONSIVE

/* Preloader
==================================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-color: #fff;
	z-index: 3;
}

[data-loader="circle-side"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 3px solid #53c4da;
	border-top-color: rgba(0, 0, 0, 0.2);
	border-right-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
  }
  100% {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

/* General
==================================== */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
}

body {
  background: #f8f8f8;
  font-size: 14px;  
  font-family: "Poppins", sans-serif;
  color: #555;  
}

main {
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

h1,
h2 {  	
  	font-weight: 700;  	
}

hr {
	margin: 15px 0 30px 0;	
	border-color: #ededed;
}

p {
	margin-top: 25px;
	margin-bottom: 30px;
}

a {
	color: #53c4da;
	text-decoration: none;	
	outline: none;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;	
}
a:hover, 
a:focus,
a:visited {
	color: #333;
	text-decoration: none;
	outline: none;		
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

p {
  margin-bottom: 25px;
}

p.lead {
  font-weight: 400;
  font-size: 20px;
  color: #555;  
}

strong {
  font-weight: 600;
}

label {
	color: #555;  	
  	font-size: 14px;
  	font-weight: 500;  
  	margin: 0;
}

button:focus {
	outline: none;
}

.underline-link {
	color: #53c4da;
	text-decoration: none;	
	outline: none;
}
.underline-link:hover {
	color: #53c4da;
	text-decoration: underline;
	outline: none;
}

/* Header
==================================== */

header {
	background-color: #fff;
	min-height: 55px;
	padding: 10px 0;
	border-bottom: 1px solid transparent;
}

header.main-header {
	width: 100%;
	z-index: 2;
	position: relative;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

header.main-header.sticky {
	border-bottom: 1px solid #fff;
	/* position: fixed; */
	/* left: 0; */
	/* top: 0; */
	/* z-index: 2; */
}

header.main-header.active {
	border-bottom: 1px solid #ddd;
}

header.static {
	position: static;
	border-bottom: 1px solid #ddd;
	z-index: 2;
	position: relative;
}

/* Header Menu Color */

.main-menu > ul > li span:hover > a {
    color: #53c4da;
}

.main-menu ul ul {    
    border-top: 2px solid #53c4da;
}

.main-menu ul ul li:hover > a {   
    color: #53c4da;   
}

.main-menu ul ul li span > a:hover {	
	color: #53c4da;
}

/* Header Menu Chevron Down */

.main-menu a i {
	font-size: 9px;
	margin-left: 2px;
}

/* Header Icons */

ul#menuIcons {
	float: right;
	position: relative;
	top: 3px;
	margin: -1px 0 0 0;
}

ul#menuIcons li {
	display: inline-block;
	position: relative;
	padding: 0;
	margin-left: 15px;
}

ul#menuIcons li i {
  	font-size: 34px;  
}

ul#menuIcons li a {
  	color: #53c4da;
}

ul#menuIcons li a:hover {
  	color: #333;
}

/* Logo */

#logo h1 {
	margin: 0;
	padding: 0;
	line-height: 1;
}

#logo h1 a {
	width: 149px;
	height: 35px;
	display: block;
	background: url(../img/logo.aqua.svg) no-repeat 0 0;
	background-size: 149px 35px;
	text-indent: -9999px;
}

/* Sub Header
==================================== */


.sub-header {
	background-color: #53c4da;
	padding: 15px 0;
	margin-top: 59px;	
}

.sub-header h1 {
    color: #fff;
    margin: 0;
	font-size: 24px;
	font-weight: 500;
}

/* Footer
==================================== */

footer.main-footer {
	background-image: url(../img/footer.jpg);
	padding-top: 30px;
	padding-bottom: 50px;
	/* color: #555; */
	/* background: #fff; */
	/* border-top: 1px solid #ddd; */
}

footer.main-footer ul.nav-links li i {
	font-size: 13px;
}

.footer-heading {
	margin-bottom: 1.25rem;
	font-weight: 600;
}

.footer-link {
	color: #555;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;	
}
  
.footer-link:hover, .footer-link:focus {
	text-decoration: underline;
} 

.contact-links i {
	color: #53c4da;
	margin-right: 10px;
	font-size: 18px;
	vertical-align: middle;
}

.social-link {
	color: #999;
	opacity: 0.6;
	font-size: 20px;
	font-weight: 400;
	margin-right: 10px;
}

.social-links li {
	display: inline-block;
}

footer #copy {
	text-align: right;
	font-size: 13px;
	font-size: 0.8125rem;
	color: #999;
}

/* Sub Footer Links */

ul#subFooterLinks {
	margin: 0;
	font-size: 13px;
	font-size: 0.8125rem;
	color: #999;
}

ul#subFooterLinks li {
	display: inline-block;
	margin-right: 15px;
}

ul#subFooterLinks li:first-child {
	margin-right: 20px;
}

ul#subFooterLinks li:last-child:after {
	content: "";
}

ul#subFooterLinks li a {
	color: #999
}

ul#subFooterLinks li a:hover {
	text-decoration: underline;
}

ul#subFooterLinks li:after {
	content: "|";
	font-weight: 300;
	position: relative;
	left: 10px;
}

ul#subFooterLinks i {
	color: #53c4da;	
}

/* Containers
==================================== */

.contact {
	padding: 30px 0;
}

.box {
	position: relative;
	background: #fff;
  	margin: 0;
	padding: 30px 15px 15px 15px;
	border: 1px solid #ddd;
	border-top: none;
}

.box.first {	
	border-top: 1px solid #ddd;	
}

.box-header {
	margin: 0 15px 20px 15px;
	width: 100%;
	border-bottom: 2px dotted #ddd;	
}

.box-header h3 {
	margin-left: 50px;
	font-size: 20px;	
	color: #555;	
}

.box-header h3 strong {
	background-color: #53c4da;
	text-align: center;
	width: 40px;
	height: 40px;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;	
	line-height: 42px;
	text-align: center;
	position: absolute;
	left: 30px;
    top: 22px;
}

.box-header p {	
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #999;
}

.box-link,
.box-link:focus,
.box-link:active,
.box-link:visited {
	color: #555;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #ddd;
    background: #fff;
    margin-left: 5px;
    padding: 4px 8px;
    position: absolute;
    top: -1px;
    right: -1px;
}

.box-link:hover {
	background: #53c4da;
	border: 1px solid #53c4da;
	color: #fff;
}

/* Form Elements
==================================== */

/* Fields, Textareas */

input.form-control,
form-control,
textarea.form-control {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background: transparent;
	border: none;
	border: 1px solid #ddd;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: none;
	height: 40px;
  	font-family: 'Poppins', sans-serif;
  	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	resize: none;
}

input.form-control:focus,
textarea.form-control:focus {
	background: transparent;
	border-color: #53c4da;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #555;
	-webkit-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

input.form-control:disabled {
	border: none;
}

#inputMessage {
	height: 180px;	
}

/* Nice Select Dropdown */

.nice-select {
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border-radius: 0;
	border: 1px solid #ddd;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	height: 45px;
	line-height: 42px;
	outline: none;
	margin-top: 0;
	margin-bottom: 10px;
	padding-left: 15px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: 100%;
	text-align: right !important;
}

.nice-select:hover {
	border-color: #53c4da;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #53c4da;
}

.nice-select:after {
	border-bottom: 1px solid #53c4da;
	border-right: 1px solid #53c4da;
	content: '';
	display: block;
	height: 10px;
	margin-top: -8px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 10px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	width: 100%;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	text-align: right;
	max-height: 50vh;
	overflow-y: scroll;
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;	
}

.nice-select.border-bottom-only {
	border: none;
	border-bottom: 1px solid #ddd;
	padding-left:0;	
}

.nice-select.wide .list {
	left: -1px !important;
	right: -1px !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	border: 1px solid #53c4da;
	border-radius: 0;
	box-sizing: border-box;  
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 15px;
	padding-right: 15px;
	text-align: right;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #fafafa;	
}

.nice-select .option.selected {
	font-weight: bold;
	text-align: right;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

/* Uploader */

.filepond--root {    
    margin-bottom: 0;    
}

/* Placeholders */

.form-control::-webkit-input-placeholder { /* Chrome */
	color: #ccc;
	/*font-style: italic;*/
	font-family:'Dinar';
	font-size:19px
}

.form-control:-ms-input-placeholder { /* IE 10+ */
	color: #ccc;
	/*font-style: italic;*/
	font-family:'Dinar';
}

.form-control::-moz-placeholder { /* Firefox 19+ */
  	color: #ccc;
	opacity: 1;
	/*font-style: italic;*/
	font-family:'Dinar';
}

.form-control:-moz-placeholder { /* Firefox 4 - 18 */
  	color: #ccc;
	opacity: 1;
	/*font-style: italic;*/
	font-family:'Dinar';
}

/* Form Buttons */

.btn-form-func {
	background: #53c4da;
	border-radius: 4px;
	border: 2px solid #53c4da;
	color: #fff;
	display: inline-block;
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-decoration: none;
	line-height: 1;
	width: 100%;
	font-weight: 600;
	margin-bottom: 10px;
}

.btn-form-func:hover {
	color: #fff;
}

.btn-form-func .btn-form-func-content {
	font-size: 1em;
	line-height: 1.2;
	padding: 0 15px;
	position: relative;
	right: 0;
	transition: right 300ms ease;
	display: block;
	text-align: left;
}

.btn-form-func .icon {
	border-left: 1px solid #fff;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transition: all 300ms ease;
	transform: translateY(-50%);
	width: 58px;
	height: 70%;
}

.btn-form-func .icon i {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.btn-form-func:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: transparent;
	opacity: 0;
	transition: opacity 300ms ease;
}

.btn-form-func:hover .btn-form-func-content {
  	right: 100%;
}

.btn-form-func:hover .icon {
	border-left: 0;
	font-size: 1.4em;
	width: 100%;
}

.btn-form-func:hover:after {
  	opacity: .2;
}

.btn-form-func.btn-form-func-alt-color {
	background: #fff;
	border-color: #53c4da;
	color: #53c4da !important;
}

.btn-form-func.btn-form-func-alt-color .icon {
  	border-left-color: #53c4da;
}

.btn-form-func.btn-form-func-alt-color:after {
  	background-color: transparent;
}

/* Checkboxes */

label.cbx.terms {    
	margin: 0;
	padding: 0;
	border: 0; 
	height: 22px;	
}

label.cbx {	
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
	border: solid 1px #ddd;
    height: 45px;
    padding: 10px 15px;
	width: 100%
}

.cbx {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}

.cbx span {
	display: inline-block;
	vertical-align: middle;  
	font-size: 14px;
	font-weight: 500;
}

.cbx span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	transform: scale(1);
	vertical-align: middle;
	border: 1px solid #53c4da;
	transition: all 0.2s ease;
	margin-right: 10px;	
}

.cbx span:first-child svg {
	position: absolute;
	top: 3px;
    left: 2px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #53c4da;
	display: block;
	transform: scale(0);
	opacity: 1;
	border-radius: 50%;
}

.cbx:hover span:first-child {
  	border-color: #53c4da;
}

.inp-cbx {
  	display: none;
}

.inp-cbx:checked + .cbx span:first-child {
	background: #53c4da;
	border-color: #53c4da;
	animation: wave 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
  	stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
	transform: scale(3.5);
	opacity: 0;
	transition: all 0.6s ease;
}

@keyframes wave {
	50% {
		transform: scale(0.9);
	}
}

/* Terms Link */

.terms-link,
.terms-link:visited {
	text-decoration: none;
  	color:#53c4da;
  	margin-left: 5px;
  	transition: none;
}

.terms-link:hover {
  	color:#53c4da;
  	text-decoration: underline;
}

/* Form Validation */

.parsley-errors-list.filled {  
	font-size: 10px !important;
	text-transform: uppercase;
	border: 1px solid #e34f4f;
	background-color: #e34f4f;
	color: #fff;
	padding: 2px 0 0 3px !important;
	margin: 10px 0 10px 0 !important;
	list-style-type: none;
	opacity: 0;
}

.parsley-errors-list.filled {
	opacity: 1;
}

.parsley-errors-list.filled:before {
	content: '';
	display: block;
	margin-top: -9px;
	pointer-events: none;
	position: absolute;
	border-bottom: solid 6px #e34f4f;
	border-left: solid 6px transparent;
	border-right: solid 6px transparent;
}

/* Contact Info
==================================== */

.contact-box {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 25px;	
	margin-bottom: 15px;
	text-align: center;
	font-size: 15px;	
  }

.contact-box h2 {
	font-weight: 500;
	margin: 10px 0 10px 0;
	font-size: 20px;	
}

.contact-box i {
	font-size: 46px;	
	color: #53c4da;
}

.contact-box a {
	color: #555;
}

.contact-box a:hover {
	color: #53c4da;
	text-decoration: underline;
}

/* Back To Top
==================================== */

#toTop {
	width: 40px;
	height: 40px;
	background-color: black;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
	padding: 10px;
	line-height: 20px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
	display: none;
	color: #fff;
	font-size: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	z-index: 2;
}

/* Success Submit
==================================== */

#success {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 190px;
	margin-top: -85px;
	margin-left: -150px;
	text-align: center;
}

#success h4 {
	margin-top: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
}

@-webkit-keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@-ms-keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@keyframes checkmark {
	0% { stroke-dashoffset: 50 }
	100% { stroke-dashoffset: 0 }
}

@-webkit-keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

@-ms-keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

@keyframes checkmark-circle {
	0% { stroke-dashoffset: 240 }
	100% { stroke-dashoffset: 480 }
}

.inlinesvg .svg svg {
	display: inline
}

.icon-order-success svg path {
	-webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
	animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon-order-success svg circle {
	-webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
	animation: checkmark-circle 0.6s ease-in-out backwards
}

/* Responsive
==================================== */

@media (max-width: 767px) {	
	/* Footer
	==================================== */
	footer #copy {		
		text-align: left;
		margin-bottom: 25px;
	}
	footer ul li {
		margin-bottom: 10px;
	}
}

@media (max-width: 991px) {		
	/* Header
	==================================== */
	header.main-header.sticky {		
		position: static;
	}
	header .container {	
		width: 100% !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding-right: 15px !important;
		padding-left: 15px !important;
		width: 100% !important;
		max-width: 100%;
	}
	/* Header Menu Chevron Down */
	.main-menu a i {
		display: none;
	}	
	/* Header Icons */
	ul#menuIcons {		
		right: 0;
		top: 2px;
	}	
	/* Logo */
	#logo {
		position: relative;
		left: 45px;
	}
	/* Sub Header
	==================================== */
	.sub-header {
		margin-top: 0;
	}		
	/* Containers
	==================================== */		
	.contact {
		padding: 15px 0 0 0;
	}
	/* Contact Info
	==================================== */
	.contact-box {
		margin-top: 15px;
	}	
	
}
.right-logo{
	height: 85px;
}
.logo{
	/* height: 85px; */
	/* max-width: 100%; */
	max-width: 100%;
	margin-top: 15px;
}
.header_menu{
	padding: 0;
	text-align:center;
}
.header_menu li{
	display:inline-block;
	line-height:70px;
	padding: 4px 30px;
	border-bottom: 3px solid #eee;
	margin:-5px;
}
.header_menu li.active{border-bottom: 3px solid #0f7981;color: #0f7981;}
.header_menu li.active a{
	color: #0f7981;
}
main{
   /* padding-top: 200px; */
   background: #fff;
}
.img-responsive{
	max-width: 100%;
}
.side_contact_header{
	color: #9da1a4;
}
.side_colum{
	background-color: #f5f7f6;
	padding: 30px;
	padding-top: 60px;
	position: relative;
	z-index: 2;
	padding-bottom: 0;
}
.form-holder{
	position: relative;
	padding-top: 200px;
}
.contatct-img{
	position: absolute;
	top: 0;
	left: 75px;
	width: calc(100% - 150px);
	max-height: 546px;
	z-index: 1;
}
.flag-img{
	position: absolute;
	width: 100px;
	top: -50px;
	right: calc(50% - 50px);
}
.item-holder{
	display: table;
    width: 100%;
    font-family: 'Bahij';
	margin-bottom: 20px;
}
.item_title{
	display: table-cell;
	width: 30%;
	text-align: center;
	vertical-align: middle;
	background: #cfd3d6;
	font-size: 15px;
	font-family: 'Dinar';
	font-weight: bolder;
}
.item_input input{
	margin-bottom:15px;
	
}
.item_input input:last-child{
	margin-bottom:0;
	
}
.item_input{
	display: table-cell;
    width: 70%;
    padding-right: 15px;
}
.main_colum{padding-right: 40px;z-index: 0;}
.main_colum_content{
	background: #f5f7f6;
	padding-top: 250px;
	padding-right: 30px;
	padding-left: 15px;
}
.input_lable{
	color: #dadcdb;
	font-family: 'Bahij';
	padding-left: 40px;
	border: 1px solid #dadcdb;
	line-height: 38px;
	padding-right: 10px;
	position: relative;
	width: 100%;
	font-size: 14px;
}
.input_lable input[type='radio']{
	position: absolute;
	top: 9px;
	left: 10px;
	width: 20px;
	height: 20px;
	accent-color: #007381;
    
}
.main_colum_content .form-control{
	margin-bottom:15px
}
.input_lable .upload-input{
	opacity:0;
	width: 100%;
	position: absolute;
	left: 0;
	height: 100%;
}
.input_lable .upload_icon{
	position:absolute;
	left:10px;
	top: 10px;
	width: 20px;
}
.input_lable img{
	width: 20px;
}
.item_input label:last-child{
	margin-bottom:0
}
.header_label{
	font-family: Dinar;
	width: 100%;
	background: #cfd3d6;
	text-align: center;
	line-height: 40px;
	font-size: 17px;
	font-weight: bold;
}
.certificate_holder .input_lable{
	text-align: center;
	padding-left: 0;
	font-family: 'Dinar';
	font-size: 14px;
	font-weight: bold;
}
.certificate_holder{
	display: table;
}
.certificate_title{
	position: relative;
	display: table-cell;
	margin-bottom: 20px;
}
.certificate_title:before{
	content:' ';
	position:absolute;
	width: calc(100% - 25px);
	height:100%;
	left: 15px;
	border:1px solid #dadcdb;
}
.center {
	/* border: 3px solid #73AD21; */
	padding: 10px;
	text-align: center;
	font-family: 'Dinar';
	font-size: 17px;
	font-weight: bolder;
	color: #dadcdb;
	}
  .certificate_holder .input_lable:last-child{
	margin-bottom: 0;
  }
  .form_footer{
	margin-top: 40px;
  }
  .gray{
	   background-color: #f5f7f6;
	    padding: 45px 20px;
   }
   .gray .item_input{
	text-align: center;
   }
   /* .gray .item_title{
		width: 47%;
   } */
   .medium h4{
	font-size: 18px;
	text-align: center;
	font-family: Dinar;
	font-weight: bold;
	margin-bottom: 20px;
	}
	.medium input{
		margin-bottom: 15px;
	}
	.gray input{
		margin-bottom: 15px;
	}
	.header_p {
		font-family: Dinar;
		width: 100%;
		background: #cfd3d6;
		text-align: center;
		/* line-height: 40px; */
		font-size: 17px;
		font-weight: bold;
		padding: 15px;
	}
	.submit_footer{
		background-color: #384555;
	}
	.submit_footer button{
		color: #0f7981;
		background-color: #fff;
		font-family: 'Dinar';
		font-size: 20px;
		padding: 5px 30px;
		border-radius: 0;
		font-weight: bold;
	}
	.footer_soccial{
		padding: 0;
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}
	.footer_soccial li{
		display: inline-block;
		margin-left: 6px;
	}
	.footer_soccial a{
		color: #fff;
		border: 1px solid #f5f7f6;
		height: 30px;
		width: 30px;
		display: block;
		border-radius: 50%;
		line-height: 30px;
		text-align: center;
	}
    .footer_links{width: 50%;float: left;text-align: right;border-left: 2px solid #f5f7f6;}
	.footer_links li{
    margin-bottom: 6px;
}
	.footer_links li a{
		color: #fff;
		font-family: 'Dinar';
		font-size: 13px;
		font-weight: bold;
	}
.footer_links li:first-child a{
		color: #fff;
		font-family: 'Dinar';
		font-size: 22px;
		font-weight: bolder;
	}


.footer_links.last_ul {
	width: 100%;
	border-left: none;
	border-right: 2px solid #f5f7f6;
	padding-right:15px;
}
.footer_links.last_ul a{
	padding-right:25px;
	display:block;
	position:relative;
}
.footer_links.last_ul a .icon{
	position:absolute;
	right:0;
	top:5px
}
@media (max-width:1200px)  {
	.header_menu li {
		padding: 4px 15px;
	}
}
@media(min-width:992px){ 
        nav#menu.main-menu {
            display: none !important;
        }
        
}
@media(max-width:991px){
	.header_menu {
		display:none;
	}
	.mm-menu.mm-offcanvas{
            width:100% !important;
        }
	.header_log{
		text-align: right;
	}
	.mm-listview>li{
	    text-align:center;
	}
	#logo{
		display:none
	}
	.contatct-img{
		position:initial;
		width:100%;
		margin-bottom: 15px;
	}
	.form-holder{
		padding-top:15px
	}
	.main_colum{
		margin-top:15px;
		padding:0;

	}
	.main_colum_content{
		padding-top:15px;
	}
	.footer_links,.footer_links.last_ul{
		width: 100%;
		border-left: none;
		border-right: none;
	}
	footer.main-footer {
		background-color: #01787e;
		background-image: none;
	}
}

.other_teaching_specials{
	display: none;
}
.other_teaching_specials.show{
	display: block;
}
#page{
	overflow-y: hidden;
}
.unviersty_name{
	display: none;
}
.unviersty_name.show{
	display: block;
}
#add_skill{
	color: #01787e;
    font-size: 22px;
    cursor: pointer;
}
.skill_item{
	position: relative;
    padding-top: 20px;
    margin-top: 31px;
}
.remove_skill{
	position: absolute;
    left: 0;
    font-size: 22px;
    cursor: pointer;
    top: -13px;
}
.skill_item span{
	position: absolute;
    left: calc(50% - 12.5px);
    top: -15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #0a7b7f;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
}
.home_section{
	background-image: url('../img/half_gray.png');
	background-size: 100%;
	padding-top: 50px;
	background-repeat: no-repeat;
	background-position: bottom;
}
.p_section{
    background: #f5f6f7;
    padding-top: 40px;
}
.p_section p{
	font-size: 19px;
	text-align: center;
	font-family: 'Dinar';
	line-height: 35px;
}
.goal_section{background-color: #384554;padding: 50px 0;color: #fff;text-align: center;}
.goal_section h1{color: #ffffff;font-family: 'Bahij';}
.goal_section p{
	font-family: 'Dinar';
	font-size: 19px;
}
.require_section{padding: 50px 0;text-align: right;background-image: url(../img/gray_up.jpg);background-size: 100% 590px;background-repeat: no-repeat;}
.require_section p{font-family: 'Dinar';font-size: 18px;font-weight: bold;word-spacing: 5px;line-height: 30px;}
.require_section h1{font-family: 'Bahij';font-size: 28px;color: #a8acb1;}
.require_section ul{

}
.require_section li{font-family: 'Dinar';font-size: 16px;color: #384554;position: relative;padding-right: 30px;line-height: 30px;margin-bottom: 5px;max-width: 950px;font-weight: 600;}
.require_section li:before{
	content:'';
	position: absolute;
	width: 20px;
	height: 20px;
	background: #00787d;
	right: 0;
	top: 5px;
	border-radius: 50%;
}
.training_section {
	padding:50px;
	text-align:right;
}
.training_section h1{
	font-family: 'Bahij';
	font-size: 28px;
	color: #a8acb1;
}
.training_section p{
	    font-family: 'Dinar';
	    font-size: 20px;
	    font-weight: bold;
	    word-spacing: 5px;
}
.qualifications_section{
	padding:50px;
	background-color: #076152;
}
.qualifications_section h1{text-align: center;font-family: 'Bahij';font-size: 28px;color: #a8acb1;}
.qualifications_section p{
	color: #fff;
	text-align: center;
	font-size: 19px;
	font-family: 'Dinar';
}
.qualifications_section .col-md-4{
	text-align: center;
}
.qualifications_section .col-md-4 span{
	color: #076152;
	height: 30px;
	display: inline-block;
	width: 30px;
	background: #fff;
	border-radius: 50%;
	line-height: 30px;
	font-size: 18px;
}
.qualifications_section .col-md-4 p{
	background: #247567;
	height: 200px;
	padding: 20px;
}
.table_section{
	background: #014f5c;
	text-align: center;
	padding-top: 70px;
	background-image: url('../img/line.jpg');
	background-repeat: no-repeat;
	background-size: 100% 20px;
}
.table_section img{
	max-width:100%
}
.training_header{
	margin-top: 40px;
}
.qualification_section{
	padding: 50px;
	text-align:right;
}

.qualification_section h1{
	text-align:center;
	font-size:25px;
	color:#384554;
	font-family: 'Bahij';
	margin-bottom: 41px;
}
.qualification_section h1 span{
	border-bottom: 4px solid #ebecee;
	padding-bottom: 10px;
}
.qualification_section h2{
	color:#aeb1b6;
	text-align:right;
	font-size: 20px;
	margin-bottom: 30px;
}
.qualification_section h3{
	font-family: 'Dinar';
	font-size: 19px;
	font-weight: bold;
	line-height: 25px;
	margin-top: 15px;
	word-spacing: 4px;
}
.qualification_section p{
	font-family: 'Dinar';
	font-size: 20px;
	line-height: 29px;
	word-spacing: 4px;
}
.qualification_section .col-md-8 .item{
	border: 2px solid #aaafb6;
    margin-left: 40px;
    padding: 20px 30px;
}
.item ul{

}
.item li{
	font-family: 'Dinar';
	font-size: 16px;
	color: #384554;
	position: relative;
	padding-right: 30px;
	word-spacing: 5px;
	line-height: 30px;
	margin-bottom: 5px;
	max-width: 950px;
	font-weight: 600;
}
.item li:before{
	content:'';
	position: absolute;
	width: 20px;
	height: 20px;
	background: #00787d;
	right: 0;
	top: 5px;
	border-radius: 50%;
}

.qualification_section .col-md-4 .item {
    border: 2px solid #aaafb6;
    margin-left: 47px;
    padding: 20px 30px;
}
.qualification_section .col-md-4  h3 {
    margin-bottom: 15px;
}
.gray_section{
	text-align: center;
	background: #ebecee;
	padding: 50px 0;
}
.gray_section h1{text-align: center;font-family: 'Bahij';font-size: 28px;color: #a8acb1;}
.gray_section p{font-family: 'Dinar';font-size: 19px;color: #384554;word-spacing: 5px;font-weight: bold;}

.partner1{
	padding-top: 35px;
	padding-bottom: 50px;
}
.partner_item{
	text-align: center;
}
.partner_item img{
	max-width:255px;
	margin-top: 30px;
}
.partner_item p{font-family: 'Dinar';font-size: 20px;line-height: 30px;font-weight: 700;word-spacing: 5px;margin-top: 20px;}

.gray_partner{
	padding: 50px 0;
	background: #f5f6f8;
	text-align: center;
}
.gray_partner img{
	max-width: 140px;
}
.gray_partner h1{
	text-align: center;
	font-family: 'Bahij';
	font-size: 28px;
	color: #a8acb1;
}
.gray_partner p{
	font-size: 19px;
	font-family: 'Dinar';
	font-weight: 700;
	word-spacing: 2px;
}
.blue_partner{padding: 50px;text-align: right;background-image: url(../img/blue_bg.jpg);background-size: 100% 329px;background-repeat: no-repeat;}
.blue_partner h1{
	font-family: 'Bahij';
	font-size: 28px;
	color: #a8acb1;
}
.blue_partner .eg_p{
	font-family: 'Dinar';
	font-size: 18px;
	line-height: 29px;
	word-spacing: 5px;
	margin-top: 20px;
	padding-top: 15px;
	color: #fff;
}
.blue_partner .sudi_h1{
	margin-top: 35px;
	margin-bottom: 0;
}

.blue_partner .sudi_p{
	font-family: 'Dinar';
	font-size: 17px;
	line-height: 27px;
	word-spacing: 2px;
	font-weight: 700;
	margin-top: 15px;
}
.sudi_p img{
	float: right;
	margin-left: 15px;
	max-height: 50px;
}
.gallery {
	padding-top: 50px;
	background-image: url(../img/gallery_bg.jpg);
	background-position: top;
	background-size: cover;
}
.gallery_item img{height: 100%;object-fit: cover;}
.gallery_item{
	margin-top: 15px;
	margin-bottom: 15px;
}
.side_img{
	margin-bottom: 15px;
}
.right_img{
	margin-bottom: 15px;
}
.right_img.short{
	height: 268px;
	object-fit: cover;
	width: 100%;
}

.video{
	padding: 50px 0;
	background: #f5f6f7;
}
.contact_form{
	padding-top: 50px;
	text-align: right;
}

.contact_form h1 {
    font-family: 'Bahij';
    font-size: 28px;
    margin-top: 35px;
    color: #a8acb1;
}
.contact_us_form input{
	margin-top:20px
}
.contact_us_form textarea{
	margin-top: 20px;
	height: 140px;
	margin-bottom: 20px;
}
.contact_form {
	padding-top: 50px;
	text-align: right;
	background-image: url(../img/contact_bg.jpg);
	background-size: 100%;
	min-height: 80vh;
}

.contact_form img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}
.contact_us_form button{
	background-color: #384554;
	margin-bottom: 55px;
	margin-top: 20px;
	color: #fff;
	padding: 5px 45px;
	font-family: 'Bahij';
}
.alert-successs{
	font-family: 'Bahij';
	background: #c5e9c5;
	padding: 15px;
	text-align: center;
	color: #fff;
	font-size: 19px;
}
.modal-backdrop.show{
	z-index: 0;
}
.gallery_modal{

}
.owl-carousel{
	position: relative;
}
.owl-carousel .owl-nav{
	position:absolute;
	top: calc(50% - 30px);
	right:0;
	width:100%;
	font-size: 60px;
}
.owl-carousel .owl-prev{
	position:absolute;
	right: 5px;
}
.gallery_modal img{
	max-height: 400px;
	object-fit: contain;
	background: #f5f6f7;
}
.video-item{position: relative;}
.video-item i{
	position: absolute;
	right: calc(50% - 20px);
	top: calc(50% - 20px);
	border-radius: 50%;
	font-size: 40px;
	background-color: #f5f6f7;
	color: #fff;
	cursor: pointer;
}
#video_frame{
	width: 100%;
	min-height: 50vh;
}
.gallery_img{
	width: 100%;
}
@media(min-width: 1024px){
	.gallery_second{
		height: 400px !important;
		width: 100%;
	}
	.short_3,.short_5{
		height: 240px;
		width: 100%;
		object-fit: cover;
	}
	.short_4{height: 335px;object-fit: cover;width: 100%;}
	.last_gallery{
		height: 415px;
		width: 100%;
		object-fit: cover;
	}
}
@media(max-width: 992px){
	.logo {
		max-height: 60px;
		margin-top: 0;
	}
	.contact_form{
		background:none;
	}
	.qualifications_section .col-md-4 p{
		height:auto;
	}
	.qualification_section h1 span{
		border-bottom:none;
	}
	.qualification_section h1{
		border-bottom: 4px solid #ebecee;
		padding-bottom: 10px;
	}
	.qualification_section{
		padding:50px 0;
	}
	.qualification_section .col-md-8 .item{
		margin-left:0;
		margin-bottom: 20px;
	}
	.qualifications_section{
		padding:50px 0;
	}
	.qualification_section .col-md-4 .item{
		margin-left:0;
	}
	.eg_holder{
		background-color: #384556;
		text-align: center;
	}
	.blue_partner h1{
		text-align:center;
		margin-bottom: 0;
	}
	.blue_partner{
		padding:50px 0;
	}
	.blue_partner .eg_p{
		margin-top:0;
		padding-top: 0;
	}
	.require_section{
		background: #f5f6f8;
	}
	.gallery{
		padding-top: 10px;
	}
}







