/* Variables
---------------------------------------- */
:root {
  --primary: #97C2B8;
  --secondary: #F9AB51;
  --dark: #628B82;
  --light: #F4FCFA;
  --border: #D2EFE8;
  --color-heading: #111111;
  --font-text: 'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;
  --shadow: 0 0 10px 4px var(--border);
  --shadow2: 0 0 4px 2px var(--border);
}

/* HTML and Body
---------------------------------------- */
body {
  background-color: #ffffff;
  font-family: var(--font-text);
}

/* Typography
---------------------------------------- */
code, kbd, pre, samp {
  background: var(--border);
  color: var(--color-heading);
}

blockquote {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Table
---------------------------------------- */
th {
  background: var(--light);
  color: var(--color-heading);
  border: 1px solid var(--border);
}

th a {
  color: var(--color-heading);
}

td {
  border: 1px solid var(--border);
}

/* Form
---------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  outline: 0;
  border: 0;
  -webkit-box-shadow: 0 0 4px 1px var(--border);
          box-shadow: 0 0 4px 1px var(--border);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 4px 1px var(--primary);
          box-shadow: 0 0 4px 1px var(--primary);
}

fieldset {
  border: 1px solid var(--border);
}

/* Button */
.button, button, [type="button"], [type="reset"], [type="submit"] {
  background-color: var(--light);
  border: 2px solid var(--primary);
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button:hover, button:hover, [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover {
  background-color: var(--border);
  color: var(--color-heading);
}

@font-face {
  font-family: 'xara';
  src: url("../fonts/xara.eot?rxiuz3");
  src: url("../fonts/xara.eot?rxiuz3#iefix") format("embedded-opentype"), url("../fonts/xara.ttf?rxiuz3") format("truetype"), url("../fonts/xara.woff?rxiuz3") format("woff"), url("../fonts/xara.svg?rxiuz3#xara") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ficon-"], [class*=" ficon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'xara' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ficon-add_comment:before {
  content: "\e900";
}

.ficon-search:before {
  content: "\e901";
}

.ficon-user:before {
  content: "\e902";
}

.ficon-calendar:before {
  content: "\f073";
}

.ficon-twitter:before {
  content: "\f099";
}

.ficon-facebook:before {
  content: "\f09a";
}

.ficon-github:before {
  content: "\f09b";
}

.ficon-linkedin:before {
  content: "\f0e1";
}

.ficon-comments:before {
  content: "\f0e6";
}

.ficon-file:before {
  content: "\f0f6";
}

.ficon-youtube:before {
  content: "\f16a";
}

.ficon-instagram:before {
  content: "\f16d";
}

.ficon-vk:before {
  content: "\f189";
}

.ficon-whatsapp:before {
  content: "\f232";
}

.ficon-vimeo:before {
  content: "\f27d";
}

.ficon-hashtag:before {
  content: "\f292";
}

.ficon-telegram:before {
  content: "\f2c6";
}

.block-title {
  margin-bottom: 0.8rem;
}

.block-title::before,
.block-title::after {
  position: absolute;
  content: '';
  bottom: 0;
  height: 2px;
}

.block-title::before {
  left: 0;
  width: 10px;
  background-color: var(--secondary);
}

.block-title::after {
  left: 16px;
  width: 30px;
  background-color: var(--primary);
}

.header-top {
  background-color: var(--border);
}

.header-top a {
  color: var(--color-text);
  border-bottom: 1px dashed var(--primary);
}

.header-top a:hover,
.header-top i {
  color: var(--primary);
}

.header-main {
  background-color: var(--border);
  padding: 1rem 0;
}

.site-name,
.site-name a {
  color: var(--color-heading);
  font-weight: 700;
}

.site-slogan {
  font-size: 0.9rem;
}

.search-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
}

.search-box-content .block-title::before,
.search-box-content .block-title::after {
  content: none;
}

.search-box-content input[type="search"],
.search-box-content input[type="search"]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mobile-menu span {
  background-color: var(--primary);
}

.menu-wrap {
  background-color: var(--border);
}

.menu-wrap ul.menu li > a {
  padding: 8px;
}

.menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-header {
  background-color: var(--light);
  padding: 4rem 0;
  overflow: hidden;
}

.page-header::before {
  position: absolute;
  content: '';
  background-color: var(--border);
  width: 100%;
  height: 100%;
  bottom: 2rem;
}

.region-page-header {
  text-align: center;
}

/* Submitted Details */
.node-submitted-details i {
  color: var(--primary);
}

.node-header .image-field {
  margin: 0;
}

.node-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author-picture {
  margin-right: 10px;
}

.taxonomy-term a {
  border-radius: 6px;
  background-color: var(--light);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.taxonomy-term a:hover {
  color: var(--color-text);
  background-color: var(--border);
  border: 2px solid var(--primary);
}

.sidebar .block {
  background-color: var(--light);
  -webkit-box-shadow: var(--shadow2);
          box-shadow: var(--shadow2);
}

/* Comments
--------------------------------------*/
#comments {
  border-top: 1px solid var(--border);
}

#comments i {
  color: var(--primary);
}

.comments-title::before,
.comment-form-wrap .add-comment-title::before {
  font-family: 'xara';
  color: var(--primary);
  padding-right: 6px;
}

.comments-title::before {
  content: "\f0e6";
}

.comment-form-wrap .add-comment-title::before {
  content: "\e900";
}

/* Comments -> single comment */
.comment {
  -webkit-box-shadow: var(--shadow2);
          box-shadow: var(--shadow2);
}

.comment-header {
  background-color: var(--border);
  border: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comment-user-picture {
  -ms-flex: 0 0 100px;
  -webkit-box-flex: 0;
          flex: 0 0 100px;
}

.comment-title,
.comment-title a {
  color: var(--color-heading);
}

.comment-reply a,
.comment-delete a,
.comment-edit a {
  padding: 4px 12px;
  background: #ffffff;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.comment-reply a:hover,
.comment-delete a:hover,
.comment-edit a:hover {
  background: var(--primary);
  color: #ffffff;
}

.site-footer {
  background-color: var(--light);
  padding-top: 2rem;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  content: '';
  background-color: var(--border);
  width: 100%;
  height: 100%;
  top: 2rem;
}

.footer .block-title {
  font-weight: 300;
  font-size: 1.4rem;
}

.footer-bottom-container {
  border-top: 1px solid var(--primary);
}

.footer li {
  border-bottom: 1px solid var(--light);
}

.footer a {
  color: var(--color-text);
}

.footer a:hover {
  color: var(--primary);
}

/* Feed text */
.feed-icon {
  display: block;
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url(../images/icons/rss.svg) no-repeat;
}

/* Components -> Social icons */
.social-icons {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.social-icons li {
  padding: 0;
}

.social-icons li a {
  color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.social-icons li a:hover {
  background-color: var(--light);
}

.region-content-home-top .block:nth-child(even) {
  background-color: var(--light);
}

.homepage-content .block {
  padding: 1rem 0;
}

.homepage-content .block-title {
  text-align: center;
}

.homepage-content .block-title::before {
  left: calc(50% - 23px);
}

.homepage-content .block-title::after {
  left: calc(50% - 7px);
}

/* components -> Servies */
.services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(265px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  grid-gap: 1rem;
  gap: 1rem;
}

.service {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
  background-color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  text-align: center;
  z-index: 0;
}

.service::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.service:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1rem;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.service-icon>img {
    width: 50px;
    height: auto;
}

.services p:nth-child(2) {
    text-align: justify;
}

.service:hover .service-icon {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.service-icon2 {
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.service-icon2>img {
    height: auto;
}

.service:hover .service-icon2 {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
.node-type-product .field--name-field-image.field--type-image{
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 25px, transparent 25px) 0% 0%/30px 30px no-repeat,
            radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 25px, transparent 25px) 100% 0%/30px 30px no-repeat,
            radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 25px, transparent 25px) 0% 100%/30px 30px no-repeat,
            radial-gradient(circle at 0 0, #ffffff 0, #ffffff 25px, transparent 25px) 100% 100%/30px 30px no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 60px) no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 60px) calc(100% - 10px) no-repeat,
            linear-gradient(90deg, #58ddb3 0%, rgba(76,211,185,0.55) 40%, rgba(72, 171, 224, 0.351) 58%, #48a6d8 100%);
    border-radius: 30px;
    padding: 25px;
    box-sizing: border-box;
}

.node-type-product .layout__region.layout__region--second>div>div>span {
    font-size: 34px;
    padding-left:20px;
}
.node-type-product .layout__region.layout__region--second>div>div>span {
    font-size: 34px;
    padding-left:20px;
}
.node-type-product .layout__region.layout__region--second .field--name-field-headline {
    font-size: 26px;
    padding-left:20px;
}
.node-type-product .layout__region.layout__region--second .field--name-field-shortsummary{
    padding-left:20px;
}
.node-type-product .layout__region.layout__region--second .field.field--name-field-file.field--type-file {
    margin-left: 20px;
    padding: 4px 10px 4px;
    border: 1px solid #9ac2b8;
    width: 200px;
}
.node-type-product .node-taxonomy-container {
    padding-left: 20px;
}

.serv_text{
    text-align:justify;
}

h3.title1 {
    background: #97c2b8;
    color: #fff;
    border-radius: 25px;
    width: auto;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 10px;
}


ul.menu li a {
    transition: 0.4s;    
    color: #36a1a8!important;
    font-weight:600;
}
ul.menu li a:hover {
    color: #ffffff!important;
    font-weight:600;
    font-size:20px;
}

h3.title1 a{
    color: #fff!important;
}

/* Pricing Table */
.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pricing-item {
  border-top: 2px solid var(--primary);
  background-color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 10px;
}

.pricing-item h4 {
  color: var(--secondary);
}

.pricing-item h4,
.pricing-item sup,
.pricing-item sub {
  font-weight: 300;
}

.pricing ul {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem 0;
}

.pricing li {
  border-bottom: 1px solid var(--border);
}

/* Projects */
.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.project {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.project img {
  border-radius: 6px;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

.project img:hover {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}

.bg-light,
.featured {
  background-color: var(--light);
}

/* Box */
.box {
  background-color: #ffffff;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}


.homepage-content.context {
    width: 100%;
}

.homepage-content.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}

div#block-quickicon img {
    padding: 20px;
}

.area{
     width: 100%;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
   background: rgb(135 224 217 / 45%);
   /*background: url('../images/logo-icon.png');*/
    animation: animate 25s linear infinite;
    
    background-size: contain;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

#block-views-block-fecture2-block-1 .views-field.views-field-title {
    text-align: center;
    margin-top: 10px;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.partner-list .views-row {
    width: 30%;
    display: inline-grid;
    text-align: center;
    z-index: 100;
    position: relative;
}

ul.social-icons svg {
    /* width: 31px; */
    /* height: 31px; */
    padding: 5px;
    /* background: #97c2b8; */
}

.gradient-border img {
    margin: 10px;
    border-radius: 100%;
}
.gradient-border {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #fff;
  padding:10px;
}
.gradient-border::after {
    position: absolute;
    content: "";
    /* top: calc(-1 * 100px); */
    /* left: calc(-1 * 100px); */
    z-index: -1;
    width: calc(100% + 3px * 2);
    height: calc(100% + 3px * 2);
    background: linear-gradient(60deg, #8fe0df, #FFEB3B, #5dd7e6, #2eead9, #f2cb5f, #ebf25f, #5ff281, #ddd48c);
    background-size: 300% 300%;
    background-position: 0 50%;
    border-radius: 100%;
    animation: moveGradient 4s alternate infinite;
}

@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}

@keyframes move-it {
  0% {
    background-position: initial;
  }
  100% {
    background-position: 100px 0px;
  }
}
/*
.ripple-background {
    background: repeating-linear-gradient(  45deg,  #d2efe8 ,   #eaf5f3 5%, #d2efe8 5%,  #ffffff 10%);
    background-size: 100px 100px;
    animation: move-it 2s linear infinite;
}
*/
div#flexslider-1 {
    background: #d2efe8;
}

.slider.ripple-background{
margin: 0;
overflow: hidden;
}

.slider i{
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	-webkit-animation: 'screen'  infinite;
  animation: 'screen'  infinite;
}


.slider i:nth-child(1){
	top:20px;
	left:30px;
		background: -webkit-radial-gradient(center, ellipse cover, #3ca2a69e 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #3ca2a69e;
	animation-duration: 5s;
}

.slider i:nth-child(2){
	top:420px;
	left:30px;
	background: -webkit-radial-gradient(center, ellipse cover,   #ffffffbf 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px  #ffffffbf;
	animation-duration: 21s;
}

.slider i:nth-child(3) {
    top: 550px;
    left: 1180px;
    background: -webkit-radial-gradient(center, ellipse cover,  #ffffffbf 0%,rgba(0,0,0,0) 100%);
    box-shadow: 0px 0px 5px 0px #ffffffc7;
    animation-duration: 5s;
}

.slider i:nth-child(4) {
    top: 5px;
    left: 1030px;
    background: -webkit-radial-gradient(center, ellipse cover,  #3ca2a69e 0%,rgba(0,0,0,0) 100%);
    box-shadow: 0px 0px 5px 0px #97c2b8;
    animation-duration: 4s;
}

.slider i:nth-child(5) {
    top: 280px;
    left: 512px;
    background: -webkit-radial-gradient(center, ellipse cover,  #e6ecbb 0%,rgba(0,0,0,0) 100%);
    box-shadow: 0px 0px 5px 0px  #e6ecbb;
    animation-duration: 5s;
}

.slider i:nth-child(6){
	top:550px;
	left:230px;
background: -webkit-radial-gradient(center, ellipse cover,  #ffffffbf 0%,rgba(0,0,0,0) 100%);
box-shadow:0px 0px 5px 0px  #ffffffbf; 
	animation-duration: 6s;
}

.slider i:nth-child(7){
	top:650px;
	left:50px;
	background: -webkit-radial-gradient(center, ellipse cover,  #99f0dcc2 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #99f0dcc2; 
	animation-duration: 15s;
}

.slider i:nth-child(8){
	top:120px;
	left:860px;
	background: -webkit-radial-gradient(center, ellipse cover,  #99def0 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #99def0; 
	animation-duration: 5s;
}
.slider i:nth-child(9){
	top:896px;
	left:132px;
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,0,0.65) 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #FFFF00; 
	animation-duration: 13s;
}

.slider i:nth-child(10){
	top:578px;
	left:357px;
	background: -webkit-radial-gradient(center, ellipse cover,  #99f0dcc2  0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #99f0dcc2; 
	animation-duration: 4s;
}

.slider i:nth-child(11){
	top:380px;
	left:230px;
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(1,210,255,0.65) 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #01D2FF; 
	animation-duration: 5s;
}

.slider i:nth-child(12){
	top:570px;
	left:1100px;
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(237,247,255,0.65) 0%,rgba(0,0,0,0) 100%);
	box-shadow:0px 0px 5px 0px #EDF7FF; 
	animation-duration: 6s;
}



@keyframes screen {
	from {
		opacity: 0;
	}

	25%{
		opacity: 0.3;
		transform: scale3d(3, 3, 4);
	}

	50%{
		opacity: 0.75;
	}

	75%{
		opacity: 1;

	}

	to{
		opacity: 0;
	}
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}

.small {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium {
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large {
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge {
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge {
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1 {
  opacity: 0.2;
}
.shade2 {
  opacity: 0.5;
}

.shade3 {
  opacity: 0.7;
}

.shade4 {
  opacity: 0.8;
}

.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}


@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Header */
  .menu-wrap .menu a {
    color: var(--color-heading);
  }
  .menu .expanded:hover {
    background-color: var(--primary);
  }
  .page-header {
    padding: 4rem 0 10rem 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }
  .page-header::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }
  /* Footer */
  .site-footer {
    padding-top: 10rem;
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  .site-footer::before {
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }
  

}


@media (min-width: 992px) {
  .menu-wrap {
    background-color: transparent;
  }
}
@media (max-width: 768px) {
    .partner-list .views-row {
    width: 50%;
    display: inline-grid;
    text-align: center;
    
    z-index: 100;
    position: relative;
  }
  
}
@media (max-width: 500px) {
  .partner-list .views-row {
    width: 100%;
    display: inline-grid;
    
    text-align: center;
    z-index: 100;
    position: relative;
  }
  .slider {
    height: 70vh;
  }
  .slider-container {
   height: 70vh;
  }
  .menu-wrap ul.menu > li {
   line-height: 2;
   }
   .menu-wrap ul.menu {
    font-size: 2rem;
   }
}
/*# sourceMappingURL=style.css.map */