/*
Theme Name: swup theme
Theme URI: Your Theme URL
Description: 
Author: Sampo Malinen
Author URI: Your Author URL
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: your-theme-textdomain
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset some default styles */
body, div, h1, h2, h3, p {
    margin: 0;
    
    padding: 0;
}
/* Body styles */
a {
  text-decoration: none;
  
}
p {
    font-size: clamp(16px, 1vw + 14px, 18px);
}

form p {
    font-size: clamp(16px, 1vw + 14px, 18px);
}

span {
    font-size: clamp(16px, 1.2vw + 14px, 20px);
}

h1 {
    font-size: clamp(28px, 4vw, 48px);
}

h2 {
    font-size: clamp(24px, 3.5vw, 40px);
}

h3 {
    font-size: clamp(20px, 3vw, 32px);
}

h4 {
    font-size: clamp(18px, 2.5vw, 26px);
}

h5 {
    font-size: clamp(16px, 2vw, 22px);
}

h6 {
    font-size: clamp(14px, 1.5vw, 18px);
}

html, body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    
    color: #1B3C53;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    background-color: #E3E3E3;
   
}

html {
  scroll-behavior: smooth !important;
}

.uagb-icon-list__label {
  color: #ffffff;

}
article {
  padding-top: 5%;
}

.uagb-icon-list__source-wrap svg {
  font-size: 23px !important;
  width: 23px !important;
  height: 23px !important;
}

        /* Animated gradient background */
        body {
          background: #ffffff;
          background-size: 800% 800%;
          animation: gradientAnimation 15s ease infinite;
      }

      @keyframes gradientAnimation {
          0% {
              background-position: 0% 50%;
          }
          50% {
              background-position: 100% 50%;
          }
          100% {
              background-position: 0% 50%;
          }
      }


html::-webkit-scrollbar {
    display: none;
  }
  html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  html.is-changing .transition-fade {
    transition: opacity 0.4s;
    opacity: 1;
    
  }
  html.is-animating .transition-fade {
    opacity: 0;
    
  }
.entry-content {
    
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5%;

}

.uagb-container-inner-blocks-wrap {
  max-width: 1440px !important;
}







html.is-changing .transition-main {
  transition: transform 400ms ease-in-out;
}

html.is-animating.is-leaving .transition-main {
  transform: translateY(calc(1 * 5vh * var(--overlay-direction, 1)));
}

html.is-animating.is-rendering .transition-main {
  transform: translateY(calc(-1 * 5vh * var(--overlay-direction, 1)));
}


.transition-overlay {
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background-color: #233242;
  opacity: 0;
  transform: translate3d(0, calc(-1 * 100% * var(--overlay-direction, 1)), 0);
  pointer-events: none;
  
}

html.is-changing .transition-overlay {
  transition: transform 400ms ease-in-out;
  opacity: 1;
}

html.is-animating .transition-overlay {
  transform: translate3d(0, 0, 0);
}

html.is-rendering .transition-overlay {
  transform: translate3d(0, calc(var(--overlay-direction, 1) * 100%), 0);
}





.uagb-icon-list__wrap span {
  color: #1B3C53 !important;
}

.wp-block-uagb-icon-list-child span svg {
  color: #1B3C53 !important;
}