@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Montserrat:ital,wght@0,300;0,500;0,800;1,800&display=swap');

.btn-primary {
    background-color: #023E8A;
    border: none;
    border-radius: 10px;
}

.btn-secondary {
    background-color: transparent;
    color: #023E8A;
    border: 1px #023E8A solid;
    border-radius: 10px;
}

body {
    width: 100vw;
    font-family: 'Karla', sans-serif;
}

/* com */
input[type=email], input[type=text] {

}

.text-right {
    text-align: right;
}

.com--main-content {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.com--bg-light {
    background-color: rgb(245, 245, 245);
}

.com--card-grad {
    border: none;
    background: rgb(2, 62, 138);
    background: -moz-linear-gradient(0deg, rgb(2, 62, 138) 0%, rgb(39, 64, 96) 100%);
    background: -webkit-linear-gradient(0deg, rgb(2, 62, 138) 0%, rgb(39, 64, 96) 100%);
    background: linear-gradient(0deg, rgb(2, 62, 138) 0%, rgb(39, 64, 96) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#023E8A",endColorstr="#023E8A",GradientType=1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    border-radius: 10px;
    color: white;
}

.com--card-grad i {
    font-size: 2rem;
}

.com--scroller {
    width: fit-content;
    padding-right: 3rem;
}

.com--scroller a {
    text-decoration: none;
}

.com--scroller .icon {
    /*background-color: #6400ff;*/
    background-color: #03045E;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 15px;
    transition: 300ms;
}

.com--scroller:hover .icon {
    background-color: white;
    color: black;
    transform: rotate(360deg) scale(1.05);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 15px 30px -12px inset, rgba(0, 0, 0, 0.3) 0px 9px 18px -18px inset;
    transition: 300ms;
}

.com--scroller .arrow {
    margin-top: 5px;
    text-align: center;
    font-size: 20px;
    animation: com-scroll 2s infinite;
}

.com--scroller a {
    text-decoration: none;
    color: inherit;
}

.com--scroller .link-text {
    font-size: 1.2rem;
    color: #023E8A;
}

@keyframes com-scroll {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* text */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Montserrat', sans-serif;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

p {
    opacity: 0.8;
}

/* header */
header {
    background-color: rgba(245, 245, 245, 0.8);
    backdrop-filter: blur(5px);
    z-index: 200;
}

header .logo img {
    height: 50px;
}

header .links a {
    color: #575757;
    text-decoration: none;
    transition: 300ms;
}

header .links a:hover {
    color: black;
    transition: 300ms;
}

/* landing */
.landing {
    min-height: 600px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.landing .bg-img {
    height: 100%;
    width: 100%;
    position: absolute;
}

.landing .bg-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.landing .image {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: calc(100% - 200px);
    min-height: 800px;
    z-index: 1;
}

.landing .image img {
    height: 100%;
}

.landing .b6 {
    margin-top: 50px;
    height: calc(100% - 50px);
    z-index: 3;
}

.landing .b6 .card {
    border-radius: 15px;
    border: none;
    background: rgb(224,240,249);
    background: -moz-linear-gradient(90deg, rgba(224,240,249,1) 0%, rgba(255,255,255,0.85) 90%);
    background: -webkit-linear-gradient(90deg, rgba(224,240,249,1) 0%, rgba(255,255,255,0.85) 90%);
    background: linear-gradient(90deg, rgba(224,240,249,1) 0%, rgba(255,255,255,0.65) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0f0f9",endColorstr="#ffffff",GradientType=1);
    backdrop-filter: blur(10px);
}

.landing .text {
    max-width: 400px;
}

@media only screen and (min-width: 768px) {
    .landing .text {
        width: 500px;
    }

    .landing h1 {
        font-size: 3rem;
    }
}

/* columns */
.columns .text {
    max-width: 500px;
}

.round-img {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 15px;
}

.presentation .text {
    max-width: 500px;
}

.presentation img {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 15px;
}


/*projects*/
#projects img {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 15px;
}

/* contact */
#contact {
    position: relative;
}

#contact .bg-img {
    top: 0;
}

#contact .bg-img img {
    object-fit: cover;
}

#contact .bg-shade {
    top: 0;
    background-color: black;
    opacity: 0.1;
}

#contact .card {
    border: none;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(224,240,249,1) 0%, rgba(255,255,255,0.65) 90%);
    backdrop-filter: blur(20px);
}

#contact form a {
    color: inherit;
}

/* footer */
footer .upper .social-link {
    text-decoration: none;
    color: inherit;
    padding-left: 1.25rem;
    font-size: 1.3rem;
}

footer .lower {
    color: white;
    background-color: #023E8A;
}

footer .lower h3 {
    margin-bottom: 1.5rem;
}

footer .lower ul {
    list-style: none;
    padding-inline: 0;
}

footer .lower a {
    color: inherit;
    text-decoration: none;
    padding-left: 1rem;
    border-left: 2px rgba(255, 255, 255, 0.3) solid;
    transition: 300ms;
}

footer .lower a:hover {
    border-left: 5px white solid;
    transition: 300ms;
}
