/*
  Author: saurabh
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #58595b;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #223c75;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #223c75;
  border-bottom: 10px solid #d81f2d;
}

#header.header-scrolled,
#header.header-pages {
  height: 70px;
  position: fixed;
}

#header.header-scrolled .desk-logo,
#header.header-pages .desk-logo {
	width: 300px;
    transition: all 0.5s;	
}

#header.header-scrolled .main-nav > ul > li,
#header.header-pages .main-nav > ul > li {
	padding: 12px 65px;
    transition: all 0.5s;
}
#header.header-scrolled .main-nav > ul > li:last-child,
#header.header-pages .main-nav > ul > li :last-child{
	padding-right: 0;
}

#header .desk-logo {
    position: absolute;
    width: 324px;
    float: left;
    z-index: 99999;
    left: 0px;
    top: 0px;
    clip-path: polygon(80% 0%, 0% 0%, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(80% 0%, 0% 0%, 0% 100%, 100% 100%);
    background: rgb(255, 255, 255);
    padding: 19px 122px 18px 60px;
    /*padding: 10px 122px 10px 60px;*/
    transition: all 0.5s;	
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.container {
    max-width: 960px;
	width: 100%;
}

#intro {
  width: 100%;
  position: relative;
  background: url("https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/toronto-apply-bg.jpg") center center no-repeat;
  background-size: cover;
  margin-top: 80px;
  min-height: 456px;
  background-position: 0px;
}

#intro .intro-info {
	width: 45%;
	float: right;
    margin: 2% 0 0;
}
.intro-info h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
	text-shadow: 0 0px 10px #000;
}

.intro-info .contactForm{
	background: rgba(255,255,255, 0.9 );
    margin-bottom:15px;
}
.intro-info .contactForm input, .intro-info .contactForm select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
	color: #0b3777;
	font-weight: 600;
	border-top: 0;
    border-right: 0;
    border-left: 0;
	border-bottom:2px solid #e5e5e5;
}
.intro-info .contactForm button[type="submit"] {
    background: #da1f2e;
    border: 0;
    border-radius: 20px;
    padding: 5px 40px;
    color: #fff;
    transition: 0.3s;
	cursor: pointer;
}
.section-header h3, #about .about-container .title {
    font-size: 24px;
}
#about .about-container .icon-box .icon {
    width: 150px;
    height: 150px;
}
#about .about-container .icon-box .icon i {
    font-size: 100px;
}
.t-text h2{
	color: #0b3777;
	text-shadow: none;
}
.t-text p {
    color: #58595b;
	line-height: 28px;
	text-align: center;
    font-weight: bold;
}
.t-text p i{
    color: #189d0e;
	font-size:18px;
	font-weight: 600;
}
#intro .up-arrow {
    position: absolute;
    bottom: 0;
    margin: 0 418px;
    text-align: center;
    z-index: 99;
    background: #fff;
    padding: 0px 20px 15px;
    box-shadow: 0 -2px 2px #666;
    border-radius: 50%;
}
#intro .up-arrow a {
    color: #dbdbdb;
    font-size: 54px;
	transition: all 0.5s ease;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul > li:first-child {
    padding-left: 0;
    padding-right: 30px;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
	color: #fff;
	font-size: 24px;
	padding: 18px 80px;
    transition: all 0.5s;  
}

.main-nav > ul > li:last-child {
	padding-right:0;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #fff;
  text-decoration: underline;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 28px;
  color: #0b3777;
  text-align: center;
  font-weight: 500;
  position: relative;
  margin: 20px 0;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 16px;
  padding-bottom: 40px;
  color: #58595b;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
	font-size: 28px;
	color: #0b3777;
	font-weight: 500;
	text-align: center;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
	background: #fff;
	background-size: cover;
	padding: 0 0 30px 0;
    float: left;
}

#about .about-container .icon-box .icon {
  margin: 0 auto;
  color: #fff;
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  background: #e2aa34;
  border: 2px solid #e2aa34;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #fff;
  font-size: 100px;
}

#about .about-container .icon-box:hover .icon {
	border: 2px solid #e2aa34;
	background: #fff;
}

#about .about-container .icon-box:hover .icon i {
  color: #e2aa34;
}

#about .about-container .icon-box .description {
	line-height: 24px;
	font-size: 16px;
	text-align: center;
}

#about .boxed-md.boxed-padded figure img{
    padding: 1.5rem;
}
#about .boxed-md.boxed-padded {
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
    display: table;
}
#about .boxed-md {
    border: 2px solid #0b3777;
    margin-bottom: 14px;
    margin-top: 25px;
}

#about .boxed-md>.text-center .h3 {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
	color: #0b3777;
}

#about .boxed-md>.text-center {
    margin-top: -18px;
    margin-bottom: 12px;
}
#about .boxed-md.boxed-padded li.p-2 {
    padding: 0.3rem !important;
}
/* Testimonials Section
--------------------------------*/

#testimonials {
	padding: 40px 0;
	background: #dbe1eb;
	margin: 50px 0;
}
.sec  {	
	position: relative
}
.sec .testi-img {
	position: absolute;
    background: url(https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/testimonial-img.png) right bottom;
    height: 478px;
    width: 390px;
    bottom: 0;
    right: 0px;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-text {
	padding-top: 25px;
	line-height: 34px;
}

#testimonials .title {
	padding:  20px 0;
}

#testimonials .title h4 {
	font-size: 28px;
	font-weight: bold;
    line-height: 32px;
	margin: 0;
}

#testimonials .title h4 span {
	font-size: 18px;
	font-weight: 500;
	display: block;
	font-style: italic;
}

/* Clients Section
--------------------------------*/



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
  background: #223c75;
  padding: 30px 0 1px;
  color: #fff;
  font-size: 15px;
  float: left;
  width: 100%;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1024.98px) { 
	.main-nav {
		width: 76%;
	}
	.main-nav > ul > li:first-child , #header.header-scrolled .main-nav > ul > li:first-child,
	#header.header-pages .main-nav > ul > li :first-child{
		padding-left: 0;
		padding-right: 0;
		float:right;
	}
	.main-nav > ul > li:last-child , #header.header-scrolled .main-nav > ul > li:last-child,
	#header.header-pages .main-nav > ul > li :last-child{
		padding-left: 60px;
		padding-right: 0;
	}
	.sec .testi-img {	
		right: 50px;
	}
	#intro {
		min-height: 376px;
	}
	#intro .intro-info {
		margin: 1% 0 0;
	}
	
}

@media (max-width: 991px) {
    .section-header h3{
        margin-top: 0;
    }
#header .desk-logo {
    width: 262px;
    padding: 10px 80px 10px 40px;
}
#header.header-scrolled .desk-logo, #header.header-pages .desk-logo {
	width: 262px;
    padding: 19px 80px 18px 40px;
}
#header.header-scrolled,
#header.header-pages {
  height: 80px;
  position: fixed;
}
#header.header-scrolled .main-nav > ul > li,
#header.header-pages .main-nav > ul > li {
	font-size: 18px;
    padding: 22px 40px;
}
#header.header-scrolled .main-nav > ul > li:first-child,
#header.header-pages .main-nav > ul > li :first-child{
	padding-left: 0;
    padding-right: 0;
}

.main-nav > ul > li:first-child {
    padding-left: 0;
    padding-right: 0;
}
.main-nav > ul > li {
    font-size: 18px;
    padding: 22px 40px;
}
.main-nav > ul > li:last-child {
    padding-right: 0;
	float: right;
}
.main-nav a {
    font-size: 18px;
}
#intro {
	margin-top: 80px;
	min-height: 650px;
    background: url(https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/ipad-banner.png) center center no-repeat;
    background-size: cover;
}
#intro .intro-info {
    margin: 4% 0 0;
}
.intro-info h2 {
    font-size: 24px;
    margin: 0;
    padding: 10px 0;
}
.section-header h3 {
    font-size: 24px;
}
.sec .testi-img {
    right: 0;
}
#about .boxed-md.boxed-padded figure img{
    padding: 1.2rem 0;	
	width: 100%;
}

#about .boxed-md.boxed-padded li.p-2 {
	padding: 0.1rem !important;
}
#intro .up-arrow  {
    bottom: 10px;
    margin: 0 320px;
}
#intro .up-arrow  a {
    font-size: 40px;
}

}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
#intro>div>div img {
    width: 100% !important;
    height: 100% !important;
}	
#header {
    height: 58px;
	border-bottom: 5px solid #d81f2d;
}
#header .desk-logo {
    width: 142px;
    padding: 20px 40px 13px 20px;
    /*padding: 14px 40px 10px 20px;*/
}
#intro .up-arrow {
	display: none;
}
.main-nav {
	margin-top: 1%;
}
.main-nav > ul > li:first-child {
    padding-left: 0;
    padding-right: 0;
	float: right;
}
.main-nav > ul > li {
    font-size: 15px;
    padding: 0;
}
.main-nav a {
    font-size: 16px;
	font-weight: normal;
}
#header.header-scrolled,
#header.header-pages {
  height: 58px;
  position: fixed;
}
#header.header-scrolled .desk-logo, #header.header-pages .desk-logo {
	width: 142px;
    padding: 18px 40px 15px 20px;
    /*padding: 14px 40px 10px 20px;*/
}
#header.header-scrolled .main-nav > ul > li,
#header.header-pages .main-nav > ul > li {
	font-size: 14px;
    padding: 0;
}
#header.header-scrolled .main-nav > ul > li:first-child,
#header.header-pages .main-nav > ul > li :first-child{
	padding-left: 0;
    padding-right: 0;
}
#intro {
    padding: 0;
    background: none;
    margin-top: 58px;
	min-height: auto;
}
#intro .intro-info {
    width: 100%;
	margin: 2% 0;
}
.section-header h3, #about .about-container .title, #about .boxed-md>.text-center .h3 {
    font-size: 20px;
    font-weight: 550;
}
.section-header h3 span{
	display: block;
}
#about .boxed-md.boxed-padded li.p-2 {
    font-size: 14px;
    padding: 0.3rem !important;
}
#about .boxed-md.boxed-padded figure img{
    padding: 0;
}
#testimonials {
    padding: 20px 0;
}
#testimonials .section-header {
    margin-bottom: 0;
}
#testimonials .testimonial-text {
    padding: 0;
    line-height: 20px;
    clear: both;
    font-size: 14px;
    text-align: center;
}
#testimonials .title {
    text-align: center;
	padding: 20px 0 0;
}
#testimonials .title h4 {
    font-size: 24px;
}
#testimonials .title h4 span {
    font-size: 11px;
    line-height: 24px;
}
.sec .float-left, .sec .float-right {
    text-align: center;
    width: 100%;
	margin: 10px 0;
}
.sec .testi-img {
    position: absolute;
    background: url(https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/testimonial-img.png) 120px 40px no-repeat;
    height: 478px;
    width: 362px;
    bottom: 0;
}
.intro-info .contactForm {
    background: #f7f7f7;
    box-shadow: 0 0 2px 0px #ccc;
    margin-bottom: 20px;
    margin-top: 20px;
}
.about-container {
    padding-top: 20px;
}
#about .boxed-md>.text-center {
    margin-bottom: 25px;
}
}
@media (min-width: 800px) and (max-width: 990.98px) { 
	
}
@media (min-width: 576px) and (max-width: 767.98px) { 
	.main-nav > ul > li:first-child, #header.header-scrolled .main-nav > ul > li:first-child, #header.header-pages .main-nav > ul > li :first-child{
		padding: 0;
	}
	.sec .testi-img {
		background: url(https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/testimonial-img.png) 120px 60px no-repeat;
		width: 456px;
	}
	
}
@media (min-width: 568px) and (max-width: 575.98px) { 
	.main-nav {
		width: 72%;
		margin-top: 2.8%;
	}
	.main-nav > ul > li:first-child, #header.header-scrolled .main-nav > ul > li:first-child, #header.header-pages .main-nav > ul > li :first-child {
		padding-left: 0px;
		padding-right: 0px;
	}
	.sec .testi-img {
		background: url(https://siuk-europe.s3.eu-west-2.amazonaws.com/assets/landing/testimonial-img.png) 160px 30px no-repeat;
		height: 478px;
		width: 426px;
	}
}
@media (max-width: 379px){
.main-nav > ul > li, #header.header-scrolled .main-nav > ul > li:first-child, #header.header-pages .main-nav > ul > li :first-child {
    font-size: 16px;
    /* padding: 5px 0; */
}

}
@media (max-width: 349px){
.main-nav {
	width: 56%;
	margin-top: 4%;
}
#testimonials .title h4 {
    font-size: 20px;
}
#testimonials .title h4 span {
    font-size: 12px;
}
.main-nav > ul > li, #header.header-scrolled .main-nav > ul > li:first-child, #header.header-pages .main-nav > ul > li :first-child {
    font-size: 16px;
    padding: 5px 0;
}

}
/*================================= For IE ==============================*/
@supports (-ms-ime-align: auto) {
   .header-scrolled#header, .header-pages#header{height: 80px}
    #header .desk-logo {
        width:300px;
		padding-top:15px;
		padding-bottom: 15px;
    }
    #header .desk-logo::after {
        content: '';
        border-left: 0px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 68px solid #fff;
        border-top: 0 solid #fff;
        right: -40px;
        position: absolute;
        top: 0;
    }
	#header .header-scrolled .desk-logo, #header.header-pages .desk-logo {
		width: 286px;
		padding-top:10px;
		padding-bottom: 10px;
	}
	#header .header-scrolled .desk-logo::after, #header .header-pages .desk-logo::after {
        content: '';
        border-left: 0px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 54px solid #fff;
        border-top: 0 solid #fff;
        right: -40px;
        position: absolute;
        top: 0;
    }
	.header-scrolled#header .main-nav > ul > li, .header-pages#header .main-nav > ul > li{
		padding-top:18px;
	}
}


@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
   .header-scrolled#header, .header-pages#header{height: 80px}
   #header .desk-logo {
        width:300px;
		padding-top:15px;
		padding-bottom: 15px;
    }
    #header .desk-logo::after {
        content: '';
        border-left: 0px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 80px solid #fff;
        border-top: 0 solid #fff;
        right: -40px;
        position: absolute;
        top: 0;
    }
	#header .header-scrolled .desk-logo, #header.header-pages .desk-logo {
		width: 286px;
		padding-top:10px;
		padding-bottom: 10px;
	}
	#header .header-scrolled .desk-logo::after, #header .header-pages .desk-logo::after {
        content: '';
        border-left: 0px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 54px solid #fff;
        border-top: 0 solid #fff;
        right: -40px;
        position: absolute;
        top: 0;
    }
	.header-scrolled#header .main-nav > ul > li, .header-pages#header .main-nav > ul > li{
		padding-top:18px;
	}
}

/*================================= End IE ==============================*/
