@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,600,700,800|Oswald:300,400,700';
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');


/* GLOBAL CSS*/ 

body, html { 
font-family: 'Oswald', sans-serif;
background: transparent;
} 


/* GLOBAL CSS*/ 


/* GLOBAL CONTAINER*/ 

.global_container {
    width: 100%;
	max-width: 1200px;
    margin: 200px auto 140px auto;
}

.hp_top_about_container {
    width: 79%;
    max-width: 1200px;
    margin-top: -50px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
.hp_top_about_container {
    width: 79%;
    max-width: 1200px;
    margin-top: 70px;
    }
}

.hp_about_container {
    width: 79%;
    max-width: 1200px;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
}


.stc_container {
    width: 100%;
    height: auto;
}

/* GLOBAL LINKS*/ 

a:link {
	color: #0e6bb0;
	text-decoration: none;
	font-weight: 400;

}
a:visited {
  	color: #0e6bb0;
	text-decoration: none;
		font-weight: 400;
}
a:hover {
	color: #A1BDC9;
	text-decoration: none;
		font-weight: 400;
}
a:active {
		color: #0e6bb0;
	text-decoration: none;
	font-weight: 400;
}

h1 {
    display: block;
    font-size: calc(13px + .9vw);
    line-height: calc(23px + .9vw);
    letter-spacing: calc(2px + .3vw);
   color: #054573;
    font-weight: 100;
    font-family: Oswald, sans-serif;
  text-transform: uppercase;
}


h3 {
    display: block;
    font-size: calc(13px + .2vw);
    line-height: calc(25px + .9vw);
    letter-spacing: calc(1px + .1vw);
   color: #000;
    font-weight: 400;
    font-family: Oswald, sans-serif;
}

.video2 {
    width: 50%; /* Set width to 70% */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the video scales correctly without cropping */
    z-index: 100000; /* Ensure video is on top */
}

/* GLOBAL COVER */
.full-screen-cover {
     position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Ensure full height */
  background-size: cover; /* Scale the image to cover the full area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
  background-color: #194c92; /* Fallback color */
  opacity: 1;
  z-index: 99999;        
  transition: opacity 1.5s ease; /* Smooth transition for opacity */
}

/* Hide and show cover with fade */
.full-screen-cover.fade-out {
  opacity: 0; /* Fade out */
}

@media screen and (max-width: 999px) {
  .full-screen-cover {
    background-size: cover; /* Ensures the background image covers the entire area */
    background-position: center; /* Centers the background image */
    top: -10px; /* Adjust this value to move the image higher */
    height: calc(100% + 10px); /* Ensure height accounts for the negative top */
  }
}

/* END OF GLOBAL COVER */

/* HERO SECTION*/ 

.rise-above-the-noise {
    margin-top: -5px;
    color: #fff;
    font-family: 'Oswald';
    font-size: calc(12px + 1vw);
    line-height: 93px;
    letter-spacing: 19px;
    font-weight: 400;
    text-align: center;
    padding: 27px 50px;
    width: 100%;
    background-color: #486A76;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .rise-above-the-noise{
        display: none;
    }
}

.rise-above-the-noise-mobile {
    font-family: 'Oswald';
    font-size: calc(10px + 2vw);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: calc(3px + 1vw);
    line-height: calc(24px + 3vw);
    font-weight: 400;
    background-color: #486A76;
    padding: 40px 30px 45px 39px;
}

@media screen and (min-width: 768px) {
    .rise-above-the-noise-mobile {
        display: none;
    }
}

.hero {
    margin-top: 119px;
    width: 100%;
    position: relative;
    z-index: 999;
}

.hero img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
    object-fit: cover; /* Ensures the image scales properly */
}

.hero_tdt {
    margin-top: 129px;
    width: 100%;
    background-color: #000;
    position: relative;
    z-index: 999;
}

.hero_tdt img {
    width: 100%;
    height: auto; /* Base height + scaling with screen width */
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
    object-fit: cover; /* Ensures the image scales properly */
}
    

/* The overlay that will fade out as the image fades in */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10C1FF;
    opacity: 0.5; /* Start at 50% opacity */
    z-index: 1; /* Ensure the overlay is on top of the image */
    animation: fade-out-overlay 1s ease-out forwards; /* Overlay fade-out animation */
}

/* The overlay that will fade out as the image fades in */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10C1FF;
    opacity: 0.5; /* Start at 50% opacity */
    z-index: 1; /* Ensure the overlay is on top of the image */
    animation: fade-out-overlay 1s ease-out forwards; /* Overlay fade-out animation */
}

@media only screen and (max-width: 768px) {
  .hero img {
    display: none;
  }
    
 .hero_tdt img {
    display: none;
  }
}
  
.hero_smallscreens {
    margin-top: 119px;
    width: 100%;
    position: relative;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
    z-index: 999;
}


.hero_smallscreens img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0px auto;
    animation: fade-in-from-corner 1s ease-out forwards; /* Apply animation */
}

@media only screen and (min-width: 768px) {
  .hero_smallscreens img {
    display: none;
  }
}

@keyframes fade-in-from-corner {
    0% {
        opacity: 0;
        -webkit-mask-image: linear-gradient(to bottom right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    }
    100% {
        opacity: 1;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Fade out the overlay */
@keyframes fade-out-overlay {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

/* END HERO SECTION*/ 


/* GRID SECTION TYPE*/ 

.hp_description {
text-align: left;
color: #999;
 font-size: calc(12px + .3vw);
letter-spacing: 2px;
font-weight: 400;
font-family: "Oswald", sans-serif;
margin: 7px auto 70px auto;
}

.description {
text-align: center;
color: #999;
 font-size: calc(12px + .2vw);
letter-spacing: 3px;
font-weight: 400;
font-family: "Oswald", sans-serif;
padding: 24px 12px;
text-transform: uppercase;
}

.powerpoints {
text-align: center;
color: #555;
font-size: calc(10px + .2vw);
line-height: calc(20px + .2vw);
letter-spacing: 3px;
font-weight: 400;
font-family: "Oswald", sans-serif;
padding: 24px 12px;
text-transform: uppercase;
margin-left: calc(40px + 1vw);
margin-right: calc(40px + 1vw);
margin-bottom: 50px;
}
	
/* END GRID SECTION TYPE*/ 



/* HOME PAGE SLIDE SHOW*/ 
.slideshow-container {
      max-width: 79%;
      position: relative;
      margin: 90px auto 50px auto;
    }
	
@media only screen and (max-width: 768px) {
     .slideshow-container {
      max-width: 90%;
      margin: 75px auto 50px auto;
    }
    }
	
	@media only screen and (max-width: 480px) {
     .slideshow-container {
		max-width: 90%;
      margin: 75px auto 50px auto;
    }
    }
    
    
    .slide {
      display: block;
		font-family: "Oswald", sans-serif;
      padding-top: 70px;
	padding-bottom: 70px;
	padding-left: calc(34px + 4.5vw);
	padding-right: calc(34px + 4.5vw);
        font-size: calc(14px + .5vw);
      line-height: calc(30px + .9vw);
      font-weight: 100;
      color: #222;
      background-color: #cbfaff;
	border: solid 1px #999;
    }
	
	
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -50px;
		margin-left: calc(7px + .3vw);
	margin-right: calc(7px +3vw);
      padding-top: 34px;
	 padding-bottom: 34px;
	padding-left: calc(21px + 1vw);
	padding-right: calc(21px + 1vw);
      color: #0e6bb0;
      font-weight: normal;
      font-size: calc(30px + 1vw);
      transition: 0.2s;
    }
	
	  @media only screen and (min-width: 1920px) {
		 .prev, .next {
      padding: 34px 32px;
      font-size: 49px;
		}
	}
	
	  @media only screen and (max-width: 1024px) {
		 .prev, .next {
      padding: 24px 21px;
      font-size: 42px;
		}
	}
	
	  @media only screen and (max-width: 768px) {
		 .prev, .next {
      padding: 30px 12px;
      font-size: 27px;
		}
	}

    .next {
      right: 0;
    }

    .prev:hover, .next:hover {
      color: #ffffff;
    }

    .fade {
      animation: fade 1.5s ease-in-out;
    }

    @keyframes fade {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

.copyright {
text-align: center;
margin: 0px auto 50px auto;
color: #555;
 font-size: calc(12px + .2vw);
 line-height: calc(21px + .4vw);
letter-spacing: 3px;
font-weight: 400;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
}
/* END OF HOME PAGE SLIDE SHOW*/ 


/* ABOUT CONTAINER AND TYPE*/ 
.about_container {
	display: block;
	width: 79%;
	max-width: 999px;
margin: -50px auto 0px auto;
font-size: calc(14px + .2vw);
line-height: calc(23px + .7vw);
}

@media screen and (max-width: 768px) {
.about_container {
margin: 40px auto 0px auto;
}
}
	
.about_headline {
    display: block;
     font-size: calc(14px + .7vw);
    line-height: calc(24px + 1vw);
    letter-spacing: 2px;
   color: #222;
    font-weight: 400;
    font-family: Oswald, sans-serif;
}


/* END OF ABOUT CONTAINER AND TYPE*/ 

/* PORTFOLIO TYPE*/ 
.portfolio_headline {
    display: block;
     font-size: calc(12px + 1vw);
    line-height: calc(24px + 1vw);
    letter-spacing: 2px;
   color: #222;
    font-weight: 400;
    font-family: Oswald, sans-serif;
	margin-bottom: 50px;
}

/* END OF PORTFOLIO TYPE*/ 

/* TEAM CONTAINER AND TYPE*/ 
.team_container {
	display: block;
	width: 100%;
	max-width: 1200px;
margin: 200px auto 120px auto;
font-size: calc(13px + .2vw);
line-height: calc(21px + .7vw);
}

@media screen and (max-width: 768px) {
.team_container {
margin: 40px auto 0px auto;
}
	}
	


/* END OF TEAM CONTAINER AND TYPE*/ 

/* TESTIMONIAL TYPE*/ 
.testimonial {
    display: block;
     font-size: calc(17px + .2vw);
    line-height: calc(23px + 1vw);
    letter-spacing: 1px;
    color: #777;
    font-weight: 400;
    font-family: Oswald, sans-serif;
	background-color: #fff;
	margin-bottom: 40px;
}

/* END TESTIMONIAL TYPE*/ 


/* VIDEO CSS*/ 

video {
width: 59%;
border: solid 1px;
}

.totalview_video {
margin: 190px auto 0px auto;
}

@media screen and (max-width: 800px) {
.totalview_video {
width: 100%;
}
}

.video-container {
  max-width: 70%;
  margin: -50px auto 70px auto;
}

/* END OF VIDEO CSS*/ 



/* CONTACT PAGE*/ 	  
.testimonials {
max-width: 590px;
margin: 10px;
padding: 0px;
background-color: #fff;
text-align: left;
color: #222;
font-size: calc(14px = .5);
line-height: 37px;
letter-spacing: 1px;
font-weight: 100;
font-family: "Oswald", sans-serif;
}

/* END OF CONTACT PAGE*/ 


/*WHATWEDO FLEX 2-COLUMNS*/ 

.flex-container-whatwedo {
  display: flex;
 justify-content: space-between;
}

@media screen and (max-width: 1024px) {	
.flex-container-whatwedo  {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}
}

.flex-container-whatwedo > div {
font-size: 35px;
line-height: 45px;
text-align: justify-all;
padding-right: 79px;
border-right: solid 1px #ccc;
margin-right: 70px;
}

.flex-container-whatwedo > div2 {
font-size: 35px;
line-height: 45px;
text-align: justify-all;
}

@media screen and (max-width: 1024px) {	
.flex-container-whatwedo > div {
padding: 0px;
}
}

/*END OF WHATWEDO FLEX 2-COLUMNS*/ 

/*TEAM FLEX 2-COLUMNS*/ 

.flex-container-team {
  display: flex;
}

@media screen and (max-width: 1024px) {	
.flex-container-team {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}
}

.flex-container-team > div {
  margin: 10px;
  padding: 0px 70px;
  font-size: 35px;
line-height: 45px;
text-align: justify-all;
}

@media screen and (max-width: 1024px) {	
.flex-container-team > div {
padding: 0px;
}
}

/*END OF TEAM FLEX 2-COLUMNS*/ 





/*TIMELINE*/ 

.timeline_milestones {
position: absolute;
top: 790px;
right: 50px;
}

/*TIMELINE - FLEX 2-COLUMNS*/  

.flex-container-timeline {
  display: flex;
}

@media screen and (min-width: 1600px) {	
.flex-container-timeline{
display: flex;
margin: auto 102px;
}
}

@media screen and (min-width: 1920px) {	
.flex-container-timeline{
display: flex;
margin: auto 190px;
}
}

@media screen and (max-width: 1024px) {	
.flex-container-timeline{
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}
}

.flex-container-timeline > div {
width: 30%;
margin: 13px;
-webkit-box-shadow: 0px 4px 15px -1px rgba(0,68,153,0.79); 
box-shadow: 0px 4px 15px -1px rgba(0,68,153,0.79);
}

.flex-container-timeline > div2 {
width: 70%;
  margin: 15px;
  padding: 40px;
  font-size:23px;
line-height: 42px;
-webkit-box-shadow: 0px 4px 15px -1px rgba(0,68,153,0.79); 
box-shadow: 0px 4px 15px -1px rgba(0,68,153,0.79);
}

@media screen and (max-width: 1366px) {	
.flex-container-timeline > div {
width: 40%;
padding: 0px;
}
}

@media screen and (max-width: 1024px) {	
.flex-container-timeline > div {
width: 100%;
padding: 0px;
}
}

@media screen and (max-width: 1920px) {	
.flex-container-timeline > div {
width: 33%;
padding: 0px;
}
}

@media screen and (min-width:1720px) and (max-width: 1920px) {	
.flex-container-timeline > div {
width: 35%;
padding: 0px;
}
}


@media screen and (min-width: 1920px) {	
.flex-container-timeline > div2 {
width: 67%;
font-size: 25px;
line-height: 54px;  
padding: 50px;
}
}

@media screen and (min-width: 2100px) {	
.flex-container-timeline > div2 {  
padding: 70px;
}
}

@media screen and (min-width: 2300px) {	
.flex-container-timeline > div2 {  
padding: 79px;
font-size: 29px;
line-height: 72px;
}
}

@media screen and (min-width:1720px) and (max-width: 1920px) {	
.flex-container-timeline > div2 {
width: 65%;
font-size: 24px;
line-height: 56.9px;
}
}

@media screen and (max-width: 1366px) {	
.flex-container-timeline > div2 {
width: 79%;
}
}

@media screen and (max-width: 1024px) {	
.flex-container-timeline > div2 {
width: 89%;
font-size:17px;
line-height: 32px;
}
}

/*END OF TEAM FLEX 2-COLUMNS*/ 





/*TRADING INDUSTRY GRID*/  
.tradingplatform {
padding: 2rem;

}
.trading-cards {
max-width: 1400px;
margin: 20px auto 0px auto;
display: grid;
grid-gap: 4rem;
text-align: left;
font-family: 'Oswald', sans-serif;
}

/* Screen larger than 1024px 2 column */
@media (min-width: 1024px) {
  .trading-cards { grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 1024px) {
.trading-cards { grid-template-columns: repeat(1, 1fr); 
grid-gap: 0rem;
      
    }
}

@media (max-width: 1024px) {
    .trading-cards > div {
margin: 0px auto 0px auto;
}
}

/*END OF TRADING INDUSTRY GRID*/  



/*FOOTER STYLES*/ 

footer {
}

 .container-footer {
			display: grid;
			grid-template-columns: 30% 30% 38.5%;
			grid-gap: 10px;
			padding: 23px 20px;
			background-color: #0e6bb0;
		}

@media (max-width: 1167px) {
			.container-footer {
                grid-template-columns: 30% 40% 27.5%;
    }
}

		@media (max-width: 890px) {
			.container-footer {
				grid-template-columns: 100%;
                padding: 29px 25px;
			}
		}

		.item {
			padding: 30px;
			background-color: #fff;
			text-align: left;
			color: #333;
			font-size: 16px;
			line-height: 1.4;
			box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.3);
		}

		.item h3 {
			margin-top: 2px;
			margin-bottom: 10px;
			font-size: calc(10px + .3vw);
            letter-spacing: 2px;
           line-height: 21px;
			font-weight: normal;
			text-transform: uppercase;
		}
	
			.item h4 {
			margin-top: -12px;
			margin-bottom: 10px;
            margin-left: 2px;
			font-size: calc(10px + .3vw);
            letter-spacing: 1.5px;
           line-height: 23px;
			font-weight: 100;
		}
	@media (max-width: 480px) {
	.item h4 {
			font-size: 14px;
		    line-height: 23px;
		}
}
		.item p {
			margin-top: 23px;
			margin-bottom: 0;
            font-size: 19px;
            letter-spacing: 2px;
            line-height: 50px;
		}

.container {
			width: 90%;
			margin: 0 auto;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: repeat(2, 1fr);
			grid-gap: 10px;
			align-items: center;
			justify-items: center;
		}
		/* Social Icons Container */
.container-social {
    display: flex;
    justify-content: center;
	column-gap: 35px;
    margin-bottom: 30px;
}

/* Individual Social Icon Styling */
.social-icon {
    margin: 0 10px;
}

.social-icon a {
    font-size: 24px;
    color: #000; /* Change color as needed */
    text-decoration: none;
}

.social-icon a:hover {
    color: #007bff; /* Change hover color as needed */
}

/* Map Footer Styling */
.map-footer {
    margin-top: 20px;
}


form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

label {
  margin-top: 10px;
text-transform: uppercase;
font-size: calc(10px + .3vw);
letter-spacing: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 9px;
  font-size: 14px;
}

input[type="submit"] {
  background-color: #333;
  color: white;
max-width: 270px;
margin: auto;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
letter-spacing: 5px;
margin-top: 15px;
text-transform: uppercase;
}

input[type="submit"]:hover {
  background-color: #ccc;
}

/* END OF FOOTER STYLES WITH RFP FORM */




/* MAIN SECTIONS*/  

.whatwedo {
font-size: calc(15px + .3vw);
line-height: calc(23px + .9vw);
letter-spacing: 1.5px;
font-weight: 400;
font-family: "Oswald", sans-serif;
text-align: left;
}


.jane-rubin-headline {
    font-size: 35px;
    line-height: 35px;
	letter-spacing: 7px;
	font-weight: 100;
	text-transform: uppercase;
	margin: 40px auto;
}

@media screen and (min-width: 1600px) {
.jane-rubin-headline{
    font-size: 49px;
    line-height: 65px;
}
}

@media screen and (max-width: 912px) {
.jane-rubin-headline {
    font-size: 27px;
    line-height: 43px;
}
}



@media screen and (max-width: 768px) {
.jane-rubin-headline {
    font-size: 25px;
    line-height: 35px;
}
}

@media screen and (max-width: 480px) {
.jane-rubin-headline {
    font-size: 19px;
    line-height: 35px;
	letter-spacing: 1px;
}
}

@media only screen and (max-width: 768px) {
.jane-rubin-headline{
    display: none;
  }
}

.jane-rubin-headline-mobile {
    font-size: 27px;
    line-height: 37px;
	letter-spacing: 4px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 30px auto;
}

@media screen and (max-width: 480px) {
.jane-rubin-headline-mobile {
    font-size: 19px;
    line-height:30px;
	letter-spacing: 3px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 30px auto;
}
}

@media only screen and (min-width: 768px) {
.jane-rubin-headline-mobile{
    display: none;
}
}
   

.jane-rubin-subhead {
    font-size: 29px;
    line-height:45px;
	font-weight: 100;
}

@media screen and (min-width: 1600px) {
.jane-rubin-subhead  {
    font-size: 43px;
    line-height: 65px;
}
}

@media screen and (max-width: 912px) {
.jane-rubin-subhead  {
    font-size: 21px;
    line-height: 45px;
}
}



@media screen and (max-width: 709px) {
.jane-rubin-subhead  {
    font-size: 14px;
    line-height: 35px;
}
}

@media screen and (max-width: 542px) {
.jane-rubin-subhead  {
    font-size: 9px;
    line-height: 27px;
}
}
.main-portfolio_janerubin_about {
    display: block;
    font-size: 39px;
    line-height: 59px;
    letter-spacing: 2px;
    color: #222;
    font-weight: 100;
    font-family: Oswald, sans-serif;
}

@media screen and (min-width: 1920px) {
.main-portfolio_janerubin_about{
	    font-size: 59px;
    line-height: 73px;
}
}

@media screen and (min-width: 1600px) {
.main-portfolio_janerubin_about{
	    font-size: 49px;
    line-height: 63px;
}
}

@media screen and (max-width: 900px) {
.main-portfolio_janerubin_about{
	    font-size: 35px;
    line-height: 50px;
}
}

@media screen and (max-width: 768px) {
.main-portfolio_janerubin_about{
	    font-size:29px;
    line-height: 45px;
}
}

@media screen and (max-width: 609px) {
.main-portfolio_janerubin_about{
font-size: 20px;
line-height: 35px;
font-weight: 400;
	
}
}

@media screen and (max-width: 480px) {
.main-portfolio_janerubin_about{
	    font-size:15px;
    line-height: 29px;
	letter-spacing: 1px;
}
}

.main-portfolio_janerubin_about > h2 {
    display: block;
    font-size: 79px;
    line-height: 99px;
    font-weight: normal;

}

@media screen and (max-width: 768px) {
.main-portfolio_janerubin_about > h2 {
    font-size: 34px;
    line-height: 49px;
}
}

.main-portfolio_testimonial {
    display: block;
    font-size: 23px;
    line-height: 39px;
    letter-spacing: 1px;
    color: #222;
    font-weight: 100;
    font-family: Oswald, sans-serif;
	padding: 34px;
	border: solid 1px #777;
	background-color: #eee;
}

@media screen and (max-width: 768px) {
.main-portfolio_testimonial > h2 {
    font-size: 19px;
    line-height: 34px;
}
}

.main-portfolio_hp_bodycopy {
    display: block;
    font-size: 19px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #222;
    font-weight: 100;
    font-family: Oswald, sans-serif;
	padding: 43px;
	border: solid 1px #ccc;
}

@media only screen and (max-width: 768px) {
    .main-portfolio_hp_bodycopy {
    font-size: 15px;
    line-height: 27px;
	margin-top: 70px;
}
}

.main-portfolio_hp_subhead {
    display: block;
    font-size: 42px;
    line-height: 59px;
    letter-spacing: 2px;
    color: #222;
    font-weight: 100;
    font-family: Oswald, sans-serif;
	margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .main-portfolio_hp_subhead {
    font-size: 34px;
    line-height: 47px;
	margin-bottom: 30px;
}
}

.mainrfp {	
margin-left: auto;
margin-right: auto;
min-height: 100%;
}


.maintimeline {
margin-left: auto;
margin-right: auto;
min-height: 100%;      
}

.maintimeline {
margin-left: auto;
margin-right: auto;
min-height: 100%;      
}

@media screen and (min-width: 1700px){
.maintimeline {	
margin-left: 150px;
margin-right: 150px;
}
}

@media screen and (min-width: 1920px){
.maintimeline {	
margin-left: 400px;
margin-right: 400px;
}
}

.main {	
margin-left: 150px;
margin-right: 150px;
}

@media screen and (min-width: 800px) and (max-width: 1024px ) {
.main{
margin-left: 120px;
margin-right: 120px;
}
}

@media screen and (min-width: 599px) and (max-width: 800px ) {
.main{
margin-left: 90px;
margin-right: 90px;
}
}

@media screen and (min-width: 414px) and (max-width: 599px ) {
.main {
margin-left: 50px;
margin-right: 50px;
}
}

@media screen and (min-width: 0px) and (max-width: 414px ) {
.main{
margin-left: 30px;
margin-right: 30px;
}
}

.main > h1 {
 display: block;
font-size: 27px;
line-height: 40px;
letter-spacing: 2px;
font-weight: 400;
color: #222;	
font-family: Oswald, sans-serif;
margin-top: 64px;
margin-bottom: 20px;       
}

.main > h2 {
 display: block;
font-size: 17px;
line-height: 29px;
letter-spacing: 1.5px;
font-weight: 400;
color: #222;	
font-family: Oswald, sans-serif;
margin-top: -50px;
margin-bottom: 30px;       
}


.hero-headline {
position: relative;
bottom: 340px;
left: 0px;
font-family: Oswald, sans-serif;
color: #fff;
font-size: 64px;
line-height: 72px;
letter-spacing: 1px;
font-weight: 400;
background: #004499;
padding: 34px 59px 34px 34px;
opacity: .7;
z-index: 99999;
}

.main-newyorkcity-global-agency {
display: block;
top: 0px;
left: 0px;
width: 100%;
min-height: 100%;
margin-bottom: 40px;   
    
}


.main-portfolio {
display: block;
z-index: 9999;
}

.main-portfolio > div {
margin-bottom: 30px;
}



.main-headlines {
display: block;
font-size: 53px;
line-height: 67px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
margin-top: 40px;	
text-transform: uppercase;
}

@media screen and (min-width: 599px) and (max-width: 800px ) {
.main-headlines{
font-size: 39px;
line-height: 54px;
}
}

@media screen and (min-width: 414px) and (max-width: 599px ) {
.main-headlines  {
font-size: 27px;
line-height: 39px;
}
}

@media screen and (min-width: 0px) and (max-width: 414px ) {
.main-headlines {
font-size: 21px;
line-height: 32px;
}
}

.main-feature {
display: block;
padding: 47px;
font-size: 19px;
line-height: 35px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
background: #C9FAFF;
margin-top: 32px; 
}

.top-headlines {
display: block;
font-size: 53px;
line-height: 67px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
margin-top: 40px;
}

@media screen and (min-width: 599px) and (max-width: 800px ) {
.top-headlines{
font-size: 39px;
line-height: 54px;
}
}

@media screen and (min-width: 414px) and (max-width: 599px ) {
.top-headlines  {
font-size: 29px;
line-height: 42px;
}
}

@media screen and (min-width: 0px) and (max-width: 414px ) {
.top-headlines {
font-size: 25px;
line-height: 37px;
}
}

/*INTERIOR 2-COLUMN GRID*/ 

.interior-2-columns {
   display: grid; 
   grid-template-rows: 1fr;
   grid-template-columns: 1fr 1fr;
   gap: 0px;
   height: 100%;
   margin: auto;
}
        
 @media screen and (max-width: 1024px) {       
.interior-2-columns {
   display: grid; 
   grid-template-rows: 1fr 1fr;
   grid-template-columns: 1fr;
   gap: 0px;
   height: 100%; 
   margin: 90px;
}
}

.interior-2-columns > div {
width: 100%;
display: block;
font-size: 19px;
line-height: 34px;
letter-spacing: 1px;
color: #222;	
font-weight:100;
font-family: Oswald, sans-serif;
text-align: left;
}  

.interior-2-columns > div2 {
width: 59%;
margin-left: 90px;
display: block;
font-size: 19px;
line-height: 34px;
letter-spacing: 1px;
color: #222;	
font-weight:100;
font-family: Oswald, sans-serif;
text-align: left;
}

@media screen and (max-width: 1024px) {        
.interior-2-columns > div {
} 
}

@media screen and (max-width: 1024px) {        
.interior-2-columns > div2 {
width: 100%;
margin: auto;
} 
}

/*END OF INTERIOR 2-COLUMN GRID*/ 

.interior_headings {
display: block;
font-size: 49px;
line-height:64px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
margin-top: 10px;
}


.interior_subheads {
display: block;
font-size: 39px;
line-height: 50px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
margin-top: 40px;
}

.interior_subheads_small {
display: block;
font-size: 29px;
line-height: 40px;
letter-spacing: 1px;
color: #222;	
font-weight:400;
font-family: Oswald, sans-serif;
text-align: left;
margin-bottom: 12px;
}

.interior-bodycopy {
display: block;
font-size: 21px;
line-height: 39px;
letter-spacing: 1px;
color: #222;	
font-weight:100;
font-family: Oswald, sans-serif;
text-align: left;
margin: 30px 0px 50px 0px;
}

.interior-bodycopy_accent {
display: block;
font-size: 17px;
line-height: 29px;
letter-spacing: 1px;
color: #222;	
font-weight:100;
font-family: Oswald, sans-serif;
text-align: left;
margin: 30px 0px 50px 0px;
}

@media screen and (min-width: 0px) and (max-width: 599px ) {
.interior-bodycopy {
font-size: 17px;
line-height: 30px;
}
}

@media screen and (min-width: 0px) and (max-width: 414px ) {
.interior-bodycopy {
font-size: 15px;
line-height: 27px;
}
}
/* END OF STYLES SPECIFIC TO MAIN SECTION*/  
