/* -------------------------------- 

Primary style

-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;700&display=swap');

*, *::after, *::before {
  box-sizing: border-box;
}

html {
}

body {
  font-size: 16px;
  font-family: 'Baloo Paaji 2', sans-serif; cursive;
  color: #32373E;
  background: #32373E url(../img/bg.jpg) repeat center;
  margin: 0;
  padding: 0;
  height: 100vh;
}

a {
  color: #826A95;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.static-col {
  height: auto;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 2rem;
  color: #CDD7D6;
  position: relative;
}

.static-col-main {
  gap: 2rem;
}

.big-col {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0 1rem;
}

.about-main {
  gap: 2rem;
}

.about-titles {
  gap: 0.25rem;
}

.who-am-i{
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}

.about {
  font-weight: 400;
  line-height: 1.5rem;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-title {
  font-size: 24px;
}

.avatar {
  width: 100%;
}

.avatar img {
  border-radius: 200px;
  max-width: 125px;
  border: 3px solid #fff;
}

.contact-cta { 
  background-color: #826A95;
  font-size: 1.5rem;
  padding: 0.8em 2em;
  color: #fff;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  text-align: center!important;
  cursor: pointer;
}

.contact-cta:hover {
  color: #ffffff;
  display: block;
  background-color: #5F4E6D;
}

.main {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}

.wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: auto;
}

.main-boxes, .vertical-boxes {
  width: 100%;
  flex: 1;
  height: auto;
  max-width: 650px;
  border-radius: 3rem;
}

.box {
  background-color: rgb(255,255,255,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 7px 6px 48px -22px rgba(0,0,0,0.75);
  -webkit-box-shadow: 7px 6px 48px -22px rgba(0,0,0,0.75);
  -moz-box-shadow: 7px 6px 48px -22px rgba(0,0,0,0.75);
}

.main-box-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  padding: 0 3rem 3rem;
  justify-content: space-between;
}

.main-box-content-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-box-content-cta {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.box-title {
  color: #ffffff;
  font-size: 2.5em;
}

.box-image {
  display: block;
  width: 100%;
  height: 20vh;
  min-height: 200px;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  object-fit: cover;
}

.box-image-relaxation {
  background-image: url(../img/relaxation.jpg);
}

.box-image-watercolor {
  background-image: url(../img/watercolor.jpg);
}

.box-image-exhibitions {
  background-image: url(../img/exhibitions.jpg);
}

.box-image-commission {
  background-image: url(../img/commission.jpg);
}

.box-image-lollipop {
  background-image: url(../img/relaxation-art-main2.jpg);
}


.box-text {
  display: block;
  color: #CDD7D6;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1.6rem;
}

.box-text ul {
  padding-left: 2rem;
}

.box-cta {
  border: 1px solid white;
  font-size: 1.2em;
  padding: 0.8em 1em;
  color: #fff;
  font-weight: 800;
  border-radius: 99rem;
  cursor: pointer;
}

.box-cta a {
  color: #ffffff;
}

.no-link {
  border: none;
  max-width: none;
  cursor: default;
}

.box-cta:hover {
  color: #ffffff;
  background-color: rgb(255,255,255,0.08);
  display: block;
}

.end-box-fix {
    background-color: rgb(255,255,255,0);
    max-width: 15px!important;
}

.no-link:hover {
  background-color: transparent;
}

/* -------------------------------- 

main content basic style

-------------------------------- */
.cd-main-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* -------------------------------- 

social media btns style

-------------------------------- */

header {
  display: flex;
  height: auto;
  padding: 1rem 2rem;
}

nav {
  z-index: 10;
  right: 3vw;
  top: 3vh;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.social a {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #ffffff;
  padding: 16px;
  border: 1.5px solid white;
  border-radius: 99rem;
}

.social a i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  text-align: center;
}

.social a:hover {
  color: #ffffff;
  transition: transform 1s ease-out;
  transform: rotateZ(360deg) scale(1.2);
  background-color: rgba(130, 106, 149, 0.32);
  font-size: 36px;
}

@media only screen and (min-width: 440px) {
  .big-col {
    padding: 2rem;
  }
  .static-col {
    padding: 2rem 3rem;
  }
  .main-boxes, .vertical-boxes {
    min-width: 400px;
  }
} /*END 901px*/ 

@media only screen and (min-width: 960px) {
  body {
    overflow: hidden;
  }

  .cd-main-content {
    flex-direction: row;
    gap: 1rem;
  }

  .big-col {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding: 0 3rem;
  }
  .static-col {
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    width: 100%;
    max-width: 370px;
    text-align: left;
    padding: 3rem 0 3rem 3rem;
    color: #CDD7D6;
    position: relative;
    overflow-y: auto;
  }
  .static-col .vertical {
    position: relative;
    top: 0;
    transform: none;
  }
  .main-boxes, .vertical-boxes {
    max-width: 810px;
    border-radius: 4rem;
    min-width: 395px;
  }

  .main-box-content-cta {
    height: auto;
  }

  .main {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
  }
  .box-text, .box-title {
    padding: 5px 2vw;
  }
  .who-am-i{
    font-size: 2.6em;
  }
  nav {
    position: relative;
    z-index: 10;
    right: 0;
    top: 0;
    margin: 15px auto 0;
    text-align: center;
  }
  .social {
    justify-content: flex-start;
    gap: 1rem;
  }
  .cd-main-content {
    padding: 0;
  }
  .about {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }
  
  .box-image img {
    -webkit-border-top-left-radius: 4rem;
    -webkit-border-top-right-radius: 4rem;
    -moz-border-radius-topleft: 4rem;
    -moz-border-radius-topright: 4rem;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
  }
} /*END 960px*/

@media only screen and (min-width: 1600px) {
  .big-col {
    width: 100%;
  }
  .static-col {
    max-width: 450px;
  }
  .main {
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
  }
  .main-boxes, .vertical-boxes {
    max-width: 700px;
    flex: 1;
    min-width: 470px;
  }
  .box-text, .box-title {
    padding: 0;
  }
} /*END 1600px*/ 

@media only screen and (max-height: 930px) {
  .static-col {
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .about-main {
    gap: 1rem;
  }
  .static-col-main {
    gap: 1rem;
  }
  .avatar img {
    max-width: 100px;
  }
  .mob-hide-930 {
    display: none;
  }
}

@media only screen and (max-height: 780px) {
  .mob-hide {
    display: none;
  }
  .avatar img {
    max-width: 75px;
  }
  .static-col-main{
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .box-image {
    height: 15vh;
    min-height: 150px;
  }
}



/*Scrollbar Custom*/
::-webkit-scrollbar-track, html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, .cd-main-content::-webkit-scrollbar-track, .big-col::-webkit-scrollbar-track, .static-col::-webkit-scrollbar
{
	border-radius: 99px;
	background-color: transparent;
  padding-bottom: 20px
}
::-webkit-scrollbar-track, html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, .cd-main-content::-webkit-scrollbar-track, .big-col::-webkit-scrollbar, .static-col::-webkit-scrollbar
{
	width: 8px;
	background-color: transparent;
}

::-webkit-scrollbar-track, html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, .cd-main-content::-webkit-scrollbar-track, .big-col::-webkit-scrollbar-thumb, .static-col::-webkit-scrollbar
{
	border-radius: 99px;
	background-color: #826A95;
}
/*Scrollbar Custom END*/



/* -------------------------------- 

Form

-------------------------------- */


.cog-form {
  margin: 0 !important;
  max-width: 650px !important;
  padding: 0 0 30px !important;
}

.cog-1 {
  font-family: 'Baloo Paaji 2', sans-serif !important;
  background-color: #32373e !important;
}

.contactbox {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
}

.cog-branding {
  display: none !important;
}

.cog-abuse{
  display: none !important;
}

.el-textarea__inner:focus, .el-input__inner:focus{
  border-color: #826A95 !important;
}

@media only screen and (max-width: 900px) {
  .formbox, .email-side, .cog-form {
    padding: none !important;
    margin: 0 auto !important;
  }
} 

.classic-email span {
  border-radius: 50px;
  padding: 10px 30px !important;
}
