/*!
Theme Name: velmut
Theme URI: https://velmut.com/
Author: VELMUT WEB SOFTWARE
Author URI: https://velmut.com/
Version: 1.1.2
Tested up to: 5.4
Requires PHP: 5.6
License: VELMUT WEB SOFTWARE
License URI: LICENSE
Text Domain: velmut
Web Dev / Design: serkanikizoglu.com.tr
*/

/* =========================
        GILROY FONTS
========================= */

/* Gilroy Black */
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-Black.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Gilroy Bold */
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-Bold.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Gilroy SemiBold */
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-SemiBold.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Gilroy Medium */
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-Medium.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Gilroy Regular */
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-Regular.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-Light.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-MediumItalic.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-MediumItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/woff2/Gilroy-SemiBoldItalic.woff2") format("woff2"),
        url("../fonts/woff/Gilroy-SemiBoldItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Gilmer";
    src: url("../fonts/woff2/Gilmer_Outline.woff2") format("woff2"),
        url("../fonts/woff/Gilmer-Outline.woff") format("woff");
    font-display: swap;
}




* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body,
html {
    padding: 0;
    margin: 0;
    background-color: #E6E9EE !important;
    font-family: "Gilroy", sans-serif;
}

body ul {
    padding-left: 0;
    margin-bottom: 0;
}

body li {
    list-style: none;
}

body {
    overflow-x: hidden;
}

body a {
    text-decoration: none;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

img {
    width: 100%;
    display: block;
}

p {
    font-size: 16px;
    font-weight: 300;
}

input:focus,
textarea:focus,
select:focus {
    outline: unset !important;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: unset !important;
}



header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0px;
    box-sizing: border-box;
}

.col-head-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 99;
}

.logo-left img {
    height: 55px;
    width: auto;
}


.menu-head {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-head>ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 85px;
}

.menu-head ul li {
    position: relative;
}

.menu-head>ul>li>a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    font-family: "Gilroy", sans-serif;
}

.menu-head a:hover{
    color:#1ECAD3;
}
.lang a:hover{
    color:#1ECAD3;
}

.social-media a:hover{
      color:#1ECAD3;
}

.menu-head ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 15px 0;
    border-radius: 10px;
    min-width: 200px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.menu-head ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-head ul li ul li a {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}


.menu-head ul li ul li ul {
    top: 0;
    left: 100%;
    transform: translateX(8px);
}

.menu-head ul li ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.right-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang ul {
    display: flex;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.active-lang {

    color: #fff !important;

    font-weight: 500 !important;
}

.lang a {
    color: #ffffff5c;
    text-decoration: none;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 300;
    position: relative;
}

.social-media a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.button-offer a {
    background: #1ECAD3;
    padding: 10px 40px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: .25s ease;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    border: 1px solid #1ECAD3;
}

.button-offer a:hover {
    background: transparent;
    color:#1ECAD3;
}

/* Genel Bölüm */
.hero-bg {
    padding: 125px 0 15px;
    background-color: #15214C;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 150px;
    background-color: #E6E9EE;
    bottom: -25px;
    border-radius: 20px;
}

.mySwiper {
    width: 100%;
    position: relative;
}


.swiper-slide {
    display: flex !important;
    align-items: center;
    align-items: flex-end;
    gap: 40px;
    justify-content: space-between;
}

.content-slider {
    width: 50%;
    margin-bottom: 110px;
}

.content-slider h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.content-slider h2 span {
    color: #007bff;
}

.content-slider p {
    margin-bottom: 20px;
    font-family: "Gilroy", sans-serif;
    margin-top: 12px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
}

.content-slider a {
    font-size: 16px;
    color: #1ECAD3;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.content-slider a:hover {
    color: #8ff9ff;
}

/* Slider Image */
.slider-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

/* Sol Menü */
.swiper-nav {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 60px;
    z-index: 999;
    bottom: 47px;
    position: relative;
}

.swiper-nav li {
    margin-bottom: 8px;
}

.swiper-nav a {
    font-size: 24px;
    font-weight: 300;
    color: #121e4757 !important;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    font-style: italic;
}

.swiper-nav a:hover {
    color: #007bff;
}

.swiper-nav a.active-slider {
    font-weight: 500;
    color: #15214C !important;
}

/* Pagination (DİKEY) */
.swiper-pagination {
    position: absolute !important;
    left: 105% !important;
    top: 57% !important;
    transform: translate(-50%, -50%) !important;
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.swiper-pagination-bullet {
    width: 2px !important;
    height: 40px !important;
    background: #bbb !important;
    border-radius: 0 !important;
    transition: 0.25s;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    height: 50px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .swiper-slide {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .swiper-pagination {
        right: 10px !important;
        top: 20px;
        transform: none;
        flex-direction: row;
    }

    .swiper-pagination-bullet {
        width: 6px !important;
        height: 2px !important;
    }

    .swiper-pagination-bullet-active {
        width: 12px !important;
        height: 2px !important;
    }
}

.HeroSwiper {}

.HeroSwiper .swiper-slide {}

.HeroSwiper .swiper-slide .content-slider {}

.HeroSwiper .swiper-slide .content-slider {}

.HeroSwiper .swiper-slide .content-slider .slider-h {
    color: #fff;
    font-size: 50px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    line-height: 54px;
}

.HeroSwiper .swiper-slide .content-slider p {

    color: #fff;
}

.HeroSwiper .swiper-slide .content-slider a {}

.HeroSwiper .swiper-slide .slider-img {}

.HeroSwiper .swiper-slide .slider-img img {}

.HeroSwiper .swiper-slide .content-slider .slider-h span {
    color: #1ECAD3;
}

.head-right-h {

text-align: left;

z-index: 999;

position: relative;
}

.head-right-h span:after {
     content: '';
    width: 73px;
    height: 1px;
    right: -80px;
    top: 9px;
    position: absolute;
    background: #1ECAD3;
}

.head-right-h span {

position: relative;

color: #1ECAD3;

letter-spacing: 7px;

font-weight: 200;

font-size: 25px;

font-family: "Gilroy", sans-serif;
}

.head-right-h h2 {

color: #15214C;

font-family: "Gilroy", sans-serif;

font-weight: 600;

font-size: 35px;
}

.head-right-h h3 {}

.head-right-h .icon-box {

    margin-top: 20px;
}

.head-right-h .icon-box a {

    color: #1ECAD3;

    border: 1px solid #1ECAD3;

    padding: 0px 12px;

    font-size: 46px;

    border-radius: 100px;

    display: inline-block;

    margin-right: 10px;
}

.nonSlider {

    overflow: hidden;
    position: relative;
}

.nonSlider .swiper-slide {}

.nonSlider .swiper-slide .item-sw {}

.nonSlider .swiper-slide .item-sw i {

    font-size: 40px;

    background: #E1F7FB;

    color: #1ECAD3;

    padding: 10px 20px;

    display: inline-block;

    border-radius: 100px;

    margin-bottom: 50px;
}

.nonSlider .swiper-slide .item-sw .head-i {

    font-size: 28px;

    color: #15214C;

    font-family: "Gilroy", sans-serif;

    font-weight: 500;
}

.nonSlider .swiper-slide a {

    background: #fff;

    border-radius: 40px 15px 40px 15px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: 0.3s;

    transition-timing-function: cubic-bezier(1, .2, .65, .85);
}

.nonSlider .swiper-slide {
    background: #fff;
    padding: 26px 4px;
    border-radius: 50px 15px 50px 15px;
    transition: .4s;
}

.why-b {
    margin-top: 50px;
    position: relative;
}

.why-b .swiper {}

.nonSlider .swiper-wrapper {
    overflow: visible !important;
    /* kritik */
}

.nonSlider .swiper-slide>* {
    transform: translateX(40px);
    /* 3. slide preview */
}

.nonSlider .swiper-slide a {
    transform: translateX(35px);
    /* preview görünürlüğü */
    transition: .3s;
}

.f-lix {
    display: flex;
    justify-content: space-between;
    padding: 37px 0 100px 255px;
    position: relative;
}

.why-b .nonSlider {
    padding-right: 210px;
}

.why-b .left {
    width: 30%;
    display: flex;
    align-items: center;
}

.why-b .right {
    width: 60%;
}

.why-b .swiper-slide:hover {
    transform: scale(.9);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-box a:hover {
    transform: scale(.9);
    background: #1ecad31f;
    padding: 0px 11px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.head-services {
    position: relative;
    z-index: 99;
}

.head-services span {

position: relative;

color: #1ECAD3;

letter-spacing: 7px;

font-weight: 200;

font-size: 25px;

font-family: "Gilroy", sans-serif;
}

.head-services h2 {

color: #15214C;

font-family: "Gilroy", sans-serif;

font-weight: 600;

font-size: 35px;
}

.head-services ul {

    display: flex;

    justify-content: space-between;

    margin-bottom: 50px;

    margin-top: 28px;

    gap: 20px;
}

.head-services ul li {
    width: 100%;
}

.head-services ul li a:hover {
    color: #fff !important;
    background-color: #15214C !important;

}

.head-services ul li a {

font-family: "Gilroy", sans-serif;

font-weight: 500;

font-size: 16px;

display: block;

border: 1px solid #15214C;

padding: 13px;

text-align: center;

color: #15214C;

width: 100%;

border-radius: 102px;
}

.head-services span:after {
   content: '';
    width: 73px;
    height: 1px;
    right: -80px;
    top: 9px;
    position: absolute;
    background: #1ECAD3;
}

.serSlider {}

.serSlider a {

    display: inline-block;

    width: 100%;
}

.img-div {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 225px 16px 20px;
    border-radius: 50px 15px 50px 15px;
}

.img-div:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(.9);
}

.img-div h3 {

    font-size: 22px;

    color: #fff;

    font-family: "Gilroy", sans-serif;

    font-weight: 500;

    position: relative;

    margin-bottom: 0;

    z-index: 1;
}

.img-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(21 33 76 / 82%) 100%);
    border-radius: 50px 15px 50px 15px;
    z-index: 1;
}

.active-tab {
    color: #fff !important;
    background-color: #15214C !important;
}

.form-home {
    background-color: #fff;
    padding: 60px;
    margin-top: 75px;
    position: relative;
    border-radius: 40px;
}

.form-home img {

width: 225px;

position: absolute;

z-index: 999;

bottom: 0;

right: 0;
}

.form-home .label {

    margin-bottom: 16px;

    position: relative;
}

.form-home .label input {

    width: 100%;

    padding: 15px 40px;

    border: 1px solid #1ECAD3;

    font-size: 14px;

    border-radius: 100px;

    font-family: "Gilroy", sans-serif;

    font-weight: 300;
}

.form-home .label i {}

.form-home .label i {

    position: absolute;

    left: 14px;

    top: 12px;

    color: #1ECAD3;
}

.form-home input {}

.form-home p {

    font-family: "Gilroy", sans-serif;

    font-weight: 300;

    font-size: 12px;
}

.form-home textarea {
    width: 100%;

    padding: 15px 40px;

    border: 1px solid #1ECAD3;

    font-size: 14px;

    border-radius: 20px;
    height: 150px;
    font-family: "Gilroy", sans-serif;

    font-weight: 300;
}

.form-home .label-2 input {

    border: none;

    padding: 10px 55px 10px 22px;

    font-family: "Gilroy", sans-serif;

    font-weight: 400;

    background: #1ECAD3;

    color: #fff;

    border-radius: 100px;
}

.form-home .label-2 i {
    position: absolute;
    right: 17px;
    top: 6px;
    font-size: 20px;
    color: #fff;
}

.form-home .label-2 {

    position: relative;
}

.form-home .label-2 i:after {
    content: '';
    background: #ffffff30;
    width: 45px;
    border-radius: 100px;
    height: 45px;
    right: -15px;
    position: absolute;
    top: -6px;
}

.form-home p b {
    font-weight: 600;
}

.head-form {

text-align: right;
}

.head-form span {

    position: relative;

    color: #1ECAD3;

    letter-spacing: 10px;

    font-weight: 200;

    font-size: 25px;

    font-family: "Gilroy", sans-serif;
}

.head-form h2 {

color: #15214C;

font-family: "Gilroy", sans-serif;

font-weight: 600;

font-size: 35px;

z-index: 99;

position: relative;
}

.head-form img {}

.head-form span {
    position: relative;
    color: #1ECAD3;
    letter-spacing: 7px;
    font-weight: 200;
    font-size: 25px;
    font-family: "Gilroy", sans-serif;
}

.head-form span:after {
    content: '';
    width: 73px;
    height: 1px;
    left: -90px;
    top: 9px;
    position: absolute;
    background: #1ECAD3;
}

.form-home:before {
    content: '';
    background-color: #1ECAD3;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0;
    right: 90px;
    border-radius: 100%;
    z-index: 99;
}


.blogSlider {
    padding-right: 210px !important;
}

.blogSlider a {
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.flex-box-s {

display: flex;

justify-content: space-around;

margin-bottom: 60px;
}

.item-box-s {

    display: flex;

    gap: 15px;

    align-items: center;
}

.number {

font-family: "Gilmer";

font-size: 65px;
}

.text-s {

font-size: 26px;

color: #15214C;

font-family: "Gilroy", sans-serif;

font-weight: 700;

width: 109px;

line-height: 27px;

position: relative;

top: -4px;
}

footer {}

.footer-box-sec {

background: #15214C;

width: 100%;

color: #DBDBDB;

display: flex;

padding: 45px;

border-radius: 30px 30px 0 0;
}

.left-logo-f {

    width: 40%;
}

.left-logo-f img {

width: 120px;

margin-bottom: 20px;
}

.contact-footer {

    font-family: "Gilroy", sans-serif;
}

.contact-footer li {}

.contact-footer b {
    font-weight: 600;
    color: #fff;
}

.contact-footer a {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 16px;
}

.item-links-footer a {
    display: inline-block;
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 300;
    color: #DBDBDB;
}

.right-link-box {

    width: 60%;

    display: flex;

    justify-content: space-between;
}

.right-link-box .item-links-footer {

font-family: "Gilroy", sans-serif;

font-weight: 300;

font-size: 18px;
}

.right-link-box .footer-head {

font-family: "Gilroy", sans-serif;

font-weight: 600;

margin-bottom: 13px;

font-size: 24px;

color: #fff;
}

.right-link-box .footer-head ul {}

.right-link-box .footer-head ul li {}

.right-link-box .footer-head ul li a {}

.cpo {
    display: flex;
    justify-content: space-between;
    background: #15214C;
    color: #fff;
    padding: 0 45px 30px;
}

.cpo li {
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #DBDBDB;
}

.cpo a {
    font-weight: 600;
}

footer a:hover{
    color:#fff;
}

header:before{
        content: '';
        width: 550px;
        border-radius: 100%;
        height: 550px;
        left: -80px;
        top: -300px;
        position: absolute;
        border: 1px solid #ffffff0a;
}
header:after{
        content: '';
        width: 550px;
        border-radius: 100%;
        height: 550px;
        right: -80px;
        top: -300px;
        position: absolute;
        border: 1px solid #ffffff0a;
}
.hero-bg:after{
        content: '';
        width: 550px;
        border-radius: 100%;
        height: 550px;
        left: -200px;
        top: 300px;
        position: absolute;
        border: 1px solid #ffffff0a;
}

.bef-wgy:after{
        content: '';
        width: 1000px;
        border-radius: 100%;
        height: 1000px;
        left: -100px;
        top: -50px;
        position: absolute;
        border: 1px solid #15214c17;
}

.head-services::after{
        content: '';
        width: 1000px;
        border-radius: 100%;
        height: 1000px;
        right: -378px;
        top: 0;
        position: absolute;
        border: 1px solid #15214c17;
}

.flex-box-s::after{
          content: '';
          width: 948px;
          border-radius: 100%;
          height: 948px;
          left: -500px;
          top: -409px;
          position: absolute;
          border: 1px solid #15214c17;
}

.flex-box-s{
    position: relative;
}

 
.content-slider {
    opacity: 0;
    transform: translateY(50px);
}

.content-slider.animate-up {
    animation: slideUp 0.7s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

