/*Author - Artistica Digital LTD*/
/*This is some basic styling that the desgin team should always iterate in the wireframe*/

/*For overiding Bootstrap / Foundation: Remember you need to use selectors that are as specific as the BS/F css file*/

/*Brand colours - rename and describe in each comment to make clearer*/
/*Use brand.css with swift.css [basic.css should be used with standalone, non-swift builds]*/


/*Author - Artistica Digital LTD*/
/*This is some basic styling that the desgin team should always iterate in the wireframe*/

/*For overiding Bootstrap / Foundation: Remember you need to use selectors that are as specific as the BS/F css file*/

/*Brand colours - rename and describe in each comment to make clearer*/
:root {
    --bc1: #4F5BCB;
    /*brand colour 1*/
    --bc2: #D42D2D;
    /*brand colour 2*/
    --bc3: #fff;
    /*brand colour 3*/
    --bc4: #fff;
    /*brand colour 4*/
    --bc5: #fff;
    /*brand colour 5*/
    --w: #fff;
    --blk: #000;
    /*set these to #fff or #000 if not required*/
    --gry: #E2E2E2;
    /*the grey iteration if used*/
    --lgry: #E2E2E2;
}

/*Theme colours - can add multiples*/
/*Use theme colours if differently styled iterations of a repeating eleemnt occurs e.g. modals, product theme colours, page sections or different pages. Add the colours in, style only the initial element and then add the tcx class as required*/
/*Add other values e.g. borders, typography, as required*/
:root .tc1 {
    --themecol1: var(--bc2);
    --themecol2: var(--bc3);
    --themecol3: var(--bc5);
    --themecol4: var(--bc1);
    --themecol5: var(--bc4);
}

:root .tc2 {
    --themecol1: var(--bc1);
    --themecol2: var(--bc3);
    --themecol3: var(--bc5);
    --themecol4: var(--bc2);
    --themecol5: var(--bc4);
}

/*Typography*/
/*4 header font family*/
h1, h2, h3, h4 {
    font-family:'Raleway', sans-serif;
    color: var(--bc1);
}
p {
    color: var(--bc1);
}
h1 {
    color: var(--bc1);
    font-size: 3rem;
    font-weight: bold;
}
h2 {
    color: var(--bc1);
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
}
h3 {
    color: var(--bc2);
    font-size: 2rem;
    font-weight: normal;
}
h4 {
    color: var(--bc2);
    font-size: 1rem;
    font-weight: bold;
}
/*Use H5 and H6 as anomalies*/




/*Borders*/
:root {
    /*primary & secondary borders*/
    --border1: 2px solid var(--blk);
    --border2: 6px dashed var(--bc3);

    /*two border radiuses*/
    --br-major: 5px;
    --br-minor: 2.5px;
    
    /*shadow*/
    --shad1: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/*Margins and padding for the brand*/
:root {
    --bmargin1: 0.75rem 0;
    --bmargin2: 2rem 0;
    --bmarginx: 0 0.5rem;
    --bpadding1: 5rem 0.5rem;
    --bpadding2: 0.5rem;
}
:root {
    --margin_p: 0;
    --margin_t: var(--bmargin1);
}

.bmarginx {
    margin: var(--bmarginx);
}

/*Input box x 2 and placeholder text*/

.styled_form input, .styled_form textarea {
    border-radius: 0;
}
.styled_form input.ibt1, .styled_form textarea.ibt1 {
    background: transparent;
    border: 2px solid var(--w);
    color: var(--w);
}
.styled_form input.ibt1::placeholder, .styled_form textarea.ibt1::placeholder {
    color: var(--w);
}
.styled_form input.ibt1, .styled_form textarea.ibt1 {
    background: transparent;
    border: 2px solid var(--blk);
    color: var(--blk);
}
.styled_form input.ibt1::placeholder, .styled_form textarea.ibt1::placeholder {
    color: var(--blk);
}

/*Links*/
a.nonbut {
    color: var(--blk);
    padding: 0.2rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    text-decoration: none;
}
a.nonbut i {
    font-size: 2rem;
    color: var(--bc1);
    transition: all 0.2s ease;
}

a.nonbut:hover, a.nonbut:hover i {
    color: var(--bc2);
    text-decoration: none;
}


/*Buttons - delete the .cusbtn class or use .btn for bootstrap*/
/*Remember to use the available btn options in BS/F if only minor overides, e.g. .btn.btn-outline-primary*/

/*Add more modifying classes (:active, :clicked etc) as necessary*/

.cusbtn {
    border-radius: 0;
    padding: 0.3rem 0.4rem;
    font-size: 1rem;
    border-width: 2px;
    border-style: solid;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .cusbtn.butwid1 {
    width: 16.25rem;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .cusbtn.butwid1 {
    width: 16.25rem;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .cusbtn.butwid1 {
        width: 9rem;
}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .cusbtn.butwid1 {
        width: 11rem;
}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .cusbtn.butwid1 {
    width: 12rem;
}
}





.cusbtn.butwid2 {
    width: 16.25rem;
}

/*hover for both buttons*/
/*
.cusbtn:hover {
    background-color: var(--w);
    color: var(--blk);
}
*/

/*primary button*/
.cusbtn.but1 {
    color: var(--w);
    border-color: var(--bc2);
    background-color: var(--bc2);
}

.cusbtn.but1:hover {
    border-color: var(--blk);
    background-color: var(--blk);
}

a.navbtn.active .cusbtn.but1 {
    border-color: var(--bc3);
    background-color: var(--bc3);
}

/*secondary button*/
.cusbtn.but2 {
    color: var(--w);
    border-color: var(--bc1);
    background-color: var(--bc1);
}

.cusbtn.but2:hover {
    border-color: var(--blk);
    background-color: var(--blk);
}

/*tertiary button*/
.cusbtn.but3 {
    color: var(--w);
    border-color: var(--bc1);
    background-color: var(--bc1);
}

.cusbtn.but3:hover {
    border-color: var(--blk);
    background-color: var(--blk);
}

/*tab button*/
.tabbtn_a .cusbtn.tabbut {
    color: var(--blk);
    border-color: var(--blk);
    background-color: var(--w);
}

.tabbtn_a .cusbtn.tabbut:hover {
    color: var(--w) !important;
    border-color: var(--blk) !important;
    background-color: var(--blk) !important;
}
.tabbtn_a.active .cusbtn.tabbut {
    color: var(--w);
    border-color: var(--blk);
    background-color: var(--bc1);
}

/*Hero cta button*/
.cusbtn.but_hero {
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    color: var(--w);
    border-color: var(--bc2);
    background-color: var(--bc2);
}

.cusbtn.but_hero:hover {
    border-color: var(--bc1);
    background-color: var(--bc1);
}

.section.hero.herobg1 {
    background-image: url('/wp-content/uploads/sites/portfolio/img/portfoliobg.png');
}

.imgbg.imgbg1 {
    background-image: url('/wp-content/uploads/sites/portfolio/img/imgbg1.jpg');
}


/*img shadow styling*/
.shad1 {
    box-shadow: var(--shad1);
}
img.img-fluid, img.card-img-top {
    border-radius: var(--br-minor);
}


/*ADDED Jan 2024*/
compotent {
    position: relative;
}
.vidbg video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1000;
}

body {
    transition: background 4s linear;
}

.cloudwrap {
    transition: transform 1s ease-in;
    position: absolute;
    height: 50%;
    width: 40%;
    left: 0;
/*    background-color: rgba(109,23,54,0.2);*/
    
}
#cloudwrap1 {
    top: 10%;
}
#cloudwrap1 img {
    animation: slide-in-right 30s linear infinite alternate-reverse both;
}
#cloudwrap2 {
    top: 30%;
}
#cloudwrap2 img {
    animation: slide-in-left 28s linear infinite alternate-reverse both;
}
#cloudwrap3 {
    bottom: -10%;
}
#cloudwrap3 img{
    animation: slide-in-right 20s linear 10s infinite alternate-reverse both;
}

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

.sweep-out {
    transform: translateY(150vh);
    
}

.cloudwraps {
        transition: transform 1s ease-in;
    position: absolute;
        top: 11%;
    left: 11.8%;
    height: 82%;
    width: 82%;
    overflow: hidden;
    border-radius: 50%;
    background-image: radial-gradient(transparent 0%, #737dba 70%);
}



#mainmenu {
    position: relative;
        position: relative;
    height: 90vw;
    width: 90vw;
    max-width: 100vh;
    max-height: 100vh;
    margin: auto;
}
#mainmenu svg {
    vertical-align: unset;
}
#menugs text {
        fill: #231f20;
        font-family: MyriadPro-Regular, 'Myriad Pro';
        font-size: 12px;
      }
#menuscreen {
    fill: #737dba;
}
#mainmenu a {
    background: red;
}
#mainmenu a:hover {
    text-decoration: none;
}
/*
rect.svgbgrect {
    fill: transparent;
}
*/
.menuimg {
    transition: opacity 1s ease-in;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.menuimg.show {
    opacity: 100%;
}
.menuiframe {
    position: absolute;
    left: 25%;
    top: 25%;
    width: 50%;
    height: 50%;
    margin: auto;
}

#haikus {
    position: absolute;
    height: 70%;
    top: 15%;
    width: 80%;
    left: 10%;
    text-align: center;
}
#haikus h3 {
    color: #fff;
    margin-bottom: 2rem;
}
#haikus p {
    color: #fff;
}

/*Animations*/

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-25vw);
            transform: translateX(-25vw);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-25vw);
            transform: translateX(-25vw);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
    opacity: 1;
  }
}
