:root {
    --orange: #F37735;
    --green: #00B159;
    --red: #D11141;
    --purple: #CF00FF;
    --blue: #00AEDB;
    --yellow: #FFC425;


    --black: #191C1F;
    /* --grey: #8B959E; */
    --grey: #666666;


}

* {
    box-sizing: border-box; /* padding doesnt affect the width */
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #ffffff;
    color: var(--black);
    font-size: 15px;
    line-height: 1.5;
}

.fa-bars {
    background-color: #ffffff;
    border: 10px solid #ffffff;;
}

hr {
    width: 120px;
    margin-bottom: 20px;
    border-top: 5px;
    border-style: solid;
}

hr.centered {
    margin: 0 auto;
    margin-bottom: 20px;
}

.small {
    width: 60px;
    margin-bottom: 20px;
    border-top: 5px;
    border-style: solid;
}

.centered {
    align-items: center;
    text-align: center;
    justify-content: center;
}

.heading.centered img {
    width: 80%;

    
}

.orange {
    border-color: var(--orange);
}

.purple {
    border-color: var(--purple);
}

.yellow {
    border-color: var(--yellow);
}

.blue {
    border-color: var(--blue);
}

h1 {
    margin-bottom: 20px;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 600;
}

h1.extrabig {
    margin-bottom: 0;
    font-size: 96px;
}

h1.big {
    font-size: 72px;
}

h2 {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}

h4 {
    margin-top: 30px;
    display: inline-block;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Source Sans Pro', sans-serif;
    color: #ffffff;
}

p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
    color: var(--grey);
}

p.pmax {
    margin-bottom: 40px;
    max-width: 560px;
}

a {
    font-size: 18px;
    color: #262626;
    text-decoration: none;
}

a.simple-link {
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 2px;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container-max {
    max-width: 1360px;
    margin: 0 auto;
}

.spacer {
    margin-left: 30px;
    margin-right: 30px;
}

.grey {
    background: #f9f9f9;
}

.blackbg {
    background: var(--black);
}

/* MOB ############################################ */
.mrx {
    padding-right: 3px;
    font-size: 36px;
    color: #ffffff;
}

.menu-btn {
    cursor: pointer;
    position: fixed;
    top: 42px;
    right: 30px;
    z-index: 2;
    display: none;
}

i.fas.fa-bars.fa-2x {
    position: fixed;
    top: 34px;
    right: 22px;
}

/* NAV ############################################ */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px;
    height: 60px;

    font-size: 16px;
}

.menu-link {
    text-transform: uppercase;
}

.logosvg {
    height: 36px;
}

.logo {
    padding-right: 10px;
    height: 28px;
}

.logo2 {
    padding-right: 10px;
    height: 48px;
}

.main-nav ul {
    display: flex;
    justify-content: flex-end;
}

.main-nav ul li {
    padding: 0 40px;
}

.main-nav ul li a {
    padding-bottom: 2px;
    border-bottom: 2px solid #ffffff;
    font-size: 16px;
    transition: all 400ms ease-in-out;
}

.main-nav ul li a:hover {
    border-bottom: 2px solid var(--orange);
    transition: all 400ms ease-in-out;
}

.main-nav ul li a i {
    font-size: 20px;
}

.main-nav h2{
    display: inline;
}

a.no-border {
    transition: all 200ms ease-in-out;
    border-bottom: none !important;
}

a.no-border:hover {
    border-bottom: none !important;
    color: var(--orange);
    transition: all 200ms ease-in-out;
}

.main-nav ul.main-menu {
    /* flex: 1; */
    margin-left: 20px;
}

.main-nav ul li a.active {
    border-bottom: 2px solid var(--orange) !important;
}

a.classic-link {
    border-bottom: 2px solid var(--orange);
}

.btn, button {
    cursor: pointer;
    display: inline-block;

    outline: none;

    padding: 12px 25px;

    background: #262626;
    color: #ffffff;
    border: 2px solid var(--black);
    letter-spacing: 0.05em;
    text-transform: uppercase;

    font-size: 18px;
    line-height: 28px;

    transition: all 400ms ease-in-out;
}

.btn.ghost {
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
}

.btn.ghost2 {
    margin: 0;
    padding: 12px 0 12px 25px;
    border: none;
    background: transparent;
    color: var(--black);
}

.btn.ghost2:hover {
    background-color: transparent;
    color: var(--orange);
}

.btn i {
    font-size: 22px;
    line-height: 28px;
    padding-left: 25px;
    vertical-align: middle;
    text-decoration: none;
}

.newbtn {
    margin-top: 30px;
    padding: 10px 25px;
    border: 2px solid var(--orange) !important;
    color: var(--orange) !important;

    font-size: 16px;
    float: right;
}

.newbtn i {
    font-size: 16px !important;
    line-height: 16px !important;
    padding-left: 15px !important;
}

.newbtn:hover {
    background-color: var(--orange) !important;
    color: #ffffff !important;
    transition: all 400ms ease-in-out;
}

a.btn.ghost:hover {
    background-color: var(--black);
    color: #ffffff;
    transition: all 400ms ease-in-out;
}

a.btn:hover, button:hover {
    background-color: transparent;
    color: var(--black);
    transition: all 400ms ease-in-out;
}

.btn.gre {
    background: var(--green);
    border-color: var(--green);
}

a.btn.gre:hover, button.gre:hover {
    background-color: transparent;
    color: var(--green);
    transition: all 400ms ease-in-out;
}

.btn.ora {
    background: var(--orange);
    border-color: var(--orange);
}

a.btn.ora:hover {
    background-color: transparent;
    color: var(--orange);
    transition: all 400ms ease-in-out;
}

/* HEADING ############################################ */
.heading {
    margin-bottom: 60px;
}

/* PADDING ############################################ */

.pt-60 {
    padding-top: 60px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-120 {
    padding-bottom: 120px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-0 {
    margin-bottom: 0;
}

.aws-icon {
    padding-bottom: 15px;
    font-size: 46px;
}

/* THANKS ############################################ */
.thanksbg {
    background: #ffffff;
    background-image: url("../images/dots.png");
    background-size: 20px;
    background-repeat: repeat;
}

.thanks {
    width: 100%;
    position: absolute;
    padding: 60px;
    top: 50%;

    transform: translateY(-50%);
    background-color: #ffffff;
    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
}


/* HEADER ############################################ */
.header {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    background: url('../images/dots.png') no-repeat center center/cover;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.header h1, .header p {
    margin-bottom: 20px;
}

/* ABOUT ############################################ */
.fancybg {
    background-image: linear-gradient(180deg, #ffffff 40%,var(--orange) 40%, var(--orange) 100%);
}

.bgmax {
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: top right;
}

.bgmax.blue-strip {
    background-image: url(../images/blue-strip.png);
    background-position: bottom right;
}

.bgmax.orange-strip {
    background-image: url(../images/orange-strip.png);
    background-position: bottom right;
}

.bgmax.purple-strip {
    background-image: url(../images/purple-strip.png);
    background-size: 600px;
    background-position: center right;
}

.bgmax.green-strip {
    background-image: url(../images/green-strip.png);
    background-size: 600px;
    background-position: center left;
}

.about {
    display: grid;
    margin-bottom: 0;
    padding-bottom: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.skills h2 {
    font-size: 27px;
}

.skills h2 i {
    font-size: 36px;
    margin-right: 10px;
    vertical-align: middle;
}

.about .card {
    display: flex;
    flex-direction: column;

    background: #ffffff;

    background-image: url("../images/dots.png");
    background-image: linear-gradient(to right, #ffffff 62%,#ffffff 62%), url("../images/dots.png");
    background-size: 62% 100%, 20px;
    background-repeat: no-repeat, repeat;

    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
}

.map {
    padding: 60px 0;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    background-image: url("../images/map.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about .card .map div {
    margin-top: auto;
}

/* .about .card .heading h2 {
    display: inline-block;
} */

i.icon.purple {
    color: var(--purple);
}

i.icon.yellow {
    color: var(--yellow);
}

i.icon.orange {
    color: var(--orange);
}

i.icon.blue {
    color: var(--blue);
}

i.icon.green {
    color: var(--green);
}

/* HOME CARDS ############################################ */
.home-cards, .contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.home-cards div {
    margin-bottom: 60px;
}

.home-cards .card {
    padding: 60px;
    background: #ffffff;
    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
}

div.img1, div.img2, div.img3, div.img4 {
    opacity: 1;
    transition: all 500ms ease-in-out;
}

.home-cards .img1 {
    width: 100%;
    background: url('../images/img1.jpg') no-repeat center center/cover;
}

.home-cards .img2 {
    width: 100%;
    background: url('../images/img2.jpg') no-repeat center center/cover;
}

.home-cards .img3 {
    width: 100%;
    background: url('../images/img3.jpg') no-repeat center center/cover;
}

.home-cards .img4 {
    width: 100%;
    background: url('../images/img4.jpg') no-repeat center center/cover;
}

div.img1:hover, div.img2:hover, div.img3:hover, div.img4:hover {
    cursor: hand;
    cursor: pointer;
    opacity: .7;
    transition: all 400ms ease-in-out;
}
 
a.divLink {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    /* Makes sure the link doesn't get underlined */
    z-index: 10;
    /* raises anchor tag above everything else in div */
    background-color: white;
    /*workaround to make clickable in IE */
    opacity: 0;
    /*workaround to make clickable in IE */
    filter: alpha(opacity=0);
    /*workaround to make clickable in IE */
}

/* WEBSITE ############################################ */
.website {
    background: #ffffff;
    background: url("../images/dots.png"), linear-gradient(180deg, rgba(255,255,255,0) 24%, rgba(249,249,249,1) 24%, rgba(249,249,249,1) 100%);

    background-size: 20px, 100%;
    background-repeat: repeat;
    background-position: top;
}

.bgextra {
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 24%, rgba(249,249,249,1) 24%, rgba(249,249,249,1) 100%);

    background-size: 100%;
    background-repeat: repeat;
    background-position: top;
}

.img-container {
    width: 100%;
    background: url('../images/websitebg.jpg') no-repeat center center/cover;
}

.col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background-color: #ffffff;
    
    padding: 60px 30px;
    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
    transition: all 400ms ease-in-out;
}

/* .price-card:hover {
    background-color: #ffffff;
    transition: all 400ms ease-in-out;
} */

.price-card span {
    padding: 5px 10px;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    background-color: var(--orange);
    vertical-align: middle;
}

.price-card span.purple {
    background-color: var(--purple);
}

.price-card h1 {
    margin-bottom: 30px;
}

.price-card h2 {
    margin-bottom: 0;
}

.price-card hr.big {
    margin-bottom: 30px;
    width: 100%;
    border-color: #f5f5f5;
}

.price-card p.checkcheck {
    margin-bottom: 10px;
}

.price-card p.checkcheck i {
    margin-right: 15px;
    color: var(--black);
}

.price-card div {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.price-card p.price {
    display: inline-block;
    margin-right: 5px;
}

.price-card h1.priceh {
    display: inline-block;
    margin-bottom: 0;
}

.price-card a.btn {
    margin-top: 30px;
}

/* PORTFOLIO ############################################ */

.porth2 {
    color: #666666;
    font-size: 24px;
    font-weight: normal;
}

.boxesbg {
    padding: 100px 0;
    background-image: url('../images/boxes.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.portfoliobg {
    background: #ffffff;
    background: url("../images/dots.png"), linear-gradient(180deg, rgba(25,28,31,0) 90%, rgba(25,28,31,1) 90%, rgba(25,28,31,1) 100%);

    background-size: 20px, 100%;
    background-repeat: repeat;
    background-position: top;
}

.portfoliobgextra {
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(25,28,31,1) 70%, rgba(25,28,31,1) 100%);

    background-size: 100%;
    background-repeat: repeat;
    background-position: top;
}

.portfolio {
    display: grid;
    margin-bottom: 0;
    padding-bottom: 60px;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.pcat {
    padding: 15px 0;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);

    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--grey);
    text-align: center;
    vertical-align: middle;
}

.pcat:hover {
    cursor: hand;
    cursor: pointer;
}

.pcat i {
    margin-right: 15px;
    background: #ffffff;

    font-size: 22px;
}

.pcat i.bla {
    background: #ffffff;
    color: var(--grey);
}

.pcat i.pur {
    color: var(--purple);
}

.pcat i.ora {
    color: var(--orange);
}

.pcat i.blu {
    color: var(--blue);
}

.pcat i.gre {
    color: var(--green);
}

.pcat i.yel {
    color: var(--yellow);
}

.pcat.blabg.active, .pcat.blabg.active i, .pcat.blabg.active p {
    background: var(--grey);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat.purbg.active, .pcat.purbg.active i, .pcat.purbg.active p {
    background: var(--purple);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat.yelbg.active, .pcat.yelbg.active i, .pcat.yelbg.active p {
    background: var(--yellow);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat.blubg.active, .pcat.blubg.active i, .pcat.blubg.active p {
    background: var(--blue);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat.orabg.active, .pcat.orabg.active i, .pcat.orabg.active p {
    background: var(--orange);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat.grebg.active, .pcat.grebg.active i, .pcat.grebg.active p {
    background: var(--green);
    color: #ffffff;

    transition: all 400ms ease-in-out;
}

.pcat p {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-weight: bold;
}

.image-container {
    max-height: 595px;
    background: var(--white);
    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
    overflow: hidden;
}

.image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
    border: none;
    opacity: 1;
    transition: all 400ms ease-in-out;
}

.span2 {
    grid-column: span 2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 60px;
    row-gap: 90px;
}

.gallery div {
    position: relative;

}

.gallery .gal1 {
    width: 100%;
    background: url('../images/email1.jpg') no-repeat center center/cover;
}

.gallery .gal2 {
    width: 100%;
    background: url('../images/website1.jpg') no-repeat center center/cover;
}

.gallery .gal3 {
    width: 100%;
    background: url('../images/email7.jpg') no-repeat center center/cover;
}

.gallery .gal4 {
    width: 100%;
    background: url('../images/website2.jpg') no-repeat center center/cover;
}

.gallery .gal5 {
    width: 100%;
    background: url('../images/email2.jpg') no-repeat center center/cover;
}

.gallery .gal6 {
    width: 100%;
    background: url('../images/email4.jpg') no-repeat center center/cover;
}

.gallery .gal7 {
    width: 100%;
    background: url('../images/ecommerce1.jpg') no-repeat center center/cover;
}

.gallery .gal8 {
    width: 100%;
    background: url('../images/banners1.jpg') no-repeat center center/cover;
}

.gallery .gal9 {
    width: 100%;
    background: url('../images/email3.jpg') no-repeat center center/cover;
}

.gallery .gal10 {
    width: 100%;
    background: url('../images/other1.jpg') no-repeat center center/cover;
}

.gallery .gal11 {
    width: 100%;
    background: url('../images/email5.jpg') no-repeat center center/cover;
}

.gallery .gal12 {
    width: 100%;
    background: url('../images/email6.jpg') no-repeat center center/cover;
}

.gallery .gal13 {
    width: 100%;
    background: url('../images/banners2.jpg') no-repeat center center/cover;
}

.gallery .gal14 {
    width: 100%;
    background: url('../images/banners3.jpg') no-repeat center center/cover;
}

.gallery .gal15 {
    width: 100%;
    background: url('../images/banners4.jpg') no-repeat center center/cover;
}

.gallery .gal16 {
    width: 100%;
    background: url('../images/website3.jpg') no-repeat center center/cover;
}

.hidegal {
    display: none;
}

.boxbox {
    position: absolute !important;
    bottom: 0;
    right: 0;

    margin: 0;
    padding: 18px 0px;
    width: 60px;
    height: 60px !important;

    background: #ffffff;
    text-align: center;
}

.boxbox i {
    font-size: 24px;
    color: #ffffff;
}

.boxbox.purplebg {
    background: var(--purple);
}

.boxbox.orangebg {
    background: var(--orange);
}

.boxbox.greenbg {
    background: var(--green);
}

.boxbox.bluebg {
    background: var(--blue);
}

.boxbox.yellowbg {
    background: var(--yellow);
}

/* SLIDER */
/* ###### */
.splide-multi-slider-works .splide__slide, .splide-multi-slider .splide__slide {
    display: inline-block;
    height: 42px;
    width: 140px !important;
    line-height: 40px;
    text-align: center;
}

.splide-multi-slider-works .splide__slide img, .splide-multi-slider-works .splide__slide svg, .splide-multi-slider .splide__slide img, .splide-multi-slider .splide__slide svg {
    margin: 0;
    padding: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    max-height: 42px;
    max-width: 140px !important;
    vertical-align: middle !important;
}

.splide-multi-slider-works ul, .splide-multi-slider ul {
    font-size: 0;
}

/* COMPANIES ########################################## */

/* .companies div img {
    margin: auto;
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    opacity: 0.4;
    transition: all 400ms ease-in-out;
}

.companies div img:hover{
    opacity: 1;
    transition: all 400ms ease-in-out;
} */

/* CONTACT ############################################ */
.contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.contact .card {
    padding: 60px 60px 60px 30px;
    background: #ffffff;

    background-image: url("../images/dots.png");
    background-image: linear-gradient(to right, #ffffff 62%,#ffffff 62%), url("../images/dots.png");
    background-size: 62% 100%, 20px;
    background-repeat: no-repeat, repeat;

    box-shadow: 48px 48px 48px rgba(49, 49, 49, 0.1);
}

.contact .heading span {
    display: block;
    margin-bottom: 20px;
}

.contact .heading span a {
    padding-bottom: 2px;
    color: var(--black);
    text-decoration: none;
}

/* .contact .heading span a:hover {
    color: var(--black);
    border-bottom: 2px solid var(--orange);
} */

/* .contact .heading span:first-of-type{
    margin-bottom: 0;
} */

.contact a i {
    padding-right: 20px;
    font-size: 20px;
}

.contact p.tiny {
    margin-bottom: 20px;
    padding-left: 35px;
    font-size: 14px;
    color: var(--grey);
}

/* FOOTER ############################################ */
footer {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    color: #ffffff;
}

footer p {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 2;
}

footer a {
    color: #ffffff;
    font-size: 14px;
    line-height: 2;
}

footer a i {
    padding-right: 15px;
}

footer h2 {
    display: inline;
    color: #ffffff;
}

footer h3 {
    padding-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.footer2 p {
    color: var(--black);
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

/* FORM ############################################ */
input {
	outline: none;
	border: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

textarea {
  outline: none;
}

textarea:focus, input:focus {
  outline: none;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999;}
input:-moz-placeholder { color: #999999;}
input::-moz-placeholder { color: #999999;}
input:-ms-input-placeholder { color: #999999;}

textarea::-webkit-input-placeholder { color: #999999;}
textarea:-moz-placeholder { color: #999999;}
textarea::-moz-placeholder { color: #999999;}
textarea:-ms-input-placeholder { color: #999999;}

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

.form-control {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    background-color: #ffffff;
}

.form-control label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 62px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    font-size: 18px;
    color: var(--black);
}

.form-control input, .form-control textarea {
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid var(--grey);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #43383e;
    line-height: 1.2;
    padding: 0 5px;
}

.form-control input {
    height: 62px;
    padding: 0 20px 0 58px;
}
  
.form-control textarea {
    min-height: 199px;
    padding: 19px 20px 0 23px;
}

.form-control input:focus {
    outline: 0;
    border-color: #777;
}

.form-control.success input, .form-control.success textarea {
    border-color: var(--green);
}

.form-control.error input, .form-control.error textarea {
    border-color: var(--red);
}

/* EXTRA */
/* .form-control.success input:hover, .form-control.success textarea:hover {
    border-color: var(--grey);
}

.form-control.error input:hover, .form-control.error textarea:hover {
    border-color: var(--grey);
} */

/* EXTRA */

.form-control small {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--error-color);
    position: absolute;
    bottom: 5px;
    right: 10px;
    visibility: hidden;
}

.form-control.error small {
    visibility: visible;
}

/* CAROUSEL ################################# */
.carousel {
    background: #ffffff;
    background-image: url("../images/dots.png");
    background-image: linear-gradient(to right, #f9f9f9 50%,#f9f9f9 50%), url("../images/dots.png");
    background-size: 50% 100%, 20px;
    background-repeat: no-repeat, repeat;
}

.carousel-container {
    margin: 0 40px;
    padding: 40px 0;
}

.web-bg {
    background-image: url(../images/hero-website.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;

}

.email-bg {
    background-image: url(../images/hero-email.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;

}

.banners-bg {
    background-image: url(../images/hero-banners.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;

}
.carousel-container .heading {
    margin-top: 60px;
    margin-bottom: 60px;
}

.splide {
    background-color: transparent;
}

.splide__pagination {
    bottom: 20px;
}

.splide__pagination__page {
    border-radius: 0;
    margin: 5px;
}

ul.splide__list li {
    background-color: transparent;
}

ul.splide__pagination {
    visibility: hidden;
}

.splide__progress {
    margin-left: 30px;
    margin-right: 30px;
    max-width: 1220px;
    bottom: 0;
}

.splide__progress__bar {

    background: rgb(255,80,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%,rgba(255,80,0,1) 100%);
    height: 5px;
}

.hidelg {
    display: none;
}

.hidelg2 {
    display: none;
}

.splide__arrow {
    background: none;
    opacity: 0.5;
    font-size: 40px;
}

/* MEDIA Q ################################ */
@media(max-width: 1024px) {
    .contact {
        grid-template-columns: 1fr 2fr;
    }

    footer {
        gap: 40px;
    }

    .col3 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .col3 div:nth-of-type(1) { grid-area: 1 / 1 / 2 / 3; }
    .col3 div:nth-of-type(2) { grid-area: 2 / 1 / 3 / 2; }
    .col3 div:nth-of-type(3) { grid-area: 2 / 2 / 3 / 3; }

    .img-container {
        background-image: url('../images/websitebg-mob.jpg');
        height: 350px;
    }

    .website {
        background: #ffffff;
        background: url("../images/dots.png"), linear-gradient(180deg, rgba(255,255,255,0) 54%, rgba(249,249,249,1) 54%, rgba(249,249,249,1) 100%);
    
        background-size: 20px, 100%;
        background-repeat: repeat;
        background-position: top;
    }
    
    .bgextra {
        height: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0) 54%, rgba(249,249,249,1) 54%, rgba(249,249,249,1) 100%);
    
        background-size: 100%;
        background-repeat: repeat;
        background-position: top;
    }

    .portfolio {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width: 835px) {
    .main-nav ul li {
        padding: 0 20px;
    }
    
    .main-menu a {
        font-size: 16px;
    }
    
    .carousel-container {
        grid-template-columns: 1fr;
    }

    .carousel-img-container {
        display: none;
        background-image: url('../images/orange-box.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
    }

    .hidetext {
        display: none;
    }

}

@media(max-width: 768px) {

    h1.big {
        font-size: 56px;
    }

    .menu-btn {
        display: block;
    }

    .menu-btn:hover {
        opacity: 0.7;
    }

    

    .main-nav ul.main-menu {
        z-index: 1;
        display: block;
        position: fixed;
        top: 0;
        left: 0;

        background: rgb(255,255,255);
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 75%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.5) 100%);

        width: 100%;
        height: 100%;
        opacity: 1;
        padding: 40px;
        transform: translateX(-800px);
        transition: transform 0.3s ease-in-out;
    }

    .main-nav ul.main-menu.show {

        transform: translateX(-20px);
    }

    .main-nav ul.main-menu li {
        font-size: 18px;
        margin: 26px 0;
    }

    .main-nav ul.main-menu li:nth-of-type(1) {
        margin-top: 0;
        border: none;
        background-color: transparent;
    }

    .main-nav ul.main-menu li:last-child {
        border-bottom: none;
    }

    .main-nav ul li {
        padding: 0;
    }

    .main-menu a {
        font-size: 18px;
    }

    .main-menu hr {
        width: 70%;
        border-color: #f5f5f5;
    }

    .main-nav ul.main-menu li a {
        color: var(--black);
    }

    .hide {
        display: none;
    }

    .hidelg {
        display: block;
    }

    .hidelg2 {
        display: inline-block;
        padding-left: 15px;
    }

    .main-nav ul.main-menu li a:hover {
        border: none;
    }

    .btn, button {
        padding: 10px 20px;
    
        font-size: 16px;
        line-height: 22px;
    }

    .web-bg {
        background-image: url(../images/hero-website-mob.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
    }
    
    .email-bg {
        background-image: url(../images/hero-email-mob.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
    }
    
    .banners-bg {
        background-image: url(../images/hero-banners-mob.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: center;
    }

    .fancybg {
        background-image: linear-gradient(180deg, #ffffff 35%, var(--orange) 35%, var(--orange) 90%,#ffffff 90%);
    }
    
    .about, .skills {
        grid-template-columns: 1fr;
        gap: 15px;
    } 

    .about .card {
        padding: 0;
        height: 300px;
    }

    .about .card .map {
        padding: 30px;
        background-image: url('../images/map-mob.png');
        background-position-y: -10px;
    }

    .price-card div {
        margin-top: 30px;
    }

    .price-card h1 span {
        padding: 4px 8px;
        font-size: 14px;
    }

    p.price {
        margin-bottom: 10px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact .card {
        padding-left: 0;
        padding-right: 30px;
        
    }

    .contact .heading {
        margin-bottom: 30px;
    }

    .home-cards {
        grid-template-columns: 1fr;
    }

    .home-cards div:nth-of-type(1) { order: 2; }
    .home-cards div:nth-of-type(2) { order: 1; margin: 0; height: 250px;}
    .home-cards div:nth-of-type(3) { order: 3; margin: 0; height: 250px;}
    .home-cards div:nth-of-type(4) { order: 4; }
    .home-cards div:nth-of-type(5) { order: 6; }
    .home-cards div:nth-of-type(6) { order: 5; margin: 0; height: 250px;}


    .img-container {

        height: 250px;
    }

    footer {
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-rows: repeat(3, 1fr); */
        gap: 10px;
    }

    footer div:nth-of-type(1) { grid-area: 1 / 1 / 2 / 3; }
    footer div:nth-of-type(2) { grid-area: 2 / 1 / 3 / 2; }
    footer div:nth-of-type(3) { grid-area: 2 / 2 / 3 / 3; }
    footer div:nth-of-type(4) { grid-area: 3 / 1 / 4 / 3; }

    .btn.ghost2 {
        margin-top: 15px;
        padding: 12px 25px;
    }

    .col3 {
        grid-template-columns: 1fr;
    }

    .col3 div:nth-of-type(1) { grid-area: 1 / 1 / 2 / 4; }
    .col3 div:nth-of-type(2) { grid-area: 2 / 1 / 3 / 4; }
    .col3 div:nth-of-type(3) { grid-area: 3 / 1 / 4 / 4; }

    .bgmax {
        background-size: 150%;
    }

    .bgmax.blue-strip {
        background-position: bottom right;
    }

    .boxesbg {
        background-size: 140%;
        background-position: bottom;
    }

    .companies {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .companies div {
        height: 120px;
    }

    .filter-section {
        padding-top: 0;
    }

    .portfolio {
        padding-bottom: 0;
    }

    .pcat {
        padding: 20px 0;
        height: 70px;
    }

    .pcat i {
        display: none;
    }

    .pcat p {
        display: none;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 414px) {

    h1, h1.big {
        font-size: 36px;
    }

    h2 {
        font-size: 27px;
    }

    .logo {
        height: 24px;
    }

    h2.logoh2 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    .carousel-container {
        padding: 0;
    }

    .web-bg {
        background-position-y: top;
    }

    .carousel-img-container {
        background-size: 400px;
        background-position: 30px center;
    }

    .fancybg {
        background-image: linear-gradient(180deg, #ffffff 25%, var(--orange) 25%, var(--orange) 90%,#ffffff 90%);
    }

    .about {
        padding-bottom: 30px;
        grid-template-columns: 1fr;
    }

    .about .card {
        padding: 0;
        height: 300px;
    }

    .about .card .map {
        padding: 30px;
        background-image: url('../images/map.png');
        background-size: 150%;
        background-position-y: -80px;
    }

    .about .heading {
        margin-bottom: 0;
    }

    .home-cards .card {
        padding: 45px 30px;
    }
    
    .contact {
        padding-top: 60px;
    }

    .contact .card {
        padding: 45px 30px 45px 0;
    }

    .contact .heading {
        margin-bottom: 0;
    }

    footer {
        padding: 60px 0;
        gap: 10px;
    }

    footer div:last-of-type {
        align-items: center;
    }

    .website {
        background: #ffffff;
        background: url("../images/dots.png"), linear-gradient(180deg, rgba(255,255,255,0) 33%, rgba(249,249,249,1) 33%, rgba(249,249,249,1) 100%);
    
        background-size: 20px, 100%;
        background-repeat: repeat;
        background-position: top;
    }
    
    .bgextra {
        height: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0) 33%, rgba(249,249,249,1) 33%, rgba(249,249,249,1) 100%);
    
        background-size: 100%;
        background-repeat: repeat;
        background-position: top;
    }

    .boxesbg {
        background-size: 180%;
        background-position: bottom;
    }

    h1.extrabig {
        font-size: 72px;
    }

    .companies {
        gap: 20px;
    }

    .companies div {
        height: 90px;
    }

    .portfolio {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    /* MARGINS ############## */
    .mb-60 {
        margin-bottom: 30px;
    }

    .mb-120 {
        margin-bottom: 60px;
    }

    .mt-60 {
        margin-top: 30px;
    }

    .mt-120 {
        margin-top: 60px;
    }

    .pt-60 {
        padding-top: 30px;
    }

    .pt-120 {
        padding-top: 60px;
    }

    .pb-120 {
        padding-bottom: 60px;
    }

}