@import url('https://fonts.googleapis.com/css2?family=Averia+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700,900');
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@700;900&family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

body {
	position:relative;
    margin: 0;
	padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 1.1em;
	text-align: center;
	line-height: 1.2;
	top:0px;
	min-height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 80em;
    margin: 0 auto;
}

.clearfix::after,
section::after,
footer::after {
	content: '';
	display: block;
	clear: both;
}

header {
	display: flex;
	width: 100%;
	padding: 20px 0 20px 0;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (min-width: 60rem) {
	header {
	flex-direction: row;
	padding: 20px 20px;
		}
	}

.logo {
	margin:auto;
	cursor: pointer;
}

.navbar {
	overflow: hidden;
  }
  
  .navbar a {
	float: left;
	font-size: .78rem;
	color: #6e1111;
	text-transform: uppercase;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
  }

  @media (min-width: 60rem) {
	.navbar a {
		font-size: 1rem;
	}
	}

  .dropdown {
	float: left;
	overflow: hidden;
  }
  
  .dropdown .dropbtn {
	cursor: pointer;
	font-size: .78rem;  
	border: none;
	outline: none;
	color: #6e1111;
	text-transform: uppercase;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
  }
  @media (min-width: 60rem) {
	.dropdown .dropbtn  {
		font-size: 1rem;
		}
	}

  .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
	background-color: #ddd;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  .dropdown-content a {
	float: none;
	color: #6e1111;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
  }
  
  .dropdown-content a:hover {
	background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
	display: block;
  }

section {
	padding: 3em 0;
  }

.title {
    font-family: 'Averia Libre', cursive;
	font-size: 3rem;
	margin-bottom: 1.5em;
	font-weight: 900;
	margin-top: 1em;
}

.title span {
	font-weight: 300;
	display: block;
	font-size: .4em;
}

@media (min-width: 60rem) {
	.title {
		font-size: 5rem;
	}
}

.button {
	display: inline-block;
	font-size: 1.15rem;
	text-decoration: none;
	text-transform: uppercase;
	border-width: 2px;
	border-style: solid;
	padding: .5em 1.75em;
}
  
.home-hero {
	background-image:linear-gradient(95deg, rgba(17, 54, 241, 0.418) 0%, rgba(243, 6, 180, 0.245)), url('../images/last-angel.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 3em 0;
	color: #FFF;
    background-color: transparent;
}

@media (min-width: 60rem) {
	.home-hero {
		height: 80vh;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: transparent;
		opacity: 0.9;
		background-image: linear-gradient(95deg, rgba(17, 54, 241, 0.288) 0%, rgba(243, 6, 180, 0.045)), url('../images/sdrasia_head.jpg');
		transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
		width: 100%;
		background-size: cover;
		text-align: center;
		color: #fff;
		padding: 20px;
	}
}

.button {
	display: inline-block;
	font-size: 1.15rem;
	text-decoration: none;
	text-transform: uppercase;
	border-width: 2px;
	border-style: solid;
	padding: .5em 1.75em;
}

@media (min-width: 60rem) {
	.button {
		font-size: 1.5rem;
	}
}

.button-accent {
	color: #f3f3f3;
	border-color: #f3f3f3;
}

.button-accent:hover,
.button-accent:focus {
	background: rgba(111, 73, 103, 0.196);
	border-color:  rgba(111, 73, 110, 0.807);
	color: #ede6e6;
}

.content {
	text-align: center;
}
	
.main-content {
	text-align: justify;
}


@media (min-width: 60rem) {
	.content, .main-content {
		font-size: 1.2rem;
		line-height: 1.3;
		margin-bottom: 1em;
		font-weight: 400;
		margin-top: 1em;
	}
}

.blue {
	color: #0f52ba;
}
.green {
	color: green;
}
.darkred {
	color: #c41111;
}

.card {
	background-color: rgb(30, 143, 255);
	color: white;
	padding: 1rem;
	min-height: 100%;
}

.cards {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.artwork {
	background-size: cover;
	width: 100%;
	border-radius: 0.4em;
}
.card2 {
	background-color: rgb(30, 143, 255);
	color: white;
	padding: 1rem;
	min-height: 100%;
}

.cards2 {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.card3 {
	background-color: rgb(244, 245, 247);
	color: rgb(12, 12, 12);
	padding: 1rem;
	min-height: 100%;
}

.cards3 {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.row {
	display: flex;
	flex-direction: column;
}

@media (min-width: 60rem) {
	.row {
		display: flex;
		flex-direction: row;
	}
	.col + .col {
        margin: 0;
        margin-top: 2em;
    }
}

.col {
    width: 100%;
	margin: 0;
	margin-top: 2em;
	padding-top: 1.5em;
}


th {
	border-bottom: 1px solid rgba(7, 29, 224, 0.578);
}


.rwd-table {
	margin: auto;
	min-width: 300px;
	max-width: 100%;
	border-collapse: collapse;
  }

  .rwd-table tr:first-child {
	border-top: none;
	background: #428bca;
	color: #fff;
  }
  
  .rwd-table tr {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-color: #f5f9fc;
  }
  
  .rwd-table tr:nth-child(odd):not(:first-child) {
	background-color: #ebf3f9;
  }
  
  .rwd-table th {
	display: none;
  }
  
  .rwd-table td {
	display: block;
  }
  
  .rwd-table td:first-child {
	margin-top: .5em;
  }
  
  .rwd-table td:last-child {
	margin-bottom: .5em;
  }
  
  .rwd-table td:before {
	content: attr(data-th) ": ";
	font-weight: bold;
	width: 120px;
	display: inline-block;
	color: #000;
  }
  
  .rwd-table th,
  .rwd-table td {
	text-align: left;
  }
  
  .rwd-table {
	color: #333;
	border-radius: .4em;
	overflow: hidden;
  }
  
  .rwd-table tr {
	border-color: #bfbfbf;
  }
  
  .rwd-table th,
  .rwd-table td {
	padding: .5em 1em;
  }
  @media screen and (max-width: 601px) {
	.rwd-table tr:nth-child(2) {
	  border-top: none;
	}
  }
  @media screen and (min-width: 600px) {
	.rwd-table tr:hover:not(:first-child) {
	  background-color: #d8e7f3;
	}
	.rwd-table td:before {
	  display: none;
	}
	.rwd-table th,
	.rwd-table td {
	  display: table-cell;
	  padding: .25em .5em;
	}
	.rwd-table th:first-child,
	.rwd-table td:first-child {
	  padding-left: 0;
	}
	.rwd-table th:last-child,
	.rwd-table td:last-child {
	  padding-right: 0;
	}
	.rwd-table th,
	.rwd-table td {
	  padding: 1em !important;
	}
  }


.map {
    padding: 4em;
}

.heading, .sub-heading {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    color: #1a1a1a;
}

@media (min-width: 60rem) {
	.heading {
		font-size: 4rem;
	}

	ul.list-ways {
		column-count: 2;
	  }
	  
}


.heading span {
    display: block;
}

ul.list-ways {
	column-count: 1;
	line-height: 1.5;
	padding: 2rem;
	margin: 0 auto;
	width: 100%;
	background-color: whitesmoke;
  }
  
  .list-ways li {
	padding-right: 2rem;
  }  

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 3rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	background: linear-gradient(-85deg, rgba(17, 54, 241, 0.901) 0.1%, rgba(156, 6, 243, 0.712));
	color: #fff;
}

.yt-responsive {
	position: relative;
	overflow: hidden;
	max-width: 65%;
	margin: 0 auto;
  }
  
.yt-responsive::after { 
	display: block;
	content: "";
	padding-top: 56.25%;
  }
  
.yt-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

/* clock */

@keyframes passingtime {
	0% {   transform: rotate(0); }
	50% {  transform: rotate(180deg); }
	100% { transform: rotate(360deg); }
  }
  
  
  .clock {
	position: relative;
  }
  
  .hand {
	left: 50%;
	position: absolute;
	top: 45%;
  
	animation-name: passingtime;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
  }
  
  .hours {
	animation-duration: 100s;
	width: 25%;
  }
  
  .minutes {
	animation-duration: 10s;
	width: 40%;
  }

  .medium .clock {
	border: 12px #ee0707 solid;
	box-shadow: inset 0 0 11px rgba(0, 0, 0, .45);
	border-radius: 75px;
	height: 100px;
	width: 100px;
	margin: 0 auto;
  }
  .medium .hand {
	border: 5px solid;
	border-radius: 5px 0 0 5px;
	margin-left: -5px;
	transform-origin: 5px 5px;
  }
  
  /* footer new */

  footer {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	min-height: 90vh;
  }
  
  .footer {
	position: relative;
	width: 100%;
	background: #3586ff;
	min-height: 100px;
	padding: 20px 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }
  
  .social-icon,
  .menu {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	flex-wrap: wrap;
	padding-left: 0px;	
  }
  
  .social-icon__item,
  .menu__item {
	list-style: none;
  }
  
  .social-icon__link {
	font-size: 1.5rem;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
	filter: invert(1);
	transition: 0.5s;
  }
  .social-icon__link:hover {
	transform: translateY(-10px);
  }
  
  .menu__link {
	font-size: 1rem;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
	text-decoration: none;
	opacity: 0.75;
	font-weight: 300;
  }
  
  .menu__link:hover {
	opacity: 1;
  }
  
  .footer p {
	color: #fff;
	margin: 15px 0 10px 0;
	font-size: 1rem;
	font-weight: 300;
  }
  
  .wave {
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background: url("/images/wave.png");
	background-size: 1000px 100px;
  }
  
  .wave#wave1 {
	z-index: 100;
	opacity: 1;
	bottom: 0;
	-webkit-animation: animateWaves 4s linear infinite;
	-moz-animation: animateWaves 4s linear infinite;
	animation: animateWaves 4s linear infinite;
  }
  
  .wave#wave2 {
	z-index: 99;
	opacity: 0.5;
	bottom: 10px;
	-webkit-animation: animate 4s linear infinite !important;
	-moz-animation: animate 4s linear infinite !important;
	animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
	z-index: 100;
	opacity: 0.2;
	bottom: 15px;
	-webkit-animation: animateWaves 3s linear infinite;
	-moz-animation: animateWaves 3s linear infinite;
	animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
	z-index: 99;
	opacity: 0.7;
	bottom: 20px;
	-webkit-animation: animate 3s linear infinite;
	-moz-animation: animate 3s linear infinite;
	animation: animate 3s linear infinite;
  }
  
  @keyframes animateWaves {
	0% {
	  background-position-x: 1000px;
	}
	100% {
	  background-positon-x: 0px;
	}
  }
  
  @keyframes animate {
	0% {
	  background-position-x: -1000px;
	}
	100% {
	  background-positon-x: 0px;
	}
}
  @-webkit-keyframes animateWaves {
	0% {
	  -webkit-background-position-x: 1000px;
	  -moz-background-position-x: 1000px;
	  background-position-x: 1000px;
	}
	100% {
	  -webkit-background-positon-x: 0px;
	  -moz-background-positon-x: 0px;
	}
  }
  
  @-webkit-keyframes animate {
	0% {
	  -webkit-background-position-x: -1000px;
	  -moz-background-position-x: -1000px;
	}
	100% {
	  -webkit-background-positon-x: 0px;
	  -moz-background-positon-x: 0px;
	}
  }

  /* divider */

  .divider {
	position: relative;
	/* margin-top: 90px; */
	height: 1px;
}

.div-transparent:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-dot:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: -9px;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-color: rgb(183, 2, 255);
	border: 1px solid rgb(48,49,51);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px white,
					0 0 0 4px white;
}
  
.link a {
	background: linear-gradient(to bottom,  #1e8fff, #1e8fff) 50% calc(100% - 2px) / 50% 2px no-repeat;
	color: #000;
	/* font: italic normal 20px / 1.35 "Work Sans", Helvetica, Arial, Verdana, sans-serif; */
	margin: -1px;
	margin-bottom: -2px !important;
	padding: 1px 5px 5px 3px;
	text-decoration: none !important;
	line-height: 2;
	-webkit-transition: all .35s ease-in-out;
			transition: all .35s ease-in-out; 
		}
 
.link a:hover, 
.link a:focus {
	background-image: linear-gradient(to bottom, #1e8fff, #1e8fff);
	background-size: 100% 2px;
	color:  #1e8fff; 
-webkit-transition: all .35s ease-in-out !important;
		transition: all .35s ease-in-out !important; 
}

.links a {
	background: linear-gradient(to bottom,  #0518eb79, #0518eb79) 50% calc(100% - 2px) / 50% 2px no-repeat;
	color: #f7f5f5; 
	margin: -1px;
	margin-bottom: -2px !important;
	padding: 1px 5px 5px 3px;
	text-decoration: none !important;
	line-height: 2;
	-webkit-transition: all .35s ease-in-out;
			transition: all .35s ease-in-out; 
		}
 
.links a:hover, 
.links a:focus {
	background-image: linear-gradient(to bottom, #1025e29f, #1025e29f);
	background-size: 100% 2px;
	color: #00000078; 
-webkit-transition: all .35s ease-in-out !important;
		transition: all .35s ease-in-out !important; 
}  

article p {
	margin-top: 40px;
}

article p::first-line {
	color: #532f05;
	font-weight: 900;
	font-size: 1.2em;
}

article p::first-letter {
	font-family: 'Mulish', san-serif;
	font-weight: 900;
	font-size: 6em;
	line-height: 110px;
	float: left;
	padding-top: 2px;
	padding-right: 16px;
	padding-left: 3px;
	color: #c41111;
}

  blockquote {
	background:rgba(255, 255, 0, 0.301);
	border-left: 10px solid rgb(156, 40, 40);
	margin: 1.5em 10px;
	padding: 0.5em 10px;
	quotes: "\201C""\201D""\2018""\2019";
  }
  
  blockquote:before {
	color: #c41111;
	content: open-quote;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
  }
  
  blockquote:after {
	color: #c41111;
	content: close-quote;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
  }
  
  blockquote p {
	display: inline;
  }

  #rcorners2 {
    border-radius: 0px;
    background: lightgray;
    padding: 10px;
  }