
/*----------------------------------------------------
	SITE MAIN STRUCTURE
------------------------------------------------------*/

.site_wrapper {
	width: 100%;
	margin: 0 auto 0 auto;
}
.container_full {
	width: 100%;
	float: left;
	margin: auto;
	padding: 0px 50px 0px 50px;
}

.container {
	width: 1280px;
	margin: auto;
}

#logo5 {
	float:left;
	display:block;
	width:100%;
	min-height: 75px;
	margin-top:0px;
	position: relative;
	text-indent:-999em;
	background:url(../images/logo5.png) no-repeat left top;
}

/* header area adinationals */
.logo {
	float: left;
	width: 50%;
	margin-top: 0px;
	padding: 0px 0px;
}

.menu_main {
	float: right;
	width: 50%;
	z-index: 9999;    text-align: right;    padding-top: 12px;
}
.menu_main i{
	text-align: right;
	color: #fff;
	font-size: 32px;
}
/* scroll up */
.scrollup{
    width:40px;
    height:40px;
    opacity:1;
    position:fixed;
    bottom:22px;
    right:20px;
    display:none;
    text-indent:-9999px;
    background: url(../images/scroll-top-arrow.png) no-repeat left top;
	z-index: 9001;
}
.cd-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	-webkit-transition: visibility 0s 0.6s;
	transition: visibility 0s 0.6s;
	z-index: 9999;
}
 .cd-panel::after {
  /* overlay layer */
  content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: transparent;
 cursor: pointer;
 -webkit-transition: background 0.3s 0.3s;
 transition: background 0.3s 0.3s;
}
.cd-panel.cd-panel--is-visible {
	visibility: visible;
	-webkit-transition: visibility 0s 0s;
	transition: visibility 0s 0s;
	z-index: 9999;
}
 .cd-panel.cd-panel--is-visible::after {
 background: rgba(0, 0, 0, 0.8);
 -webkit-transition: background 0.3s 0s;
 transition: background 0.3s 0s;
}
.cd-panel__header {
	position: fixed;
	width: 90%;
	height: 50px;
	line-height: 50px;
	background: rgba(0, 0, 0, 0);
	z-index: 2;
	/*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);*/
	-webkit-transition: -webkit-transform 0.3s 0s;
	transition: -webkit-transform 0.3s 0s;
	transition: transform 0.3s 0s;
	transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}
.cd-panel__header h1 {
	padding-left: 7%;
	font-size: 20px;
	margin:10px 0px 0px 0px;
	color: #0078bf;
    font-family: 'Poppins', sans-serif; font-weight: 400;
   font-weight: 500;
}
.cd-panel--from-right .cd-panel__header {
	right: 0;
}
.cd-panel--from-left .cd-panel__header {
	left: 0;
}
.cd-panel--is-visible .cd-panel__header {
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	transition: -webkit-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
 @media only screen and (min-width: 768px) {
 .cd-panel__header {
 width: 70%;
}
}
 @media only screen and (min-width: 1170px) {
 .cd-panel__header {
 width: 28%;
}
}
.cd-panel__close {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	/* image replacement */
  display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
 .cd-panel__close::before, .cd-panel__close::after {
  /* close icon created in CSS */
  content: '';
 position: absolute;
 top: 22px;
 left: 20px;
 height: 3px;
 width: 20px;
 background-color: #fff;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}
 .cd-panel__close::before {
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}
 .cd-panel__close::after {
 -webkit-transform: rotate(-45deg);
 -ms-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
.cd-panel__close:hover {
	background-color: #424f5c;
}
 .cd-panel__close:hover::before, .cd-panel__close:hover::after {
 background-color: #ffffff;
 -webkit-transition: -webkit-transform 0.3s;
 transition: -webkit-transform 0.3s;
 transition: transform 0.3s;
 transition: transform 0.3s, -webkit-transform 0.3s;
}
 .cd-panel__close:hover::before {
 -webkit-transform: rotate(220deg);
 -ms-transform: rotate(220deg);
 transform: rotate(220deg);
}
 .cd-panel__close:hover::after {
 -webkit-transform: rotate(135deg);
 -ms-transform: rotate(135deg);
 transform: rotate(135deg);
}
 .cd-panel--is-visible .cd-panel__close::before {
 -webkit-animation: cd-close-1 0.6s 0.3s;
 animation: cd-close-1 0.6s 0.3s;
}
 .cd-panel--is-visible .cd-panel__close::after {
 -webkit-animation: cd-close-2 0.6s 0.3s;
 animation: cd-close-2 0.6s 0.3s;
}
 @-webkit-keyframes cd-close-1 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
}
 @keyframes cd-close-1 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
}
 @-webkit-keyframes cd-close-2 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
}
 @keyframes cd-close-2 {
 0%, 50% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
}
.cd-panel__container {
	position: fixed;
	width: 90%;
	height: 100%;
	top: 0;
	background: #000;
	z-index: 1;
	-webkit-transition: -webkit-transform 0.3s 0.3s;
	transition: -webkit-transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s;
	transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.cd-panel--from-right .cd-panel__container {
	right: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.cd-panel--from-left .cd-panel__container {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.cd-panel--is-visible .cd-panel__container {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
 @media only screen and (min-width: 768px) {
 .cd-panel__container {
 width: 70%;
}
}
 @media only screen and (min-width: 1170px) {
 .cd-panel__container {
 width: 100%;
}
}
.cd-panel__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 70px 7%;
	overflow: auto;
	/* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

.cd-panel__content h4{
	font-size: 1.2rem;
	color: #f23801;
	line-height: 1.4;
	margin: 1.5em 0 1.2em;
	text-align: left;
	font-weight: 600;
}

.cd-panel__content h5{
	font-size: 1.2rem;
	color: #f23801;
	line-height: 1.4;
	margin: 1.5em 0 1.2em;
	text-align: left;
	font-weight: 600;
}
.cd-panel__content p  i{
	    font-size: 2.5rem;
    color: #14133b;
    float: left;
    padding-right: 18px;
    padding-bottom: 15px;
}

.cd-panel__content p {
	font-size: 0.95rem;
	color: #14133b;
	margin: 1em 0;
	text-align: left;
	font-weight: 600;
}
.cd-panel__content p span{
	    float: left;
    padding-top: 8px;
}
.cd-panel__content p:first-of-type {
	margin-top: 0;
}
 @media only screen and (min-width: 768px) {
 .cd-panel__content p {
 font-size: 0.95rem;

 text-align: left;
 font-weight: 600;
}
}
.register-submit {
	margin: 10px 0px 0px 0px !important;
	padding: 12px 0px;
	border-radius: 0px;
	width: 100% !important;
	max-width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #1f479f;
	font-size: 18px;
	font-family: 'Poppins', sans-serif; font-weight: 400;
    text-align: center;
	color: #fff;
	border:0px;
}
.register-submit:hover {
	background: #027acd;
	color: #fff
}


.enquiry-form label{
    float: left;
    width: 100%;
    font-weight: normal;
    color: #000;
    font-family: 'Poppins', sans-serif; font-weight: 400;
    font-size: 16px;
    padding-bottom: 6px;
}

.enquiry-form  input {
    float: left;
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #e3e3e3;
    margin-bottom: 18px;
}

.enquiry-form  textarea {
    float: left;
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #e3e3e3;
    margin-bottom: 18px;
}


.menu-left{width: 50%; float: left; border-right: 1px solid #434343; padding-top: 7%;    height: 100%; }

.menu-left ul{}

.menu-left ul li{width: 100%; float: left; font-size: 30px; font-weight: 700; color: #fff; padding-bottom: 40px;font-family: 'Poppins', sans-serif; }

.menu-left ul li a{color: #fff; }

.menu-left ul li a:hover{color: #e22d2c; padding-left: 5px; }

.menu-left ul li span{ font-size: 16px; font-weight: 700; color: #767676}


.menu-right{width: 50%; float: left; padding-left:150px;padding-top: 7%;   }

.menu-right h4{color: #e22d2c;
font-family: 'Poppins', sans-serif; 
font-size: 18px; 
font-weight: 600; }

.menu-right  ul li{float: left; padding-right: 15px; color: #fff;}

.menu-right p{color: #fff;
font-family: 'Poppins', sans-serif; 
font-size: 16px; 
font-weight: 400;
padding-bottom: 15px; }
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0; position: absolute;
}



.viewport-header {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  /*background: rgba(0,0,0,0.6); */
}

.viewport-header h1 {
  font-family: 'Dosis', sans-serif;
  color: #fff;
  text-transform: uppercase;

  line-height: 1.6;
      font-weight: 800;
    font-size:70px;
  text-align: center; letter-spacing: 2px;}

 .viewport-header h1 span {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #ffcc00;
    font-size: 90px;
    
  }


/*.content video {
  width: 100%;
  display: block;
}
.content:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}*/

/*video {
  object-fit: cover;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.header12{
  position: relative;
  color: white;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}*/

.about-section{background-color: #fff; padding: 80px 0 100px}

.about-section h1{
  font-family: "Gilda Display", serif; 
  text-align: center;
  color: #000;
    font-size: 44px;
    line-height: 69px;
  }

.count-ani{padding: 60px 0 50px; text-align: center;font-family: "Gilda Display", serif; }

.count-ani p{ color: #000;
    font-size: 20px; font-family: "Gilda Display", serif; margin-top: 25px;}

.count-ani span{ color: #000;
    font-size: 52px; font-weight: 500}

.solutions-section{background-color: #00082e; padding: 70px 0 40px;}

.solutions-section-left{width: 20%; float: left; margin-right: 10%;}

.solutions-section-left h2{font-family: "Gilda Display", serif;
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    margin-bottom: 0px;}

.solutions-section-center{width: 40%; float: left; margin-right: 15%;}

.solutions-section-center p{font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.8px;
    padding-top: 10px; text-align: left;}

.solutions-section-right{width: 15%; float: left;}

.solutions-section-right .solutions-btn {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
    line-height: 58px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    height: 75px;
    width: 75px;
    text-align: center;
    display: inline-block;
    padding-top: 16px;
    margin-top: 17px;
    background-color: #fff;
}
.solutions-section-right a:hover .solutions-btn{
  border: 1px solid #e22d2c;
    background-color: #e22d2c;
    color: #fff;
    
  }
  .solutions-section-right a:hover .solutions-btn img{
  
    transform: rotate(43deg);
    filter:brightness(0) invert(1)
   }


.product-section{    background-color: #fff;
    padding: 100px 0 65px;}

.product-section-left{width: 20%; float: left; margin-right: 10%;}

.product-section-left h2{font-family: "Playfair Display", serif;
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;margin-bottom: 0px;}

.product-section-center{width: 40%; float: left; margin-right: 15%;}

.product-section-center p{font-family: 'Roboto', sans-serif;
    color: #afafaf;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    padding-top: 10px; text-align: justify;}

.product-section-right{width: 15%; float: left;}

.product-section-right .product-btn{
      border: 1px solid #f37330;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    height: 82px;
    width: 82px;
    text-align: center;
    display: inline-block;
    padding-top: 16px;
    margin-top: 6px;
    background-color: #f37330;
   }

.product-section-right .product-btn:hover{
  border: 1px solid #dc5813;
    background-color: #f37330;
    color: #000;
   }

.product-text-left{width: 24%; float: left; margin-right: 16%;    margin-top: 100px;}

.product-text-left img{width: 82%;}

.product-text-left h6{
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;  font-style: italic; margin-bottom: 30px
}
.product-text-left h6 span{    color: #e31e24;
    font-style: italic;font-size: 13px;line-height: 0.8em;}

.product-text-left h2{
        color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2em;
}
.product-text-left h2 span{    color: #C5C8CC;
    font-style: italic;}

.product-text-left p{
        color: #202C39;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    padding: 30px 0 40px;
}

.product-text-left a{
        color: #000824;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: underline;
   
}


.product-text-right{width: 60%; float: left; margin-right: 0%}

.product-box{    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding-top: 54px;
    padding-bottom: 34px;
    display: inline-block;
    color: #000;}

.product-box:hover{    background-color: #f9f9f9; padding-top: 54px;
    padding-bottom: 34px; padding-right: 35px;padding-left: 35px;    
    transition: ease-in-out 0.5s !important; cursor: pointer;}


.product-box h2{
    font-size: 24px;
    letter-spacing: 0.5px;
     font-family: "Playfair Display", serif; font-weight: 400;
     color: #202C39;
}

.product-box p{
       font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 25px;
}

.product-box-1{width: 5%; float: left; margin-right: 5%; padding-top: 15px;}

.product-box-1 h2{font-size: 32px;font-family: "Gilda Display", serif;}

.product-box-2{width: 30%; float: left; margin-right: 7%}

.product-box-3{width: 45%; float: left; margin-right: 3%}

.product-box-4{width: 5%; float: left;}

.product-box-4 i {border-radius: 50%;
    color: #202C39;
    font-size: 20px;
    height: 60px;
    width: 60px;
    background-color: #F9F9F9;
    display: block;
    line-height: 60px;
    text-align: center;}

.product-box:hover .product-box-4 i{    background-color: #e31e24; color: #fff;}


/* featured section 12 */
.featured_section12 {
  float: left;
  width: 100%;
  padding: 120px 0px 100px 0px;
  text-align: center;
  background: #00082e url(../images/pattern1.jpg) repeat left top;
}

.featured_section12 h6{
  color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-style: italic;
    margin-bottom: 30px;
  }
  .featured_section12 h6 span {
    color: #e31e24;
    font-style: italic;
    font-size: 13px;
    line-height: 0.8em;
}

.featured_section12 h2 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 80px
}
.featured_section12 h2 span {
    color: #C5C8CC;
    font-style: italic;
}

.featured_section12.two {
  background: #00082e;
}
.featured_section12 .peosays {
  width: 100%;
  margin: 0 auto;
}
.featured_section12 .peosays .box {
  float: left;
  width: 100%;
  background: transparent;
  /*border: 1px solid #eee;*/
 /* border-right: 1px solid #eee;*/
  border-radius: 3px;
  text-align: left;
  padding: 0px 40px 0px 20px;
  
  line-height: 30px; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300; letter-spacing: 0.5px;
}
.featured_section12 .peosays .who {
  float: left;
  width: 100%;
  text-align: left;
  padding: 40px 0px 18px 0px;
  background: url(../images/down-arrow.png) no-repeat 45px top;
  margin-top: -2px;
  font-size: 12px;
  color: #fff;
}
.featured_section12 .peosays .who img {
  border-radius: 100%;
  float: left;
  margin-right: 18px;
}
.featured_section12 .peosays .who strong {
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 16px;
  font-weight: 600;
  margin-top: 5px;
}

.brands-section{padding: 120px 0 70px}

.brands-section h6{
  color: #202C39;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-style: italic;
    margin-bottom: 15px;
     text-align: center;
  }
  .brands-section h6 span {
    color: #e31e24;
    font-style: italic;
    font-size: 13px;
    line-height: 0.8em;
}

.brands-section h2 {
    color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 80px;
    font-style: italic;
    text-align: center;
}
.brands-section h2 span {
    color: #C5C8CC;
    font-style: italic;
}

.blog-section{padding: 80px 0}

.blog-section h6{
  color: #202C39;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-style: italic;
    margin-bottom: 15px;
     text-align: center;
  }
  .blog-section h6 span {
    color: #e31e24;
    font-style: italic;
    font-size: 13px;
    line-height: 0.8em;
}

.blog-section h2 {
    color: #202C39;
    font-family: "Playfair Display", serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 80px;
    font-style: italic;
    text-align: center;
}
.blog-section h2 span {
    color: #C5C8CC;
    font-style: italic;
}
.blog-box{width: 30%; float: left; margin-right: 5%}

.blog-box:last-child{ margin-right: 0%}

.blog-box img{padding-bottom: 15px;}

.blog-box h5{color: #e22d2c;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px; }

.blog-box h3{
      color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    padding-bottom: 21px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 15px;
}

.read-more{color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.read-more i{ color: #e22d2c;font-weight: 600;}

.footer{background: #001f3f; }

.footer-left{width: 38%; float: left; margin-right: 6%; border-right: 1px solid #234151; padding-right: 5%;min-height: 495px;}

.footer-right{width: 56%; float: left; margin-right: 0%;}

.footer-about{padding-top: 80px}

.footer-about h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 30px;
    /* font-style: italic; */
    text-align: left;
}

.footer-about p{
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 29px;
    padding-bottom: 25px;
}

.footer-about a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    text-decoration: underline;

}

.footer-quicklinks{padding-top: 80px; border-bottom: 1px solid #234151}

.footer-quicklinks h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 20px;
    /* font-style: italic; */
    text-align: left;
}

.footer-quicklinks p{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 29px;
}

.footer-links-1{width: 25%; float: left; margin-right: 5%; margin-bottom: 30px}

.footer-links-2{width: 27%; float: left; margin-right: 5%; margin-bottom: 30px}

.footer-links-3{width: 38%; float: left; margin-right: 0%; margin-bottom: 30px}

.footer-links-3 h4{
  color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 25px;
    /* font-style: italic; */
    text-align: left;
  }
.footer-links-3 h6{
      color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    line-height: 21px;
  }

.input-box{width: 100%; background: #0d2a49; border-radius: 7px; padding: 5px 20px}

.input-box input{width: 100%; height: 36px; background: transparent; border:0; }

.input-box {
  position: relative;
  color: #454545; font-family: 'Poppins', sans-serif;
  font-size: 20px;
}
.input-box input::placeholder{font-family: 'Poppins', sans-serif;}
.input-box .fa-paper-plane-o  {
  position: absolute;
      top: 11px;
    right: 21px;
  color: #fff;
}

.copyrights{padding-top: 20px;     display: ruby-text;}

.copyrights p {
  
  color: #454545; font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.copyrights-left{width: 50%; float: left}

.copyrights-left ul li{float: left; padding-right: 15px; color: #fff;}

.copyrights-right{width: 50%; float: left;font-family: 'Poppins', sans-serif; color: #fff;}


/*.about-section-a{background:#fff url(../images/a.png) no-repeat scroll left 110px;}

.about-left{width: 48%; float: left; margin-right: 7%;    padding-top: 200px;}

.about-right{width: 45%; float: left; margin-right: 0%}

.about-left h5{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 16px;
}

.about-left h1{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 600;
   font-size: 54px; line-height: 70px;
}

.about-left h1 span{
   color: #ffc600;
}

.bigfont{
   font-size: 18px !important;color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 700; padding-bottom: 15px; line-height: 30px; letter-spacing: 0.5px; padding-top: 40px;
}

.about-right p{color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 15px;line-height: 30px;
}

.about-section h2{
   color: #000;
   font-family: 'Poppins', sans-serif; 
   font-weight: 600;
   font-size: 54px; 
   line-height: 70px; 
   text-align: center; 
   width: 75%; 
   text-align: center; 
   margin: 0 auto; 
   text-transform: uppercase; 
   line-height: 80px; 
   padding-top: 70px;
   padding-bottom: 120px;
}

.about-section h2 span{
   color: #ffc600;
  
}

.txtbox h2{
	    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
}

.txtbox h2 span{

	color: #ffc600;
	width: 100%; padding-bottom: 20px;
}

.txtbox p{
	font-family: 'Poppins', sans-serif; 
   font-weight: 400;
   font-size: 16px;line-height: 30px; color: #000;
}
*/

