@tailwind base; @tailwind components; @tailwind utilities;

/* -> cookie bar
================================ */
#cookie-bar {
	background: #09103E;
	height: auto;
	color: #fff;
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 600;
    padding: 8px 20px;
    font-size: 16px;
}
#cookie-bar p {
	margin: 0;
	padding: 0;
}
#cookie-bar a {
	color: #fff;
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
    padding: 10px 20px;
    line-height: 1;
    margin-left: 20px;
    border-radius: 5px;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	border: 1px solid #fff;
}
#cookie-bar a:hover {
    background-color: #3ebbf2;
    border-color: #3ebbf2;
}
/*================================ */

/* -> Slick Slider
================================ */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

#testimonials .slick-track {
	display: flex;
	align-items: center;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	outline: none;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	position: absolute;
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-disabled{
	opacity: 0;
	visibility: hidden;
}

/*Portefolio Arrows*/
/*Portefolio Arrows*/
.slick-prev,
.slick-next{
	text-decoration: none;
    width: 85px;
    height: 85px;
    position: absolute;
    top: calc(50%);
    transform: translateY(-50%);
    z-index: 100;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
    color: #fff;
    background-color: rgba(255,255,255,0.2);
    opacity: 1;
    text-align: center;
    border: none;
    border-radius: 0px;
    transition: all 0.2s ease-in-out 0s;
    outline: none!important;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .1);
}

.slick-prev{
    left: 40px;
}

	.slick-prev:hover,
	.slick-next:hover{
       background-color: #3ebcf29f;
    }

.slick-next{
    right: 40px;
}

	.slick-prev:before,
    .slick-next:before{
		font-family: "Font Awesome 5 Free";
        font-weight: 900;
		font-size: 18px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
	}

    .slick-prev:before{
		content: "\f0a8";
	}

    .slick-next:before{
		content: "\f0a9";
    }
    
    .slick-dots {
        position: absolute;
        left: 83px;
        right: auto;
        bottom: 50px;
        text-align: center;
        display: block;
        padding: 0;
        list-style: none;
        z-index: 4;
    }
    
        .slick-dots li{
            position: relative;
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 8px 0 0;
            padding: 0;
            cursor: pointer;
        }
    
            .slick-dots li button{
                font-size: 0;
                line-height: 0;
                display: block;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                cursor: pointer;
                color: transparent;
                background-color: transparent;
                outline: none;
                border: none;
                background-color: #fff;
                transition: all 0.3s;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                opacity: 0.55;
                padding: 0;
            }
    
            .slick-dots li button:hover,
            .slick-dots li.slick-active button{
                opacity: 1;
                background-color: #fff;
            }
    
    .slick-disabled{
        opacity: 0;
        visibility: hidden;
    }
/*================================ */


/* -> Main
================================ */
body {
	font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #4C4C4C;
	overflow-x: hidden;
}

a {
	color: #000;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

a:hover {
    text-decoration: underline;
    color: inherit;
}

section{
    position: relative;
    z-index: 2;
}

.transition {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

.blue{
    color: #1782DC;
}

h1{
    font-weight: 700;
    color: #fff;
    font-size: 70px;
    line-height: 80px;
    font-family: "Epilogue",sans-serif;
}

h2{
    font-weight: 700;
    color: #09103E;
    font-size: 44px;
    line-height: 54px;
    font-family: "Epilogue",sans-serif;
}

h3{
    font-family: "Epilogue",sans-serif;
    font-weight: 700;
    color: #09103E;
    font-size: 22px;
    line-height: 32px;
}

h4{
    font-family: "Epilogue",sans-serif;
    font-weight: 700;
    color: #09103E;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.title-box p{
    color: #ffffffb8;
}

.btn,
.btn-alt{
    position: relative;
    display: inline-block;
    font-family: "Epilogue",sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    padding: 18px 36px;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s
}

.btn{
    background-color: #1782DC;
    color: #fff!important;
}

    .btn:hover{
        filter: brightness(0.9);
    }

.btn-alt{
    color: #fff!important;
}

    .btn-alt:hover{
        color: #1782DC!important;
    }

    #pages-header{
        background-position:center;
        background-size: cover;
        height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        color: #fff;
        font-size: 20px;
        line-height: 30px;
        padding-top: 180px;
    }
    
        #pages-header:after{
            background-color: rgba(2, 29, 73, 0.6);
            mix-blend-mode: multiply;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            position: absolute;
            content: '';
            z-index: 1;
        }
    
        #pages-header>*{
            z-index: 2;
        }
    
        .breadcrumbs{
            padding: 0;
        }
    
        .breadcrumbs > li{
            position: relative;
        }
            .breadcrumbs > li:after{
                position: relative;
                content: "/";
                margin-left: 10px;
                color: #fff;
                font-weight: 500
            }
            .breadcrumbs > li:last-child:after{
                display: none;
            }
    
            .breadcrumbs > li > a{
                color: #fff;
                opacity: 0.7;
                text-transform: capitalize;
                text-decoration: none;
            }
    
            .breadcrumbs > li > a:hover,
            .breadcrumbs > li > span{
                opacity: 1;
                color: #fff;
                text-transform: capitalize;
            }
    


.page{
    padding: 100px 0px;
} 

hr{
    border-top: 1px solid #000;
    margin: 30px 0px;
}

.grecaptcha-badge{
    visibility: collapse !important;  
}
/* ============================= */



/* -> Menu
================================ */
.navbar {
    height: 100px;
    padding: 0px 71px;
    background-color: transparent;
}

.navbar.scrolled{
    height: 70px;
    -webkit-box-shadow: 0 3px 7px -3px rgba(0,0,0,.2);
    box-shadow: 0 3px 7px -3px rgba(0,0,0,.2);
    background-color: #fff;
}

    .navbar-brand{
        margin-right: 80px;
    }
    
        .navbar-brand img{
            height: 60px;
            filter: brightness(0) invert(1)
        }

        .navbar.scrolled .navbar-brand img{
            filter: none;
        }

        .navbar ul li{
            position: relative;
            margin: 0px 25px;
        }
        
        .navbar ul li:last-child{
            margin-right: 0;
        }

            .navbar ul > li > a{
                color: #fff;
                position: relative;
                padding: 0px!important;
                display: inline-block;
                font-size: 16px;
                line-height: 16px;
                text-decoration: none;
                font-family: "Epilogue",sans-serif;
                font-weight: 600;
            }

            .navbar.scrolled ul > li > a{
                color: #09103E;
            }

            .navbar ul > li > a.activated,
            .navbar ul > li > a:hover{
                color: #1782DC;
            }
/* ============================= */


/*////////////////////////////
//Home
////////////////////////////*/
#slideshow{
    position: relative;
}

#slideshow .slides{
    height: 100vh!important;
    z-index: 4;
}

        .slick-active .slideshow-bg {
            -webkit-animation: zoominout 100s 0s infinite ease-out;
            animation: zoominout 100s 0s infinite ease-out;
            background-size: cover;
            background-position: center center;
            width: 100%;
            height: 100%;
            position: absolute;
        }

        .slideshow-bg:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-image: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%);
        }

        .caption{
            position: relative;
            z-index: 4;
            padding: 0px 82px;
            max-width: 700px;
        }

            .caption .slide-text{
                display: block;
                opacity: 0!important;
                visibility: hidden;
                -webkit-transform: translateX(100px);
                    -ms-transform: translateX(100px);
                        transform: translateX(100px);
                -webkit-transition-duration: 0s;
                     -o-transition-duration: 0s;
                        transition-duration: 0s;
            }

            .caption .slide-text > *{
                color: #ffffffb8!important;
            }

                .slick-active .caption .slide-text{
                    opacity: 1!important;
                    visibility: visible;
                    -webkit-transform: translateX(0px);
                        -ms-transform: translateX(0px);
                            transform: translateX(0px);
                    -webkit-transition-duration: 1s;
                        -o-transition-duration: 1s;
                            transition-duration: 1s;
                    -webkit-transition-delay: 0.7s;
                        -o-transition-delay: 0.7s;
                            transition-delay: 0.7s;
                }

            .caption h1{
                opacity: 0!important;
                visibility: hidden;
                -webkit-transform: translateX(100px);
                    -ms-transform: translateX(100px);
                        transform: translateX(100px);
                -webkit-transition-duration: 0s;
                     -o-transition-duration: 0s;
                        transition-duration: 0s;
            }

            .slick-active .caption h1{
                opacity: 1!important;
                visibility: visible;
                -webkit-transform: translateX(0px);
                    -ms-transform: translateX(0px);
                        transform: translateX(0px);
                -webkit-transition-duration: 1s;
                     -o-transition-duration: 1s;
                        transition-duration: 1s;
                -webkit-transition-delay: 0.5s;
                     -o-transition-delay: 0.5s;
                        transition-delay: 0.5s;
            }

            .caption .btn-box{
                opacity: 0;
                visibility: hidden;
                -webkit-transform: translateX(100px);
                    -ms-transform: translateX(100px);
                        transform: translateX(100px);
                -webkit-transition-duration: 0s;
                     -o-transition-duration: 0s;
                        transition-duration: 0s;
            }

            .slick-active .caption .btn-box{
                opacity: 1;
                visibility: visible;
                -webkit-transform: translateX(0px);
                    -ms-transform: translateX(0px);
                        transform: translateX(0px);
                -webkit-transition-duration: 1s;
                     -o-transition-duration: 1s;
                        transition-duration: 1s;
                -webkit-transition-delay: 0.9s;
                     -o-transition-delay: 0.9s;
                        transition-delay: 0.9s;
              }

    .slides-nav{
        position: absolute;
        bottom: 30px;
        right: 170px;
        z-index: 30;
        display: flex;
        align-items: center;
    }

        .slides-nav a{
            margin-left: 40px;
            font-weight: 700;
            position: relative;
        }

            .slides-nav a:before{
                content: ""!important;
                display: block!important;
                position: absolute;
                z-index: 1;
                bottom: 2px;
                left: 0;
                -webkit-transform: none;
                -ms-transform: none;
                transform: none;
                width: 0;
                height: 2px;
                -webkit-transition: all .2s ease;
                -ms-transition: all .2s ease;
                transition: all .2s ease;
                background-color: #fff;
            }

                .slides-nav a.active:before,
                .slides-nav a:hover:before{
                    width: 100%;
                }

        .slides-nav hr{
            width: 160px;
            border-top: 1px solid #fff;
            margin: 0px 0px 0px 20px;
        }
/* ============================= */


/* -> about
================================ */
#about{
    padding: 140px 0px;
}

    .about-icon{
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 10px;
        background-color: #09103E;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        flex-shrink: 0;
        margin-right: 30px;
    }

    .about-img{
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        box-shadow: 3px 3px 5px 6px #0000000b;
    }

#timeline{
    padding: 160px 0px 320px;
    position: relative;
    overflow-x: hidden;
    background-image: url(../img/bg-about.jpg);
    background-size: cover;
    background-position: center;
    color: #000;
}

    #timeline hr{
        border-color: #1782DC;
        border-width: 4px;
        width: 100%;
    }

    .dot-box{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        width: 100%;
        max-width: 450px;
        top: -30px;
    }

        .dot{
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            align-items: start;
            cursor: pointer;
            color: #1a202e;
        }

            .dot:after{
                content: '';
                height: 60px;
                width: 4px;
                background-color: #1782DC;
                opacity: 0;
                visibility: hidden;
                margin-left: 5px;
                border-radius: 5px;
                transform: translateY(-2px);
            }

            .dot-box.active .dot:after{
                opacity: 1;
                visibility: visible;
            }

            .dot span{
                font-weight: 500;
                font-size: 16px;
                transform-origin: center;
                transform: translateX(calc(-50% + 7px));
            }

            .dot i{
                font-size: 16px;
            }

        .dot-box.active .dot,
        .dot:hover{
            color: #1782DC;
        }

        .dot-text{
            position: absolute;
            top: 105px;
            opacity: 0;
            visibility: hidden;
        }

        .dot-box.active .dot-text{
            opacity: 1;
            visibility: visible;
        }

        .dot-box.right .dot-text{
            transform: translateX(-100%);
        }
/* ============================= */

#world{
    padding-top: 140px;
}


/* -> Services
================================ */
#services{
    position: relative;
    padding: 140px 0px 0px;
}

.content-wrap{
    background: #fbf9f6;
}

.tabs {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    border-bottom: 3px solid #1782DC;
    margin: 0;
    
}

    .tabs > div{
        gap: 1px;
    }

    .tabs li{
        flex-grow: 1;
        align-items: center;
    }

        .tabs a{
            width: 100%;
            text-align: center;
            background-color: #eeeeee;
            padding: 5px 15px 0px;
            height: 80px;
            font-family: "Epilogue",sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .tabs a:hover,
            .tabs a.active{
                text-decoration: none;
                background-color: #1782DC;
                color: #ffffff;
            }

.tab-content {
    float: left;
    width: 100%;
    transition: 0.3s;
    display: none;
    padding: 60px 15px 30px;
}

.tab-content.show {
    display: block;
}
/* ============================= */




/* -> Contacts
================================ */
#contacts{
    padding: 140px 0px;
}

    .contact-info{
        width: 33%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        height: 100%;
        text-align: center;
        padding: 0px 20px;
        float: left;
    }
    
        .contact-icon{
            width: 85px;
            height: 85px;
            font-size: 28px;
            margin-bottom: 25px;
            color: #060b2b;
            background-color: #FFE6C5;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .contact-info small{
            color: #1782DC;
        }

form{
    padding: 40px 40px 40px 40px;
    margin-top: 60px;
    border-radius: 20px;
    background-color: #09103E;
}

    .form-input{
        margin-bottom: 20px;
    }

    form h3{
        font-size: 36px;
        line-height: 46px;
        font-weight: 600;
        margin-bottom: 25px;
    }

        .form-text a{
            text-decoration: underline;
        }

        .form-text label{
            font-size: 14px;
            line-height: 20px!important;
            display: flex;
            align-items: flex-start;
            color: #fff;
        }

        .form-input.error label{
            border-color: #e10000;
        }

        input[type='text'],
        input[type='email'],
        input[type='date'],
        input[type='number'],
        select,
        textarea{
            width: 100%;
            color: #fff!important;
            font-size: 16px;
            padding: 0 28px;
            height: 60px;
            margin: 0px 0px 10px 0px;
            border-radius: 10px;
            background-color: transparent!important;
            border: 1px solid #ffe6c59c!important;
            font-family: 'IBM Plex Sans', sans-serif;
            outline: none;
        }

        select option{
            color: #000;
        }

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

        input[type="date"]::-webkit-calendar-picker-indicator {
            color: transparent; /* This line is optional but recommended to ensure the default icon does not show */
        }

        textarea{
            height: 130px!important;
            resize: none;
            padding: 20px!important;
        }

        .form-input.error input[type="text"],
        .form-input.error input[type="email"],
        .form-input.error input[type="number"],
        .form-input.error textarea,
        .form-input.error select{
            border-color: #e10000!important;
        }

        .form-text{
            font-size:15px;
            line-height: 26px;
            margin-top: 0;
        }
        
            .form-text input{
                transform: translateY(2px);
                display: inline-block;
            }
        
            .form-text label{
                cursor: pointer;
                line-height: 26px;
                text-align: justify;
            }
        
            .form-text.error label{
                color: #e10000;
            }
        
            .form-text a{
                text-decoration: underline!important;
                color: #1782DC;
            }

    #map,
    #map2{
        height: 600px;
        overflow: hidden;
    }
/* ============================= */


/* -> Footer
================================ */
footer{
    color: #fff;
    width: 100%;
    bottom: 0;
    z-index: 0;
    background-color: #060b2b;
    font-size: 14px;
    line-height: 24px;
}
    #footer-copy{
        padding: 40px 10%;
        border-top: 1px solid #fff;
    }

    footer a{
        color: #fff;
    }

    #copyright{
        margin-top: 20px;
    }
/* ============================= */