:root {
    --primary-color: #0089e9;
    --secondary-color: #fe931f;
    --dark-color: #071f31;
    --light-color: #839bb9;
    --text-color: #003084;
    --gray-color: #898989;
    --white-color: #ffffff;
    --black-color: #000000;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Droid Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.wow {
    visibility: hidden;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

.col-md-3 {
    width: 25%;
    padding: 0 15px;
}

.col-md-4 {
    width: 33.333333%;
    padding: 0 15px;
}

.col-md-5 {
    width: 41.666667%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.col-md-7 {
    width: 58.333333%;
    padding: 0 15px;
}

.col-md-12 {
    width: 100%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        width: 100%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-6 {
        width: 50%;
    }
}


/* 通用标题样式 */

.section-heading {
    margin-top: 80px;
    margin-bottom: 70px;
    text-align: center;
}

.section-heading h5 {
    font-size: 20px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
}

.section-heading h2>span {
    color: var(--text-color);
}

.main-title {
    display: inline-block;
    position: relative;
}

.main-title strong {
    position: absolute;
    display: block;
    overflow: hidden;
    min-height: 14px;
    top: 100%;
    left: 0;
    right: 0;
    background-image: url(1.jpg);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;
}

.main-title strong:before,
.main-title strong:after {
    content: '';
    display: block;
    width: 50%;
    min-height: 2px;
    position: absolute;
    bottom: 6px;
    background-color: var(--gray-color);
}

.main-title strong:before {
    right: -39px;
}

.main-title strong:after {
    left: -39px;
}

.section-heading.if-bg-colorful h5 {
    color: var(--white-color);
}

.section-heading.if-bg-colorful h2>span {
    color: var(--white-color);
}

.if-bg-colorful .main-title strong {
    background-image: url(2.jpg);
}

.if-bg-colorful .main-title strong:before,
.if-bg-colorful .main-title strong:after {
    background-color: var(--white-color);
}


/* 通用按钮样式 */

.dream-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    display: inline-block;
    position: relative;
    padding: 12px 40px;
    border: none;
    border-radius: 2px;
    transform: scale(1);
    transition: var(--transition);
    z-index: 1;
}

.dream-btn:hover {
    color: var(--white-color);
}

.dream-btn:after {
    content: '';
    position: absolute;
    border: 1px solid var(--white-color);
    top: 9px;
    bottom: 9px;
    left: 7px;
    right: 7px;
    transition: all 0.2s ease-out;
}

.dream-btn:hover:after {
    background-color: var(--primary-color);
    z-index: -1;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.fresh-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 7px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    display: inline-block;
    transition: var(--transition);
}

.fresh-btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pure-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 7px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    display: inline-block;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.pure-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: transparent;
}

.pure-btn:after {
    content: '';
    position: absolute;
    transform: scale(0);
    border: 1px solid var(--white-color);
    top: 4px;
    bottom: 4px;
    left: 5px;
    right: 5px;
    transition: all 0.2s ease-in-out;
}

.pure-btn:hover:after {
    background-color: var(--primary-color);
    z-index: -1;
    transform: scale(1);
}

.bg-img-over-effect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(7, 31, 49, 0.70);
    z-index: -1;
}

.shadow-bottom-items {
    position: relative;
    background-color: var(--white-color);
}

.shadow-bottom-items:before,
.shadow-bottom-items:after {
    content: '';
    position: absolute;
    bottom: 11px;
    z-index: -1;
    height: 0;
    width: 50%;
    box-shadow: -1px 7px 6px 7px #a1a1a1;
    opacity: 0;
    transition: all 0.3s;
}

.shadow-bottom-items:before {
    left: 4%;
    transform: rotate(-3deg);
}

.shadow-bottom-items:after {
    left: 46%;
    transform: rotate(3deg);
}

.shadow-bottom-items:hover:before,
.shadow-bottom-items:hover:after {
    opacity: 1;
}


/*导航栏*/

.header {
    position: relative;
    background: var(--white-color);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1);
    z-index: 999;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #ededed;
}

.header-top ul li {
    float: left;
}

.header-top ul li a {
    font-size: 16px;
    color: #857456;
    margin: 0 15px;
    line-height: 20px;
    display: inline-block;
}

.header-top ul li a:hover {
    color: var(--primary-color);
}

.header-top ul li .fa {
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 2px;
    margin-right: 10px;
}

.header-top .social-to ul li a {
    margin: 0 5px;
}

.header-top .social-to ul li a:hover .fa {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
}

.header-top .contact-text {
    float: right;
}

.header-top .contact-text ul li a .fa {
    color: var(--primary-color);
}

.header-top .contact-text ul li a:hover .fa {
    color: var(--secondary-color);
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    transition: top ease-in-out .2s;
}

.header.fixed.trim {
    top: -137px;
    transition-delay: .35s;
}

.header.fixed.scroll-down {
    top: -53px;
    transition-delay: .35s;
}

.main-menu-deputy .logo {
    float: left;
    margin: 10px 0;
}

.main-menu-deputy .logo img {
    height: 60px;
}

.main-menu-deputy .menu-when-collapse {
    font-family: "FontAwesome";
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 65px;
    height: 80px;
    cursor: pointer;
    text-align: center;
    line-height: 80px;
    display: none;
}

.main-menu-deputy .menu-when-collapse:after {
    content: "\f009";
    font-size: 26px;
    color: var(--white-color);
}

.menu-collapse-after-effect {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

.main-menu .close-nav {
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    background: rgba(0, 69, 117, 1);
    cursor: pointer;
    height: 60px;
    display: none;
}

.main-menu .close-nav:before {
    content: "\f00d";
    font-family: "fontAwesome";
    font-size: 20px;
    color: var(--white-color);
}

.main-menu {
    height: 80px;
    margin-top: 5px;
    float: right;
}

.main-menu .main-nav li {
    display: inline-block;
    font-size: 16px;
    position: relative;
}

.main-menu .main-nav li a {
    display: block;
    line-height: 80px;
    padding: 0 15px;
    text-transform: capitalize;
    transition: color ease-in-out .15s;
}

.main-menu .main-nav li:hover a {
    color: var(--primary-color);
}

.main-menu .main-nav li.active a {
    color: var(--primary-color);
}


/*首页轮播*/

.main-slider {
    position: relative;
}

.main-slider .mian-heading {
    display: table;
    margin-top: 100px;
    min-height: 500px;
}

.main-slider .mian-heading h2 {
    font-size: 90px;
    font-weight: 800;
    margin-top: 90px;
    color: rgba(254, 208, 3, 0.851);
}

.main-slider .mian-heading h3 {
    font-size: 70px;
    font-weight: 700;
    color: var(--white-color);
}

.main-slider .carousel .item {
    min-height: 720px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.main-slider .carousel .item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(21, 16, 3, 0.8);
}


/*关于*/

.about-section {
    padding: 20px 0 80px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

.about-content p {
    color: #666;
}

.about-btn {
    margin-top: 30px;
}

.about-features .feature-item {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 15px;
    border-radius: 10px;
    transition: var(--transition);
}

.about-features .feature-item:hover {
    background: var(--light-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    transition: var(--transition);
}

.about-features .feature-item:hover .feature-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.about-features .feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.about-features .feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/*作品展示*/

.works-section {
    padding: 20px 0 80px;
    background: var(--light-color);
}

.works-carousel {
    margin-bottom: 50px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.work-media {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover .work-media img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 137, 233, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay .work-lightbox {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.work-overlay .work-lightbox:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.work-overlay h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
}

.owl-theme .owl-nav {
    margin-top: 20px;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: var(--white-color);
    font-size: 16px;
    margin: 5px;
    padding: 8px 15px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--secondary-color);
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--gray-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}


/*工具中心*/

.tools-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    background-image: url(3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.tools-section .bg-img-over-effect {
    background-color: rgba(7, 31, 49, 0.85);
}

.tool-card {
    text-align: center;
    padding: 60px 20px 40px;
    border-radius: 30px 0;
    background: var(--white-color);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
}

.tool-card:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.tool-card .tool-icon {
    font-size: 50px;
    color: #6f7173;
    position: absolute;
    top: -60px;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    background: var(--white-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.tool-card:hover .tool-icon {
    background-color: var(--primary-color);
    border-color: var(--white-color);
    color: var(--white-color);
}

.tool-card .tool-icon i {
    line-height: 100px;
}

.tool-card .tool-content h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.tool-card:hover .tool-content h3 a {
    color: var(--white-color);
}

.tool-card .tool-content p {
    font-size: 16px;
    color: #999999;
    margin-bottom: 20px;
    line-height: 1.8;
}

.tool-card:hover .tool-content p {
    color: #f0f0f0;
}

.tool-card:hover .tool-content .fresh-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: transparent;
}


/*工具*/

.tool-detail-section {
    padding: 20px 0 80px;
}

.tool-box {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
}

.tool-form .form-group {
    margin-bottom: 25px;
}

.tool-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: block;
}

.tool-form .form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
}

.tool-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.calc-result {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
}

.result-placeholder h4 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.result-placeholder p {
    color: #666;
}

.result-item {
    text-align: center;
    padding: 30px 15px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.result-item:hover {
    background: var(--primary-color);
    transform: translateY(-10px);
}

.result-item .result-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.result-item:hover .result-icon {
    color: var(--white-color);
}

.result-item h5 {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    transition: var(--transition);
}

.result-item:hover h5 {
    color: #f0f0f0;
}

.result-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition);
}

.result-item:hover h3 {
    color: var(--white-color);
}

.time-box {
    padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.time-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.time-box h4 i {
    margin-right: 10px;
}

.time-box .time-range {
    margin-bottom: 15px;
}

.time-box .time-range span {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.time-box .time-range span strong {
    color: var(--primary-color);
    font-size: 18px;
}

.time-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.golden-hour {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe0b3 100%);
    border-left: 5px solid var(--secondary-color);
}

.golden-hour h4 {
    color: #d47500;
}

.blue-hour {
    background: linear-gradient(135deg, #e6f2ff 0%, #b3d9ff 100%);
    border-left: 5px solid var(--primary-color);
}

.blue-hour h4 {
    color: #0056b3;
}

.twilight {
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 25px;
}

.twilight h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.twilight h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.twilight h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.twilight p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.twilight p strong {
    color: var(--primary-color);
}


/* 灯箱弹窗 */

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--dark-color);
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-close:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}


/* 加载动画 */

.loader {
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    text-align: center;
}

.implode {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
    table-layout: fixed;
}

.implode-in {
    display: table-cell;
    vertical-align: middle;
}

.acting {
    position: relative;
    width: 70px;
    height: 30px;
    margin: 0 auto;
}

.acting span {
    background-color: var(--secondary-color);
    display: block;
    width: 3px;
    height: 30px;
    position: absolute;
    bottom: 0px;
    left: 0;
    animation: preloader 1.5s infinite ease-in-out;
    transform-origin: center center;
}

.acting span:nth-child(2) {
    left: 11px;
    animation-delay: 0.2s;
}

.acting span:nth-child(3) {
    left: 22px;
    animation-delay: 0.4s;
}

.acting span:nth-child(4) {
    left: 33px;
    animation-delay: 0.6s;
}

.acting span:nth-child(5) {
    left: 44px;
    animation-delay: 0.8s;
}

@keyframes preloader {
    0% {
        background-color: var(--white-color);
        height: 30px;
        transform: translateY(0);
    }
    25% {
        background-color: #fdb813;
        height: 60px;
        transform: translateY(15px);
    }
    50% {
        background-color: var(--white-color);
        height: 30px;
        transform: translateY(0);
    }
    100% {
        background-color: var(--white-color);
        height: 30px;
        transform: translateY(0);
    }
}


/* 回到顶部 */

.go-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    font-size: 16px;
    z-index: 10000;
}

.back-to-top.dream-btn {
    padding: 7px 12px;
}

.back-to-top.dream-btn:after {
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
}

.back-to-top.dream-btn:hover:after {
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
}

@media only screen and (max-width: 991px) {
    .section-heading {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .section-heading h2 {
        font-size: 36px;
    }
    .main-menu {
        height: auto;
        position: fixed;
        top: 0;
        right: -270px;
        bottom: 0;
        width: 270px;
        background: var(--primary-color);
        z-index: 9999;
        margin-top: 0;
        transition: var(--transition);
    }
    .main-menu.open {
        right: 0;
    }
    .main-menu .close-nav {
        display: block;
    }
    .main-menu .main-nav {
        padding-top: 20px;
    }
    .main-menu .main-nav li {
        display: block;
        width: 100%;
    }
    .main-menu .main-nav li a {
        line-height: 45px;
        color: var(--white-color);
        padding: 0 20px;
    }
    .main-menu-deputy .menu-when-collapse {
        display: block;
    }
    .menu-collapse-after-effect.open {
        display: block;
    }
    .about-content {
        margin-bottom: 40px;
    }
    .tool-card {
        margin-bottom: 80px;
    }
    .tool-form {
        margin-bottom: 40px;
    }
    .main-slider .mian-heading h2 {
        font-size: 60px;
        margin-top: 20px;
    }
    .main-slider .mian-heading h3 {
        font-size: 40px;
    }
    .main-slider .carousel .item {
        min-height: 550px;
    }
}

@media only screen and (max-width: 767px) {
    .section-heading h2 {
        font-size: 32px;
    }
    .header-top .social-to {
        text-align: center;
        margin-bottom: 10px;
    }
    .header-top .contact-text {
        float: none;
        text-align: center;
    }
    .main-slider .mian-heading h2 {
        font-size: 50px;
    }
    .main-slider .mian-heading h3 {
        font-size: 35px;
    }
    .main-slider .carousel .item {
        min-height: 470px;
    }
    .work-media {
        height: 350px;
    }
    .lightbox-modal {
        padding: 20px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 425px) {
    body {
        font-size: 14px;
    }
    p {
        font-size: 15px;
    }
    .section-heading {
        margin-top: 40px;
        margin-bottom: 25px;
    }
    .section-heading h5 {
        font-size: 16px;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .dream-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .main-slider .mian-heading h2 {
        font-size: 40px;
    }
    .main-slider .mian-heading h3 {
        font-size: 25px;
    }
    .main-slider .carousel .item {
        min-height: 420px;
    }
    .about-content h3 {
        font-size: 24px;
    }
    .work-media {
        height: 300px;
    }
    .tool-box {
        padding: 20px 15px;
    }
}