
@font-face {
	
    font-family: 'montserrat-bold-webfont';
    src:url('../fonts/montserrat-bold-webfont.eot');
    src:url('../fonts/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-bold-webfont.ttf') format('truetype'),
        url('../fonts/montserrat-bold-webfont.woff') format('woff'),
        url('../fonts/montserrat-bold-webfont.svg#montserrat-bold-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	
    font-family: 'montserrat-light-webfont';
    src:url('../fonts/montserrat-light-webfont.eot');
    src:url('../fonts/montserrat-light-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-light-webfont.ttf') format('truetype'),
        url('../fonts/montserrat-light-webfont.woff') format('woff'),
        url('../fonts/montserrat-light-webfont.svg#montserrat-light-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	
    font-family: 'montserrat-semibold-webfont';
    src:url('../fonts/montserrat-semibold-webfont.eot');
    src:url('../fonts/montserrat-semibold-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-semibold-webfont') format('truetype'),
        url('../fonts/montserrat-semibold-webfont.woff') format('woff'),
        url('../fonts/montserrat-semibold-webfont.svg#montserrat-semibold-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 100000;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #3d4695;
        z-index: 10000;
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }
    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded styles */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }
    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }
    .loaded #loader {
        opacity: 0;


        -webkit-transition: all 0.3s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */

    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
    
        -webkit-transition: all 0.3s 1s ease-out;  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
                transition: all 0.3s 1s ease-out;  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
    }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin:0px;
	padding:0px;
}
:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
user agent stylesheet
article, aside, footer, header, hgroup, main, nav, section {
    display: block;
}

p
	{
	margin-bottom:10px;
	}
a
	{
		-webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
	}
a, a:hover, a:focus
	{
	outline:0px;
	text-decoration:none !important;
	}
html
	{
	overflow-y: scroll !important;
	}
body {
    font-family: 'montserrat-light-webfont';
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #f2f2f2;
	overflow:hidden !important;
	margin: 0;
	width:100%;
    height:auto !important;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
.my-list
	{
	padding-left:0px;
	margin-bottom:0px;
	}
.my-list li
	{
	list-style-type:none;
	}
/*logo css*/
/*.logo-contain
	{
	position:absolute;
	left:0px;
	top: 0px;
	width:578px;
	}
.logo
	{
	position:absolute;
	left:0px;
	top:0px;
	}
#logo-1
	{
	left:338px;
	}
#logo-2
	{
	}
#logo-3
	{
	top:339px;
	}
#logo-4
	{
	left:372px;
	top: 371px;
	}
#logo-5 
	{
	left:371px;	
	top: 372px;
	-ms-transform: rotate(7deg);
	-webkit-transform: rotate(7deg);
	transform: rotate(0.5deg);
	}
*/

.bottom-icon {
    bottom: 40px;
}
.bottom-icon {
    width: 100%;
    text-align: center;
    left: 0px;
    right: 0px;
    position: absolute;
    bottom: 0px;
    z-index: 1000;
    bottom: 20px;
}
.bottom-icon img
	{
		-webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
	}
#logo-1
	{
	position:absolute;
	left: -160px;
	top: -120px;
	}
#logo-1 img
	{
	width:400px;
	}
#green-1
	{
	position:absolute;
	right: -360px;
	top: -335px;
	}
.top-1
	{
	position:relative;
	}
.logo-green
	{
	position:absolute;
	}
#green-2
	{
	position:absolute;
	right: 40%;
	top: 45%;
	}
#green-3
	{
	top: 60%;
	left: 25%;	
	}
#green-3 img
	{
	width:50px;
	-ms-transform: rotate(-155deg);
	-webkit-transform: rotate(-155deg);
	transform: rotate(-155deg);
	}
#green-4
	{
	left: 12%;
	top: 55%;
	}
#green-4 img
	{
	width: 200px;
	-ms-transform: rotate(-115deg);
-webkit-transform: rotate(-115deg);
transform: rotate(-115deg);
	}
#green-5
	{
	right: 35%;
	top:70%;
	}
#green-5 img
	{
	width: 50px;
	-ms-transform: rotate(190deg);
-webkit-transform: rotate(190deg);
transform: rotate(190deg);
	}
#green-6
	{
	right: -100px;
	top: 55%;
	}
#green-6 img
	{
	width: 200px;
	-ms-transform: rotate(100deg);
-webkit-transform: rotate(100deg);
transform: rotate(100deg);
	}
#green-7
	{
	left:15%;
	}
#green-8
	{
	left:-200px;
	top:20%;
	}
#green-9
	{
	top:50%;	
	left:15%;
	}
#green-10
	{
	top:10%;	
	left:50%;
	}
#green-11
	{
	top:50%;
	right:10%;
	}
#green-12
	{
	top:70%;	
	left:50%;
	}
#green-13
	{
	left:20%;
	top:70%;	
	}
#green-14
	{
	right:-100px;
	top:70%;	
	}
#green-15
	{
	top:-5%;
	left:30%;
	}
#green-16
	{
	top:-5%;
	right:30%;
	}
#green-17 img
	{
	width:150px;
	}
#green-17
	{
	top: 28%;
	left: 38%;
	}
#green-18
	{
	top: -45%;
	left: 0%;
	}
#green-19
	{
	top: 31%;
	left: 46%;
	}
#green-19 img
	{
	width:100px;
	}
#green-20
	{
	bottom: -30%;
	right: -320px;
	}
#green-21
	{
	left: 0px;
	bottom: 0px;
	}
#green-21 img
	{
	margin-bottom:-10px;
	}
.top-1
	{
	height:100vh;	
	}
.middle-text-outer
	{
	float:left;
	width:100%;
	text-align:center;
	display:table;
	height:100vh;
	z-index: 888;
	position: relative;	
	}
.middle-text h1
	{
	margin-bottom:15px;
	font-family:'montserrat-bold-webfont';
	}
.middle-text
	{
	line-height:40px;
	font-family: 'montserrat-light-webfont';
	display:table-cell;
	vertical-align:middle;
	font-size:40px;
	color:#3d4695;
	font-weight:400;	
	}
.nav-links li.active a, .nav-links li a:hover
	{
	color:#51deb7;
	}
.nav-links li a
	{
	position:relative;
	display:inline-block;
	color:#3d4695;
	border:1px solid transparent;
	font-family: 'montserrat-light-webfont';
	}
.nav-links li
	{
	width:100%;
	padding:15px;
	}
.logo-inner-small-img
	{
	position:absolute;	
	}
#logo-inner-small-1
	{
	position: absolute;
	right: 190px;
	bottom: 200px;
	}
 #logo-small-1
	{
	left: 19px;
	top: 70px;
	}
#logo-small-1 img, #logo-small-12 img
	{
	width:129px;
	}
 #logo-small-2, logo-small-11 img
	{
	left: 80px;
	top: 60px;
	}
#logo-small-2 img
	{
	width:150px;
	}	
#logo-small-3
	{
	top: -16px;
	left: 26px;
	}
 #logo-small-3 img
	{
	width: 60px;
	}	
 #logo-small-4
	{
	top: -32px;
	left: 96px;
	}
 #logo-small-4 img
	{
	width: 70px;
	}
#logo-small-5
	{
	top: -31px;
	left: 94px;
	}
 #logo-small-5 img
	{
	width: 72px;
	}	
#logo-small-8
	{
	left: -51px;
	top: 19px;
	}
#logo-small-8 img
	{
	width: 84px;
	}
#logo-small-9
	{
	    left: -52px;
    top: 19px;
	}
#logo-small-9 img
	{
    width: 85px;
	}
#logo-small-10
	{
	top: -9px;
	right: 76px;
	}
#logo-small-13 img
	{
	width: 70px;
	}
#logo-small-10 img
	{
	width: 72px;
	}
#logo-small-11
	{
	    right: -59px;
    top: 129.4px;
	}
#logo-small-11 img
	{
	width: 173px;
	}
#logo-small-12
	{
	top: 100px;
	right: 49px;
	}
#logo-small-12 img
	{
	width: 150px;
	}	
.second-log-text h1
	{
	font-size: 80px;
	float: right;
	}
.second-log-text
		{
		font-size:70px;
		line-height:50px;
		}
.second-log-text p
	{
	float:left;
	margin-left:30px;
	}
.second-log-text
	{
	width: 200px;
	display: inline-block;
	margin: 0px auto;
	text-align: left;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-100px;
	margin-top:-100px;
	
	}
	#logo-inner-small-3 {
	left: 0px;
	bottom: -5px;
}
.middle-links
	{
	text-align:center;
	}
#logo-small-green-1
	{
	top: 63px;
	right: 12.4px;
	}
#logo-small-green-1 img
	{
	width: 87px;
	}
#logo-small-green-2
	{
	top: 90px;
	left: -73px;	
	}
#logo-small-green-2 img
	{
	width: 115px;
	}
#logo-small-green-3
	{
	top: 40px;
	right: 28px;	
	}
#logo-small-green-3 img
	{
	width: 86px;
	}
#logo-small-green-6 img, #logo-small-green-8 img
	{
	width: 87px;
	}
#logo-small-green-4
	{
	top: 30px;
	right: -15px;	
	}
#logo-small-green-4 img, #logo-small-green-7 img
	{
	width: 70px;
	}
#logo-small-green-5
	{
	top: 31px;
	right: -16px;	
	}
#logo-small-green-5 img
	{
	width: 68px;
	}
#logo-small-green-8
	{
	left: 21%;
	top: 5%;
	background:url(../images/sec-3-c.png) no-repeat;
	height: 100px;
	width: 200px;
	background-size: 100%;
	background-position: top center;
	}
#logo-small-13
	{
	right: 48%;
	top: 5%;
	background:url(../images/sec-3c-b-1.png) no-repeat;
	height: 245px;
	width: 370px;
	background-size: 100%;
	background-position: top center;
	}
#section-3 .nav-link-outer
	{
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-130px;
	z-index:99999;
	text-align:center;
	}
.nav-link-outer ul li a
	{
	font-size:40px;
	}
#logo-small-green-7
	{
	z-index:-9;
	}
/*for mobile*/
.mobile-logo
	{
	position:absolute;
	display:none;
	}
#logo-1-mobile
	{
	left: -100px;
	top: -90px;
	}
#logo-1-mobile img {
    width: 200px;
}
#logo-2-mobile
	{
	right: -100px;
	top: 20px;
	}
#logo-2-mobile img {
    width: 200px;
}
#logo-3-mobile
	{
	top: 22%;
	right: 30%;
	}
#logo-3-mobile img
	{
	width:80px;
	}
#logo-4-mobile
	{
	left: -50px;
	bottom: 30px;
	}
#logo-4-mobile img
	{
	width: 150px;
	-ms-transform:rotate(-120deg); /* IE 9 */
  -moz-transform:rotate(-120deg); /* Firefox */
  -webkit-transform:rotate(-120deg); /* Safari and Chrome */
  -o-transform:rotate(-120deg); /* Opera */
	}
#logo-5-mobile
	{
	left: 20%;
	bottom: 100px;
	}
#logo-5-mobile img
	{
	width: 40px;
	-ms-transform:rotate(-155deg); /* IE 9 */
  -moz-transform:rotate(-155deg); /* Firefox */
  -webkit-transform:rotate(-155deg); /* Safari and Chrome */
  -o-transform:rotate(-155deg); /* Opera */
	}
#logo-6-mobile
	{
	right: 35%;
	bottom: 160px;
	}
#logo-6-mobile img
	{
	width: 40px;
	-ms-transform:rotate(-190deg); /* IE 9 */
    -moz-transform:rotate(-190deg); /* Firefox */
    -webkit-transform:rotate(-190deg); /* Safari and Chrome */
    -o-transform:rotate(-190deg); /* Opera */
	}
#logo-7-mobile
	{
	right: -40px;
	bottom: 10px;
	}
#logo-7-mobile img
	{
	width: 150px;
	-ms-transform:rotate(100deg); /* IE 9 */
    -moz-transform:rotate(100deg); /* Firefox */
    -webkit-transform:rotate(100deg); /* Safari and Chrome */
    -o-transform:rotate(100deg); /* Opera */
	}
#logo-8-mobile
	{
	top: -90px;
	left: -120px;
	}
#logo-8-mobile img
	{
	width:150px;
	-ms-transform:rotate(-90deg); /* IE 9 */
    -moz-transform:rotate(-90deg); /* Firefox */
    -webkit-transform:rotate(-90deg); /* Safari and Chrome */
    -o-transform:rotate(-90deg); /* Opera */
	}
.second-log-text-mobile
	{
	display:none;
	width: 70px;
	margin: 0px auto;
	text-align: left;
	line-height: 70px;
	font-size: 65px;
	position:relative;
	}
.second-log-text-mobile h1
	{
	font-size: 80px !important;
	text-transform:uppercase;
	}
#logo-9-mobile
	{
	right: -85px;
	top: 15px;
	}
#logo-9-mobile img
	{
	width:250px;
	}
	
#logo-10-mobile
	{
	left: 0px;
	bottom: 0px;
	}
#logo-10-mobile img
	{
	width:300px;
	margin-bottom:-5px;
	}
#mobile-text-top
	{
	display:none !important;	
	}
#mobile-nave
	{
	display:none !important;
	}
#main-logo-bg-img img
	{
	width: 233px;
-ms-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
	}
#main-logo-bg-img
	{
	left: -200px;
	top: 18px;	
	}
@media (min-width: 1280px) and (max-width: 1530px) {
		#section-3 .nav-link-outer
	{
	margin-top:-60px;
	}
		
		}
@media (max-width: 1280px){
#green-21 img {
    width: 400px;
}
#logo-small-13
	{
	height: 180px;
	width: 200px;
	}
#section-3 .nav-link-outer
	{
	margin-top:-60px;
	}
}
@media (min-width: 767px) and (max-width: 1199px) {
#green-4 {
    left: 0%;

}
#green-2
	{
	margin-top:-10px;
	right: 35%;
	}
body, html
	{
	overflow: scroll !important;
	}
}
@media (max-width: 767px){
#about-green-2
	{
	display:none !important;
	}
body, html
	{
	overflow-y: scroll !important;
	}
.nav-link-outer
	{
	display:none !important;
	}
.nav-links li
	{
	padding:10px;
	}
.nav-link-outer ul li a
	{
	font-size:30px;
	}
.bottom-icon
	{
	opacity:1 !important;
	}
#section-1 .middle-text-outer	
	{
	display:none !important;	
	}
#section-1 #mobile-text-top
	{
	display:table !important;
	}
#mobile-nave .nav-link-outer
	{
	display:block !important;
	}
#mobile-nave
	{
	display:table !important;	
	}
.nav-link-outer
	{
	position: relative !important;
	top: 0%  !important;
	left: 0%  !important;
	margin-left: 0px  !important;
	}
.second-log-text
	{
	display:none;
	}
.second-log-text-mobile
	{
	display:block;
	}
.bottom-icon img
	{
	width:50px;
	}
.middle-text
	{
	font-size:30px;
	line-height: normal;
	}
.middle-text p
	{
	margin-bottom:0px;
	}
.middle-text h1
	{
	font-size:40px;
	margin-bottom:0px;
	}
.mobile-logo
	{
	display:block;
	}
#logo-1, #green-1, #green-2, #green-4, #green-3, #green-5, #green-6, #logo-small-13, #green-21, #logo-2-mobile, #logo-3-mobile, #logo-4-mobile, #logo-5-mobile, #logo-6-mobile, #logo-7-mobile
	{
	display:none !important;
	}	
#logo-9-mobile {
    top: -50px;
}	
}
@media (max-width: 480px){
.middle-text {
    font-size: 25px;
}
.nav-link-outer ul li a {
    font-size: 20px;
}

}

@media (max-width: 360px){
#logo-3-mobile img {
    width: 50px;
}
#logo-2-mobile
	{
	right:-80px;
	}
#logo-2-mobile img
	{
	width:150px;
	}
#logo-4-mobile
	{
	bottom:0;
	}
#logo-4-mobile img {
    width: 120px;
}
#logo-6-mobile
	{
	bottom:110px;
	}
.second-log-text-mobile
	{
	line-height:55px;
	font-size:55px;
	}
.second-log-text-mobile h1 {
    font-size: 70px !important;
}
#logo-10-mobile img {
    width: 250px;
}
.nav-links
	{
	padding-top:20px;
	}
.middle-text
	{
	font-size:20px;
	}


	
}

.slick-slide{width:172px !important;}

.tab-table table {
    width: 100% !important;
    border: 1px solid #28338a;
}

.tab-table table .table_rows_style {
    background-color: #f4f4f4;
    width: 100%;
    border-bottom: #000 solid 1px;
    border-top: #000 solid 1px;
    height: 40px;
    text-align: center;
}

.tab-table table .table_rows_style2 {
    width: 100%;
    border-bottom: #000 solid 1px;
    border-top: #000 solid 1px;
    height: 40px;
    text-align: center;
}

.tab-table table .table_rows_style, 
.tab-table table .table_rows_style2 {
    border: none !important;
}

.tab-table .table_rows_style td {
    text-align: left;
    border: 1px solid transparent;
    background-color: #28338a;
    color: #fff;
    padding: 10px;
    float: left;
    width: 100%;
}

.tab-table .table_rows_style2 td {
    text-align: left;
    border-left: 10px solid #28338a;
    color: #28338a;
    float: left;
    height: 40px;
    padding: 10px;
    width: 100%;
}

.tab-table .table_rows_style2 td a{color:#28338a;}
.tab-table .table_rows_style td a{color:white;}

.tab-table table tr td span {
    float: right;
    font-size:13px
}

.tab-table {
    padding-right: 0px;
}

 .main-content-heading {
    font-size: 30px;
    color: #28338a;
    text-align:left;
    padding-top: 0px;
    margin-top: 0px
}

.main-content-data {
    color: #666;
    text-align:left;
    margin-top: 20px
}

.faq-question h4{color: #666;font-weight: bold;}
.fa1-answer{color: #666;margin-bottom: 20px;}